diff --git a/.drone/github-mirror.sh b/.drone/github-mirror.sh index 70bba95e39..4727946c85 100755 --- a/.drone/github-mirror.sh +++ b/.drone/github-mirror.sh @@ -6,8 +6,18 @@ ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null # Clone the repository -git remote add github git@github.com:/BlackLight/platypush.git -git pull --rebase github "$(git branch | head -1 | awk '{print $2}')" || echo "No such branch on Github" +branch=$(git rev-parse --abbrev-ref HEAD) +if [ -z "${branch}" ]; then + echo "No branch checked out" + exit 1 +fi + +git remote add github git@github.com:/blacklight/platypush.git + +if (( "$branch" == "master" )); then + git pull --rebase github "${branch}" || echo "No such branch on Github" +fi # Push the changes to the GitHub mirror -git push --all -v github +git push -f --all -v github +git push --tags -v github diff --git a/.drone/update-deb-packages.sh b/.drone/update-deb-packages.sh index 74264ccb9b..e561dfca92 100755 --- a/.drone/update-deb-packages.sh +++ b/.drone/update-deb-packages.sh @@ -16,7 +16,7 @@ apt install -y curl dpkg-dev gpg git python3 python3-pip python3-setuptools echo "--- Parsing metadata" git config --global --add safe.directory "$PWD" git pull --rebase origin master --tags -export VERSION=$(python3 setup.py --version) +export VERSION=$(grep -e '^__version__' "${SRCDIR}/version.py" | sed -r -e 's/^__version__\s*=\s*"([^"]+)"$/\1/') export GIT_VERSION="$VERSION-$(git log --pretty=oneline HEAD...v$VERSION | wc -l)" export GIT_BUILD_DIR="$WORKDIR/${PKG_NAME}_${GIT_VERSION}_all" export GIT_DEB="$WORKDIR/${PKG_NAME}_${GIT_VERSION}_all.deb" diff --git a/.drone/update-rpm-repo.sh b/.drone/update-rpm-repo.sh index bf6c49381b..f4f44b1932 100755 --- a/.drone/update-rpm-repo.sh +++ b/.drone/update-rpm-repo.sh @@ -26,7 +26,7 @@ mkdir -p "$RPM_ROOT" echo "--- Parsing metadata" git config --global --add safe.directory $PWD git pull --rebase origin master --tags -export VERSION=$(python3 setup.py --version) +export VERSION=$(grep -e '^__version__' "${SRCDIR}/version.py" | sed -r -e 's/^__version__\s*=\s*"([^"]+)"$/\1/') export RELNUM="$(git log --pretty=oneline HEAD...v$VERSION | wc -l)" export SPECFILE="$WORKDIR/$PKG_NAME.spec" export BUILD_DIR="$WORKDIR/build" diff --git a/.ignore b/.ignore new file mode 100644 index 0000000000..849ddff3b7 --- /dev/null +++ b/.ignore @@ -0,0 +1 @@ +dist/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ee3990f1c..a9a521d424 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,120 @@ # Changelog +## [1.3.1] + +- [[#344](https://git.platypush.tech/platypush/platypush/issues/344)]: removed + `marshmallow_dataclass` dependency. That package isn't included in the + package managers of any supported distros and requires to be installed via + pip. Making the Platypush' system packages depend on a pip-only package is + not a good idea. Plus, the library seems to be still in heavy development and + it has already broken compatibility with at least the `system` package. + +## [1.3.0] + +- [[#333](https://git.platypush.tech/platypush/platypush/issues/333)]: new file + browser UI/component. It includes custom MIME type support, a file editor + with syntax highlight, file download and file upload. + +- [[#341](https://git.platypush.tech/platypush/platypush/issues/341)]: + procedures are now native entities that can be managed from the entities panel. + A new versatile procedure editor has also been added, with support for nested + blocks, conditions, loops, variables, context autocomplete, and more. + +- [`procedure`]: Added the following features to YAML/structured procedures: + + - `set`: to set variables whose scope is limited to the procedure / code + block where they are created. `variable.set` is useful to permanently + store variables on the db, `variable.mset` is useful to set temporary + global variables in memory through Redis, but sometimes you may just want + to assign a value to a variable that only needs to live within a procedure, + event hook or cron. + + ```yaml + - set: + foo: bar + temperature: ${output.get('temperature')} + ``` + + - `return` can now return values too when invoked within a procedure: + + ```yaml + - return: something + # Or + - return: "Result: ${output.get('response')}" + ``` + +- The default logging format is now much more compact. The full body of events + and requests is no longer included by default in `info` mode - instead, a + summary with the message type, ID and response time is logged. The full + payloads can still be logged by enabling `debug` logs through e.g. `-v`. + +## [1.2.3] + +- [[#422](https://git.platypush.tech/platypush/platypush/issues/422)]: adapted + media plugins to support streaming from the yt-dlp process. This allows + videos to have merged audio+video even if they had separate tracks upstream. + +- [`media.*`] Many improvements on the media UI. + +- [`zigbee.mqtt`] Removed synchronous logic from `zigbee.mqtt.device_set`. It + was prone to timeouts as well as pointless - the updated device state will + anyway be received as an event. + +## [1.2.2] + +- Fixed regression on older version of Python that don't fully support + `pyproject.toml` and can't install data files the new way. + +## [1.2.1] + +- Added static `/login` and `/register` Flask fallback routes to prevent 404 if + the client doesn't have JavaScript enabled. + +- Fixed `apt` packages for Debian oldstable after the `setup.py` to + `pyproject.toml` migration. + +- Fixed license string in the `pyproject.toml`. + +## [1.2.0] + +- [#419](https://git.platypush.tech/platypush/platypush/issues/419): added + support for randomly generated API tokens alongside JWT. + +- [#339](https://git.platypush.tech/platypush/platypush/issues/339): added + support for 2FA with OTP codes. + +- [#393](https://git.platypush.tech/platypush/platypush/issues/393): added + `bind_socket` parameter to `backend.http`, so Platypush can listen on (or + exclusively if `listen_port` is null) on a local UNIX socket as well. + +- [#401](https://git.platypush.tech/platypush/platypush/issues/401): added + `--redis-bin` option / `PLATYPUSH_REDIS_BIN` environment variable to support + custom Redis (or drop-in replacements) executables when `--start-redis` is + specified. + +- [#413](https://git.platypush.tech/platypush/platypush/issues/401): added + support for page-specific PWAs. If you navigate to `/plugin/`, + and you install it as a PWA, you'll install a PWA only for that plugin - not + for the whole Platypush UI. + +- Migrated project setup from `setup.py` to `pyproject.toml`. + +- [`70db33b4e`](https://git.platypush.tech/platypush/platypush/commit/70db33b4e): + more application resilience in case Redis goes down. + +- [`ee27b2c4`](https://git.platypush.tech/platypush/platypush/commit/ee27b2c4): + Refactor of all the authentication endpoints into a single `/auth` endpoint: + + - `POST /register` → `POST /auth?type=register` + - `POST /login` → `POST /auth?type=login` + - `POST /auth` → `POST /auth?type=token` + - `POST /auth` → `POST /auth?type=jwt` + +- [`2ccf0050`](https://git.platypush.tech/platypush/platypush/commit/2ccf0050): + Added support for binary content to `qrcode.generate`. + +- [`b69e9500`](https://git.platypush.tech/platypush/platypush/commit/b69e9500): + Support for fullscreen mode on the `camera` plugins UI. ## [1.1.3] - 2024-07-16 diff --git a/LICENSE.txt b/LICENSE.txt index 999f670e2d..d8825171c2 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017, 2020 Fabio Manganiello +Copyright (c) 2017, 2024 Fabio Manganiello Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 42309e7998..36d1f87c0e 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ * [Other Web panels](#other-web-panels) * [Dashboards](#dashboards) * [PWA support](#pwa-support) +- [Two-factor authentication](#two-factor-authentication) - [Mobile app](#mobile-app) - [Browser extension](#browser-extension) - [Tests](#tests) @@ -1247,6 +1248,16 @@ PWA (progressive web app) to work. The Platypush PWA allows you to install a Platypush native-like client on your mobile devices if you don't want to use the full Android app. +## Two-factor authentication + +Support for 2FA over OTP codes requires to enable the +[`otp`](https://docs.platypush.tech/platypush/plugins/otp.html) and +[`qrcode`](https://docs.platypush.tech/platypush/plugins/qrcode.html) plugins. + +After installing the dependencies, you can enable it by navigating to +_Settings_ -> _Users_ from the Web panel. Then select your user, choose _Set up +2FA_ and proceed with the steps on screen to set up your authenticator. + ## Mobile app An [official Android diff --git a/docker-compose.yml b/docker-compose.yml index cff19ee7b8..a9ff67607e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,24 +1,9 @@ services: platypush: - restart: "always" - command: - - platypush - # Comment --start-redis if you want to run an external Redis service - # In such case you'll also have to ensure that the appropriate Redis - # variables are set in the .env file, or the Redis configuration is - # passed in the config.yaml, or use the --redis-host and --redis-port - # command-line options - - --start-redis - - # Custom list of host devices that should be accessible to the container - - # e.g. an Arduino, an ESP-compatible microcontroller, a joystick etc. - # devices: - # - /dev/ttyUSB0 - - # Uncomment if you need plugins that require access to low-level hardware - # (e.g. Bluetooth BLE or GPIO/SPI/I2C) if access to individual devices is - # not enough or isn't practical - # privileged: true + # Replace the build section with the next line if instead of building the + # image from a local checkout you want to pull the latest base + # (Alpine-based) image from the remote registry + # image: "registry.platypush.tech/platypush:latest" build: context: . @@ -31,6 +16,25 @@ services: # Fedora base image # dockerfile: ./platypush/install/docker/fedora.Dockerfile + restart: "always" + command: + - platypush + - --redis-host + - redis + # Or, if you want to run Redis from the same container as Platypush, + # replace --redis-host redis with the line below + # - --start-redis + + # Custom list of host devices that should be accessible to the container - + # e.g. an Arduino, an ESP-compatible microcontroller, a joystick etc. + # devices: + # - /dev/ttyUSB0 + + # Uncomment if you need plugins that require access to low-level hardware + # (e.g. Bluetooth BLE or GPIO/SPI/I2C) if access to individual devices is + # not enough or isn't practical + # privileged: true + # Copy .env.example to .env and modify as needed # env_file: # - .env @@ -40,7 +44,13 @@ services: # expose it - "8008:8008" - volumes: - - /path/to/your/config.yaml:/etc/platypush - - /path/to/a/workdir:/var/lib/platypush + # volumes: + # Replace with a path that contains/will contain your config.yaml file + # - /path/to/your/config:/etc/platypush + # Replace with a path that contains/will contain your working directory + # - /path/to/a/workdir:/var/lib/platypush + # Optionally, use an external volume for the cache # - /path/to/a/cachedir:/var/cache/platypush + + redis: + image: redis diff --git a/docs/source/platypush/plugins/media.omxplayer.rst b/docs/source/platypush/plugins/media.omxplayer.rst deleted file mode 100644 index c5530bf012..0000000000 --- a/docs/source/platypush/plugins/media.omxplayer.rst +++ /dev/null @@ -1,6 +0,0 @@ -``media.omxplayer`` -===================================== - -.. automodule:: platypush.plugins.media.omxplayer - :members: - diff --git a/docs/source/platypush/plugins/procedures.rst b/docs/source/platypush/plugins/procedures.rst new file mode 100644 index 0000000000..455b66d5ba --- /dev/null +++ b/docs/source/platypush/plugins/procedures.rst @@ -0,0 +1,5 @@ +``procedures`` +============== + +.. automodule:: platypush.plugins.procedures + :members: diff --git a/docs/source/plugins.rst b/docs/source/plugins.rst index 5ee5802011..45472c1e17 100644 --- a/docs/source/plugins.rst +++ b/docs/source/plugins.rst @@ -77,7 +77,6 @@ Plugins platypush/plugins/media.kodi.rst platypush/plugins/media.mplayer.rst platypush/plugins/media.mpv.rst - platypush/plugins/media.omxplayer.rst platypush/plugins/media.plex.rst platypush/plugins/media.subtitles.rst platypush/plugins/media.vlc.rst @@ -100,6 +99,7 @@ Plugins platypush/plugins/otp.rst platypush/plugins/pihole.rst platypush/plugins/ping.rst + platypush/plugins/procedures.rst platypush/plugins/pushbullet.rst platypush/plugins/pwm.pca9685.rst platypush/plugins/qrcode.rst diff --git a/platypush/__init__.py b/platypush/__init__.py index f99589a9aa..bf74021578 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -21,9 +21,8 @@ from .utils import run # see https://git.platypush.tech/platypush/platypush/issues/399 when = hook - +__version__ = '1.3.1' __author__ = 'Fabio Manganiello ' -__version__ = '1.1.3' __all__ = [ 'Application', 'Variable', @@ -41,6 +40,7 @@ __all__ = [ 'procedure', 'run', 'when', + '__version__', ] diff --git a/platypush/app/_app.py b/platypush/app/_app.py index 9bcffdba03..4f16e69c29 100644 --- a/platypush/app/_app.py +++ b/platypush/app/_app.py @@ -365,7 +365,13 @@ class Application: elif isinstance(msg, Response): msg.log() elif isinstance(msg, Event): - msg.log() + log.info( + 'Received event: %s.%s[id=%s]', + msg.__class__.__module__, + msg.__class__.__name__, + msg.id, + ) + msg.log(level=logging.DEBUG) self.event_processor.process_event(msg) return _f diff --git a/platypush/backend/http/__init__.py b/platypush/backend/http/__init__.py index d979337eca..bdc21fbf55 100644 --- a/platypush/backend/http/__init__.py +++ b/platypush/backend/http/__init__.py @@ -10,8 +10,6 @@ from multiprocessing import Process from time import time from typing import Mapping, Optional -import psutil - from tornado.httpserver import HTTPServer from tornado.netutil import bind_sockets, bind_unix_socket from tornado.process import cpu_count, fork_processes @@ -421,6 +419,14 @@ class HttpBackend(Backend): workers when the server terminates: https://github.com/tornadoweb/tornado/issues/1912. """ + try: + import psutil + except ImportError: + self.logger.warning( + 'Could not import psutil, hanging worker processes might remain active' + ) + return + parent_pid = ( self._server_proc.pid if self._server_proc and self._server_proc.pid diff --git a/platypush/backend/http/app/routes/auth.py b/platypush/backend/http/app/routes/auth.py index cfdc30e7e0..397805de43 100644 --- a/platypush/backend/http/app/routes/auth.py +++ b/platypush/backend/http/app/routes/auth.py @@ -4,8 +4,15 @@ import logging from flask import Blueprint, request, abort, jsonify +from platypush.backend.http.app.utils import authenticate +from platypush.backend.http.app.utils.auth import ( + UserAuthStatus, + current_user, + get_current_user_or_auth_status, +) from platypush.exceptions.user import UserException -from platypush.user import UserManager +from platypush.user import User, UserManager +from platypush.utils import utcnow auth = Blueprint('auth', __name__) log = logging.getLogger(__name__) @@ -16,39 +23,24 @@ __routes__ = [ ] -@auth.route('/auth', methods=['POST']) -def auth_endpoint(): - """ - Authentication endpoint. It validates the user credentials provided over a JSON payload with the following - structure: +def _dump_session(session, redirect_page='/'): + return jsonify( + { + 'status': 'ok', + 'user_id': session.user_id, + 'session_token': session.session_token, + 'expires_at': session.expires_at, + 'redirect': redirect_page, + } + ) - .. code-block:: json - { - "username": "USERNAME", - "password": "PASSWORD", - "expiry_days": "The generated token should be valid for these many days" - } - - ``expiry_days`` is optional, and if omitted or set to zero the token will be valid indefinitely. - - Upon successful validation, a new JWT token will be generated using the service's self-generated RSA key-pair and it - will be returned to the user. The token can then be used to authenticate API calls to ``/execute`` by setting the - ``Authorization: Bearer `` header upon HTTP calls. - - :return: Return structure: - - .. code-block:: json - - { - "token": "" - } - """ +def _jwt_auth(): try: payload = json.loads(request.get_data(as_text=True)) username, password = payload['username'], payload['password'] - except Exception as e: - log.warning('Invalid payload passed to the auth endpoint: ' + str(e)) + except Exception: + log.warning('Invalid payload passed to the auth endpoint') abort(400) expiry_days = payload.get('expiry_days') @@ -59,8 +51,366 @@ def auth_endpoint(): user_manager = UserManager() try: - return jsonify({ - 'token': user_manager.generate_jwt_token(username=username, password=password, expires_at=expires_at), - }) + return jsonify( + { + 'token': user_manager.generate_jwt_token( + username=username, password=password, expires_at=expires_at + ), + } + ) except UserException as e: abort(401, str(e)) + + +def _session_auth(): + user_manager = UserManager() + session_token = request.cookies.get('session_token') + redirect_page = request.args.get('redirect') or '/' + + if session_token: + user, session = user_manager.authenticate_user_session(session_token)[:2] + if user and session: + return _dump_session(session, redirect_page) + + if request.form: + username = request.form.get('username') + password = request.form.get('password') + code = request.form.get('code') + remember = request.form.get('remember') + expires = utcnow() + datetime.timedelta(days=365) if remember else None + session, status = user_manager.create_user_session( # type: ignore + username=username, + password=password, + code=code, + expires_at=expires, + with_status=True, + ) + + if session: + return _dump_session(session, redirect_page) + + if status: + auth_status = UserAuthStatus.by_status(status) + assert auth_status + return auth_status.to_response() + + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + + +def _create_token(): + payload = {} + try: + payload = json.loads(request.get_data(as_text=True)) + except json.JSONDecodeError: + pass + + user = None + username = payload.get('username') + password = payload.get('password') + code = payload.get('code') + name = payload.get('name') + expiry_days = payload.get('expiry_days') + user_manager = UserManager() + response = get_current_user_or_auth_status(request) + + # Try and authenticate with the credentials passed in the JSON payload + if username and password: + user = user_manager.authenticate_user(username, password, code=code) + if not isinstance(user, User): + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + + if not user: + if not (response and isinstance(response, User)): + return response.to_response() + + user = response + + expires_at = None + if expiry_days: + expires_at = datetime.datetime.now() + datetime.timedelta(days=expiry_days) + + try: + token = UserManager().generate_api_token( + username=str(user.username), name=name, expires_at=expires_at + ) + return jsonify({'token': token}) + except UserException: + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + + +def _delete_token(): + try: + payload = json.loads(request.get_data(as_text=True)) + token = payload.get('token') + assert token + except (AssertionError, json.JSONDecodeError): + return UserAuthStatus.INVALID_TOKEN.to_response() + + user_manager = UserManager() + + try: + token = payload.get('token') + if not token: + return UserAuthStatus.INVALID_TOKEN.to_response() + + ret = user_manager.delete_api_token(token) + if not ret: + return UserAuthStatus.INVALID_TOKEN.to_response() + + return jsonify({'status': 'ok'}) + except UserException: + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + + +def _register_route(): + """Registration endpoint""" + user_manager = UserManager() + session_token = request.cookies.get('session_token') + redirect_page = request.args.get('redirect') or '/' + + if session_token: + user, session = user_manager.authenticate_user_session(session_token)[:2] + if user and session: + return _dump_session(session, redirect_page) + + if user_manager.get_user_count() > 0: + return UserAuthStatus.REGISTRATION_DISABLED.to_response() + + if not request.form: + return UserAuthStatus.MISSING_USERNAME.to_response() + + username = request.form.get('username') + password = request.form.get('password') + confirm_password = request.form.get('confirm_password') + remember = request.form.get('remember') + + if not username: + return UserAuthStatus.MISSING_USERNAME.to_response() + if not password: + return UserAuthStatus.MISSING_PASSWORD.to_response() + if password != confirm_password: + return UserAuthStatus.PASSWORD_MISMATCH.to_response() + + user_manager.create_user(username=username, password=password) + session, status = user_manager.create_user_session( # type: ignore + username=username, + password=password, + expires_at=(utcnow() + datetime.timedelta(days=365) if remember else None), + with_status=True, + ) + + if session: + return _dump_session(session, redirect_page) + + if status: + return status.to_response() # type: ignore + + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + + +def _auth_get(): + """ + Get the current authentication status of the user session. + """ + user_manager = UserManager() + session_token = request.cookies.get('session_token') + redirect_page = request.args.get('redirect') or '/' + user, session, status = user_manager.authenticate_user_session( # type: ignore + session_token, with_status=True + ) + + if user and session: + return _dump_session(session, redirect_page) + + response = get_current_user_or_auth_status(request) + if isinstance(response, User): + user = response + return jsonify( + {'status': 'ok', 'user_id': user.user_id, 'username': user.username} + ) + + if response: + status = response + + if status: + if not isinstance(status, UserAuthStatus): + status = UserAuthStatus.by_status(status) + if not status: + status = UserAuthStatus.INVALID_CREDENTIALS + return status.to_response() + + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + + +def _auth_post(): + """ + Authenticate the user session. + """ + auth_type = request.args.get('type') or 'token' + + if auth_type == 'token': + return _create_token() + + if auth_type == 'jwt': + return _jwt_auth() + + if auth_type == 'register': + return _register_route() + + if auth_type == 'login': + return _session_auth() + + return UserAuthStatus.INVALID_AUTH_TYPE.to_response() + + +def _auth_delete(): + """ + Logout/invalidate a token or the current user session. + """ + # Delete the specified API token if it's passed on the JSON payload + token = None + try: + payload = json.loads(request.get_data(as_text=True)) + token = payload.get('token') + except json.JSONDecodeError: + pass + + if token: + return _delete_token() + + user_manager = UserManager() + session_token = request.cookies.get('session_token') + redirect_page = request.args.get('redirect') or '/' + + if session_token: + user, session = user_manager.authenticate_user_session(session_token)[:2] + if user and session: + user_manager.delete_user_session(session_token) + return jsonify({'status': 'ok', 'redirect': redirect_page}) + + return UserAuthStatus.INVALID_SESSION.to_response() + + +def _tokens_get(): + user = current_user() + if not user: + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + + tokens = UserManager().get_api_tokens(username=str(user.username)) + return jsonify( + { + 'tokens': [ + { + 'id': t.id, + 'name': t.name, + 'created_at': t.created_at, + 'expires_at': t.expires_at, + } + for t in tokens + ] + } + ) + + +def _tokens_delete(): + args = {} + + try: + payload = json.loads(request.get_data(as_text=True)) + token = payload.get('token') + if token: + args['token'] = token + else: + token_id = payload.get('token_id') + if token_id: + args['token_id'] = token_id + + assert args, 'No token or token_id specified' + except (AssertionError, json.JSONDecodeError): + return UserAuthStatus.INVALID_TOKEN.to_response() + + user_manager = UserManager() + user = current_user() + if not user: + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + + args['username'] = str(user.username) + + try: + user_manager.delete_api_token(**args) + return jsonify({'status': 'ok'}) + except AssertionError as e: + return ( + jsonify({'status': 'error', 'error': 'bad_request', 'message': str(e)}), + 400, + ) + except UserException: + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + except Exception as e: + log.error('Token deletion error', exc_info=e) + + return UserAuthStatus.UNKNOWN_ERROR.to_response() + + +@auth.route('/auth', methods=['GET', 'POST', 'DELETE']) +def auth_endpoint(): + """ + Authentication endpoint. It validates the user credentials provided over a + JSON payload with the following structure: + + .. code-block:: json + + { + "username": "USERNAME", + "password": "PASSWORD", + "code": "2FA_CODE", + "expiry_days": "The generated token should be valid for these many days" + } + + ``expiry_days`` is optional, and if omitted or set to zero the token will + be valid indefinitely. + + Upon successful validation, a new JWT token will be generated using the + service's self-generated RSA key-pair and it will be returned to the user. + The token can then be used to authenticate API calls to ``/execute`` by + setting the ``Authorization: Bearer `` header upon HTTP calls. + + :return: Return structure: + + .. code-block:: json + + { + "token": "" + } + """ + if request.method == 'GET': + return _auth_get() + + if request.method == 'POST': + return _auth_post() + + if request.method == 'DELETE': + return _auth_delete() + + return UserAuthStatus.INVALID_METHOD.to_response() + + +@auth.route('/tokens', methods=['GET', 'DELETE']) +@authenticate() +def tokens_route(): + """ + :return: The list of API tokens created by the logged in user. + Note that this endpoint is only accessible by authenticated users + and it won't return the clear-text token values, as those aren't + stored in the database anyway. + """ + if request.method == 'GET': + return _tokens_get() + + if request.method == 'DELETE': + return _tokens_delete() + + return UserAuthStatus.INVALID_METHOD.to_response() + + +# vim:sw=4:ts=4:et: diff --git a/platypush/backend/http/app/routes/index.py b/platypush/backend/http/app/routes/index.py index 9b9a25dd4d..eedf1a64ae 100644 --- a/platypush/backend/http/app/routes/index.py +++ b/platypush/backend/http/app/routes/index.py @@ -14,8 +14,26 @@ __routes__ = [ @index.route('/') @authenticate() -def index(): - """ Route to the main web panel """ +def index_route(): + """Route to the main web panel""" + return render_template('index.html', utils=HttpUtils) + + +@index.route('/login', methods=['GET']) +def login_route(): + """ + Login GET route. It simply renders the index template, which will + redirect to the login page if the user is not authenticated. + """ + return render_template('index.html', utils=HttpUtils) + + +@index.route('/register', methods=['GET']) +def register_route(): + """ + Register GET route. It simply renders the index template, which will + redirect to the registration page if no users are present. + """ return render_template('index.html', utils=HttpUtils) diff --git a/platypush/backend/http/app/routes/login.py b/platypush/backend/http/app/routes/login.py deleted file mode 100644 index 94f19b2eba..0000000000 --- a/platypush/backend/http/app/routes/login.py +++ /dev/null @@ -1,56 +0,0 @@ -import datetime -import re - -from flask import Blueprint, request, redirect, render_template, make_response - -from platypush.backend.http.app import template_folder -from platypush.backend.http.utils import HttpUtils -from platypush.user import UserManager -from platypush.utils import utcnow - -login = Blueprint('login', __name__, template_folder=template_folder) - -# Declare routes list -__routes__ = [ - login, -] - - -@login.route('/login', methods=['GET', 'POST']) -def login(): - """Login page""" - user_manager = UserManager() - session_token = request.cookies.get('session_token') - - redirect_page = request.args.get('redirect') - if not redirect_page: - redirect_page = request.headers.get('Referer', '/') - if re.search('(^https?://[^/]+)?/login[^?#]?', redirect_page): - # Prevent redirect loop - redirect_page = '/' - - if session_token: - user, session = user_manager.authenticate_user_session(session_token) - if user: - return redirect(redirect_page, 302) # lgtm [py/url-redirection] - - if request.form: - username = request.form.get('username') - password = request.form.get('password') - remember = request.form.get('remember') - expires = utcnow() + datetime.timedelta(days=365) if remember else None - - session = user_manager.create_user_session( - username=username, password=password, expires_at=expires - ) - - if session: - redirect_target = redirect(redirect_page, 302) # lgtm [py/url-redirection] - response = make_response(redirect_target) - response.set_cookie('session_token', session.session_token, expires=expires) - return response - - return render_template('index.html', utils=HttpUtils) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/http/app/routes/logout.py b/platypush/backend/http/app/routes/logout.py index 72c68a812b..aed2afc477 100644 --- a/platypush/backend/http/app/routes/logout.py +++ b/platypush/backend/http/app/routes/logout.py @@ -12,7 +12,7 @@ __routes__ = [ @logout.route('/logout', methods=['GET', 'POST']) -def logout(): +def logout_route(): """Logout page""" user_manager = UserManager() redirect_page = request.args.get( @@ -23,7 +23,7 @@ def logout(): if not session_token: abort(417, 'Not logged in') - user, _ = user_manager.authenticate_user_session(session_token) + user, _ = user_manager.authenticate_user_session(session_token)[:2] if not user: abort(403, 'Invalid session token') diff --git a/platypush/backend/http/app/routes/otp.py b/platypush/backend/http/app/routes/otp.py new file mode 100644 index 0000000000..98e37c443b --- /dev/null +++ b/platypush/backend/http/app/routes/otp.py @@ -0,0 +1,220 @@ +from typing import List, Optional + +from flask import Blueprint, jsonify, request + +from platypush.backend.http.app import template_folder +from platypush.backend.http.app.utils import UserAuthStatus, authenticate +from platypush.backend.http.utils import HttpUtils +from platypush.exceptions.user import ( + InvalidCredentialsException, + InvalidOtpCodeException, + UserException, +) +from platypush.config import Config +from platypush.context import get_plugin +from platypush.user import UserManager + +otp = Blueprint('otp', __name__, template_folder=template_folder) + +# Declare routes list +__routes__ = [ + otp, +] + + +def _get_otp_and_qrcode(): + otp = get_plugin('otp') # pylint: disable=redefined-outer-name + qrcode = get_plugin('qrcode') + assert ( + otp and qrcode + ), 'The otp and/or qrcode plugins are not available in your installation' + + return otp, qrcode + + +def _get_username(): + user = HttpUtils.current_user() + if not user: + raise InvalidCredentialsException('Invalid user session') + + return str(user.username) + + +def _get_otp_uri_and_qrcode(username: str, otp_secret: Optional[str] = None): + if not otp_secret: + return None, None + + otp, qrcode = _get_otp_and_qrcode() # pylint: disable=redefined-outer-name + otp_uri = ( + otp.provision_time_otp( + name=username, + secret=otp_secret, + issuer=f'platypush@{Config.get_device_id()}', + ).output + if otp_secret + else None + ) + + otp_qrcode = ( + qrcode.generate(content=otp_uri, format='png').output.get('data') + if otp_uri + else None + ) + + return otp_uri, otp_qrcode + + +def _verify_code(code: str, otp_secret: str) -> bool: + otp, _ = _get_otp_and_qrcode() # pylint: disable=redefined-outer-name + return otp.verify_time_otp(otp=code, secret=otp_secret).output + + +def _dump_response( + username: str, + otp_secret: Optional[str] = None, + backup_codes: Optional[List[str]] = None, +): + otp_uri, otp_qrcode = _get_otp_uri_and_qrcode(username, otp_secret) + return jsonify( + { + 'username': username, + 'otp_secret': otp_secret, + 'otp_uri': otp_uri, + 'qrcode': otp_qrcode, + 'backup_codes': backup_codes or [], + } + ) + + +def _get_otp(): + username = _get_username() + user_manager = UserManager() + otp_secret = user_manager.get_otp_secret(username) + return _dump_response( + username=username, + otp_secret=otp_secret, + ) + + +def _authenticate_user(username: str, password: Optional[str]): + assert password, 'The password field is required when setting up OTP' + user, auth_status = UserManager().authenticate_user( # type: ignore + username, password, skip_2fa=True, with_status=True + ) + + if not user: + raise InvalidCredentialsException(auth_status.value[2]) + + +def _post_otp(): + body = request.json + assert body, 'Invalid request body' + + username = _get_username() + dry_run = body.get('dry_run', False) + otp_secret = body.get('otp_secret') + + if not dry_run: + _authenticate_user(username, body.get('password')) + + if otp_secret: + code = body.get('code') + assert code, 'The code field is required when setting up OTP' + + if not _verify_code(code, otp_secret): + raise InvalidOtpCodeException() + + user_manager = UserManager() + user_otp, backup_codes = user_manager.enable_otp( + username=username, + otp_secret=otp_secret, + dry_run=dry_run, + ) + + return _dump_response( + username=username, + otp_secret=str(user_otp.otp_secret), + backup_codes=backup_codes, + ) + + +def _delete_otp(): + body = request.json + assert body, 'Invalid request body' + + username = _get_username() + _authenticate_user(username, body.get('password')) + + user_manager = UserManager() + user_manager.disable_otp(username) + return jsonify({'status': 'ok'}) + + +@otp.route('/otp/config', methods=['GET', 'POST', 'DELETE']) +@authenticate() +def otp_route(): + """ + :return: The user's current MFA/OTP configuration: + + .. code-block:: json + + { + "username": "testuser", + "otp_secret": "JBSA6ZUZ5DPEK7YV", + "otp_uri": "otpauth://totp/testuser?secret=JBSA6ZUZ5DPEK7YV&issuer=platypush@localhost", + "qrcode": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAABwklEQVR4nO3dMW7CQBAF0", + "backup_codes": [ + "1A2B3C4D5E", + "6F7G8H9I0J", + "KLMNOPQRST", + "UVWXYZ1234", + "567890ABCD", + "EFGHIJKLMN", + "OPQRSTUVWX", + "YZ12345678", + "90ABCDEF12", + "34567890AB" + ] + } + + """ + try: + if request.method.lower() == 'get': + return _get_otp() + + if request.method.lower() == 'post': + return _post_otp() + + if request.method.lower() == 'delete': + return _delete_otp() + + return jsonify({'error': 'Method not allowed'}), 405 + except AssertionError as e: + return jsonify({'error': str(e)}), 400 + except InvalidCredentialsException: + return UserAuthStatus.INVALID_CREDENTIALS.to_response() + except InvalidOtpCodeException: + return UserAuthStatus.INVALID_OTP_CODE.to_response() + except UserException as e: + return jsonify({'error': e.__class__.__name__, 'message': str(e)}), 401 + except Exception as e: + HttpUtils.log.error(f'Error while processing OTP request: {e}', exc_info=True) + return jsonify({'error': str(e)}), 500 + + +@otp.route('/otp/refresh-codes', methods=['POST']) +def refresh_codes(): + """ + :return: A new set of backup codes for the user. + """ + username = _get_username() + user_manager = UserManager() + otp_secret = user_manager.get_otp_secret(username) + if not otp_secret: + return jsonify({'error': 'OTP not configured for the user'}), 400 + + backup_codes = user_manager.refresh_user_backup_codes(username) + return jsonify({'backup_codes': backup_codes}) + + +# vim:sw=4:ts=4:et: diff --git a/platypush/backend/http/app/routes/register.py b/platypush/backend/http/app/routes/register.py deleted file mode 100644 index 0150d8be53..0000000000 --- a/platypush/backend/http/app/routes/register.py +++ /dev/null @@ -1,71 +0,0 @@ -import datetime -import re - -from flask import Blueprint, request, redirect, render_template, make_response, abort - -from platypush.backend.http.app import template_folder -from platypush.backend.http.utils import HttpUtils -from platypush.user import UserManager -from platypush.utils import utcnow - -register = Blueprint('register', __name__, template_folder=template_folder) - -# Declare routes list -__routes__ = [ - register, -] - - -@register.route('/register', methods=['GET', 'POST']) -def register(): - """Registration page""" - user_manager = UserManager() - redirect_page = request.args.get('redirect') - if not redirect_page: - redirect_page = request.headers.get('Referer', '/') - if re.search('(^https?://[^/]+)?/register[^?#]?', redirect_page): - # Prevent redirect loop - redirect_page = '/' - - session_token = request.cookies.get('session_token') - - if session_token: - user, session = user_manager.authenticate_user_session(session_token) - if user: - return redirect(redirect_page, 302) # lgtm [py/url-redirection] - - if user_manager.get_user_count() > 0: - return redirect( - '/login?redirect=' + redirect_page, 302 - ) # lgtm [py/url-redirection] - - if request.form: - username = request.form.get('username') - password = request.form.get('password') - confirm_password = request.form.get('confirm_password') - remember = request.form.get('remember') - - if password == confirm_password: - user_manager.create_user(username=username, password=password) - session = user_manager.create_user_session( - username=username, - password=password, - expires_at=( - utcnow() + datetime.timedelta(days=1) if not remember else None - ), - ) - - if session: - redirect_target = redirect( - redirect_page, 302 - ) # lgtm [py/url-redirection] - response = make_response(redirect_target) - response.set_cookie('session_token', session.session_token) - return response - else: - abort(400, 'Password mismatch') - - return render_template('index.html', utils=HttpUtils) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/http/app/streaming/_base.py b/platypush/backend/http/app/streaming/_base.py index 862550324f..962b54b4e5 100644 --- a/platypush/backend/http/app/streaming/_base.py +++ b/platypush/backend/http/app/streaming/_base.py @@ -7,7 +7,7 @@ from typing import Optional from tornado.web import RequestHandler, stream_request_body from platypush.backend.http.app.utils import logger -from platypush.backend.http.app.utils.auth import AuthStatus, get_auth_status +from platypush.backend.http.app.utils.auth import UserAuthStatus, get_auth_status from ..mixins import PubSubMixin @@ -29,7 +29,7 @@ class StreamingRoute(RequestHandler, PubSubMixin, ABC): """ if self.auth_required: auth_status = get_auth_status(self.request) - if auth_status != AuthStatus.OK: + if auth_status != UserAuthStatus.OK: self.send_error(auth_status.value.code, error=auth_status.value.message) return diff --git a/platypush/backend/http/app/streaming/plugins/file.py b/platypush/backend/http/app/streaming/plugins/file.py index b841bfa57f..a92b62737b 100644 --- a/platypush/backend/http/app/streaming/plugins/file.py +++ b/platypush/backend/http/app/streaming/plugins/file.py @@ -1,7 +1,8 @@ import os +import pathlib from contextlib import contextmanager from datetime import datetime as dt -from typing import Optional, Tuple +from typing import IO, Optional, Tuple from tornado.web import stream_request_body @@ -17,6 +18,8 @@ class FileRoute(StreamingRoute): """ BUFSIZE = 1024 + _bytes_written = 0 + _out_f: Optional[IO[bytes]] = None @classmethod def path(cls) -> str: @@ -39,6 +42,10 @@ class FileRoute(StreamingRoute): def file_size(self) -> int: return os.path.getsize(self.file_path) + @property + def _content_length(self) -> int: + return int(self.request.headers.get('Content-Length', 0)) + @property def range(self) -> Tuple[Optional[int], Optional[int]]: range_hdr = self.request.headers.get('Range') @@ -105,6 +112,77 @@ class FileRoute(StreamingRoute): self.finish() + def on_finish(self) -> None: + if self._out_f: + try: + if not (self._out_f and self._out_f.closed): + self._out_f.close() + except Exception as e: + self.logger.warning('Error while closing the output file: %s', e) + + self._out_f = None + + return super().on_finish() + + def _validate_upload(self, force: bool = False) -> bool: + if not self.file_path: + self.write_error(400, 'Missing path argument') + return False + + if not self._out_f: + if not force and os.path.exists(self.file_path): + self.write_error(409, f'{self.file_path} already exists') + return False + + self._bytes_written = 0 + dir_path = os.path.dirname(self.file_path) + + try: + pathlib.Path(dir_path).mkdir(parents=True, exist_ok=True) + self._out_f = open( # pylint: disable=consider-using-with + self.file_path, 'wb' + ) + except PermissionError: + self.write_error(403, 'Permission denied') + return False + + return True + + def finish(self, *args, **kwargs): # type: ignore + try: + return super().finish(*args, **kwargs) + except Exception as e: + self.logger.warning('Error while finishing the request: %s', e) + + def data_received(self, chunk: bytes): + # Ignore unless we're in POST/PUT mode + if self.request.method not in ('POST', 'PUT'): + return + + force = self.request.method == 'PUT' + if not self._validate_upload(force=force): + self.finish() + return + + if not chunk: + self.logger.debug('Received EOF from client') + self.finish() + return + + assert self._out_f + self._out_f.write(chunk) + self._out_f.flush() + self._bytes_written += len(chunk) + self.logger.debug( + 'Written chunk of size %d to %s, progress: %d/%d', + len(chunk), + self.file_path, + self._bytes_written, + self._content_length, + ) + + self.flush() + def get(self) -> None: with self._serve() as f: if f: @@ -119,3 +197,9 @@ class FileRoute(StreamingRoute): def head(self) -> None: with self._serve(): pass + + def post(self) -> None: + self.logger.info('Receiving file POST upload request for %r', self.file_path) + + def put(self) -> None: + self.logger.info('Receiving file PUT upload request for %r', self.file_path) diff --git a/platypush/backend/http/app/streaming/plugins/media/_register.py b/platypush/backend/http/app/streaming/plugins/media/_register.py index de8d0fa852..3c00d20eae 100644 --- a/platypush/backend/http/app/streaming/plugins/media/_register.py +++ b/platypush/backend/http/app/streaming/plugins/media/_register.py @@ -3,7 +3,9 @@ from typing import Optional from platypush.backend.http.app.utils import logger, send_request from platypush.backend.http.media.handlers import MediaHandler -from ._registry import load_media_map, save_media_map +from ._registry import clear_media_map, load_media_map, save_media_map + +_init = False def get_media_url(media_id: str) -> str: @@ -17,6 +19,12 @@ def register_media(source: str, subtitles: Optional[str] = None) -> MediaHandler """ Registers a media file and returns its associated media handler. """ + global _init + + if not _init: + clear_media_map() + _init = True + media_id = MediaHandler.get_media_id(source) media_url = get_media_url(media_id) media_map = load_media_map() diff --git a/platypush/backend/http/app/streaming/plugins/media/_registry.py b/platypush/backend/http/app/streaming/plugins/media/_registry.py index 55202e72f1..278085a696 100644 --- a/platypush/backend/http/app/streaming/plugins/media/_registry.py +++ b/platypush/backend/http/app/streaming/plugins/media/_registry.py @@ -25,10 +25,15 @@ def load_media_map() -> MediaMap: logger().warning('Could not load media map: %s', e) return {} - return { - media_id: MediaHandler.build(**media_info) - for media_id, media_info in media_map.items() - } + parsed_map = {} + for media_id, media_info in media_map.items(): + try: + parsed_map[media_id] = MediaHandler.build(**media_info) + except Exception as e: + logger().debug('Could not load media %s: %s', media_id, e) + continue + + return parsed_map def save_media_map(new_map: MediaMap): @@ -38,3 +43,12 @@ def save_media_map(new_map: MediaMap): with media_map_lock: redis = get_redis() redis.mset({MEDIA_MAP_VAR: json.dumps(new_map, cls=Message.Encoder)}) + + +def clear_media_map(): + """ + Clears the media map from the server. + """ + with media_map_lock: + redis = get_redis() + redis.delete(MEDIA_MAP_VAR) diff --git a/platypush/backend/http/app/streaming/plugins/media/_stream.py b/platypush/backend/http/app/streaming/plugins/media/_stream.py index 1317d4b2c6..da8c019568 100644 --- a/platypush/backend/http/app/streaming/plugins/media/_stream.py +++ b/platypush/backend/http/app/streaming/plugins/media/_stream.py @@ -17,7 +17,7 @@ class MediaStreamRoute(StreamingRoute): Route for media streams. """ - SUPPORTED_METHODS = ['GET', 'PUT', 'DELETE'] + SUPPORTED_METHODS = ['GET', 'HEAD', 'PUT', 'DELETE'] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -50,6 +50,23 @@ class MediaStreamRoute(StreamingRoute): except Exception as e: self._on_error(e) + def head(self, media_id: Optional[str] = None): + """ + Streams a media resource by ID. + """ + + if not media_id: + self.finish() + return + + # Strip the extension + media_id = '.'.join(media_id.split('.')[:-1]) + + try: + self.stream_media(media_id, head=True) + except Exception as e: + self._on_error(e) + def put(self, *_, **__): """ The `PUT` route is used to prepare a new media resource for streaming. @@ -93,10 +110,10 @@ class MediaStreamRoute(StreamingRoute): """ Returns the list of registered media resources. """ - self.add_header('Content-Type', 'application/json') + self.set_header('Content-Type', 'application/json') self.finish(json.dumps([dict(media) for media in load_media_map().values()])) - def stream_media(self, media_id: str): + def stream_media(self, media_id: str, head: bool = False): """ Route to stream a media file given its ID. """ @@ -107,11 +124,11 @@ class MediaStreamRoute(StreamingRoute): range_hdr = self.request.headers.get('Range') content_length = media_hndl.content_length - self.add_header('Accept-Ranges', 'bytes') - self.add_header('Content-Type', media_hndl.mime_type) + self.set_header('Accept-Ranges', 'bytes') + self.set_header('Content-Type', media_hndl.mime_type) if 'download' in self.request.arguments: - self.add_header( + self.set_header( 'Content-Disposition', 'attachment' + ('; filename="{media_hndl.filename}"' if media_hndl.filename else ''), @@ -129,7 +146,7 @@ class MediaStreamRoute(StreamingRoute): content_length = to_bytes - from_bytes self.set_status(206) - self.add_header( + self.set_header( 'Content-Range', f'bytes {from_bytes}-{to_bytes}/{media_hndl.content_length}', ) @@ -137,7 +154,13 @@ class MediaStreamRoute(StreamingRoute): from_bytes = 0 to_bytes = STREAMING_BLOCK_SIZE - self.add_header('Content-Length', str(content_length)) + self.set_header('Content-Length', str(content_length)) + + if head: + self.flush() + self.finish() + return + for chunk in media_hndl.get_data( from_bytes=from_bytes, to_bytes=to_bytes, diff --git a/platypush/backend/http/app/utils/__init__.py b/platypush/backend/http/app/utils/__init__.py index ab19ce73dd..51ffe4b92d 100644 --- a/platypush/backend/http/app/utils/__init__.py +++ b/platypush/backend/http/app/utils/__init__.py @@ -1,7 +1,9 @@ from .auth import ( + UserAuthStatus, authenticate, authenticate_token, authenticate_user_pass, + current_user, get_auth_status, ) from .bus import bus, send_message, send_request @@ -17,10 +19,12 @@ from .streaming import get_streaming_routes from .ws import get_ws_routes __all__ = [ + 'UserAuthStatus', 'authenticate', 'authenticate_token', 'authenticate_user_pass', 'bus', + 'current_user', 'get_auth_status', 'get_http_port', 'get_ip_or_hostname', diff --git a/platypush/backend/http/app/utils/auth/__init__.py b/platypush/backend/http/app/utils/auth/__init__.py index 7d1b5ef65c..bcddd34f3c 100644 --- a/platypush/backend/http/app/utils/auth/__init__.py +++ b/platypush/backend/http/app/utils/auth/__init__.py @@ -1,15 +1,15 @@ import base64 from functools import wraps -from typing import Optional +from typing import Optional, Union -from flask import request, redirect, jsonify +from flask import request, redirect from flask.wrappers import Response from platypush.config import Config -from platypush.user import UserManager +from platypush.user import User, UserManager from ..logger import logger -from .status import AuthStatus +from .status import UserAuthStatus user_manager = UserManager() @@ -41,8 +41,8 @@ def get_cookie(req, name: str) -> Optional[str]: return cookie.value -def authenticate_token(req): - token = Config.get('token') +def authenticate_token(req) -> Optional[User]: + global_token = Config.get('user.global_token') user_token = None if 'X-Token' in req.headers: @@ -55,14 +55,27 @@ def authenticate_token(req): user_token = get_arg(req, 'token') if not user_token: - return False + return None try: - user_manager.validate_jwt_token(user_token) - return True + # Stantard API token authentication + return user_manager.validate_api_token(user_token) except Exception as e: - logger().debug(str(e)) - return bool(token and user_token == token) + try: + # Legacy JWT token authentication + return user_manager.validate_jwt_token(user_token) + except Exception as ee: + logger().debug( + 'Invalid token. API token error: %s, JWT token error: %s', e, ee + ) + + # Legacy global token authentication. + # The global token should be specified in the configuration file, + # as a root parameter named `token`. + if bool(global_token and user_token == global_token): + return User(username='__token__', user_id=1) + + logger().info(e) def authenticate_user_pass(req): @@ -91,7 +104,7 @@ def authenticate_user_pass(req): return user_manager.authenticate_user(username, password) -def authenticate_session(req): +def authenticate_session(req) -> Optional[User]: user = None # Check the X-Session-Token header @@ -106,9 +119,9 @@ def authenticate_session(req): user_session_token = get_cookie(req, 'session_token') if user_session_token: - user, _ = user_manager.authenticate_user_session(user_session_token) + user, _ = user_manager.authenticate_user_session(user_session_token)[:2] - return user is not None + return user def authenticate( @@ -128,18 +141,18 @@ def authenticate( skip_auth_methods=skip_auth_methods, ) - if auth_status == AuthStatus.OK: + if auth_status == UserAuthStatus.OK: return f(*args, **kwargs) if json: - return jsonify(auth_status.to_dict()), auth_status.value.code + return auth_status.to_response() - if auth_status == AuthStatus.NO_USERS: + if auth_status == UserAuthStatus.REGISTRATION_REQUIRED: return redirect( f'/register?redirect={redirect_page or request.url}', 307 ) - if auth_status == AuthStatus.UNAUTHORIZED: + if auth_status == UserAuthStatus.INVALID_CREDENTIALS: return redirect(f'/login?redirect={redirect_page or request.url}', 307) return Response( @@ -154,43 +167,67 @@ def authenticate( # pylint: disable=too-many-return-statements -def get_auth_status(req, skip_auth_methods=None) -> AuthStatus: +def get_current_user_or_auth_status( + req, skip_auth_methods=None +) -> Union[User, UserAuthStatus]: """ - Check against the available authentication methods (except those listed in - ``skip_auth_methods``) if the user is properly authenticated. + Returns the current user if authenticated, and the authentication status if + ``with_status`` is True. """ - n_users = user_manager.get_user_count() skip_methods = skip_auth_methods or [] # User/pass HTTP authentication http_auth_ok = True if n_users > 0 and 'http' not in skip_methods: - http_auth_ok = authenticate_user_pass(req) - if http_auth_ok: - return AuthStatus.OK + response = authenticate_user_pass(req) + if response: + user = response[0] if isinstance(response, tuple) else response + if user: + return user # Token-based authentication token_auth_ok = True if 'token' not in skip_methods: - token_auth_ok = authenticate_token(req) - if token_auth_ok: - return AuthStatus.OK + user = authenticate_token(req) + if user: + return user # Session token based authentication session_auth_ok = True if n_users > 0 and 'session' not in skip_methods: - return AuthStatus.OK if authenticate_session(req) else AuthStatus.UNAUTHORIZED + user = authenticate_session(req) + if user: + return user + + return UserAuthStatus.INVALID_CREDENTIALS # At least a user should be created before accessing an authenticated resource if n_users == 0 and 'session' not in skip_methods: - return AuthStatus.NO_USERS + return UserAuthStatus.REGISTRATION_REQUIRED if ( # pylint: disable=too-many-boolean-expressions ('http' not in skip_methods and http_auth_ok) or ('token' not in skip_methods and token_auth_ok) or ('session' not in skip_methods and session_auth_ok) ): - return AuthStatus.OK + return UserAuthStatus.OK - return AuthStatus.UNAUTHORIZED + return UserAuthStatus.INVALID_CREDENTIALS + + +def get_auth_status(req, skip_auth_methods=None) -> UserAuthStatus: + """ + Check against the available authentication methods (except those listed in + ``skip_auth_methods``) if the user is properly authenticated. + """ + ret = get_current_user_or_auth_status(req, skip_auth_methods=skip_auth_methods) + return UserAuthStatus.OK if isinstance(ret, User) else ret + + +def current_user() -> Optional[User]: + """ + Returns the current user if authenticated. + """ + ret = get_current_user_or_auth_status(request) + return ret if isinstance(ret, User) else None diff --git a/platypush/backend/http/app/utils/auth/status.py b/platypush/backend/http/app/utils/auth/status.py index ee64fb51d9..abf3beecfd 100644 --- a/platypush/backend/http/app/utils/auth/status.py +++ b/platypush/backend/http/app/utils/auth/status.py @@ -1,21 +1,76 @@ from collections import namedtuple from enum import Enum +from flask import jsonify -StatusValue = namedtuple('StatusValue', ['code', 'message']) +from platypush.user import AuthenticationStatus + +StatusValue = namedtuple('StatusValue', ['code', 'error', 'message']) -class AuthStatus(Enum): +class UserAuthStatus(Enum): """ Models the status of the authentication. """ - OK = StatusValue(200, 'OK') - UNAUTHORIZED = StatusValue(401, 'Unauthorized') - NO_USERS = StatusValue(412, 'Please create a user first') + OK = StatusValue(200, AuthenticationStatus.OK, 'OK') + INVALID_AUTH_TYPE = StatusValue( + 400, AuthenticationStatus.INVALID_AUTH_TYPE, 'Invalid authentication type' + ) + INVALID_CREDENTIALS = StatusValue( + 401, AuthenticationStatus.INVALID_CREDENTIALS, 'Invalid credentials' + ) + INVALID_JWT_TOKEN = StatusValue( + 401, AuthenticationStatus.INVALID_JWT_TOKEN, 'Invalid JWT token' + ) + INVALID_OTP_CODE = StatusValue( + 401, AuthenticationStatus.INVALID_OTP_CODE, 'Invalid OTP code' + ) + INVALID_METHOD = StatusValue( + 405, AuthenticationStatus.INVALID_METHOD, 'Invalid method' + ) + MISSING_OTP_CODE = StatusValue( + 401, AuthenticationStatus.MISSING_OTP_CODE, 'Missing OTP code' + ) + MISSING_PASSWORD = StatusValue( + 400, AuthenticationStatus.MISSING_PASSWORD, 'Missing password' + ) + INVALID_SESSION = StatusValue( + 401, AuthenticationStatus.INVALID_CREDENTIALS, 'Invalid session' + ) + INVALID_TOKEN = StatusValue( + 400, AuthenticationStatus.INVALID_JWT_TOKEN, 'Invalid token' + ) + MISSING_USERNAME = StatusValue( + 400, AuthenticationStatus.MISSING_USERNAME, 'Missing username' + ) + PASSWORD_MISMATCH = StatusValue( + 400, AuthenticationStatus.PASSWORD_MISMATCH, 'Password mismatch' + ) + REGISTRATION_DISABLED = StatusValue( + 401, AuthenticationStatus.REGISTRATION_DISABLED, 'Registrations are disabled' + ) + REGISTRATION_REQUIRED = StatusValue( + 412, AuthenticationStatus.REGISTRATION_REQUIRED, 'Please create a user first' + ) + UNKNOWN_ERROR = StatusValue( + 500, AuthenticationStatus.UNKNOWN_ERROR, 'Unknown error' + ) def to_dict(self): return { 'code': self.value[0], - 'message': self.value[1], + 'error': self.value[1].name, + 'message': self.value[2], } + + def to_response(self): + return jsonify(self.to_dict()), self.value[0] + + @staticmethod + def by_status(status: AuthenticationStatus): + for auth_status in UserAuthStatus: + if auth_status.value[1] == status: + return auth_status + + return None diff --git a/platypush/backend/http/app/ws/_base.py b/platypush/backend/http/app/ws/_base.py index 3f2ba3d08b..4cdfee4efe 100644 --- a/platypush/backend/http/app/ws/_base.py +++ b/platypush/backend/http/app/ws/_base.py @@ -5,7 +5,7 @@ from threading import Thread from tornado.ioloop import IOLoop from tornado.websocket import WebSocketHandler -from platypush.backend.http.app.utils.auth import AuthStatus, get_auth_status +from platypush.backend.http.app.utils.auth import UserAuthStatus, get_auth_status from ..mixins import MessageType, PubSubMixin @@ -25,7 +25,7 @@ class WSRoute(WebSocketHandler, Thread, PubSubMixin, ABC): def open(self, *_, **__): auth_status = get_auth_status(self.request) - if auth_status != AuthStatus.OK: + if auth_status != UserAuthStatus.OK: self.close(code=1008, reason=auth_status.value.message) # Policy Violation return diff --git a/platypush/backend/http/media/handlers/__init__.py b/platypush/backend/http/media/handlers/__init__.py index 921faeaed4..99948c5cd7 100644 --- a/platypush/backend/http/media/handlers/__init__.py +++ b/platypush/backend/http/media/handlers/__init__.py @@ -1,7 +1,6 @@ from abc import ABC, abstractmethod import hashlib import logging -import os from typing import Generator, Optional from platypush.message import JSONAble @@ -57,9 +56,6 @@ class MediaHandler(JSONAble, ABC): logging.exception(e) errors[hndl_class.__name__] = str(e) - if os.path.exists(source): - source = f'file://{source}' - raise AttributeError( f'The source {source} has no handlers associated. Errors: {errors}' ) diff --git a/platypush/backend/http/media/handlers/file.py b/platypush/backend/http/media/handlers/file.py index e299c9359c..c899065516 100644 --- a/platypush/backend/http/media/handlers/file.py +++ b/platypush/backend/http/media/handlers/file.py @@ -15,6 +15,9 @@ class FileHandler(MediaHandler): prefix_handlers = ['file://'] def __init__(self, source, *args, **kwargs): + if isinstance(source, str) and os.path.exists(source): + source = f'file://{source}' + super().__init__(source, *args, **kwargs) self.path = os.path.abspath( @@ -33,7 +36,7 @@ class FileHandler(MediaHandler): ), f'{source} is not a valid media file (detected format: {self.mime_type})' self.extension = mimetypes.guess_extension(self.mime_type) - if self.url and self.extension: + if self.url and self.extension and not self.url.endswith(self.extension): self.url += self.extension self.content_length = os.path.getsize(self.path) diff --git a/platypush/backend/http/utils.py b/platypush/backend/http/utils.py index 48c3a2f26f..49533ed42f 100644 --- a/platypush/backend/http/utils.py +++ b/platypush/backend/http/utils.py @@ -7,6 +7,7 @@ import re from platypush.config import Config from platypush.backend.http.app import template_folder +from platypush.backend.http.app.utils import current_user class HttpUtils: @@ -130,5 +131,9 @@ class HttpUtils: path = path[0] if len(path) == 1 else os.path.join(*path) return os.path.isfile(path) + @staticmethod + def current_user(): + return current_user() + # vim:sw=4:ts=4:et: diff --git a/platypush/backend/http/webapp/dist/index.html b/platypush/backend/http/webapp/dist/index.html index 2593fc4817..a5298382d3 100644 --- a/platypush/backend/http/webapp/dist/index.html +++ b/platypush/backend/http/webapp/dist/index.html @@ -1 +1 @@ -platypush
\ No newline at end of file +platypush
\ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/service-worker.js b/platypush/backend/http/webapp/dist/service-worker.js index f4ad55d578..663b7b626a 100644 --- a/platypush/backend/http/webapp/dist/service-worker.js +++ b/platypush/backend/http/webapp/dist/service-worker.js @@ -1,2 +1,2 @@ -if(!self.define){let i,s={};const l=(l,n)=>(l=new URL(l+".js",n).href,s[l]||new Promise((s=>{if("document"in self){const i=document.createElement("script");i.src=l,i.onload=s,document.head.appendChild(i)}else i=l,importScripts(l),s()})).then((()=>{let i=s[l];if(!i)throw new Error(`Module ${l} didn’t register its module`);return i})));self.define=(n,r)=>{const e=i||("document"in self?document.currentScript.src:"")||location.href;if(s[e])return;let t={};const c=i=>l(i,e),u={module:{uri:e},exports:t,require:c};s[e]=Promise.all(n.map((i=>u[i]||c(i)))).then((i=>(r(...i),t)))}}define(["./workbox-5b385ed2"],(function(i){"use strict";i.setCacheNameDetails({prefix:"platypush"}),self.addEventListener("message",(i=>{i.data&&"SKIP_WAITING"===i.data.type&&self.skipWaiting()})),i.precacheAndRoute([{url:"/fonts/Poppins.ttf",revision:"d10d3ed96303653f936a08b38534f12e"},{url:"/fonts/poppins.css",revision:"413ee9a4d1879f6ae3d62a796644daad"},{url:"/icons/jellyfin.svg",revision:"1ec11e72ffc381f8797ddbebed2652c0"},{url:"/icons/kodi.svg",revision:"81ea5504989d4a0ed19ba6528c39e80f"},{url:"/icons/openweathermap/black/01d.png",revision:"4cf2907a1083c067828830bb007e2f34"},{url:"/icons/openweathermap/black/01n.png",revision:"df30375c6371005e2d238c36255afc8a"},{url:"/icons/openweathermap/black/02d.png",revision:"79a0adce79d78da203beeb7a6f4f510b"},{url:"/icons/openweathermap/black/02n.png",revision:"68d34b41357c2a3ea9479dae653b3617"},{url:"/icons/openweathermap/black/03d.png",revision:"5f13dba4164c437e2fbdc1d1ecaada4c"},{url:"/icons/openweathermap/black/03n.png",revision:"65c125cd51934e24f9e3321cc5448d0e"},{url:"/icons/openweathermap/black/04d.png",revision:"e75cd73c232806d7364ad7feae354074"},{url:"/icons/openweathermap/black/04n.png",revision:"e75cd73c232806d7364ad7feae354074"},{url:"/icons/openweathermap/black/09d.png",revision:"328b726310fb5762861859e33ac9066a"},{url:"/icons/openweathermap/black/09n.png",revision:"328b726310fb5762861859e33ac9066a"},{url:"/icons/openweathermap/black/10d.png",revision:"7dde329628506567faef30b9eb5c5f69"},{url:"/icons/openweathermap/black/10n.png",revision:"7dde329628506567faef30b9eb5c5f69"},{url:"/icons/openweathermap/black/11d.png",revision:"8f6a4b2446b42e8215195e195133e546"},{url:"/icons/openweathermap/black/11n.png",revision:"8f6a4b2446b42e8215195e195133e546"},{url:"/icons/openweathermap/black/13d.png",revision:"45bfce1d2ea7d16415848650eb5d2cb3"},{url:"/icons/openweathermap/black/13n.png",revision:"45bfce1d2ea7d16415848650eb5d2cb3"},{url:"/icons/openweathermap/black/50d.png",revision:"7a304f2b15fe4d9de351dabc44ff900d"},{url:"/icons/openweathermap/black/50n.png",revision:"7a304f2b15fe4d9de351dabc44ff900d"},{url:"/icons/openweathermap/black/unknown.png",revision:"c219891f5796e43d0f75f6525a8d6f33"},{url:"/icons/openweathermap/dark/01d.png",revision:"4cf2907a1083c067828830bb007e2f34"},{url:"/icons/openweathermap/dark/01n.png",revision:"df30375c6371005e2d238c36255afc8a"},{url:"/icons/openweathermap/dark/02d.png",revision:"79a0adce79d78da203beeb7a6f4f510b"},{url:"/icons/openweathermap/dark/02n.png",revision:"68d34b41357c2a3ea9479dae653b3617"},{url:"/icons/openweathermap/dark/03d.png",revision:"5f13dba4164c437e2fbdc1d1ecaada4c"},{url:"/icons/openweathermap/dark/03n.png",revision:"65c125cd51934e24f9e3321cc5448d0e"},{url:"/icons/openweathermap/dark/04d.png",revision:"e75cd73c232806d7364ad7feae354074"},{url:"/icons/openweathermap/dark/04n.png",revision:"e75cd73c232806d7364ad7feae354074"},{url:"/icons/openweathermap/dark/09d.png",revision:"328b726310fb5762861859e33ac9066a"},{url:"/icons/openweathermap/dark/09n.png",revision:"328b726310fb5762861859e33ac9066a"},{url:"/icons/openweathermap/dark/10d.png",revision:"7dde329628506567faef30b9eb5c5f69"},{url:"/icons/openweathermap/dark/10n.png",revision:"7dde329628506567faef30b9eb5c5f69"},{url:"/icons/openweathermap/dark/11d.png",revision:"8f6a4b2446b42e8215195e195133e546"},{url:"/icons/openweathermap/dark/11n.png",revision:"8f6a4b2446b42e8215195e195133e546"},{url:"/icons/openweathermap/dark/13d.png",revision:"45bfce1d2ea7d16415848650eb5d2cb3"},{url:"/icons/openweathermap/dark/13n.png",revision:"45bfce1d2ea7d16415848650eb5d2cb3"},{url:"/icons/openweathermap/dark/50d.png",revision:"7a304f2b15fe4d9de351dabc44ff900d"},{url:"/icons/openweathermap/dark/50n.png",revision:"7a304f2b15fe4d9de351dabc44ff900d"},{url:"/icons/openweathermap/dark/unknown.png",revision:"c219891f5796e43d0f75f6525a8d6f33"},{url:"/icons/openweathermap/light/01d.png",revision:"00c2d0a72a69bf279bf8703cea9ce8d2"},{url:"/icons/openweathermap/light/01n.png",revision:"3a65e9f7ed5c54c6acd638a7bd26de25"},{url:"/icons/openweathermap/light/02d.png",revision:"63dab156e991be7e4174d1d6cd8c2321"},{url:"/icons/openweathermap/light/02n.png",revision:"7c64d1a1c5efdbe38e6b7e3b4f50f2c5"},{url:"/icons/openweathermap/light/03d.png",revision:"f609003793e658a60870587cd450fc6f"},{url:"/icons/openweathermap/light/03n.png",revision:"7e694b4317b3e9f2533db93969fcc3e8"},{url:"/icons/openweathermap/light/04d.png",revision:"098f9d40b1d5747996df9a720f160c81"},{url:"/icons/openweathermap/light/04n.png",revision:"098f9d40b1d5747996df9a720f160c81"},{url:"/icons/openweathermap/light/09d.png",revision:"c48a99b60e45690cdc702a2dc6694002"},{url:"/icons/openweathermap/light/09n.png",revision:"c48a99b60e45690cdc702a2dc6694002"},{url:"/icons/openweathermap/light/10d.png",revision:"2750daf3f0d811230591a415e42bddb2"},{url:"/icons/openweathermap/light/10n.png",revision:"2750daf3f0d811230591a415e42bddb2"},{url:"/icons/openweathermap/light/11d.png",revision:"7bd0501a7bfcf2675467df0c0788ffad"},{url:"/icons/openweathermap/light/11n.png",revision:"7bd0501a7bfcf2675467df0c0788ffad"},{url:"/icons/openweathermap/light/13d.png",revision:"4e11e697c6bafc8dd83c4dfc8ce47919"},{url:"/icons/openweathermap/light/13n.png",revision:"4e11e697c6bafc8dd83c4dfc8ce47919"},{url:"/icons/openweathermap/light/50d.png",revision:"9a0770f3adc7c4a27e131c04a739f735"},{url:"/icons/openweathermap/light/50n.png",revision:"9a0770f3adc7c4a27e131c04a739f735"},{url:"/icons/openweathermap/light/unknown.png",revision:"f14a44a1ecde49a5c6a396f8c1753263"},{url:"/icons/openweathermap/white/01d.png",revision:"00c2d0a72a69bf279bf8703cea9ce8d2"},{url:"/icons/openweathermap/white/01n.png",revision:"3a65e9f7ed5c54c6acd638a7bd26de25"},{url:"/icons/openweathermap/white/02d.png",revision:"63dab156e991be7e4174d1d6cd8c2321"},{url:"/icons/openweathermap/white/02n.png",revision:"7c64d1a1c5efdbe38e6b7e3b4f50f2c5"},{url:"/icons/openweathermap/white/03d.png",revision:"f609003793e658a60870587cd450fc6f"},{url:"/icons/openweathermap/white/03n.png",revision:"7e694b4317b3e9f2533db93969fcc3e8"},{url:"/icons/openweathermap/white/04d.png",revision:"098f9d40b1d5747996df9a720f160c81"},{url:"/icons/openweathermap/white/04n.png",revision:"098f9d40b1d5747996df9a720f160c81"},{url:"/icons/openweathermap/white/09d.png",revision:"c48a99b60e45690cdc702a2dc6694002"},{url:"/icons/openweathermap/white/09n.png",revision:"c48a99b60e45690cdc702a2dc6694002"},{url:"/icons/openweathermap/white/10d.png",revision:"2750daf3f0d811230591a415e42bddb2"},{url:"/icons/openweathermap/white/10n.png",revision:"2750daf3f0d811230591a415e42bddb2"},{url:"/icons/openweathermap/white/11d.png",revision:"7bd0501a7bfcf2675467df0c0788ffad"},{url:"/icons/openweathermap/white/11n.png",revision:"7bd0501a7bfcf2675467df0c0788ffad"},{url:"/icons/openweathermap/white/13d.png",revision:"4e11e697c6bafc8dd83c4dfc8ce47919"},{url:"/icons/openweathermap/white/13n.png",revision:"4e11e697c6bafc8dd83c4dfc8ce47919"},{url:"/icons/openweathermap/white/50d.png",revision:"9a0770f3adc7c4a27e131c04a739f735"},{url:"/icons/openweathermap/white/50n.png",revision:"9a0770f3adc7c4a27e131c04a739f735"},{url:"/icons/openweathermap/white/unknown.png",revision:"f14a44a1ecde49a5c6a396f8c1753263"},{url:"/icons/plex.svg",revision:"9923c5c80858a7da9d48c3ee77974e77"},{url:"/icons/smartthings.png",revision:"9306b6ca82efa85d58823615ff14b00f"},{url:"/icons/z-wave.png",revision:"3045e92627da521267db845b16da6028"},{url:"/icons/zigbee.svg",revision:"3e5f749af9e83ace5c12ff3aac6d4b88"},{url:"/img/dashboard-bg-light.jpg",revision:"f9ab2a6552509997ec0cbaeb47199eba"},{url:"/img/logo.png",revision:"98702e78dde598404826f6e9279e4ab3"},{url:"/img/spinner.gif",revision:"5572838d351b66bf6a3350b6d8d23cb8"},{url:"/index.html",revision:"13d783eea8731b14d9ef76292390b1c0"},{url:"/manifest.json",revision:"8a45dcffc3380b17da6ea17291b43e00"},{url:"/static/css/1259.705b87de.css",revision:null},{url:"/static/css/1327.a8aa3d69.css",revision:null},{url:"/static/css/1391.3a28e845.css",revision:null},{url:"/static/css/1449.48f369df.css",revision:null},{url:"/static/css/1485.ec7d392e.css",revision:null},{url:"/static/css/1558.e4c74cc7.css",revision:null},{url:"/static/css/169.4e61bddf.css",revision:null},{url:"/static/css/1706.0cce53c8.css",revision:null},{url:"/static/css/1807.414ba229.css",revision:null},{url:"/static/css/182.76b6eb09.css",revision:null},{url:"/static/css/1931.576454a1.css",revision:null},{url:"/static/css/1949.09946541.css",revision:null},{url:"/static/css/2018.8146b7c4.css",revision:null},{url:"/static/css/2140.ccb2903f.css",revision:null},{url:"/static/css/2154.9e4d2b2d.css",revision:null},{url:"/static/css/2217.3d5833a8.css",revision:null},{url:"/static/css/2460.c47d3d8a.css",revision:null},{url:"/static/css/2582.0d7f9f2c.css",revision:null},{url:"/static/css/281.b8d8c407.css",revision:null},{url:"/static/css/2844.31199f56.css",revision:null},{url:"/static/css/288.ceaf4d40.css",revision:null},{url:"/static/css/2892.0d765211.css",revision:null},{url:"/static/css/2893.9ed78d28.css",revision:null},{url:"/static/css/2924.23b041bd.css",revision:null},{url:"/static/css/2976.0e5bc2d3.css",revision:null},{url:"/static/css/2992.07a12488.css",revision:null},{url:"/static/css/3033.1471fa39.css",revision:null},{url:"/static/css/3211.ebc6e651.css",revision:null},{url:"/static/css/3368.545f822b.css",revision:null},{url:"/static/css/3369.8baddf78.css",revision:null},{url:"/static/css/3393.eca14a3e.css",revision:null},{url:"/static/css/34.111a0e1a.css",revision:null},{url:"/static/css/3559.84280be4.css",revision:null},{url:"/static/css/3826.6a236247.css",revision:null},{url:"/static/css/3835.9eceb93e.css",revision:null},{url:"/static/css/3924.548d44ae.css",revision:null},{url:"/static/css/4084.0a0db151.css",revision:null},{url:"/static/css/4109.e6d6b3d3.css",revision:null},{url:"/static/css/4364.502178be.css",revision:null},{url:"/static/css/446.ced514f5.css",revision:null},{url:"/static/css/472.9c3bb868.css",revision:null},{url:"/static/css/4790.3b639ae0.css",revision:null},{url:"/static/css/5197.a543b091.css",revision:null},{url:"/static/css/5207.e08afd93.css",revision:null},{url:"/static/css/5285.faa6ed68.css",revision:null},{url:"/static/css/5329.3bb336f9.css",revision:null},{url:"/static/css/5638.245c2ace.css",revision:null},{url:"/static/css/58.ecf614b3.css",revision:null},{url:"/static/css/5906.832a3a02.css",revision:null},{url:"/static/css/5933.949d7b2b.css",revision:null},{url:"/static/css/6016.558de04b.css",revision:null},{url:"/static/css/6096.a3036d52.css",revision:null},{url:"/static/css/6217.54339076.css",revision:null},{url:"/static/css/6281.cdb5d498.css",revision:null},{url:"/static/css/6324.0166f2db.css",revision:null},{url:"/static/css/6429.79156821.css",revision:null},{url:"/static/css/65.712466ff.css",revision:null},{url:"/static/css/6523.9f1785cc.css",revision:null},{url:"/static/css/6561.93704195.css",revision:null},{url:"/static/css/669.dd1b6ede.css",revision:null},{url:"/static/css/729.5b54aac4.css",revision:null},{url:"/static/css/735.93ff4770.css",revision:null},{url:"/static/css/746.215dc404.css",revision:null},{url:"/static/css/7528.258d2865.css",revision:null},{url:"/static/css/7590.db11c095.css",revision:null},{url:"/static/css/7651.a7141db8.css",revision:null},{url:"/static/css/7841.634d37da.css",revision:null},{url:"/static/css/7878.ff3f31c5.css",revision:null},{url:"/static/css/7880.bec7de73.css",revision:null},{url:"/static/css/8069.6bdb62a5.css",revision:null},{url:"/static/css/8179.cf2ba7d1.css",revision:null},{url:"/static/css/8224.f72887fc.css",revision:null},{url:"/static/css/8391.af187453.css",revision:null},{url:"/static/css/8498.194ed9cc.css",revision:null},{url:"/static/css/8590.88d3487c.css",revision:null},{url:"/static/css/8605.92b02564.css",revision:null},{url:"/static/css/8621.dd386ad4.css",revision:null},{url:"/static/css/8769.212a4f94.css",revision:null},{url:"/static/css/8825.596c01e1.css",revision:null},{url:"/static/css/8989.fd366c78.css",revision:null},{url:"/static/css/906.0c794836.css",revision:null},{url:"/static/css/9092.5de40234.css",revision:null},{url:"/static/css/9211.c21e860e.css",revision:null},{url:"/static/css/9381.b88ad779.css",revision:null},{url:"/static/css/9461.e2d5774b.css",revision:null},{url:"/static/css/9549.c4059cb5.css",revision:null},{url:"/static/css/9751.f1de86a4.css",revision:null},{url:"/static/css/980.96973824.css",revision:null},{url:"/static/css/984.04a4e901.css",revision:null},{url:"/static/css/9962.b2a51ef8.css",revision:null},{url:"/static/css/app.34a0a3ba.css",revision:null},{url:"/static/css/chunk-vendors.d510eff2.css",revision:null},{url:"/static/css/dashboard.ce0fe60f.css",revision:null},{url:"/static/css/panel.2a411b59.css",revision:null},{url:"/static/css/plugin.7646c315.css",revision:null},{url:"/static/fonts/fa-brands-400.5d18d427.ttf",revision:null},{url:"/static/fonts/fa-brands-400.87587a68.woff2",revision:null},{url:"/static/fonts/fa-regular-400.3ccdbd3d.woff2",revision:null},{url:"/static/fonts/fa-regular-400.81482cd4.ttf",revision:null},{url:"/static/fonts/fa-solid-900.0b0cc8a6.woff2",revision:null},{url:"/static/fonts/fa-solid-900.69d3141a.ttf",revision:null},{url:"/static/fonts/lato-medium-italic.1996cc15.woff",revision:null},{url:"/static/fonts/lato-medium-italic.1e312dd9.woff2",revision:null},{url:"/static/fonts/lato-medium.13fcde4c.woff2",revision:null},{url:"/static/fonts/lato-medium.b41c3821.woff",revision:null},{url:"/static/img/ad.cb33f69a.svg",revision:null},{url:"/static/img/ad.fa8477e6.svg",revision:null},{url:"/static/img/ae.a3f5e295.svg",revision:null},{url:"/static/img/ae.f06e0095.svg",revision:null},{url:"/static/img/af.89591ab0.svg",revision:null},{url:"/static/img/af.8ca96393.svg",revision:null},{url:"/static/img/ag.4c37bc2e.svg",revision:null},{url:"/static/img/ag.56074d55.svg",revision:null},{url:"/static/img/ai.70eefdc0.svg",revision:null},{url:"/static/img/ai.893d1179.svg",revision:null},{url:"/static/img/al.b16acdb2.svg",revision:null},{url:"/static/img/al.e0864b5d.svg",revision:null},{url:"/static/img/am.00f0fec4.svg",revision:null},{url:"/static/img/am.a566904f.svg",revision:null},{url:"/static/img/ao.3df23f21.svg",revision:null},{url:"/static/img/ao.c0c32201.svg",revision:null},{url:"/static/img/aq.1b8c45a6.svg",revision:null},{url:"/static/img/aq.aa242c4a.svg",revision:null},{url:"/static/img/ar.22a3116e.svg",revision:null},{url:"/static/img/ar.d3238270.svg",revision:null},{url:"/static/img/as.10ed1a23.svg",revision:null},{url:"/static/img/as.4a330654.svg",revision:null},{url:"/static/img/at.02a64279.svg",revision:null},{url:"/static/img/at.94cde74c.svg",revision:null},{url:"/static/img/au.cc65fc07.svg",revision:null},{url:"/static/img/au.dbcdef2c.svg",revision:null},{url:"/static/img/aw.abbad4ac.svg",revision:null},{url:"/static/img/aw.be4540eb.svg",revision:null},{url:"/static/img/ax.371c7af2.svg",revision:null},{url:"/static/img/ax.91eea523.svg",revision:null},{url:"/static/img/az.0e2f1d1a.svg",revision:null},{url:"/static/img/az.f399f1c8.svg",revision:null},{url:"/static/img/ba.032070d4.svg",revision:null},{url:"/static/img/ba.e167b08f.svg",revision:null},{url:"/static/img/bb.23a15e67.svg",revision:null},{url:"/static/img/bb.b800513b.svg",revision:null},{url:"/static/img/bd.c1abcb00.svg",revision:null},{url:"/static/img/bd.c4a5f0e2.svg",revision:null},{url:"/static/img/be.29774a37.svg",revision:null},{url:"/static/img/be.3eb14701.svg",revision:null},{url:"/static/img/bf.2334e919.svg",revision:null},{url:"/static/img/bf.4ffd5dc6.svg",revision:null},{url:"/static/img/bg.700f100c.svg",revision:null},{url:"/static/img/bg.d0a49130.svg",revision:null},{url:"/static/img/bh.2a884f6c.svg",revision:null},{url:"/static/img/bh.3968dfe0.svg",revision:null},{url:"/static/img/bi.211d0f9e.svg",revision:null},{url:"/static/img/bi.ae3bb248.svg",revision:null},{url:"/static/img/bj.2cdc8a62.svg",revision:null},{url:"/static/img/bj.aba95ad2.svg",revision:null},{url:"/static/img/bl.04966866.svg",revision:null},{url:"/static/img/bl.3e69e968.svg",revision:null},{url:"/static/img/bm.e6903c8e.svg",revision:null},{url:"/static/img/bm.e69e40c4.svg",revision:null},{url:"/static/img/bn.07911e0c.svg",revision:null},{url:"/static/img/bn.4d91734a.svg",revision:null},{url:"/static/img/bo.03595499.svg",revision:null},{url:"/static/img/bo.9c1d9ef8.svg",revision:null},{url:"/static/img/bq.747d8177.svg",revision:null},{url:"/static/img/bq.b9355bec.svg",revision:null},{url:"/static/img/br.058a5086.svg",revision:null},{url:"/static/img/br.fe030c1c.svg",revision:null},{url:"/static/img/bs.d228cbb2.svg",revision:null},{url:"/static/img/bs.ef0a29ed.svg",revision:null},{url:"/static/img/bt.3f8ecb9b.svg",revision:null},{url:"/static/img/bt.fc241981.svg",revision:null},{url:"/static/img/bv.5503f03a.svg",revision:null},{url:"/static/img/bv.7f7cd26f.svg",revision:null},{url:"/static/img/bw.494aae64.svg",revision:null},{url:"/static/img/bw.b767df8c.svg",revision:null},{url:"/static/img/by.78d2c3c9.svg",revision:null},{url:"/static/img/by.fba98c48.svg",revision:null},{url:"/static/img/bz.14c3376a.svg",revision:null},{url:"/static/img/bz.5e0ef548.svg",revision:null},{url:"/static/img/ca.163ac200.svg",revision:null},{url:"/static/img/ca.a2ab234d.svg",revision:null},{url:"/static/img/cc.51960f85.svg",revision:null},{url:"/static/img/cc.813adff8.svg",revision:null},{url:"/static/img/cd.39186ec2.svg",revision:null},{url:"/static/img/cd.b4bd46ee.svg",revision:null},{url:"/static/img/cf.b5702729.svg",revision:null},{url:"/static/img/cf.fe1120e9.svg",revision:null},{url:"/static/img/cg.00603842.svg",revision:null},{url:"/static/img/cg.12414c99.svg",revision:null},{url:"/static/img/ch.7376c9c3.svg",revision:null},{url:"/static/img/ch.a558d859.svg",revision:null},{url:"/static/img/ci.1251a8e3.svg",revision:null},{url:"/static/img/ci.425a24c2.svg",revision:null},{url:"/static/img/ck.4e83dd3e.svg",revision:null},{url:"/static/img/ck.6303aa5b.svg",revision:null},{url:"/static/img/cl.0917a91e.svg",revision:null},{url:"/static/img/cl.b5974a35.svg",revision:null},{url:"/static/img/cm.253adb39.svg",revision:null},{url:"/static/img/cm.853e2843.svg",revision:null},{url:"/static/img/cn.38f63e1e.svg",revision:null},{url:"/static/img/cn.e1b166eb.svg",revision:null},{url:"/static/img/co.33e249d8.svg",revision:null},{url:"/static/img/co.b5cbc817.svg",revision:null},{url:"/static/img/cr.2e572846.svg",revision:null},{url:"/static/img/cr.336eb7d3.svg",revision:null},{url:"/static/img/cu.c2a6f0ed.svg",revision:null},{url:"/static/img/cu.d6e33f19.svg",revision:null},{url:"/static/img/cv.5ea64968.svg",revision:null},{url:"/static/img/cv.b3ab83f5.svg",revision:null},{url:"/static/img/cw.0e14b0b7.svg",revision:null},{url:"/static/img/cw.9b9b7ed5.svg",revision:null},{url:"/static/img/cx.da5de6d2.svg",revision:null},{url:"/static/img/cx.e04e07e8.svg",revision:null},{url:"/static/img/cy.834e6240.svg",revision:null},{url:"/static/img/cy.bfcfd736.svg",revision:null},{url:"/static/img/cz.aa114964.svg",revision:null},{url:"/static/img/cz.b5f98a6b.svg",revision:null},{url:"/static/img/dashboard-bg-light.06da6eab.jpg",revision:null},{url:"/static/img/de.8e159e6e.svg",revision:null},{url:"/static/img/de.b827ac51.svg",revision:null},{url:"/static/img/dj.4197a18a.svg",revision:null},{url:"/static/img/dj.925748d5.svg",revision:null},{url:"/static/img/dk.3ca1caed.svg",revision:null},{url:"/static/img/dk.a867eeef.svg",revision:null},{url:"/static/img/dm.7ddb00ac.svg",revision:null},{url:"/static/img/dm.bca6d70c.svg",revision:null},{url:"/static/img/do.81097daa.svg",revision:null},{url:"/static/img/do.954f0f3e.svg",revision:null},{url:"/static/img/dz.76d47b01.svg",revision:null},{url:"/static/img/dz.b7e2fbce.svg",revision:null},{url:"/static/img/ec.0029f514.svg",revision:null},{url:"/static/img/ec.5f387e2f.svg",revision:null},{url:"/static/img/ee.1b4839e0.svg",revision:null},{url:"/static/img/ee.828384a8.svg",revision:null},{url:"/static/img/eg.38443fa6.svg",revision:null},{url:"/static/img/eg.5756a758.svg",revision:null},{url:"/static/img/eh.82bd1c7b.svg",revision:null},{url:"/static/img/eh.f8d7b64f.svg",revision:null},{url:"/static/img/er.bf5b134b.svg",revision:null},{url:"/static/img/er.e932abe1.svg",revision:null},{url:"/static/img/es-ct.64a68954.svg",revision:null},{url:"/static/img/es-ct.69469f50.svg",revision:null},{url:"/static/img/es.7dd46df0.svg",revision:null},{url:"/static/img/es.de5915e5.svg",revision:null},{url:"/static/img/et.82e8eb21.svg",revision:null},{url:"/static/img/et.a998a1b2.svg",revision:null},{url:"/static/img/eu.4c6e130f.svg",revision:null},{url:"/static/img/eu.aba724b1.svg",revision:null},{url:"/static/img/fi.0cd85b78.svg",revision:null},{url:"/static/img/fi.3be6b378.svg",revision:null},{url:"/static/img/fj.ac9c916f.svg",revision:null},{url:"/static/img/fj.e8d3e00b.svg",revision:null},{url:"/static/img/fk.af0350f8.svg",revision:null},{url:"/static/img/fk.db55fa14.svg",revision:null},{url:"/static/img/fm.3491efc7.svg",revision:null},{url:"/static/img/fm.78d44caa.svg",revision:null},{url:"/static/img/fo.1da81e3a.svg",revision:null},{url:"/static/img/fo.72949ad1.svg",revision:null},{url:"/static/img/fr.3565b8f4.svg",revision:null},{url:"/static/img/fr.9cb70285.svg",revision:null},{url:"/static/img/ga.3e474381.svg",revision:null},{url:"/static/img/ga.59f7d865.svg",revision:null},{url:"/static/img/gb-eng.0fac6e79.svg",revision:null},{url:"/static/img/gb-eng.513dcf1b.svg",revision:null},{url:"/static/img/gb-nir.2b7d2c3a.svg",revision:null},{url:"/static/img/gb-nir.f59817d6.svg",revision:null},{url:"/static/img/gb-sct.f5001e5d.svg",revision:null},{url:"/static/img/gb-sct.fee55173.svg",revision:null},{url:"/static/img/gb-wls.13481560.svg",revision:null},{url:"/static/img/gb-wls.95b2cfab.svg",revision:null},{url:"/static/img/gb.2aafb374.svg",revision:null},{url:"/static/img/gb.7a456bb2.svg",revision:null},{url:"/static/img/gd.04ea09b7.svg",revision:null},{url:"/static/img/gd.60b96978.svg",revision:null},{url:"/static/img/ge.b7b65b55.svg",revision:null},{url:"/static/img/ge.c7190912.svg",revision:null},{url:"/static/img/gf.531f9e07.svg",revision:null},{url:"/static/img/gf.90f438a3.svg",revision:null},{url:"/static/img/gg.3aebc3ce.svg",revision:null},{url:"/static/img/gg.65174039.svg",revision:null},{url:"/static/img/gh.af443995.svg",revision:null},{url:"/static/img/gh.f2b6baac.svg",revision:null},{url:"/static/img/gi.302c2506.svg",revision:null},{url:"/static/img/gi.7beea6ed.svg",revision:null},{url:"/static/img/gl.551d0783.svg",revision:null},{url:"/static/img/gl.6a5c17b0.svg",revision:null},{url:"/static/img/gm.0e00e9d4.svg",revision:null},{url:"/static/img/gm.1724dc37.svg",revision:null},{url:"/static/img/gn.54a75b28.svg",revision:null},{url:"/static/img/gn.7c96520b.svg",revision:null},{url:"/static/img/gp.4327060f.svg",revision:null},{url:"/static/img/gp.f8adbf5c.svg",revision:null},{url:"/static/img/gq.b1679302.svg",revision:null},{url:"/static/img/gq.bd7daf33.svg",revision:null},{url:"/static/img/gr.07bedadf.svg",revision:null},{url:"/static/img/gr.25dd3287.svg",revision:null},{url:"/static/img/gs.60368968.svg",revision:null},{url:"/static/img/gs.b2836676.svg",revision:null},{url:"/static/img/gt.1a24ed67.svg",revision:null},{url:"/static/img/gt.825f7286.svg",revision:null},{url:"/static/img/gu.05f0ab85.svg",revision:null},{url:"/static/img/gu.19b114eb.svg",revision:null},{url:"/static/img/gw.bcd1eddb.svg",revision:null},{url:"/static/img/gw.c97f3f94.svg",revision:null},{url:"/static/img/gy.6327f72a.svg",revision:null},{url:"/static/img/gy.e11d0234.svg",revision:null},{url:"/static/img/hk.b199a9ee.svg",revision:null},{url:"/static/img/hk.c72bba0e.svg",revision:null},{url:"/static/img/hm.4aa61657.svg",revision:null},{url:"/static/img/hm.d4b3d393.svg",revision:null},{url:"/static/img/hn.08ad78b2.svg",revision:null},{url:"/static/img/hn.44cee191.svg",revision:null},{url:"/static/img/hr.078b1bf9.svg",revision:null},{url:"/static/img/hr.1f4e28b8.svg",revision:null},{url:"/static/img/ht.6943447c.svg",revision:null},{url:"/static/img/ht.7ca68737.svg",revision:null},{url:"/static/img/hu.692e97ca.svg",revision:null},{url:"/static/img/hu.b10d3f8e.svg",revision:null},{url:"/static/img/id.94464e47.svg",revision:null},{url:"/static/img/id.a05dc04c.svg",revision:null},{url:"/static/img/ie.5154112a.svg",revision:null},{url:"/static/img/ie.e23b25d1.svg",revision:null},{url:"/static/img/il.150f4c5f.svg",revision:null},{url:"/static/img/il.e02a66d3.svg",revision:null},{url:"/static/img/im.25166c91.svg",revision:null},{url:"/static/img/im.942419c5.svg",revision:null},{url:"/static/img/in.954929a0.svg",revision:null},{url:"/static/img/in.bd0d4f19.svg",revision:null},{url:"/static/img/io.a59923ab.svg",revision:null},{url:"/static/img/io.fa003484.svg",revision:null},{url:"/static/img/iq.1232a5c2.svg",revision:null},{url:"/static/img/iq.9a48d678.svg",revision:null},{url:"/static/img/ir.1ed24953.svg",revision:null},{url:"/static/img/ir.bc7ae9e1.svg",revision:null},{url:"/static/img/is.cad57f19.svg",revision:null},{url:"/static/img/is.eea59326.svg",revision:null},{url:"/static/img/it.039b4527.svg",revision:null},{url:"/static/img/it.e8516fc7.svg",revision:null},{url:"/static/img/je.1684dacc.svg",revision:null},{url:"/static/img/je.3ed72a25.svg",revision:null},{url:"/static/img/jellyfin.7b53a541.svg",revision:null},{url:"/static/img/jm.2357530e.svg",revision:null},{url:"/static/img/jm.479f30fe.svg",revision:null},{url:"/static/img/jo.06fbaa2c.svg",revision:null},{url:"/static/img/jo.7ac45a65.svg",revision:null},{url:"/static/img/jp.1795778c.svg",revision:null},{url:"/static/img/jp.b6063838.svg",revision:null},{url:"/static/img/ke.6dbfffd5.svg",revision:null},{url:"/static/img/ke.769bb975.svg",revision:null},{url:"/static/img/kg.96c12490.svg",revision:null},{url:"/static/img/kg.daded53c.svg",revision:null},{url:"/static/img/kh.8eeb1634.svg",revision:null},{url:"/static/img/kh.b10339d6.svg",revision:null},{url:"/static/img/ki.033ff9ce.svg",revision:null},{url:"/static/img/ki.89e43a21.svg",revision:null},{url:"/static/img/km.1e3bd5fe.svg",revision:null},{url:"/static/img/km.3ffb0228.svg",revision:null},{url:"/static/img/kn.0c16fe68.svg",revision:null},{url:"/static/img/kn.8f2e7b29.svg",revision:null},{url:"/static/img/kodi.d18f8d23.svg",revision:null},{url:"/static/img/kp.0f5253d8.svg",revision:null},{url:"/static/img/kp.f4ff9e76.svg",revision:null},{url:"/static/img/kr.0dc8b972.svg",revision:null},{url:"/static/img/kr.0f5e1116.svg",revision:null},{url:"/static/img/kw.3b4f3ea3.svg",revision:null},{url:"/static/img/kw.830d3755.svg",revision:null},{url:"/static/img/ky.be81d90b.svg",revision:null},{url:"/static/img/ky.e3b76b32.svg",revision:null},{url:"/static/img/kz.32ac1036.svg",revision:null},{url:"/static/img/kz.579ac0f9.svg",revision:null},{url:"/static/img/la.e583f8ec.svg",revision:null},{url:"/static/img/la.f71017ef.svg",revision:null},{url:"/static/img/lb.8eea508a.svg",revision:null},{url:"/static/img/lb.bdbeb8f1.svg",revision:null},{url:"/static/img/lc.25f644a6.svg",revision:null},{url:"/static/img/lc.68bd77ae.svg",revision:null},{url:"/static/img/li.8dc1ed79.svg",revision:null},{url:"/static/img/li.d7e2a871.svg",revision:null},{url:"/static/img/lk.42c41c61.svg",revision:null},{url:"/static/img/lk.e52240d6.svg",revision:null},{url:"/static/img/lr.5b84ff00.svg",revision:null},{url:"/static/img/lr.9a67cd3d.svg",revision:null},{url:"/static/img/ls.6d444cae.svg",revision:null},{url:"/static/img/ls.fe1da403.svg",revision:null},{url:"/static/img/lt.03a2e8c1.svg",revision:null},{url:"/static/img/lt.b57ea2a8.svg",revision:null},{url:"/static/img/lu.93878a1b.svg",revision:null},{url:"/static/img/lu.e3bdc6d3.svg",revision:null},{url:"/static/img/lv.1853e3a0.svg",revision:null},{url:"/static/img/lv.679c099e.svg",revision:null},{url:"/static/img/ly.05f8732e.svg",revision:null},{url:"/static/img/ly.b9e750ff.svg",revision:null},{url:"/static/img/ma.65053fc4.svg",revision:null},{url:"/static/img/ma.88ada30c.svg",revision:null},{url:"/static/img/mc.2c03ea5c.svg",revision:null},{url:"/static/img/mc.89b532e8.svg",revision:null},{url:"/static/img/md.646818c3.svg",revision:null},{url:"/static/img/md.a56562ee.svg",revision:null},{url:"/static/img/me.2e71b778.svg",revision:null},{url:"/static/img/me.f05548f2.svg",revision:null},{url:"/static/img/mf.70d09a4a.svg",revision:null},{url:"/static/img/mf.7da6b3d2.svg",revision:null},{url:"/static/img/mg.09ca17b2.svg",revision:null},{url:"/static/img/mg.b3fff4a6.svg",revision:null},{url:"/static/img/mh.3fd69bb2.svg",revision:null},{url:"/static/img/mh.f6cbc774.svg",revision:null},{url:"/static/img/mk.4234a248.svg",revision:null},{url:"/static/img/mk.e5412079.svg",revision:null},{url:"/static/img/ml.3fad079e.svg",revision:null},{url:"/static/img/ml.4f0dba9e.svg",revision:null},{url:"/static/img/mm.8ac1f094.svg",revision:null},{url:"/static/img/mm.adaa2111.svg",revision:null},{url:"/static/img/mn.78547af0.svg",revision:null},{url:"/static/img/mn.a4bcb0e6.svg",revision:null},{url:"/static/img/mo.2f0d2c15.svg",revision:null},{url:"/static/img/mo.c8198565.svg",revision:null},{url:"/static/img/mp.2acb5506.svg",revision:null},{url:"/static/img/mp.eeeefff6.svg",revision:null},{url:"/static/img/mq.145a7657.svg",revision:null},{url:"/static/img/mq.bb36a8fc.svg",revision:null},{url:"/static/img/mr.dd34eae8.svg",revision:null},{url:"/static/img/mr.e91e06ea.svg",revision:null},{url:"/static/img/ms.2025cd7d.svg",revision:null},{url:"/static/img/ms.b13001dc.svg",revision:null},{url:"/static/img/mt.b6f71c85.svg",revision:null},{url:"/static/img/mt.cff39ee0.svg",revision:null},{url:"/static/img/mu.51f71163.svg",revision:null},{url:"/static/img/mu.a926c232.svg",revision:null},{url:"/static/img/mv.2c8b92b5.svg",revision:null},{url:"/static/img/mv.ba4de4fd.svg",revision:null},{url:"/static/img/mw.0b005148.svg",revision:null},{url:"/static/img/mw.f704f4bb.svg",revision:null},{url:"/static/img/mx.1b615ec2.svg",revision:null},{url:"/static/img/mx.8a36b075.svg",revision:null},{url:"/static/img/my.4109ae71.svg",revision:null},{url:"/static/img/my.69c87fc5.svg",revision:null},{url:"/static/img/mz.1377650b.svg",revision:null},{url:"/static/img/mz.2c96acb1.svg",revision:null},{url:"/static/img/na.7adf4344.svg",revision:null},{url:"/static/img/na.e0503926.svg",revision:null},{url:"/static/img/nc.96fa6a4b.svg",revision:null},{url:"/static/img/nc.b5a5d41b.svg",revision:null},{url:"/static/img/ne.d11b82c6.svg",revision:null},{url:"/static/img/ne.d4fe4faa.svg",revision:null},{url:"/static/img/nf.1e8c700b.svg",revision:null},{url:"/static/img/nf.a7166b00.svg",revision:null},{url:"/static/img/ng.51059407.svg",revision:null},{url:"/static/img/ng.c3b42ad2.svg",revision:null},{url:"/static/img/ni.5b80bac0.svg",revision:null},{url:"/static/img/ni.cc7eb514.svg",revision:null},{url:"/static/img/nl.dd138444.svg",revision:null},{url:"/static/img/nl.e415f0e7.svg",revision:null},{url:"/static/img/no.26996afa.svg",revision:null},{url:"/static/img/no.70157234.svg",revision:null},{url:"/static/img/np.954177a0.svg",revision:null},{url:"/static/img/np.f7b8a5c3.svg",revision:null},{url:"/static/img/nr.2c66d218.svg",revision:null},{url:"/static/img/nr.a4f0e762.svg",revision:null},{url:"/static/img/nu.26551dc2.svg",revision:null},{url:"/static/img/nu.860bbe8a.svg",revision:null},{url:"/static/img/nz.38d0d690.svg",revision:null},{url:"/static/img/nz.c77ae58d.svg",revision:null},{url:"/static/img/om.3f5691ca.svg",revision:null},{url:"/static/img/om.ff034f9e.svg",revision:null},{url:"/static/img/pa.6dc8212a.svg",revision:null},{url:"/static/img/pa.acde3214.svg",revision:null},{url:"/static/img/pe.5a3b0bc5.svg",revision:null},{url:"/static/img/pe.5c2ced95.svg",revision:null},{url:"/static/img/pf.9f06082b.svg",revision:null},{url:"/static/img/pf.f6ae1bc8.svg",revision:null},{url:"/static/img/pg.26847b33.svg",revision:null},{url:"/static/img/pg.66c8dc3b.svg",revision:null},{url:"/static/img/ph.12e2b123.svg",revision:null},{url:"/static/img/ph.f215833e.svg",revision:null},{url:"/static/img/pk.0bbf58be.svg",revision:null},{url:"/static/img/pk.32b55f6f.svg",revision:null},{url:"/static/img/pl.03886843.svg",revision:null},{url:"/static/img/pl.a1350f0c.svg",revision:null},{url:"/static/img/plex.7a4e22a6.svg",revision:null},{url:"/static/img/pm.7a6beab5.svg",revision:null},{url:"/static/img/pm.a5590fa3.svg",revision:null},{url:"/static/img/pn.00a9342b.svg",revision:null},{url:"/static/img/pn.715fd11d.svg",revision:null},{url:"/static/img/pr.391a48e2.svg",revision:null},{url:"/static/img/pr.b37cbdc4.svg",revision:null},{url:"/static/img/ps.1af72ed4.svg",revision:null},{url:"/static/img/ps.96bcac74.svg",revision:null},{url:"/static/img/pt.0703cc3a.svg",revision:null},{url:"/static/img/pt.351b87cb.svg",revision:null},{url:"/static/img/pw.17220ffb.svg",revision:null},{url:"/static/img/pw.6d8e7ce0.svg",revision:null},{url:"/static/img/py.25cc39e3.svg",revision:null},{url:"/static/img/py.c20318c9.svg",revision:null},{url:"/static/img/qa.7e695788.svg",revision:null},{url:"/static/img/qa.86452d7a.svg",revision:null},{url:"/static/img/re.b8140129.svg",revision:null},{url:"/static/img/re.cf143c2f.svg",revision:null},{url:"/static/img/ro.67f8501e.svg",revision:null},{url:"/static/img/ro.cab93784.svg",revision:null},{url:"/static/img/rs.23638d75.svg",revision:null},{url:"/static/img/rs.ae2e3422.svg",revision:null},{url:"/static/img/ru.ccd50623.svg",revision:null},{url:"/static/img/ru.edd8b008.svg",revision:null},{url:"/static/img/rw.87d5d899.svg",revision:null},{url:"/static/img/rw.d118aacd.svg",revision:null},{url:"/static/img/sa.5bfbe72b.svg",revision:null},{url:"/static/img/sa.f0a8997b.svg",revision:null},{url:"/static/img/sb.1c406073.svg",revision:null},{url:"/static/img/sb.b0db5b0a.svg",revision:null},{url:"/static/img/sc.0452f14c.svg",revision:null},{url:"/static/img/sc.cdc20672.svg",revision:null},{url:"/static/img/sd.0e619868.svg",revision:null},{url:"/static/img/sd.da3b68ee.svg",revision:null},{url:"/static/img/se.7e499d82.svg",revision:null},{url:"/static/img/se.7ec71700.svg",revision:null},{url:"/static/img/sg.4f0e8eff.svg",revision:null},{url:"/static/img/sg.8a63b009.svg",revision:null},{url:"/static/img/sh.46e2588d.svg",revision:null},{url:"/static/img/sh.681f8fff.svg",revision:null},{url:"/static/img/si.2a428364.svg",revision:null},{url:"/static/img/si.d9d425c0.svg",revision:null},{url:"/static/img/sj.638e6522.svg",revision:null},{url:"/static/img/sj.92c583b8.svg",revision:null},{url:"/static/img/sk.7998d1f5.svg",revision:null},{url:"/static/img/sk.93c91c0b.svg",revision:null},{url:"/static/img/sl.d8378c47.svg",revision:null},{url:"/static/img/sl.eb9dda3f.svg",revision:null},{url:"/static/img/sm.0ba901f4.svg",revision:null},{url:"/static/img/sm.5e2fc188.svg",revision:null},{url:"/static/img/sn.4247b831.svg",revision:null},{url:"/static/img/sn.98923b55.svg",revision:null},{url:"/static/img/so.2d18a203.svg",revision:null},{url:"/static/img/so.45f08b28.svg",revision:null},{url:"/static/img/sr.cb178d98.svg",revision:null},{url:"/static/img/sr.d66c1240.svg",revision:null},{url:"/static/img/ss.caedfdf2.svg",revision:null},{url:"/static/img/ss.db181f81.svg",revision:null},{url:"/static/img/st.a70042c6.svg",revision:null},{url:"/static/img/st.ecc4827f.svg",revision:null},{url:"/static/img/sv.9501935a.svg",revision:null},{url:"/static/img/sv.f67839a6.svg",revision:null},{url:"/static/img/sx.77e864f0.svg",revision:null},{url:"/static/img/sx.c0e6297a.svg",revision:null},{url:"/static/img/sy.2b3eac89.svg",revision:null},{url:"/static/img/sy.7fe894df.svg",revision:null},{url:"/static/img/sz.70b6fc50.svg",revision:null},{url:"/static/img/sz.eb01cd9f.svg",revision:null},{url:"/static/img/tc.30ccd48e.svg",revision:null},{url:"/static/img/tc.651466dd.svg",revision:null},{url:"/static/img/td.5d622e26.svg",revision:null},{url:"/static/img/td.f1319408.svg",revision:null},{url:"/static/img/tf.27cbe00b.svg",revision:null},{url:"/static/img/tf.a1757237.svg",revision:null},{url:"/static/img/tg.b492a751.svg",revision:null},{url:"/static/img/tg.d04f874c.svg",revision:null},{url:"/static/img/th.79b63a8a.svg",revision:null},{url:"/static/img/th.b8e24edb.svg",revision:null},{url:"/static/img/tj.b7dafe8d.svg",revision:null},{url:"/static/img/tj.d3a42312.svg",revision:null},{url:"/static/img/tk.6c1f520c.svg",revision:null},{url:"/static/img/tk.f87f794b.svg",revision:null},{url:"/static/img/tl.85904d79.svg",revision:null},{url:"/static/img/tl.ca9af3c0.svg",revision:null},{url:"/static/img/tm.762df128.svg",revision:null},{url:"/static/img/tm.e467552c.svg",revision:null},{url:"/static/img/tn.cc3ab493.svg",revision:null},{url:"/static/img/tn.ff4c5190.svg",revision:null},{url:"/static/img/to.8dd22284.svg",revision:null},{url:"/static/img/to.9748a967.svg",revision:null},{url:"/static/img/tr.87e40d5c.svg",revision:null},{url:"/static/img/tr.fc8c91dd.svg",revision:null},{url:"/static/img/tt.4acf6cc2.svg",revision:null},{url:"/static/img/tt.5a459e81.svg",revision:null},{url:"/static/img/tv.9717b553.svg",revision:null},{url:"/static/img/tv.a8ff4939.svg",revision:null},{url:"/static/img/tw.45c8a106.svg",revision:null},{url:"/static/img/tw.c0cf9ea7.svg",revision:null},{url:"/static/img/tz.1abfbb38.svg",revision:null},{url:"/static/img/tz.c27fd405.svg",revision:null},{url:"/static/img/ua.04fa0e67.svg",revision:null},{url:"/static/img/ua.63d75c84.svg",revision:null},{url:"/static/img/ug.5ac71e98.svg",revision:null},{url:"/static/img/ug.5ae165a2.svg",revision:null},{url:"/static/img/um.582dd57b.svg",revision:null},{url:"/static/img/um.b38f913c.svg",revision:null},{url:"/static/img/un.2df110d6.svg",revision:null},{url:"/static/img/un.58a4a02a.svg",revision:null},{url:"/static/img/us.6c459052.svg",revision:null},{url:"/static/img/us.99e04236.svg",revision:null},{url:"/static/img/uy.69cf8938.svg",revision:null},{url:"/static/img/uy.b70ac310.svg",revision:null},{url:"/static/img/uz.7f8823a2.svg",revision:null},{url:"/static/img/uz.d53abc35.svg",revision:null},{url:"/static/img/va.7efb8ba6.svg",revision:null},{url:"/static/img/va.abcb42e8.svg",revision:null},{url:"/static/img/vc.37cf5ba1.svg",revision:null},{url:"/static/img/vc.3e4ac6d4.svg",revision:null},{url:"/static/img/ve.4cd0e3ed.svg",revision:null},{url:"/static/img/ve.9cd63506.svg",revision:null},{url:"/static/img/vg.025b8b6a.svg",revision:null},{url:"/static/img/vg.ae3b6f7e.svg",revision:null},{url:"/static/img/vi.293e6f1c.svg",revision:null},{url:"/static/img/vi.f920eec7.svg",revision:null},{url:"/static/img/vn.11dd1cf6.svg",revision:null},{url:"/static/img/vn.9ec4ca4d.svg",revision:null},{url:"/static/img/vu.5d2d7643.svg",revision:null},{url:"/static/img/vu.b7a8d91a.svg",revision:null},{url:"/static/img/wf.69c77016.svg",revision:null},{url:"/static/img/wf.9ca6f4bc.svg",revision:null},{url:"/static/img/ws.15c7a17c.svg",revision:null},{url:"/static/img/ws.d2e19e5a.svg",revision:null},{url:"/static/img/xk.16b6bb85.svg",revision:null},{url:"/static/img/xk.ca7843be.svg",revision:null},{url:"/static/img/ye.0b3f3c76.svg",revision:null},{url:"/static/img/ye.bb567731.svg",revision:null},{url:"/static/img/yt.332bd5d3.svg",revision:null},{url:"/static/img/yt.c33641ca.svg",revision:null},{url:"/static/img/za.2fa94205.svg",revision:null},{url:"/static/img/za.42e033a9.svg",revision:null},{url:"/static/img/zm.92477cab.svg",revision:null},{url:"/static/img/zm.ce5363b7.svg",revision:null},{url:"/static/img/zw.6a535c1e.svg",revision:null},{url:"/static/img/zw.f488cb8a.svg",revision:null},{url:"/static/js/1088.f184400f.js",revision:null},{url:"/static/js/1259.04c161c9.js",revision:null},{url:"/static/js/1449.a5b4b2d2.js",revision:null},{url:"/static/js/1485.501472f0.js",revision:null},{url:"/static/js/1512.b686fb87.js",revision:null},{url:"/static/js/169.92c1a438.js",revision:null},{url:"/static/js/1706.1a5248ba.js",revision:null},{url:"/static/js/1807.564d1fef.js",revision:null},{url:"/static/js/1949.aa522c80.js",revision:null},{url:"/static/js/2018.797df628.js",revision:null},{url:"/static/js/2106.50dde272.js",revision:null},{url:"/static/js/2140.d72a32d8.js",revision:null},{url:"/static/js/2183.f8766c50.js",revision:null},{url:"/static/js/2200.a7bc2894.js",revision:null},{url:"/static/js/2217.d60fbb58.js",revision:null},{url:"/static/js/2460.2a8400ba.js",revision:null},{url:"/static/js/2582.737d98fa.js",revision:null},{url:"/static/js/2614.d8f2af9e.js",revision:null},{url:"/static/js/2732.2b76d899.js",revision:null},{url:"/static/js/281.0844207b.js",revision:null},{url:"/static/js/2853.99de82eb.js",revision:null},{url:"/static/js/288.ae1aea67.js",revision:null},{url:"/static/js/2892.96883d80.js",revision:null},{url:"/static/js/2893.c9d72a7c.js",revision:null},{url:"/static/js/2951.82ed7dd0.js",revision:null},{url:"/static/js/2976.e3dbc1e6.js",revision:null},{url:"/static/js/3033.c2311336.js",revision:null},{url:"/static/js/3083.b7c37603.js",revision:null},{url:"/static/js/3211.542ae3e8.js",revision:null},{url:"/static/js/3322.dadc23cc.js",revision:null},{url:"/static/js/3368.8c968129.js",revision:null},{url:"/static/js/3369.cb38d432.js",revision:null},{url:"/static/js/34.4c59fb03.js",revision:null},{url:"/static/js/3400.6966f10e.js",revision:null},{url:"/static/js/3518.b56228c9.js",revision:null},{url:"/static/js/3559.61ebd182.js",revision:null},{url:"/static/js/3732.d6584e8e.js",revision:null},{url:"/static/js/3835.2db962db.js",revision:null},{url:"/static/js/3862.0ca0e08c.js",revision:null},{url:"/static/js/3924.0fd0a3c0.js",revision:null},{url:"/static/js/4053.3890f446.js",revision:null},{url:"/static/js/4084.0bc2385a.js",revision:null},{url:"/static/js/446.cdd8637e.js",revision:null},{url:"/static/js/4619.b038c54a.js",revision:null},{url:"/static/js/472.1405415c.js",revision:null},{url:"/static/js/4765.cd86a538.js",revision:null},{url:"/static/js/5197.1a8603ef.js",revision:null},{url:"/static/js/5207.7f241e21.js",revision:null},{url:"/static/js/5285.4efb90e2.js",revision:null},{url:"/static/js/5329.1dc4e553.js",revision:null},{url:"/static/js/5505.35fbb782.js",revision:null},{url:"/static/js/5638.d0047a11.js",revision:null},{url:"/static/js/6148.6a799072.js",revision:null},{url:"/static/js/6324.93ea59d2.js",revision:null},{url:"/static/js/6362.4870392f.js",revision:null},{url:"/static/js/6429.ffe0df4c.js",revision:null},{url:"/static/js/65.ae7df477.js",revision:null},{url:"/static/js/6523.426200f5.js",revision:null},{url:"/static/js/6640.49b4564c.js",revision:null},{url:"/static/js/667.3adea503.js",revision:null},{url:"/static/js/7089.8779e12e.js",revision:null},{url:"/static/js/729.81683ae6.js",revision:null},{url:"/static/js/735.09e06f2a.js",revision:null},{url:"/static/js/7381.16a4edaa.js",revision:null},{url:"/static/js/746.9a199f8f.js",revision:null},{url:"/static/js/7528.e54955c4.js",revision:null},{url:"/static/js/7590.be3564f1.js",revision:null},{url:"/static/js/7819.5b29d1a3.js",revision:null},{url:"/static/js/7841.580c6097.js",revision:null},{url:"/static/js/7878.cb30e975.js",revision:null},{url:"/static/js/7880.11b2f479.js",revision:null},{url:"/static/js/813.3ec855c4.js",revision:null},{url:"/static/js/8179.4d40de35.js",revision:null},{url:"/static/js/8224.fd608bb1.js",revision:null},{url:"/static/js/8391.c04e1c3a.js",revision:null},{url:"/static/js/844.1cd89eec.js",revision:null},{url:"/static/js/8498.e34e99e5.js",revision:null},{url:"/static/js/8621.edd395ad.js",revision:null},{url:"/static/js/8752.5e3dcc20.js",revision:null},{url:"/static/js/8769.52fe04f5.js",revision:null},{url:"/static/js/8784.5892bf2a.js",revision:null},{url:"/static/js/8825.f5386513.js",revision:null},{url:"/static/js/8895.c5e5490a.js",revision:null},{url:"/static/js/8930.5354086d.js",revision:null},{url:"/static/js/9091.b9371c68.js",revision:null},{url:"/static/js/9092.89f920f0.js",revision:null},{url:"/static/js/9211.e190626a.js",revision:null},{url:"/static/js/9334.043959f5.js",revision:null},{url:"/static/js/9381.a729807d.js",revision:null},{url:"/static/js/9461.1b6014d3.js",revision:null},{url:"/static/js/9472.8ac332bd.js",revision:null},{url:"/static/js/9751.9e425e19.js",revision:null},{url:"/static/js/980.ee52bc55.js",revision:null},{url:"/static/js/984.50a15617.js",revision:null},{url:"/static/js/9962.76f7d059.js",revision:null},{url:"/static/js/app.a9d9b93f.js",revision:null},{url:"/static/js/chunk-vendors.05911ac4.js",revision:null},{url:"/static/js/dashboard.3b1ddc55.js",revision:null},{url:"/static/js/login.98ae4df8.js",revision:null},{url:"/static/js/notfound.46477842.js",revision:null},{url:"/static/js/panel.43207715.js",revision:null},{url:"/static/js/plugin.71f81cbc.js",revision:null},{url:"/static/js/register.64e266ad.js",revision:null}],{})})); +if(!self.define){let i,s={};const l=(l,n)=>(l=new URL(l+".js",n).href,s[l]||new Promise((s=>{if("document"in self){const i=document.createElement("script");i.src=l,i.onload=s,document.head.appendChild(i)}else i=l,importScripts(l),s()})).then((()=>{let i=s[l];if(!i)throw new Error(`Module ${l} didn’t register its module`);return i})));self.define=(n,r)=>{const e=i||("document"in self?document.currentScript.src:"")||location.href;if(s[e])return;let t={};const c=i=>l(i,e),u={module:{uri:e},exports:t,require:c};s[e]=Promise.all(n.map((i=>u[i]||c(i)))).then((i=>(r(...i),t)))}}define(["./workbox-5b385ed2"],(function(i){"use strict";i.setCacheNameDetails({prefix:"platypush"}),self.addEventListener("message",(i=>{i.data&&"SKIP_WAITING"===i.data.type&&self.skipWaiting()})),i.precacheAndRoute([{url:"/fonts/Poppins.ttf",revision:"d10d3ed96303653f936a08b38534f12e"},{url:"/fonts/poppins.css",revision:"413ee9a4d1879f6ae3d62a796644daad"},{url:"/icons/jellyfin.svg",revision:"1ec11e72ffc381f8797ddbebed2652c0"},{url:"/icons/kodi.svg",revision:"81ea5504989d4a0ed19ba6528c39e80f"},{url:"/icons/openweathermap/black/01d.png",revision:"4cf2907a1083c067828830bb007e2f34"},{url:"/icons/openweathermap/black/01n.png",revision:"df30375c6371005e2d238c36255afc8a"},{url:"/icons/openweathermap/black/02d.png",revision:"79a0adce79d78da203beeb7a6f4f510b"},{url:"/icons/openweathermap/black/02n.png",revision:"68d34b41357c2a3ea9479dae653b3617"},{url:"/icons/openweathermap/black/03d.png",revision:"5f13dba4164c437e2fbdc1d1ecaada4c"},{url:"/icons/openweathermap/black/03n.png",revision:"65c125cd51934e24f9e3321cc5448d0e"},{url:"/icons/openweathermap/black/04d.png",revision:"e75cd73c232806d7364ad7feae354074"},{url:"/icons/openweathermap/black/04n.png",revision:"e75cd73c232806d7364ad7feae354074"},{url:"/icons/openweathermap/black/09d.png",revision:"328b726310fb5762861859e33ac9066a"},{url:"/icons/openweathermap/black/09n.png",revision:"328b726310fb5762861859e33ac9066a"},{url:"/icons/openweathermap/black/10d.png",revision:"7dde329628506567faef30b9eb5c5f69"},{url:"/icons/openweathermap/black/10n.png",revision:"7dde329628506567faef30b9eb5c5f69"},{url:"/icons/openweathermap/black/11d.png",revision:"8f6a4b2446b42e8215195e195133e546"},{url:"/icons/openweathermap/black/11n.png",revision:"8f6a4b2446b42e8215195e195133e546"},{url:"/icons/openweathermap/black/13d.png",revision:"45bfce1d2ea7d16415848650eb5d2cb3"},{url:"/icons/openweathermap/black/13n.png",revision:"45bfce1d2ea7d16415848650eb5d2cb3"},{url:"/icons/openweathermap/black/50d.png",revision:"7a304f2b15fe4d9de351dabc44ff900d"},{url:"/icons/openweathermap/black/50n.png",revision:"7a304f2b15fe4d9de351dabc44ff900d"},{url:"/icons/openweathermap/black/unknown.png",revision:"c219891f5796e43d0f75f6525a8d6f33"},{url:"/icons/openweathermap/dark/01d.png",revision:"4cf2907a1083c067828830bb007e2f34"},{url:"/icons/openweathermap/dark/01n.png",revision:"df30375c6371005e2d238c36255afc8a"},{url:"/icons/openweathermap/dark/02d.png",revision:"79a0adce79d78da203beeb7a6f4f510b"},{url:"/icons/openweathermap/dark/02n.png",revision:"68d34b41357c2a3ea9479dae653b3617"},{url:"/icons/openweathermap/dark/03d.png",revision:"5f13dba4164c437e2fbdc1d1ecaada4c"},{url:"/icons/openweathermap/dark/03n.png",revision:"65c125cd51934e24f9e3321cc5448d0e"},{url:"/icons/openweathermap/dark/04d.png",revision:"e75cd73c232806d7364ad7feae354074"},{url:"/icons/openweathermap/dark/04n.png",revision:"e75cd73c232806d7364ad7feae354074"},{url:"/icons/openweathermap/dark/09d.png",revision:"328b726310fb5762861859e33ac9066a"},{url:"/icons/openweathermap/dark/09n.png",revision:"328b726310fb5762861859e33ac9066a"},{url:"/icons/openweathermap/dark/10d.png",revision:"7dde329628506567faef30b9eb5c5f69"},{url:"/icons/openweathermap/dark/10n.png",revision:"7dde329628506567faef30b9eb5c5f69"},{url:"/icons/openweathermap/dark/11d.png",revision:"8f6a4b2446b42e8215195e195133e546"},{url:"/icons/openweathermap/dark/11n.png",revision:"8f6a4b2446b42e8215195e195133e546"},{url:"/icons/openweathermap/dark/13d.png",revision:"45bfce1d2ea7d16415848650eb5d2cb3"},{url:"/icons/openweathermap/dark/13n.png",revision:"45bfce1d2ea7d16415848650eb5d2cb3"},{url:"/icons/openweathermap/dark/50d.png",revision:"7a304f2b15fe4d9de351dabc44ff900d"},{url:"/icons/openweathermap/dark/50n.png",revision:"7a304f2b15fe4d9de351dabc44ff900d"},{url:"/icons/openweathermap/dark/unknown.png",revision:"c219891f5796e43d0f75f6525a8d6f33"},{url:"/icons/openweathermap/light/01d.png",revision:"00c2d0a72a69bf279bf8703cea9ce8d2"},{url:"/icons/openweathermap/light/01n.png",revision:"3a65e9f7ed5c54c6acd638a7bd26de25"},{url:"/icons/openweathermap/light/02d.png",revision:"63dab156e991be7e4174d1d6cd8c2321"},{url:"/icons/openweathermap/light/02n.png",revision:"7c64d1a1c5efdbe38e6b7e3b4f50f2c5"},{url:"/icons/openweathermap/light/03d.png",revision:"f609003793e658a60870587cd450fc6f"},{url:"/icons/openweathermap/light/03n.png",revision:"7e694b4317b3e9f2533db93969fcc3e8"},{url:"/icons/openweathermap/light/04d.png",revision:"098f9d40b1d5747996df9a720f160c81"},{url:"/icons/openweathermap/light/04n.png",revision:"098f9d40b1d5747996df9a720f160c81"},{url:"/icons/openweathermap/light/09d.png",revision:"c48a99b60e45690cdc702a2dc6694002"},{url:"/icons/openweathermap/light/09n.png",revision:"c48a99b60e45690cdc702a2dc6694002"},{url:"/icons/openweathermap/light/10d.png",revision:"2750daf3f0d811230591a415e42bddb2"},{url:"/icons/openweathermap/light/10n.png",revision:"2750daf3f0d811230591a415e42bddb2"},{url:"/icons/openweathermap/light/11d.png",revision:"7bd0501a7bfcf2675467df0c0788ffad"},{url:"/icons/openweathermap/light/11n.png",revision:"7bd0501a7bfcf2675467df0c0788ffad"},{url:"/icons/openweathermap/light/13d.png",revision:"4e11e697c6bafc8dd83c4dfc8ce47919"},{url:"/icons/openweathermap/light/13n.png",revision:"4e11e697c6bafc8dd83c4dfc8ce47919"},{url:"/icons/openweathermap/light/50d.png",revision:"9a0770f3adc7c4a27e131c04a739f735"},{url:"/icons/openweathermap/light/50n.png",revision:"9a0770f3adc7c4a27e131c04a739f735"},{url:"/icons/openweathermap/light/unknown.png",revision:"f14a44a1ecde49a5c6a396f8c1753263"},{url:"/icons/openweathermap/white/01d.png",revision:"00c2d0a72a69bf279bf8703cea9ce8d2"},{url:"/icons/openweathermap/white/01n.png",revision:"3a65e9f7ed5c54c6acd638a7bd26de25"},{url:"/icons/openweathermap/white/02d.png",revision:"63dab156e991be7e4174d1d6cd8c2321"},{url:"/icons/openweathermap/white/02n.png",revision:"7c64d1a1c5efdbe38e6b7e3b4f50f2c5"},{url:"/icons/openweathermap/white/03d.png",revision:"f609003793e658a60870587cd450fc6f"},{url:"/icons/openweathermap/white/03n.png",revision:"7e694b4317b3e9f2533db93969fcc3e8"},{url:"/icons/openweathermap/white/04d.png",revision:"098f9d40b1d5747996df9a720f160c81"},{url:"/icons/openweathermap/white/04n.png",revision:"098f9d40b1d5747996df9a720f160c81"},{url:"/icons/openweathermap/white/09d.png",revision:"c48a99b60e45690cdc702a2dc6694002"},{url:"/icons/openweathermap/white/09n.png",revision:"c48a99b60e45690cdc702a2dc6694002"},{url:"/icons/openweathermap/white/10d.png",revision:"2750daf3f0d811230591a415e42bddb2"},{url:"/icons/openweathermap/white/10n.png",revision:"2750daf3f0d811230591a415e42bddb2"},{url:"/icons/openweathermap/white/11d.png",revision:"7bd0501a7bfcf2675467df0c0788ffad"},{url:"/icons/openweathermap/white/11n.png",revision:"7bd0501a7bfcf2675467df0c0788ffad"},{url:"/icons/openweathermap/white/13d.png",revision:"4e11e697c6bafc8dd83c4dfc8ce47919"},{url:"/icons/openweathermap/white/13n.png",revision:"4e11e697c6bafc8dd83c4dfc8ce47919"},{url:"/icons/openweathermap/white/50d.png",revision:"9a0770f3adc7c4a27e131c04a739f735"},{url:"/icons/openweathermap/white/50n.png",revision:"9a0770f3adc7c4a27e131c04a739f735"},{url:"/icons/openweathermap/white/unknown.png",revision:"f14a44a1ecde49a5c6a396f8c1753263"},{url:"/icons/plex.svg",revision:"9923c5c80858a7da9d48c3ee77974e77"},{url:"/icons/smartthings.png",revision:"9306b6ca82efa85d58823615ff14b00f"},{url:"/icons/z-wave.png",revision:"3045e92627da521267db845b16da6028"},{url:"/icons/zigbee.svg",revision:"3e5f749af9e83ace5c12ff3aac6d4b88"},{url:"/img/dashboard-bg-light.jpg",revision:"f9ab2a6552509997ec0cbaeb47199eba"},{url:"/img/logo.png",revision:"98702e78dde598404826f6e9279e4ab3"},{url:"/img/spinner.gif",revision:"5572838d351b66bf6a3350b6d8d23cb8"},{url:"/index.html",revision:"5f4205506a2ce7c9134fa7eae563e72f"},{url:"/manifest.json",revision:"8a45dcffc3380b17da6ea17291b43e00"},{url:"/static/css/1019.af89a8dd.css",revision:null},{url:"/static/css/1054.1651fcc4.css",revision:null},{url:"/static/css/1391.e253d1d5.css",revision:null},{url:"/static/css/1421.1a42ddca.css",revision:null},{url:"/static/css/1449.9ddbde9a.css",revision:null},{url:"/static/css/169.e6cc03dc.css",revision:null},{url:"/static/css/1706.bb05100a.css",revision:null},{url:"/static/css/1949.77f77742.css",revision:null},{url:"/static/css/2029.66acebb6.css",revision:null},{url:"/static/css/2140.57230853.css",revision:null},{url:"/static/css/215.91074688.css",revision:null},{url:"/static/css/2217.4daed832.css",revision:null},{url:"/static/css/2460.352e2032.css",revision:null},{url:"/static/css/2694.515bb415.css",revision:null},{url:"/static/css/2718.5a080a62.css",revision:null},{url:"/static/css/2764.7b323478.css",revision:null},{url:"/static/css/2831.09fe1331.css",revision:null},{url:"/static/css/2844.213aa9d5.css",revision:null},{url:"/static/css/2893.fb75679d.css",revision:null},{url:"/static/css/2924.355557a9.css",revision:null},{url:"/static/css/293.521a4f1c.css",revision:null},{url:"/static/css/2976.59466ee8.css",revision:null},{url:"/static/css/2992.ffd96967.css",revision:null},{url:"/static/css/3211.e29a4da3.css",revision:null},{url:"/static/css/3248.a0e1e73b.css",revision:null},{url:"/static/css/3368.be1ab054.css",revision:null},{url:"/static/css/3369.5df5b182.css",revision:null},{url:"/static/css/34.a44e466f.css",revision:null},{url:"/static/css/3426.50cde06e.css",revision:null},{url:"/static/css/3559.ea018a19.css",revision:null},{url:"/static/css/38.b93403c3.css",revision:null},{url:"/static/css/3826.eb2047be.css",revision:null},{url:"/static/css/3835.bc057f22.css",revision:null},{url:"/static/css/3865.8b16d712.css",revision:null},{url:"/static/css/3924.a0990b57.css",revision:null},{url:"/static/css/4015.b27ff6b3.css",revision:null},{url:"/static/css/4106.2a5e087e.css",revision:null},{url:"/static/css/4339.10e2638e.css",revision:null},{url:"/static/css/4364.460ea7ea.css",revision:null},{url:"/static/css/446.a06f3c43.css",revision:null},{url:"/static/css/4470.aa130b90.css",revision:null},{url:"/static/css/4790.de9cbcae.css",revision:null},{url:"/static/css/4795.708edd2b.css",revision:null},{url:"/static/css/5053.af8a2a60.css",revision:null},{url:"/static/css/5086.1debab08.css",revision:null},{url:"/static/css/5144.58c91f04.css",revision:null},{url:"/static/css/5167.27f1bcef.css",revision:null},{url:"/static/css/5207.1bd62254.css",revision:null},{url:"/static/css/5285.9219493c.css",revision:null},{url:"/static/css/5329.8fe5b425.css",revision:null},{url:"/static/css/557.f2c6f156.css",revision:null},{url:"/static/css/5638.8fd4b2fd.css",revision:null},{url:"/static/css/5906.5764c6f4.css",revision:null},{url:"/static/css/5933.58e6489b.css",revision:null},{url:"/static/css/6217.9d3928a2.css",revision:null},{url:"/static/css/6324.611abb15.css",revision:null},{url:"/static/css/6429.44836618.css",revision:null},{url:"/static/css/65.14c0a64c.css",revision:null},{url:"/static/css/6517.df2ff86e.css",revision:null},{url:"/static/css/6523.21976e39.css",revision:null},{url:"/static/css/6561.dca0bf04.css",revision:null},{url:"/static/css/6602.e64a7f9e.css",revision:null},{url:"/static/css/669.2932b8cc.css",revision:null},{url:"/static/css/6734.0e8a5c69.css",revision:null},{url:"/static/css/6882.e84203b6.css",revision:null},{url:"/static/css/7257.5944729a.css",revision:null},{url:"/static/css/729.b8d5159d.css",revision:null},{url:"/static/css/7439.3e05b426.css",revision:null},{url:"/static/css/746.73f3ef00.css",revision:null},{url:"/static/css/7503.ef90df2a.css",revision:null},{url:"/static/css/7528.e72123ff.css",revision:null},{url:"/static/css/7590.062e0c94.css",revision:null},{url:"/static/css/7617.df56322e.css",revision:null},{url:"/static/css/7619.c8d6a02e.css",revision:null},{url:"/static/css/7624.e657a974.css",revision:null},{url:"/static/css/7651.febeb48c.css",revision:null},{url:"/static/css/7841.73c7ce9d.css",revision:null},{url:"/static/css/7897.f0ce1f42.css",revision:null},{url:"/static/css/7976.45217ed0.css",revision:null},{url:"/static/css/7998.e7f9b7de.css",revision:null},{url:"/static/css/8069.6137b3a0.css",revision:null},{url:"/static/css/8179.54b37efe.css",revision:null},{url:"/static/css/8391.57207909.css",revision:null},{url:"/static/css/8409.5edaa185.css",revision:null},{url:"/static/css/8434.61db845a.css",revision:null},{url:"/static/css/8498.381007b7.css",revision:null},{url:"/static/css/8621.dc5673af.css",revision:null},{url:"/static/css/864.b7e8560d.css",revision:null},{url:"/static/css/8756.53bc55b1.css",revision:null},{url:"/static/css/8769.3c09554f.css",revision:null},{url:"/static/css/8825.64638d91.css",revision:null},{url:"/static/css/8989.b08bd0bb.css",revision:null},{url:"/static/css/9025.80353e6d.css",revision:null},{url:"/static/css/906.2d11adc8.css",revision:null},{url:"/static/css/9092.5953fa24.css",revision:null},{url:"/static/css/9122.ae7ee25d.css",revision:null},{url:"/static/css/9211.c14c28e9.css",revision:null},{url:"/static/css/9461.ae92bb88.css",revision:null},{url:"/static/css/9480.9a19b0d1.css",revision:null},{url:"/static/css/9663.e136d856.css",revision:null},{url:"/static/css/9751.f5541a2c.css",revision:null},{url:"/static/css/980.0ae4451e.css",revision:null},{url:"/static/css/984.4b68dcc1.css",revision:null},{url:"/static/css/9962.b5594d80.css",revision:null},{url:"/static/css/app.70fb1f4a.css",revision:null},{url:"/static/css/chunk-vendors.d510eff2.css",revision:null},{url:"/static/css/dashboard.3111af9d.css",revision:null},{url:"/static/css/panel.486b493e.css",revision:null},{url:"/static/css/plugin.12cf4736.css",revision:null},{url:"/static/fonts/fa-brands-400.5d18d427.ttf",revision:null},{url:"/static/fonts/fa-brands-400.87587a68.woff2",revision:null},{url:"/static/fonts/fa-regular-400.3ccdbd3d.woff2",revision:null},{url:"/static/fonts/fa-regular-400.81482cd4.ttf",revision:null},{url:"/static/fonts/fa-solid-900.0b0cc8a6.woff2",revision:null},{url:"/static/fonts/fa-solid-900.69d3141a.ttf",revision:null},{url:"/static/fonts/lato-medium-italic.1996cc15.woff",revision:null},{url:"/static/fonts/lato-medium-italic.1e312dd9.woff2",revision:null},{url:"/static/fonts/lato-medium.13fcde4c.woff2",revision:null},{url:"/static/fonts/lato-medium.b41c3821.woff",revision:null},{url:"/static/img/ad.cb33f69a.svg",revision:null},{url:"/static/img/ad.fa8477e6.svg",revision:null},{url:"/static/img/ae.a3f5e295.svg",revision:null},{url:"/static/img/ae.f06e0095.svg",revision:null},{url:"/static/img/af.89591ab0.svg",revision:null},{url:"/static/img/af.8ca96393.svg",revision:null},{url:"/static/img/ag.4c37bc2e.svg",revision:null},{url:"/static/img/ag.56074d55.svg",revision:null},{url:"/static/img/ai.70eefdc0.svg",revision:null},{url:"/static/img/ai.893d1179.svg",revision:null},{url:"/static/img/al.b16acdb2.svg",revision:null},{url:"/static/img/al.e0864b5d.svg",revision:null},{url:"/static/img/am.00f0fec4.svg",revision:null},{url:"/static/img/am.a566904f.svg",revision:null},{url:"/static/img/ao.3df23f21.svg",revision:null},{url:"/static/img/ao.c0c32201.svg",revision:null},{url:"/static/img/aq.1b8c45a6.svg",revision:null},{url:"/static/img/aq.aa242c4a.svg",revision:null},{url:"/static/img/ar.22a3116e.svg",revision:null},{url:"/static/img/ar.d3238270.svg",revision:null},{url:"/static/img/as.10ed1a23.svg",revision:null},{url:"/static/img/as.4a330654.svg",revision:null},{url:"/static/img/at.02a64279.svg",revision:null},{url:"/static/img/at.94cde74c.svg",revision:null},{url:"/static/img/au.cc65fc07.svg",revision:null},{url:"/static/img/au.dbcdef2c.svg",revision:null},{url:"/static/img/aw.abbad4ac.svg",revision:null},{url:"/static/img/aw.be4540eb.svg",revision:null},{url:"/static/img/ax.371c7af2.svg",revision:null},{url:"/static/img/ax.91eea523.svg",revision:null},{url:"/static/img/az.0e2f1d1a.svg",revision:null},{url:"/static/img/az.f399f1c8.svg",revision:null},{url:"/static/img/ba.032070d4.svg",revision:null},{url:"/static/img/ba.e167b08f.svg",revision:null},{url:"/static/img/bb.23a15e67.svg",revision:null},{url:"/static/img/bb.b800513b.svg",revision:null},{url:"/static/img/bd.c1abcb00.svg",revision:null},{url:"/static/img/bd.c4a5f0e2.svg",revision:null},{url:"/static/img/be.29774a37.svg",revision:null},{url:"/static/img/be.3eb14701.svg",revision:null},{url:"/static/img/bf.2334e919.svg",revision:null},{url:"/static/img/bf.4ffd5dc6.svg",revision:null},{url:"/static/img/bg.700f100c.svg",revision:null},{url:"/static/img/bg.d0a49130.svg",revision:null},{url:"/static/img/bh.2a884f6c.svg",revision:null},{url:"/static/img/bh.3968dfe0.svg",revision:null},{url:"/static/img/bi.211d0f9e.svg",revision:null},{url:"/static/img/bi.ae3bb248.svg",revision:null},{url:"/static/img/bj.2cdc8a62.svg",revision:null},{url:"/static/img/bj.aba95ad2.svg",revision:null},{url:"/static/img/bl.04966866.svg",revision:null},{url:"/static/img/bl.3e69e968.svg",revision:null},{url:"/static/img/bm.e6903c8e.svg",revision:null},{url:"/static/img/bm.e69e40c4.svg",revision:null},{url:"/static/img/bn.07911e0c.svg",revision:null},{url:"/static/img/bn.4d91734a.svg",revision:null},{url:"/static/img/bo.03595499.svg",revision:null},{url:"/static/img/bo.9c1d9ef8.svg",revision:null},{url:"/static/img/bq.747d8177.svg",revision:null},{url:"/static/img/bq.b9355bec.svg",revision:null},{url:"/static/img/br.058a5086.svg",revision:null},{url:"/static/img/br.fe030c1c.svg",revision:null},{url:"/static/img/bs.d228cbb2.svg",revision:null},{url:"/static/img/bs.ef0a29ed.svg",revision:null},{url:"/static/img/bt.3f8ecb9b.svg",revision:null},{url:"/static/img/bt.fc241981.svg",revision:null},{url:"/static/img/bv.5503f03a.svg",revision:null},{url:"/static/img/bv.7f7cd26f.svg",revision:null},{url:"/static/img/bw.494aae64.svg",revision:null},{url:"/static/img/bw.b767df8c.svg",revision:null},{url:"/static/img/by.78d2c3c9.svg",revision:null},{url:"/static/img/by.fba98c48.svg",revision:null},{url:"/static/img/bz.14c3376a.svg",revision:null},{url:"/static/img/bz.5e0ef548.svg",revision:null},{url:"/static/img/ca.163ac200.svg",revision:null},{url:"/static/img/ca.a2ab234d.svg",revision:null},{url:"/static/img/cc.51960f85.svg",revision:null},{url:"/static/img/cc.813adff8.svg",revision:null},{url:"/static/img/cd.39186ec2.svg",revision:null},{url:"/static/img/cd.b4bd46ee.svg",revision:null},{url:"/static/img/cf.b5702729.svg",revision:null},{url:"/static/img/cf.fe1120e9.svg",revision:null},{url:"/static/img/cg.00603842.svg",revision:null},{url:"/static/img/cg.12414c99.svg",revision:null},{url:"/static/img/ch.7376c9c3.svg",revision:null},{url:"/static/img/ch.a558d859.svg",revision:null},{url:"/static/img/ci.1251a8e3.svg",revision:null},{url:"/static/img/ci.425a24c2.svg",revision:null},{url:"/static/img/ck.4e83dd3e.svg",revision:null},{url:"/static/img/ck.6303aa5b.svg",revision:null},{url:"/static/img/cl.0917a91e.svg",revision:null},{url:"/static/img/cl.b5974a35.svg",revision:null},{url:"/static/img/cm.253adb39.svg",revision:null},{url:"/static/img/cm.853e2843.svg",revision:null},{url:"/static/img/cn.38f63e1e.svg",revision:null},{url:"/static/img/cn.e1b166eb.svg",revision:null},{url:"/static/img/co.33e249d8.svg",revision:null},{url:"/static/img/co.b5cbc817.svg",revision:null},{url:"/static/img/cr.2e572846.svg",revision:null},{url:"/static/img/cr.336eb7d3.svg",revision:null},{url:"/static/img/cu.c2a6f0ed.svg",revision:null},{url:"/static/img/cu.d6e33f19.svg",revision:null},{url:"/static/img/cv.5ea64968.svg",revision:null},{url:"/static/img/cv.b3ab83f5.svg",revision:null},{url:"/static/img/cw.0e14b0b7.svg",revision:null},{url:"/static/img/cw.9b9b7ed5.svg",revision:null},{url:"/static/img/cx.da5de6d2.svg",revision:null},{url:"/static/img/cx.e04e07e8.svg",revision:null},{url:"/static/img/cy.834e6240.svg",revision:null},{url:"/static/img/cy.bfcfd736.svg",revision:null},{url:"/static/img/cz.aa114964.svg",revision:null},{url:"/static/img/cz.b5f98a6b.svg",revision:null},{url:"/static/img/dashboard-bg-light.06da6eab.jpg",revision:null},{url:"/static/img/de.8e159e6e.svg",revision:null},{url:"/static/img/de.b827ac51.svg",revision:null},{url:"/static/img/dj.4197a18a.svg",revision:null},{url:"/static/img/dj.925748d5.svg",revision:null},{url:"/static/img/dk.3ca1caed.svg",revision:null},{url:"/static/img/dk.a867eeef.svg",revision:null},{url:"/static/img/dm.7ddb00ac.svg",revision:null},{url:"/static/img/dm.bca6d70c.svg",revision:null},{url:"/static/img/do.81097daa.svg",revision:null},{url:"/static/img/do.954f0f3e.svg",revision:null},{url:"/static/img/dz.76d47b01.svg",revision:null},{url:"/static/img/dz.b7e2fbce.svg",revision:null},{url:"/static/img/ec.0029f514.svg",revision:null},{url:"/static/img/ec.5f387e2f.svg",revision:null},{url:"/static/img/ee.1b4839e0.svg",revision:null},{url:"/static/img/ee.828384a8.svg",revision:null},{url:"/static/img/eg.38443fa6.svg",revision:null},{url:"/static/img/eg.5756a758.svg",revision:null},{url:"/static/img/eh.82bd1c7b.svg",revision:null},{url:"/static/img/eh.f8d7b64f.svg",revision:null},{url:"/static/img/er.bf5b134b.svg",revision:null},{url:"/static/img/er.e932abe1.svg",revision:null},{url:"/static/img/es-ct.64a68954.svg",revision:null},{url:"/static/img/es-ct.69469f50.svg",revision:null},{url:"/static/img/es.7dd46df0.svg",revision:null},{url:"/static/img/es.de5915e5.svg",revision:null},{url:"/static/img/et.82e8eb21.svg",revision:null},{url:"/static/img/et.a998a1b2.svg",revision:null},{url:"/static/img/eu.4c6e130f.svg",revision:null},{url:"/static/img/eu.aba724b1.svg",revision:null},{url:"/static/img/fi.0cd85b78.svg",revision:null},{url:"/static/img/fi.3be6b378.svg",revision:null},{url:"/static/img/fj.ac9c916f.svg",revision:null},{url:"/static/img/fj.e8d3e00b.svg",revision:null},{url:"/static/img/fk.af0350f8.svg",revision:null},{url:"/static/img/fk.db55fa14.svg",revision:null},{url:"/static/img/fm.3491efc7.svg",revision:null},{url:"/static/img/fm.78d44caa.svg",revision:null},{url:"/static/img/fo.1da81e3a.svg",revision:null},{url:"/static/img/fo.72949ad1.svg",revision:null},{url:"/static/img/fr.3565b8f4.svg",revision:null},{url:"/static/img/fr.9cb70285.svg",revision:null},{url:"/static/img/ga.3e474381.svg",revision:null},{url:"/static/img/ga.59f7d865.svg",revision:null},{url:"/static/img/gb-eng.0fac6e79.svg",revision:null},{url:"/static/img/gb-eng.513dcf1b.svg",revision:null},{url:"/static/img/gb-nir.2b7d2c3a.svg",revision:null},{url:"/static/img/gb-nir.f59817d6.svg",revision:null},{url:"/static/img/gb-sct.f5001e5d.svg",revision:null},{url:"/static/img/gb-sct.fee55173.svg",revision:null},{url:"/static/img/gb-wls.13481560.svg",revision:null},{url:"/static/img/gb-wls.95b2cfab.svg",revision:null},{url:"/static/img/gb.2aafb374.svg",revision:null},{url:"/static/img/gb.7a456bb2.svg",revision:null},{url:"/static/img/gd.04ea09b7.svg",revision:null},{url:"/static/img/gd.60b96978.svg",revision:null},{url:"/static/img/ge.b7b65b55.svg",revision:null},{url:"/static/img/ge.c7190912.svg",revision:null},{url:"/static/img/gf.531f9e07.svg",revision:null},{url:"/static/img/gf.90f438a3.svg",revision:null},{url:"/static/img/gg.3aebc3ce.svg",revision:null},{url:"/static/img/gg.65174039.svg",revision:null},{url:"/static/img/gh.af443995.svg",revision:null},{url:"/static/img/gh.f2b6baac.svg",revision:null},{url:"/static/img/gi.302c2506.svg",revision:null},{url:"/static/img/gi.7beea6ed.svg",revision:null},{url:"/static/img/gl.551d0783.svg",revision:null},{url:"/static/img/gl.6a5c17b0.svg",revision:null},{url:"/static/img/gm.0e00e9d4.svg",revision:null},{url:"/static/img/gm.1724dc37.svg",revision:null},{url:"/static/img/gn.54a75b28.svg",revision:null},{url:"/static/img/gn.7c96520b.svg",revision:null},{url:"/static/img/gp.4327060f.svg",revision:null},{url:"/static/img/gp.f8adbf5c.svg",revision:null},{url:"/static/img/gq.b1679302.svg",revision:null},{url:"/static/img/gq.bd7daf33.svg",revision:null},{url:"/static/img/gr.07bedadf.svg",revision:null},{url:"/static/img/gr.25dd3287.svg",revision:null},{url:"/static/img/gs.60368968.svg",revision:null},{url:"/static/img/gs.b2836676.svg",revision:null},{url:"/static/img/gt.1a24ed67.svg",revision:null},{url:"/static/img/gt.825f7286.svg",revision:null},{url:"/static/img/gu.05f0ab85.svg",revision:null},{url:"/static/img/gu.19b114eb.svg",revision:null},{url:"/static/img/gw.bcd1eddb.svg",revision:null},{url:"/static/img/gw.c97f3f94.svg",revision:null},{url:"/static/img/gy.6327f72a.svg",revision:null},{url:"/static/img/gy.e11d0234.svg",revision:null},{url:"/static/img/hk.b199a9ee.svg",revision:null},{url:"/static/img/hk.c72bba0e.svg",revision:null},{url:"/static/img/hm.4aa61657.svg",revision:null},{url:"/static/img/hm.d4b3d393.svg",revision:null},{url:"/static/img/hn.08ad78b2.svg",revision:null},{url:"/static/img/hn.44cee191.svg",revision:null},{url:"/static/img/hr.078b1bf9.svg",revision:null},{url:"/static/img/hr.1f4e28b8.svg",revision:null},{url:"/static/img/ht.6943447c.svg",revision:null},{url:"/static/img/ht.7ca68737.svg",revision:null},{url:"/static/img/hu.692e97ca.svg",revision:null},{url:"/static/img/hu.b10d3f8e.svg",revision:null},{url:"/static/img/id.94464e47.svg",revision:null},{url:"/static/img/id.a05dc04c.svg",revision:null},{url:"/static/img/ie.5154112a.svg",revision:null},{url:"/static/img/ie.e23b25d1.svg",revision:null},{url:"/static/img/il.150f4c5f.svg",revision:null},{url:"/static/img/il.e02a66d3.svg",revision:null},{url:"/static/img/im.25166c91.svg",revision:null},{url:"/static/img/im.942419c5.svg",revision:null},{url:"/static/img/in.954929a0.svg",revision:null},{url:"/static/img/in.bd0d4f19.svg",revision:null},{url:"/static/img/io.a59923ab.svg",revision:null},{url:"/static/img/io.fa003484.svg",revision:null},{url:"/static/img/iq.1232a5c2.svg",revision:null},{url:"/static/img/iq.9a48d678.svg",revision:null},{url:"/static/img/ir.1ed24953.svg",revision:null},{url:"/static/img/ir.bc7ae9e1.svg",revision:null},{url:"/static/img/is.cad57f19.svg",revision:null},{url:"/static/img/is.eea59326.svg",revision:null},{url:"/static/img/it.039b4527.svg",revision:null},{url:"/static/img/it.e8516fc7.svg",revision:null},{url:"/static/img/je.1684dacc.svg",revision:null},{url:"/static/img/je.3ed72a25.svg",revision:null},{url:"/static/img/jellyfin.7b53a541.svg",revision:null},{url:"/static/img/jm.2357530e.svg",revision:null},{url:"/static/img/jm.479f30fe.svg",revision:null},{url:"/static/img/jo.06fbaa2c.svg",revision:null},{url:"/static/img/jo.7ac45a65.svg",revision:null},{url:"/static/img/jp.1795778c.svg",revision:null},{url:"/static/img/jp.b6063838.svg",revision:null},{url:"/static/img/ke.6dbfffd5.svg",revision:null},{url:"/static/img/ke.769bb975.svg",revision:null},{url:"/static/img/kg.96c12490.svg",revision:null},{url:"/static/img/kg.daded53c.svg",revision:null},{url:"/static/img/kh.8eeb1634.svg",revision:null},{url:"/static/img/kh.b10339d6.svg",revision:null},{url:"/static/img/ki.033ff9ce.svg",revision:null},{url:"/static/img/ki.89e43a21.svg",revision:null},{url:"/static/img/km.1e3bd5fe.svg",revision:null},{url:"/static/img/km.3ffb0228.svg",revision:null},{url:"/static/img/kn.0c16fe68.svg",revision:null},{url:"/static/img/kn.8f2e7b29.svg",revision:null},{url:"/static/img/kodi.d18f8d23.svg",revision:null},{url:"/static/img/kp.0f5253d8.svg",revision:null},{url:"/static/img/kp.f4ff9e76.svg",revision:null},{url:"/static/img/kr.0dc8b972.svg",revision:null},{url:"/static/img/kr.0f5e1116.svg",revision:null},{url:"/static/img/kw.3b4f3ea3.svg",revision:null},{url:"/static/img/kw.830d3755.svg",revision:null},{url:"/static/img/ky.be81d90b.svg",revision:null},{url:"/static/img/ky.e3b76b32.svg",revision:null},{url:"/static/img/kz.32ac1036.svg",revision:null},{url:"/static/img/kz.579ac0f9.svg",revision:null},{url:"/static/img/la.e583f8ec.svg",revision:null},{url:"/static/img/la.f71017ef.svg",revision:null},{url:"/static/img/lb.8eea508a.svg",revision:null},{url:"/static/img/lb.bdbeb8f1.svg",revision:null},{url:"/static/img/lc.25f644a6.svg",revision:null},{url:"/static/img/lc.68bd77ae.svg",revision:null},{url:"/static/img/li.8dc1ed79.svg",revision:null},{url:"/static/img/li.d7e2a871.svg",revision:null},{url:"/static/img/lk.42c41c61.svg",revision:null},{url:"/static/img/lk.e52240d6.svg",revision:null},{url:"/static/img/lr.5b84ff00.svg",revision:null},{url:"/static/img/lr.9a67cd3d.svg",revision:null},{url:"/static/img/ls.6d444cae.svg",revision:null},{url:"/static/img/ls.fe1da403.svg",revision:null},{url:"/static/img/lt.03a2e8c1.svg",revision:null},{url:"/static/img/lt.b57ea2a8.svg",revision:null},{url:"/static/img/lu.93878a1b.svg",revision:null},{url:"/static/img/lu.e3bdc6d3.svg",revision:null},{url:"/static/img/lv.1853e3a0.svg",revision:null},{url:"/static/img/lv.679c099e.svg",revision:null},{url:"/static/img/ly.05f8732e.svg",revision:null},{url:"/static/img/ly.b9e750ff.svg",revision:null},{url:"/static/img/ma.65053fc4.svg",revision:null},{url:"/static/img/ma.88ada30c.svg",revision:null},{url:"/static/img/mc.2c03ea5c.svg",revision:null},{url:"/static/img/mc.89b532e8.svg",revision:null},{url:"/static/img/md.646818c3.svg",revision:null},{url:"/static/img/md.a56562ee.svg",revision:null},{url:"/static/img/me.2e71b778.svg",revision:null},{url:"/static/img/me.f05548f2.svg",revision:null},{url:"/static/img/mf.70d09a4a.svg",revision:null},{url:"/static/img/mf.7da6b3d2.svg",revision:null},{url:"/static/img/mg.09ca17b2.svg",revision:null},{url:"/static/img/mg.b3fff4a6.svg",revision:null},{url:"/static/img/mh.3fd69bb2.svg",revision:null},{url:"/static/img/mh.f6cbc774.svg",revision:null},{url:"/static/img/mk.4234a248.svg",revision:null},{url:"/static/img/mk.e5412079.svg",revision:null},{url:"/static/img/ml.3fad079e.svg",revision:null},{url:"/static/img/ml.4f0dba9e.svg",revision:null},{url:"/static/img/mm.8ac1f094.svg",revision:null},{url:"/static/img/mm.adaa2111.svg",revision:null},{url:"/static/img/mn.78547af0.svg",revision:null},{url:"/static/img/mn.a4bcb0e6.svg",revision:null},{url:"/static/img/mo.2f0d2c15.svg",revision:null},{url:"/static/img/mo.c8198565.svg",revision:null},{url:"/static/img/mp.2acb5506.svg",revision:null},{url:"/static/img/mp.eeeefff6.svg",revision:null},{url:"/static/img/mq.145a7657.svg",revision:null},{url:"/static/img/mq.bb36a8fc.svg",revision:null},{url:"/static/img/mr.dd34eae8.svg",revision:null},{url:"/static/img/mr.e91e06ea.svg",revision:null},{url:"/static/img/ms.2025cd7d.svg",revision:null},{url:"/static/img/ms.b13001dc.svg",revision:null},{url:"/static/img/mt.b6f71c85.svg",revision:null},{url:"/static/img/mt.cff39ee0.svg",revision:null},{url:"/static/img/mu.51f71163.svg",revision:null},{url:"/static/img/mu.a926c232.svg",revision:null},{url:"/static/img/mv.2c8b92b5.svg",revision:null},{url:"/static/img/mv.ba4de4fd.svg",revision:null},{url:"/static/img/mw.0b005148.svg",revision:null},{url:"/static/img/mw.f704f4bb.svg",revision:null},{url:"/static/img/mx.1b615ec2.svg",revision:null},{url:"/static/img/mx.8a36b075.svg",revision:null},{url:"/static/img/my.4109ae71.svg",revision:null},{url:"/static/img/my.69c87fc5.svg",revision:null},{url:"/static/img/mz.1377650b.svg",revision:null},{url:"/static/img/mz.2c96acb1.svg",revision:null},{url:"/static/img/na.7adf4344.svg",revision:null},{url:"/static/img/na.e0503926.svg",revision:null},{url:"/static/img/nc.96fa6a4b.svg",revision:null},{url:"/static/img/nc.b5a5d41b.svg",revision:null},{url:"/static/img/ne.d11b82c6.svg",revision:null},{url:"/static/img/ne.d4fe4faa.svg",revision:null},{url:"/static/img/nf.1e8c700b.svg",revision:null},{url:"/static/img/nf.a7166b00.svg",revision:null},{url:"/static/img/ng.51059407.svg",revision:null},{url:"/static/img/ng.c3b42ad2.svg",revision:null},{url:"/static/img/ni.5b80bac0.svg",revision:null},{url:"/static/img/ni.cc7eb514.svg",revision:null},{url:"/static/img/nl.dd138444.svg",revision:null},{url:"/static/img/nl.e415f0e7.svg",revision:null},{url:"/static/img/no.26996afa.svg",revision:null},{url:"/static/img/no.70157234.svg",revision:null},{url:"/static/img/np.954177a0.svg",revision:null},{url:"/static/img/np.f7b8a5c3.svg",revision:null},{url:"/static/img/nr.2c66d218.svg",revision:null},{url:"/static/img/nr.a4f0e762.svg",revision:null},{url:"/static/img/nu.26551dc2.svg",revision:null},{url:"/static/img/nu.860bbe8a.svg",revision:null},{url:"/static/img/nz.38d0d690.svg",revision:null},{url:"/static/img/nz.c77ae58d.svg",revision:null},{url:"/static/img/om.3f5691ca.svg",revision:null},{url:"/static/img/om.ff034f9e.svg",revision:null},{url:"/static/img/pa.6dc8212a.svg",revision:null},{url:"/static/img/pa.acde3214.svg",revision:null},{url:"/static/img/pe.5a3b0bc5.svg",revision:null},{url:"/static/img/pe.5c2ced95.svg",revision:null},{url:"/static/img/pf.9f06082b.svg",revision:null},{url:"/static/img/pf.f6ae1bc8.svg",revision:null},{url:"/static/img/pg.26847b33.svg",revision:null},{url:"/static/img/pg.66c8dc3b.svg",revision:null},{url:"/static/img/ph.12e2b123.svg",revision:null},{url:"/static/img/ph.f215833e.svg",revision:null},{url:"/static/img/pk.0bbf58be.svg",revision:null},{url:"/static/img/pk.32b55f6f.svg",revision:null},{url:"/static/img/pl.03886843.svg",revision:null},{url:"/static/img/pl.a1350f0c.svg",revision:null},{url:"/static/img/plex.7a4e22a6.svg",revision:null},{url:"/static/img/pm.7a6beab5.svg",revision:null},{url:"/static/img/pm.a5590fa3.svg",revision:null},{url:"/static/img/pn.00a9342b.svg",revision:null},{url:"/static/img/pn.715fd11d.svg",revision:null},{url:"/static/img/pr.391a48e2.svg",revision:null},{url:"/static/img/pr.b37cbdc4.svg",revision:null},{url:"/static/img/ps.1af72ed4.svg",revision:null},{url:"/static/img/ps.96bcac74.svg",revision:null},{url:"/static/img/pt.0703cc3a.svg",revision:null},{url:"/static/img/pt.351b87cb.svg",revision:null},{url:"/static/img/pw.17220ffb.svg",revision:null},{url:"/static/img/pw.6d8e7ce0.svg",revision:null},{url:"/static/img/py.25cc39e3.svg",revision:null},{url:"/static/img/py.c20318c9.svg",revision:null},{url:"/static/img/qa.7e695788.svg",revision:null},{url:"/static/img/qa.86452d7a.svg",revision:null},{url:"/static/img/re.b8140129.svg",revision:null},{url:"/static/img/re.cf143c2f.svg",revision:null},{url:"/static/img/ro.67f8501e.svg",revision:null},{url:"/static/img/ro.cab93784.svg",revision:null},{url:"/static/img/rs.23638d75.svg",revision:null},{url:"/static/img/rs.ae2e3422.svg",revision:null},{url:"/static/img/ru.ccd50623.svg",revision:null},{url:"/static/img/ru.edd8b008.svg",revision:null},{url:"/static/img/rw.87d5d899.svg",revision:null},{url:"/static/img/rw.d118aacd.svg",revision:null},{url:"/static/img/sa.5bfbe72b.svg",revision:null},{url:"/static/img/sa.f0a8997b.svg",revision:null},{url:"/static/img/sb.1c406073.svg",revision:null},{url:"/static/img/sb.b0db5b0a.svg",revision:null},{url:"/static/img/sc.0452f14c.svg",revision:null},{url:"/static/img/sc.cdc20672.svg",revision:null},{url:"/static/img/sd.0e619868.svg",revision:null},{url:"/static/img/sd.da3b68ee.svg",revision:null},{url:"/static/img/se.7e499d82.svg",revision:null},{url:"/static/img/se.7ec71700.svg",revision:null},{url:"/static/img/sg.4f0e8eff.svg",revision:null},{url:"/static/img/sg.8a63b009.svg",revision:null},{url:"/static/img/sh.46e2588d.svg",revision:null},{url:"/static/img/sh.681f8fff.svg",revision:null},{url:"/static/img/si.2a428364.svg",revision:null},{url:"/static/img/si.d9d425c0.svg",revision:null},{url:"/static/img/sj.638e6522.svg",revision:null},{url:"/static/img/sj.92c583b8.svg",revision:null},{url:"/static/img/sk.7998d1f5.svg",revision:null},{url:"/static/img/sk.93c91c0b.svg",revision:null},{url:"/static/img/sl.d8378c47.svg",revision:null},{url:"/static/img/sl.eb9dda3f.svg",revision:null},{url:"/static/img/sm.0ba901f4.svg",revision:null},{url:"/static/img/sm.5e2fc188.svg",revision:null},{url:"/static/img/sn.4247b831.svg",revision:null},{url:"/static/img/sn.98923b55.svg",revision:null},{url:"/static/img/so.2d18a203.svg",revision:null},{url:"/static/img/so.45f08b28.svg",revision:null},{url:"/static/img/sr.cb178d98.svg",revision:null},{url:"/static/img/sr.d66c1240.svg",revision:null},{url:"/static/img/ss.caedfdf2.svg",revision:null},{url:"/static/img/ss.db181f81.svg",revision:null},{url:"/static/img/st.a70042c6.svg",revision:null},{url:"/static/img/st.ecc4827f.svg",revision:null},{url:"/static/img/sv.9501935a.svg",revision:null},{url:"/static/img/sv.f67839a6.svg",revision:null},{url:"/static/img/sx.77e864f0.svg",revision:null},{url:"/static/img/sx.c0e6297a.svg",revision:null},{url:"/static/img/sy.2b3eac89.svg",revision:null},{url:"/static/img/sy.7fe894df.svg",revision:null},{url:"/static/img/sz.70b6fc50.svg",revision:null},{url:"/static/img/sz.eb01cd9f.svg",revision:null},{url:"/static/img/tc.30ccd48e.svg",revision:null},{url:"/static/img/tc.651466dd.svg",revision:null},{url:"/static/img/td.5d622e26.svg",revision:null},{url:"/static/img/td.f1319408.svg",revision:null},{url:"/static/img/tf.27cbe00b.svg",revision:null},{url:"/static/img/tf.a1757237.svg",revision:null},{url:"/static/img/tg.b492a751.svg",revision:null},{url:"/static/img/tg.d04f874c.svg",revision:null},{url:"/static/img/th.79b63a8a.svg",revision:null},{url:"/static/img/th.b8e24edb.svg",revision:null},{url:"/static/img/tj.b7dafe8d.svg",revision:null},{url:"/static/img/tj.d3a42312.svg",revision:null},{url:"/static/img/tk.6c1f520c.svg",revision:null},{url:"/static/img/tk.f87f794b.svg",revision:null},{url:"/static/img/tl.85904d79.svg",revision:null},{url:"/static/img/tl.ca9af3c0.svg",revision:null},{url:"/static/img/tm.762df128.svg",revision:null},{url:"/static/img/tm.e467552c.svg",revision:null},{url:"/static/img/tn.cc3ab493.svg",revision:null},{url:"/static/img/tn.ff4c5190.svg",revision:null},{url:"/static/img/to.8dd22284.svg",revision:null},{url:"/static/img/to.9748a967.svg",revision:null},{url:"/static/img/tr.87e40d5c.svg",revision:null},{url:"/static/img/tr.fc8c91dd.svg",revision:null},{url:"/static/img/tt.4acf6cc2.svg",revision:null},{url:"/static/img/tt.5a459e81.svg",revision:null},{url:"/static/img/tv.9717b553.svg",revision:null},{url:"/static/img/tv.a8ff4939.svg",revision:null},{url:"/static/img/tw.45c8a106.svg",revision:null},{url:"/static/img/tw.c0cf9ea7.svg",revision:null},{url:"/static/img/tz.1abfbb38.svg",revision:null},{url:"/static/img/tz.c27fd405.svg",revision:null},{url:"/static/img/ua.04fa0e67.svg",revision:null},{url:"/static/img/ua.63d75c84.svg",revision:null},{url:"/static/img/ug.5ac71e98.svg",revision:null},{url:"/static/img/ug.5ae165a2.svg",revision:null},{url:"/static/img/um.582dd57b.svg",revision:null},{url:"/static/img/um.b38f913c.svg",revision:null},{url:"/static/img/un.2df110d6.svg",revision:null},{url:"/static/img/un.58a4a02a.svg",revision:null},{url:"/static/img/us.6c459052.svg",revision:null},{url:"/static/img/us.99e04236.svg",revision:null},{url:"/static/img/uy.69cf8938.svg",revision:null},{url:"/static/img/uy.b70ac310.svg",revision:null},{url:"/static/img/uz.7f8823a2.svg",revision:null},{url:"/static/img/uz.d53abc35.svg",revision:null},{url:"/static/img/va.7efb8ba6.svg",revision:null},{url:"/static/img/va.abcb42e8.svg",revision:null},{url:"/static/img/vc.37cf5ba1.svg",revision:null},{url:"/static/img/vc.3e4ac6d4.svg",revision:null},{url:"/static/img/ve.4cd0e3ed.svg",revision:null},{url:"/static/img/ve.9cd63506.svg",revision:null},{url:"/static/img/vg.025b8b6a.svg",revision:null},{url:"/static/img/vg.ae3b6f7e.svg",revision:null},{url:"/static/img/vi.293e6f1c.svg",revision:null},{url:"/static/img/vi.f920eec7.svg",revision:null},{url:"/static/img/vn.11dd1cf6.svg",revision:null},{url:"/static/img/vn.9ec4ca4d.svg",revision:null},{url:"/static/img/vu.5d2d7643.svg",revision:null},{url:"/static/img/vu.b7a8d91a.svg",revision:null},{url:"/static/img/wf.69c77016.svg",revision:null},{url:"/static/img/wf.9ca6f4bc.svg",revision:null},{url:"/static/img/ws.15c7a17c.svg",revision:null},{url:"/static/img/ws.d2e19e5a.svg",revision:null},{url:"/static/img/xk.16b6bb85.svg",revision:null},{url:"/static/img/xk.ca7843be.svg",revision:null},{url:"/static/img/ye.0b3f3c76.svg",revision:null},{url:"/static/img/ye.bb567731.svg",revision:null},{url:"/static/img/yt.332bd5d3.svg",revision:null},{url:"/static/img/yt.c33641ca.svg",revision:null},{url:"/static/img/za.2fa94205.svg",revision:null},{url:"/static/img/za.42e033a9.svg",revision:null},{url:"/static/img/zm.92477cab.svg",revision:null},{url:"/static/img/zm.ce5363b7.svg",revision:null},{url:"/static/img/zw.6a535c1e.svg",revision:null},{url:"/static/img/zw.f488cb8a.svg",revision:null},{url:"/static/js/1019.d219f976.js",revision:null},{url:"/static/js/1054.e7c57dec.js",revision:null},{url:"/static/js/1088.5dc136bc.js",revision:null},{url:"/static/js/1421.578b11dd.js",revision:null},{url:"/static/js/1449.a1da87d4.js",revision:null},{url:"/static/js/1512.455ca36e.js",revision:null},{url:"/static/js/169.f32b50c1.js",revision:null},{url:"/static/js/1706.1994f98e.js",revision:null},{url:"/static/js/1949.41fbaf1f.js",revision:null},{url:"/static/js/2029.7817db55.js",revision:null},{url:"/static/js/2106.bca710c6.js",revision:null},{url:"/static/js/2140.bce5dd59.js",revision:null},{url:"/static/js/215.57c634fb.js",revision:null},{url:"/static/js/2183.de1bfd17.js",revision:null},{url:"/static/js/2200.98d8144c.js",revision:null},{url:"/static/js/2217.4c24b6df.js",revision:null},{url:"/static/js/2305.90eac875.js",revision:null},{url:"/static/js/2460.deeb79ea.js",revision:null},{url:"/static/js/2614.b2a40037.js",revision:null},{url:"/static/js/2694.b61ed311.js",revision:null},{url:"/static/js/2718.ccf949cf.js",revision:null},{url:"/static/js/2726.d2fad2f9.js",revision:null},{url:"/static/js/2732.261f48cf.js",revision:null},{url:"/static/js/2853.2a8ea887.js",revision:null},{url:"/static/js/2893.9df53290.js",revision:null},{url:"/static/js/293.82f9abb3.js",revision:null},{url:"/static/js/2976.34a2208b.js",revision:null},{url:"/static/js/2991.633ef421.js",revision:null},{url:"/static/js/3083.b44a83cc.js",revision:null},{url:"/static/js/3211.7857f583.js",revision:null},{url:"/static/js/3214.3c8b571f.js",revision:null},{url:"/static/js/3322.4b484e81.js",revision:null},{url:"/static/js/3368.78c670ee.js",revision:null},{url:"/static/js/3369.0f87dded.js",revision:null},{url:"/static/js/34.7540bd55.js",revision:null},{url:"/static/js/3400.037c4ded.js",revision:null},{url:"/static/js/3426.5a388a30.js",revision:null},{url:"/static/js/3518.09389e31.js",revision:null},{url:"/static/js/3559.ca9053ac.js",revision:null},{url:"/static/js/3732.93a4195c.js",revision:null},{url:"/static/js/3835.01ac1693.js",revision:null},{url:"/static/js/3865.d8adea3d.js",revision:null},{url:"/static/js/3924.c0d2f3c0.js",revision:null},{url:"/static/js/4015.5f13183f.js",revision:null},{url:"/static/js/4053.2c401fdf.js",revision:null},{url:"/static/js/4106.abda7f15.js",revision:null},{url:"/static/js/4279.04984d78.js",revision:null},{url:"/static/js/4339.c70b7491.js",revision:null},{url:"/static/js/4364.a86699e9.js",revision:null},{url:"/static/js/4447.f732aec5.js",revision:null},{url:"/static/js/446.6a9228c2.js",revision:null},{url:"/static/js/45.6ebcd22c.js",revision:null},{url:"/static/js/4619.5c734a42.js",revision:null},{url:"/static/js/4765.a4f302e0.js",revision:null},{url:"/static/js/4795.c692d683.js",revision:null},{url:"/static/js/5053.2bd39649.js",revision:null},{url:"/static/js/5144.640e98ef.js",revision:null},{url:"/static/js/5167.85cd1b71.js",revision:null},{url:"/static/js/5207.7f241e21.js",revision:null},{url:"/static/js/5285.3ee4149d.js",revision:null},{url:"/static/js/5329.7b52242a.js",revision:null},{url:"/static/js/5408.6d02ad6d.js",revision:null},{url:"/static/js/557.8cb5b0a4.js",revision:null},{url:"/static/js/5638.1527fc01.js",revision:null},{url:"/static/js/5754.56a492ac.js",revision:null},{url:"/static/js/5966.cd5de796.js",revision:null},{url:"/static/js/6148.3924a21f.js",revision:null},{url:"/static/js/6324.b436047b.js",revision:null},{url:"/static/js/6362.f15e6ec3.js",revision:null},{url:"/static/js/637.19974b5c.js",revision:null},{url:"/static/js/6429.3ea2e105.js",revision:null},{url:"/static/js/65.ae7df477.js",revision:null},{url:"/static/js/6523.2673834a.js",revision:null},{url:"/static/js/6640.9ad3c551.js",revision:null},{url:"/static/js/6734.2b3de85d.js",revision:null},{url:"/static/js/6882.70d48600.js",revision:null},{url:"/static/js/7089.0b339076.js",revision:null},{url:"/static/js/7257.115c325c.js",revision:null},{url:"/static/js/729.fde72a02.js",revision:null},{url:"/static/js/7381.bf8f1b35.js",revision:null},{url:"/static/js/746.089d51ca.js",revision:null},{url:"/static/js/7528.afb767dc.js",revision:null},{url:"/static/js/7590.45c9efd9.js",revision:null},{url:"/static/js/7617.a3a062e0.js",revision:null},{url:"/static/js/7619.99a790b0.js",revision:null},{url:"/static/js/7841.362dbb91.js",revision:null},{url:"/static/js/7976.fb3a73dc.js",revision:null},{url:"/static/js/8113.dfd7834f.js",revision:null},{url:"/static/js/813.885d5201.js",revision:null},{url:"/static/js/8179.75e942e3.js",revision:null},{url:"/static/js/8391.7c0e7413.js",revision:null},{url:"/static/js/8409.4d2322a6.js",revision:null},{url:"/static/js/8498.f1129697.js",revision:null},{url:"/static/js/8621.06c016ad.js",revision:null},{url:"/static/js/8697.3f9798ec.js",revision:null},{url:"/static/js/8756.e02a6548.js",revision:null},{url:"/static/js/8769.7adec074.js",revision:null},{url:"/static/js/8784.2e795580.js",revision:null},{url:"/static/js/8825.0fe0da38.js",revision:null},{url:"/static/js/8895.5ed5433c.js",revision:null},{url:"/static/js/8903.53e5ad12.js",revision:null},{url:"/static/js/8930.9bfb6cfc.js",revision:null},{url:"/static/js/9086.2436d087.js",revision:null},{url:"/static/js/9091.0a16b99d.js",revision:null},{url:"/static/js/9092.89f920f0.js",revision:null},{url:"/static/js/9164.2abd7e67.js",revision:null},{url:"/static/js/9171.fa1f1052.js",revision:null},{url:"/static/js/9211.4f9b05a5.js",revision:null},{url:"/static/js/9243.22800ece.js",revision:null},{url:"/static/js/9334.59b012e7.js",revision:null},{url:"/static/js/9461.cc5f6345.js",revision:null},{url:"/static/js/9663.a3d8fdca.js",revision:null},{url:"/static/js/9751.8ea7c2f2.js",revision:null},{url:"/static/js/980.b05bbb98.js",revision:null},{url:"/static/js/984.6626532a.js",revision:null},{url:"/static/js/9962.95beb9e3.js",revision:null},{url:"/static/js/app.d90fb573.js",revision:null},{url:"/static/js/chunk-vendors.5645dfdc.js",revision:null},{url:"/static/js/dashboard.8e6f9fe8.js",revision:null},{url:"/static/js/login.5ccc27d1.js",revision:null},{url:"/static/js/notfound.c3830a81.js",revision:null},{url:"/static/js/panel.e4a0e5c5.js",revision:null},{url:"/static/js/plugin.266a2564.js",revision:null},{url:"/static/js/register.807d88c0.js",revision:null}],{})})); //# sourceMappingURL=service-worker.js.map diff --git a/platypush/backend/http/webapp/dist/service-worker.js.map b/platypush/backend/http/webapp/dist/service-worker.js.map index c960b20f14..f454bc73b8 100644 --- a/platypush/backend/http/webapp/dist/service-worker.js.map +++ b/platypush/backend/http/webapp/dist/service-worker.js.map @@ -1 +1 @@ -{"version":3,"file":"service-worker.js","sources":["../../../../../../tmp/06053de6c74d182693151a1e7a0351c3/service-worker.js"],"sourcesContent":["import {setCacheNameDetails as workbox_core_setCacheNameDetails} from '/drone/src/platypush/backend/http/webapp/node_modules/workbox-core/setCacheNameDetails.mjs';\nimport {precacheAndRoute as workbox_precaching_precacheAndRoute} from '/drone/src/platypush/backend/http/webapp/node_modules/workbox-precaching/precacheAndRoute.mjs';/**\n * Welcome to your Workbox-powered service worker!\n *\n * You'll need to register this file in your web app.\n * See https://goo.gl/nhQhGp\n *\n * The rest of the code is auto-generated. Please don't update this file\n * directly; instead, make changes to your Workbox build configuration\n * and re-run your build process.\n * See https://goo.gl/2aRDsh\n */\n\n\n\n\n\nworkbox_core_setCacheNameDetails({prefix: \"platypush\"});\n\n\nself.addEventListener('message', (event) => {\n if (event.data && event.data.type === 'SKIP_WAITING') {\n self.skipWaiting();\n }\n});\n\n\n\n\n/**\n * The precacheAndRoute() method efficiently caches and responds to\n * requests for URLs in the manifest.\n * See https://goo.gl/S9QRab\n */\nworkbox_precaching_precacheAndRoute([\n {\n \"url\": \"/fonts/Poppins.ttf\",\n \"revision\": \"d10d3ed96303653f936a08b38534f12e\"\n },\n {\n \"url\": \"/fonts/poppins.css\",\n \"revision\": \"413ee9a4d1879f6ae3d62a796644daad\"\n },\n {\n \"url\": \"/icons/jellyfin.svg\",\n \"revision\": \"1ec11e72ffc381f8797ddbebed2652c0\"\n },\n {\n \"url\": \"/icons/kodi.svg\",\n \"revision\": \"81ea5504989d4a0ed19ba6528c39e80f\"\n },\n {\n \"url\": \"/icons/openweathermap/black/01d.png\",\n \"revision\": \"4cf2907a1083c067828830bb007e2f34\"\n },\n {\n \"url\": \"/icons/openweathermap/black/01n.png\",\n \"revision\": \"df30375c6371005e2d238c36255afc8a\"\n },\n {\n \"url\": \"/icons/openweathermap/black/02d.png\",\n \"revision\": \"79a0adce79d78da203beeb7a6f4f510b\"\n },\n {\n \"url\": \"/icons/openweathermap/black/02n.png\",\n \"revision\": \"68d34b41357c2a3ea9479dae653b3617\"\n },\n {\n \"url\": \"/icons/openweathermap/black/03d.png\",\n \"revision\": \"5f13dba4164c437e2fbdc1d1ecaada4c\"\n },\n {\n \"url\": \"/icons/openweathermap/black/03n.png\",\n \"revision\": \"65c125cd51934e24f9e3321cc5448d0e\"\n },\n {\n \"url\": \"/icons/openweathermap/black/04d.png\",\n \"revision\": \"e75cd73c232806d7364ad7feae354074\"\n },\n {\n \"url\": \"/icons/openweathermap/black/04n.png\",\n \"revision\": \"e75cd73c232806d7364ad7feae354074\"\n },\n {\n \"url\": \"/icons/openweathermap/black/09d.png\",\n \"revision\": \"328b726310fb5762861859e33ac9066a\"\n },\n {\n \"url\": \"/icons/openweathermap/black/09n.png\",\n \"revision\": \"328b726310fb5762861859e33ac9066a\"\n },\n {\n \"url\": \"/icons/openweathermap/black/10d.png\",\n \"revision\": \"7dde329628506567faef30b9eb5c5f69\"\n },\n {\n \"url\": \"/icons/openweathermap/black/10n.png\",\n \"revision\": \"7dde329628506567faef30b9eb5c5f69\"\n },\n {\n \"url\": \"/icons/openweathermap/black/11d.png\",\n \"revision\": \"8f6a4b2446b42e8215195e195133e546\"\n },\n {\n \"url\": \"/icons/openweathermap/black/11n.png\",\n \"revision\": \"8f6a4b2446b42e8215195e195133e546\"\n },\n {\n \"url\": \"/icons/openweathermap/black/13d.png\",\n \"revision\": \"45bfce1d2ea7d16415848650eb5d2cb3\"\n },\n {\n \"url\": \"/icons/openweathermap/black/13n.png\",\n \"revision\": \"45bfce1d2ea7d16415848650eb5d2cb3\"\n },\n {\n \"url\": \"/icons/openweathermap/black/50d.png\",\n \"revision\": \"7a304f2b15fe4d9de351dabc44ff900d\"\n },\n {\n \"url\": \"/icons/openweathermap/black/50n.png\",\n \"revision\": \"7a304f2b15fe4d9de351dabc44ff900d\"\n },\n {\n \"url\": \"/icons/openweathermap/black/unknown.png\",\n \"revision\": \"c219891f5796e43d0f75f6525a8d6f33\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/01d.png\",\n \"revision\": \"4cf2907a1083c067828830bb007e2f34\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/01n.png\",\n \"revision\": \"df30375c6371005e2d238c36255afc8a\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/02d.png\",\n \"revision\": \"79a0adce79d78da203beeb7a6f4f510b\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/02n.png\",\n \"revision\": \"68d34b41357c2a3ea9479dae653b3617\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/03d.png\",\n \"revision\": \"5f13dba4164c437e2fbdc1d1ecaada4c\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/03n.png\",\n \"revision\": \"65c125cd51934e24f9e3321cc5448d0e\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/04d.png\",\n \"revision\": \"e75cd73c232806d7364ad7feae354074\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/04n.png\",\n \"revision\": \"e75cd73c232806d7364ad7feae354074\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/09d.png\",\n \"revision\": \"328b726310fb5762861859e33ac9066a\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/09n.png\",\n \"revision\": \"328b726310fb5762861859e33ac9066a\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/10d.png\",\n \"revision\": \"7dde329628506567faef30b9eb5c5f69\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/10n.png\",\n \"revision\": \"7dde329628506567faef30b9eb5c5f69\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/11d.png\",\n \"revision\": \"8f6a4b2446b42e8215195e195133e546\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/11n.png\",\n \"revision\": \"8f6a4b2446b42e8215195e195133e546\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/13d.png\",\n \"revision\": \"45bfce1d2ea7d16415848650eb5d2cb3\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/13n.png\",\n \"revision\": \"45bfce1d2ea7d16415848650eb5d2cb3\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/50d.png\",\n \"revision\": \"7a304f2b15fe4d9de351dabc44ff900d\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/50n.png\",\n \"revision\": \"7a304f2b15fe4d9de351dabc44ff900d\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/unknown.png\",\n \"revision\": \"c219891f5796e43d0f75f6525a8d6f33\"\n },\n {\n \"url\": \"/icons/openweathermap/light/01d.png\",\n \"revision\": \"00c2d0a72a69bf279bf8703cea9ce8d2\"\n },\n {\n \"url\": \"/icons/openweathermap/light/01n.png\",\n \"revision\": \"3a65e9f7ed5c54c6acd638a7bd26de25\"\n },\n {\n \"url\": \"/icons/openweathermap/light/02d.png\",\n \"revision\": \"63dab156e991be7e4174d1d6cd8c2321\"\n },\n {\n \"url\": \"/icons/openweathermap/light/02n.png\",\n \"revision\": \"7c64d1a1c5efdbe38e6b7e3b4f50f2c5\"\n },\n {\n \"url\": \"/icons/openweathermap/light/03d.png\",\n \"revision\": \"f609003793e658a60870587cd450fc6f\"\n },\n {\n \"url\": \"/icons/openweathermap/light/03n.png\",\n \"revision\": \"7e694b4317b3e9f2533db93969fcc3e8\"\n },\n {\n \"url\": \"/icons/openweathermap/light/04d.png\",\n \"revision\": \"098f9d40b1d5747996df9a720f160c81\"\n },\n {\n \"url\": \"/icons/openweathermap/light/04n.png\",\n \"revision\": \"098f9d40b1d5747996df9a720f160c81\"\n },\n {\n \"url\": \"/icons/openweathermap/light/09d.png\",\n \"revision\": \"c48a99b60e45690cdc702a2dc6694002\"\n },\n {\n \"url\": \"/icons/openweathermap/light/09n.png\",\n \"revision\": \"c48a99b60e45690cdc702a2dc6694002\"\n },\n {\n \"url\": \"/icons/openweathermap/light/10d.png\",\n \"revision\": \"2750daf3f0d811230591a415e42bddb2\"\n },\n {\n \"url\": \"/icons/openweathermap/light/10n.png\",\n \"revision\": \"2750daf3f0d811230591a415e42bddb2\"\n },\n {\n \"url\": \"/icons/openweathermap/light/11d.png\",\n \"revision\": \"7bd0501a7bfcf2675467df0c0788ffad\"\n },\n {\n \"url\": \"/icons/openweathermap/light/11n.png\",\n \"revision\": \"7bd0501a7bfcf2675467df0c0788ffad\"\n },\n {\n \"url\": \"/icons/openweathermap/light/13d.png\",\n \"revision\": \"4e11e697c6bafc8dd83c4dfc8ce47919\"\n },\n {\n \"url\": \"/icons/openweathermap/light/13n.png\",\n \"revision\": \"4e11e697c6bafc8dd83c4dfc8ce47919\"\n },\n {\n \"url\": \"/icons/openweathermap/light/50d.png\",\n \"revision\": \"9a0770f3adc7c4a27e131c04a739f735\"\n },\n {\n \"url\": \"/icons/openweathermap/light/50n.png\",\n \"revision\": \"9a0770f3adc7c4a27e131c04a739f735\"\n },\n {\n \"url\": \"/icons/openweathermap/light/unknown.png\",\n \"revision\": \"f14a44a1ecde49a5c6a396f8c1753263\"\n },\n {\n \"url\": \"/icons/openweathermap/white/01d.png\",\n \"revision\": \"00c2d0a72a69bf279bf8703cea9ce8d2\"\n },\n {\n \"url\": \"/icons/openweathermap/white/01n.png\",\n \"revision\": \"3a65e9f7ed5c54c6acd638a7bd26de25\"\n },\n {\n \"url\": \"/icons/openweathermap/white/02d.png\",\n \"revision\": \"63dab156e991be7e4174d1d6cd8c2321\"\n },\n {\n \"url\": \"/icons/openweathermap/white/02n.png\",\n \"revision\": \"7c64d1a1c5efdbe38e6b7e3b4f50f2c5\"\n },\n {\n \"url\": \"/icons/openweathermap/white/03d.png\",\n \"revision\": \"f609003793e658a60870587cd450fc6f\"\n },\n {\n \"url\": \"/icons/openweathermap/white/03n.png\",\n \"revision\": \"7e694b4317b3e9f2533db93969fcc3e8\"\n },\n {\n \"url\": \"/icons/openweathermap/white/04d.png\",\n \"revision\": \"098f9d40b1d5747996df9a720f160c81\"\n },\n {\n \"url\": \"/icons/openweathermap/white/04n.png\",\n \"revision\": \"098f9d40b1d5747996df9a720f160c81\"\n },\n {\n \"url\": \"/icons/openweathermap/white/09d.png\",\n \"revision\": \"c48a99b60e45690cdc702a2dc6694002\"\n },\n {\n \"url\": \"/icons/openweathermap/white/09n.png\",\n \"revision\": \"c48a99b60e45690cdc702a2dc6694002\"\n },\n {\n \"url\": \"/icons/openweathermap/white/10d.png\",\n \"revision\": \"2750daf3f0d811230591a415e42bddb2\"\n },\n {\n \"url\": \"/icons/openweathermap/white/10n.png\",\n \"revision\": \"2750daf3f0d811230591a415e42bddb2\"\n },\n {\n \"url\": \"/icons/openweathermap/white/11d.png\",\n \"revision\": \"7bd0501a7bfcf2675467df0c0788ffad\"\n },\n {\n \"url\": \"/icons/openweathermap/white/11n.png\",\n \"revision\": \"7bd0501a7bfcf2675467df0c0788ffad\"\n },\n {\n \"url\": \"/icons/openweathermap/white/13d.png\",\n \"revision\": \"4e11e697c6bafc8dd83c4dfc8ce47919\"\n },\n {\n \"url\": \"/icons/openweathermap/white/13n.png\",\n \"revision\": \"4e11e697c6bafc8dd83c4dfc8ce47919\"\n },\n {\n \"url\": \"/icons/openweathermap/white/50d.png\",\n \"revision\": \"9a0770f3adc7c4a27e131c04a739f735\"\n },\n {\n \"url\": \"/icons/openweathermap/white/50n.png\",\n \"revision\": \"9a0770f3adc7c4a27e131c04a739f735\"\n },\n {\n \"url\": \"/icons/openweathermap/white/unknown.png\",\n \"revision\": \"f14a44a1ecde49a5c6a396f8c1753263\"\n },\n {\n \"url\": \"/icons/plex.svg\",\n \"revision\": \"9923c5c80858a7da9d48c3ee77974e77\"\n },\n {\n \"url\": \"/icons/smartthings.png\",\n \"revision\": \"9306b6ca82efa85d58823615ff14b00f\"\n },\n {\n \"url\": \"/icons/z-wave.png\",\n \"revision\": \"3045e92627da521267db845b16da6028\"\n },\n {\n \"url\": \"/icons/zigbee.svg\",\n \"revision\": \"3e5f749af9e83ace5c12ff3aac6d4b88\"\n },\n {\n \"url\": \"/img/dashboard-bg-light.jpg\",\n \"revision\": \"f9ab2a6552509997ec0cbaeb47199eba\"\n },\n {\n \"url\": \"/img/logo.png\",\n \"revision\": \"98702e78dde598404826f6e9279e4ab3\"\n },\n {\n \"url\": \"/img/spinner.gif\",\n \"revision\": \"5572838d351b66bf6a3350b6d8d23cb8\"\n },\n {\n \"url\": \"/index.html\",\n \"revision\": \"13d783eea8731b14d9ef76292390b1c0\"\n },\n {\n \"url\": \"/manifest.json\",\n \"revision\": \"8a45dcffc3380b17da6ea17291b43e00\"\n },\n {\n \"url\": \"/static/css/1259.705b87de.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1327.a8aa3d69.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1391.3a28e845.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1449.48f369df.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1485.ec7d392e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1558.e4c74cc7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/169.4e61bddf.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1706.0cce53c8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1807.414ba229.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/182.76b6eb09.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1931.576454a1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1949.09946541.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2018.8146b7c4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2140.ccb2903f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2154.9e4d2b2d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2217.3d5833a8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2460.c47d3d8a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2582.0d7f9f2c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/281.b8d8c407.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2844.31199f56.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/288.ceaf4d40.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2892.0d765211.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2893.9ed78d28.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2924.23b041bd.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2976.0e5bc2d3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2992.07a12488.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3033.1471fa39.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3211.ebc6e651.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3368.545f822b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3369.8baddf78.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3393.eca14a3e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/34.111a0e1a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3559.84280be4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3826.6a236247.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3835.9eceb93e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3924.548d44ae.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4084.0a0db151.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4109.e6d6b3d3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4364.502178be.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/446.ced514f5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/472.9c3bb868.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4790.3b639ae0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5197.a543b091.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5207.e08afd93.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5285.faa6ed68.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5329.3bb336f9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5638.245c2ace.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/58.ecf614b3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5906.832a3a02.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5933.949d7b2b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6016.558de04b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6096.a3036d52.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6217.54339076.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6281.cdb5d498.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6324.0166f2db.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6429.79156821.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/65.712466ff.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6523.9f1785cc.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6561.93704195.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/669.dd1b6ede.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/729.5b54aac4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/735.93ff4770.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/746.215dc404.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7528.258d2865.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7590.db11c095.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7651.a7141db8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7841.634d37da.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7878.ff3f31c5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7880.bec7de73.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8069.6bdb62a5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8179.cf2ba7d1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8224.f72887fc.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8391.af187453.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8498.194ed9cc.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8590.88d3487c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8605.92b02564.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8621.dd386ad4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8769.212a4f94.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8825.596c01e1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8989.fd366c78.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/906.0c794836.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9092.5de40234.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9211.c21e860e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9381.b88ad779.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9461.e2d5774b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9549.c4059cb5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9751.f1de86a4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/980.96973824.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/984.04a4e901.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9962.b2a51ef8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/app.34a0a3ba.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/chunk-vendors.d510eff2.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/dashboard.ce0fe60f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/panel.2a411b59.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/plugin.7646c315.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.5d18d427.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.87587a68.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.3ccdbd3d.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.81482cd4.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.0b0cc8a6.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.69d3141a.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/lato-medium-italic.1996cc15.woff\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/lato-medium-italic.1e312dd9.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/lato-medium.13fcde4c.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/lato-medium.b41c3821.woff\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ad.cb33f69a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ad.fa8477e6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ae.a3f5e295.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ae.f06e0095.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/af.89591ab0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/af.8ca96393.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ag.4c37bc2e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ag.56074d55.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ai.70eefdc0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ai.893d1179.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/al.b16acdb2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/al.e0864b5d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/am.00f0fec4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/am.a566904f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ao.3df23f21.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ao.c0c32201.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/aq.1b8c45a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/aq.aa242c4a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ar.22a3116e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ar.d3238270.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/as.10ed1a23.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/as.4a330654.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/at.02a64279.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/at.94cde74c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/au.cc65fc07.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/au.dbcdef2c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/aw.abbad4ac.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/aw.be4540eb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ax.371c7af2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ax.91eea523.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/az.0e2f1d1a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/az.f399f1c8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ba.032070d4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ba.e167b08f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bb.23a15e67.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bb.b800513b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bd.c1abcb00.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bd.c4a5f0e2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/be.29774a37.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/be.3eb14701.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bf.2334e919.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bf.4ffd5dc6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bg.700f100c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bg.d0a49130.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bh.2a884f6c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bh.3968dfe0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bi.211d0f9e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bi.ae3bb248.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bj.2cdc8a62.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bj.aba95ad2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bl.04966866.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bl.3e69e968.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bm.e6903c8e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bm.e69e40c4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bn.07911e0c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bn.4d91734a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bo.03595499.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bo.9c1d9ef8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bq.747d8177.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bq.b9355bec.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/br.058a5086.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/br.fe030c1c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bs.d228cbb2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bs.ef0a29ed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bt.3f8ecb9b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bt.fc241981.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bv.5503f03a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bv.7f7cd26f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bw.494aae64.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bw.b767df8c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/by.78d2c3c9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/by.fba98c48.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bz.14c3376a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bz.5e0ef548.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ca.163ac200.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ca.a2ab234d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cc.51960f85.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cc.813adff8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cd.39186ec2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cd.b4bd46ee.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cf.b5702729.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cf.fe1120e9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cg.00603842.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cg.12414c99.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ch.7376c9c3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ch.a558d859.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ci.1251a8e3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ci.425a24c2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ck.4e83dd3e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ck.6303aa5b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cl.0917a91e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cl.b5974a35.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cm.253adb39.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cm.853e2843.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cn.38f63e1e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cn.e1b166eb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/co.33e249d8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/co.b5cbc817.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cr.2e572846.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cr.336eb7d3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cu.c2a6f0ed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cu.d6e33f19.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cv.5ea64968.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cv.b3ab83f5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cw.0e14b0b7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cw.9b9b7ed5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cx.da5de6d2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cx.e04e07e8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cy.834e6240.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cy.bfcfd736.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cz.aa114964.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cz.b5f98a6b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dashboard-bg-light.06da6eab.jpg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/de.8e159e6e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/de.b827ac51.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dj.4197a18a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dj.925748d5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dk.3ca1caed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dk.a867eeef.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dm.7ddb00ac.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dm.bca6d70c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/do.81097daa.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/do.954f0f3e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dz.76d47b01.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dz.b7e2fbce.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ec.0029f514.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ec.5f387e2f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ee.1b4839e0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ee.828384a8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eg.38443fa6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eg.5756a758.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eh.82bd1c7b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eh.f8d7b64f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/er.bf5b134b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/er.e932abe1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/es-ct.64a68954.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/es-ct.69469f50.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/es.7dd46df0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/es.de5915e5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/et.82e8eb21.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/et.a998a1b2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eu.4c6e130f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eu.aba724b1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fi.0cd85b78.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fi.3be6b378.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fj.ac9c916f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fj.e8d3e00b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fk.af0350f8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fk.db55fa14.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fm.3491efc7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fm.78d44caa.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fo.1da81e3a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fo.72949ad1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fr.3565b8f4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fr.9cb70285.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ga.3e474381.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ga.59f7d865.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-eng.0fac6e79.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-eng.513dcf1b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-nir.2b7d2c3a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-nir.f59817d6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-sct.f5001e5d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-sct.fee55173.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-wls.13481560.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-wls.95b2cfab.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb.2aafb374.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb.7a456bb2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gd.04ea09b7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gd.60b96978.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ge.b7b65b55.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ge.c7190912.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gf.531f9e07.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gf.90f438a3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gg.3aebc3ce.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gg.65174039.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gh.af443995.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gh.f2b6baac.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gi.302c2506.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gi.7beea6ed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gl.551d0783.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gl.6a5c17b0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gm.0e00e9d4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gm.1724dc37.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gn.54a75b28.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gn.7c96520b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gp.4327060f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gp.f8adbf5c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gq.b1679302.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gq.bd7daf33.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gr.07bedadf.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gr.25dd3287.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gs.60368968.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gs.b2836676.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gt.1a24ed67.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gt.825f7286.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gu.05f0ab85.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gu.19b114eb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gw.bcd1eddb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gw.c97f3f94.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gy.6327f72a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gy.e11d0234.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hk.b199a9ee.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hk.c72bba0e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hm.4aa61657.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hm.d4b3d393.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hn.08ad78b2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hn.44cee191.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hr.078b1bf9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hr.1f4e28b8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ht.6943447c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ht.7ca68737.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hu.692e97ca.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hu.b10d3f8e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/id.94464e47.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/id.a05dc04c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ie.5154112a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ie.e23b25d1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/il.150f4c5f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/il.e02a66d3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/im.25166c91.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/im.942419c5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/in.954929a0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/in.bd0d4f19.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/io.a59923ab.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/io.fa003484.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/iq.1232a5c2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/iq.9a48d678.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ir.1ed24953.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ir.bc7ae9e1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/is.cad57f19.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/is.eea59326.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/it.039b4527.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/it.e8516fc7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/je.1684dacc.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/je.3ed72a25.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jellyfin.7b53a541.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jm.2357530e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jm.479f30fe.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jo.06fbaa2c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jo.7ac45a65.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jp.1795778c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jp.b6063838.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ke.6dbfffd5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ke.769bb975.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kg.96c12490.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kg.daded53c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kh.8eeb1634.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kh.b10339d6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ki.033ff9ce.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ki.89e43a21.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/km.1e3bd5fe.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/km.3ffb0228.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kn.0c16fe68.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kn.8f2e7b29.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kodi.d18f8d23.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kp.0f5253d8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kp.f4ff9e76.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kr.0dc8b972.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kr.0f5e1116.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kw.3b4f3ea3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kw.830d3755.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ky.be81d90b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ky.e3b76b32.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kz.32ac1036.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kz.579ac0f9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/la.e583f8ec.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/la.f71017ef.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lb.8eea508a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lb.bdbeb8f1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lc.25f644a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lc.68bd77ae.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/li.8dc1ed79.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/li.d7e2a871.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lk.42c41c61.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lk.e52240d6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lr.5b84ff00.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lr.9a67cd3d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ls.6d444cae.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ls.fe1da403.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lt.03a2e8c1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lt.b57ea2a8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lu.93878a1b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lu.e3bdc6d3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lv.1853e3a0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lv.679c099e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ly.05f8732e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ly.b9e750ff.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ma.65053fc4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ma.88ada30c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mc.2c03ea5c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mc.89b532e8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/md.646818c3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/md.a56562ee.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/me.2e71b778.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/me.f05548f2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mf.70d09a4a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mf.7da6b3d2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mg.09ca17b2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mg.b3fff4a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mh.3fd69bb2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mh.f6cbc774.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mk.4234a248.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mk.e5412079.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ml.3fad079e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ml.4f0dba9e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mm.8ac1f094.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mm.adaa2111.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mn.78547af0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mn.a4bcb0e6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mo.2f0d2c15.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mo.c8198565.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mp.2acb5506.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mp.eeeefff6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mq.145a7657.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mq.bb36a8fc.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mr.dd34eae8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mr.e91e06ea.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ms.2025cd7d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ms.b13001dc.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mt.b6f71c85.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mt.cff39ee0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mu.51f71163.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mu.a926c232.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mv.2c8b92b5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mv.ba4de4fd.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mw.0b005148.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mw.f704f4bb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mx.1b615ec2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mx.8a36b075.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/my.4109ae71.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/my.69c87fc5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mz.1377650b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mz.2c96acb1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/na.7adf4344.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/na.e0503926.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nc.96fa6a4b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nc.b5a5d41b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ne.d11b82c6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ne.d4fe4faa.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nf.1e8c700b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nf.a7166b00.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ng.51059407.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ng.c3b42ad2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ni.5b80bac0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ni.cc7eb514.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nl.dd138444.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nl.e415f0e7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/no.26996afa.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/no.70157234.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/np.954177a0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/np.f7b8a5c3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nr.2c66d218.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nr.a4f0e762.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nu.26551dc2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nu.860bbe8a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nz.38d0d690.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nz.c77ae58d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/om.3f5691ca.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/om.ff034f9e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pa.6dc8212a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pa.acde3214.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pe.5a3b0bc5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pe.5c2ced95.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pf.9f06082b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pf.f6ae1bc8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pg.26847b33.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pg.66c8dc3b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ph.12e2b123.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ph.f215833e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pk.0bbf58be.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pk.32b55f6f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pl.03886843.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pl.a1350f0c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/plex.7a4e22a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pm.7a6beab5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pm.a5590fa3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pn.00a9342b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pn.715fd11d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pr.391a48e2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pr.b37cbdc4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ps.1af72ed4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ps.96bcac74.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pt.0703cc3a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pt.351b87cb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pw.17220ffb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pw.6d8e7ce0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/py.25cc39e3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/py.c20318c9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/qa.7e695788.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/qa.86452d7a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/re.b8140129.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/re.cf143c2f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ro.67f8501e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ro.cab93784.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/rs.23638d75.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/rs.ae2e3422.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ru.ccd50623.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ru.edd8b008.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/rw.87d5d899.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/rw.d118aacd.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sa.5bfbe72b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sa.f0a8997b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sb.1c406073.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sb.b0db5b0a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sc.0452f14c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sc.cdc20672.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sd.0e619868.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sd.da3b68ee.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/se.7e499d82.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/se.7ec71700.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sg.4f0e8eff.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sg.8a63b009.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sh.46e2588d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sh.681f8fff.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/si.2a428364.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/si.d9d425c0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sj.638e6522.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sj.92c583b8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sk.7998d1f5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sk.93c91c0b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sl.d8378c47.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sl.eb9dda3f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sm.0ba901f4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sm.5e2fc188.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sn.4247b831.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sn.98923b55.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/so.2d18a203.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/so.45f08b28.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sr.cb178d98.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sr.d66c1240.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ss.caedfdf2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ss.db181f81.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/st.a70042c6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/st.ecc4827f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sv.9501935a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sv.f67839a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sx.77e864f0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sx.c0e6297a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sy.2b3eac89.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sy.7fe894df.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sz.70b6fc50.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sz.eb01cd9f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tc.30ccd48e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tc.651466dd.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/td.5d622e26.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/td.f1319408.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tf.27cbe00b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tf.a1757237.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tg.b492a751.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tg.d04f874c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/th.79b63a8a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/th.b8e24edb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tj.b7dafe8d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tj.d3a42312.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tk.6c1f520c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tk.f87f794b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tl.85904d79.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tl.ca9af3c0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tm.762df128.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tm.e467552c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tn.cc3ab493.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tn.ff4c5190.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/to.8dd22284.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/to.9748a967.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tr.87e40d5c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tr.fc8c91dd.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tt.4acf6cc2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tt.5a459e81.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tv.9717b553.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tv.a8ff4939.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tw.45c8a106.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tw.c0cf9ea7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tz.1abfbb38.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tz.c27fd405.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ua.04fa0e67.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ua.63d75c84.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ug.5ac71e98.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ug.5ae165a2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/um.582dd57b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/um.b38f913c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/un.2df110d6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/un.58a4a02a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/us.6c459052.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/us.99e04236.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/uy.69cf8938.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/uy.b70ac310.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/uz.7f8823a2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/uz.d53abc35.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/va.7efb8ba6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/va.abcb42e8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vc.37cf5ba1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vc.3e4ac6d4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ve.4cd0e3ed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ve.9cd63506.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vg.025b8b6a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vg.ae3b6f7e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vi.293e6f1c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vi.f920eec7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vn.11dd1cf6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vn.9ec4ca4d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vu.5d2d7643.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vu.b7a8d91a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/wf.69c77016.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/wf.9ca6f4bc.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ws.15c7a17c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ws.d2e19e5a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/xk.16b6bb85.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/xk.ca7843be.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ye.0b3f3c76.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ye.bb567731.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/yt.332bd5d3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/yt.c33641ca.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/za.2fa94205.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/za.42e033a9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/zm.92477cab.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/zm.ce5363b7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/zw.6a535c1e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/zw.f488cb8a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1088.f184400f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1259.04c161c9.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1449.a5b4b2d2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1485.501472f0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1512.b686fb87.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/169.92c1a438.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1706.1a5248ba.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1807.564d1fef.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1949.aa522c80.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2018.797df628.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2106.50dde272.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2140.d72a32d8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2183.f8766c50.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2200.a7bc2894.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2217.d60fbb58.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2460.2a8400ba.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2582.737d98fa.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2614.d8f2af9e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2732.2b76d899.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/281.0844207b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2853.99de82eb.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/288.ae1aea67.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2892.96883d80.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2893.c9d72a7c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2951.82ed7dd0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2976.e3dbc1e6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3033.c2311336.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3083.b7c37603.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3211.542ae3e8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3322.dadc23cc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3368.8c968129.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3369.cb38d432.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/34.4c59fb03.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3400.6966f10e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3518.b56228c9.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3559.61ebd182.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3732.d6584e8e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3835.2db962db.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3862.0ca0e08c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3924.0fd0a3c0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4053.3890f446.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4084.0bc2385a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/446.cdd8637e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4619.b038c54a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/472.1405415c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4765.cd86a538.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5197.1a8603ef.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5207.7f241e21.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5285.4efb90e2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5329.1dc4e553.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5505.35fbb782.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5638.d0047a11.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6148.6a799072.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6324.93ea59d2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6362.4870392f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6429.ffe0df4c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/65.ae7df477.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6523.426200f5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6640.49b4564c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/667.3adea503.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7089.8779e12e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/729.81683ae6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/735.09e06f2a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7381.16a4edaa.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/746.9a199f8f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7528.e54955c4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7590.be3564f1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7819.5b29d1a3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7841.580c6097.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7878.cb30e975.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7880.11b2f479.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/813.3ec855c4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8179.4d40de35.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8224.fd608bb1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8391.c04e1c3a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/844.1cd89eec.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8498.e34e99e5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8621.edd395ad.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8752.5e3dcc20.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8769.52fe04f5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8784.5892bf2a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8825.f5386513.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8895.c5e5490a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8930.5354086d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9091.b9371c68.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9092.89f920f0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9211.e190626a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9334.043959f5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9381.a729807d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9461.1b6014d3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9472.8ac332bd.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9751.9e425e19.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/980.ee52bc55.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/984.50a15617.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9962.76f7d059.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/app.a9d9b93f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/chunk-vendors.05911ac4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/dashboard.3b1ddc55.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/login.98ae4df8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/notfound.46477842.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/panel.43207715.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/plugin.71f81cbc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/register.64e266ad.js\",\n \"revision\": null\n }\n], {});\n\n\n\n\n\n\n\n\n"],"names":["workbox_core_setCacheNameDetails","prefix","self","addEventListener","event","data","type","skipWaiting","workbox_precaching_precacheAndRoute","url","revision"],"mappings":"0nBAiBAA,EAAAA,oBAAiC,CAACC,OAAQ,cAG1CC,KAAKC,iBAAiB,WAAYC,IAC5BA,EAAMC,MAA4B,iBAApBD,EAAMC,KAAKC,MAC3BJ,KAAKK,aACP,IAWFC,EAAAA,iBAAoC,CAClC,CACEC,IAAO,qBACPC,SAAY,oCAEd,CACED,IAAO,qBACPC,SAAY,oCAEd,CACED,IAAO,sBACPC,SAAY,oCAEd,CACED,IAAO,kBACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,0CACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,yCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,0CACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,0CACPC,SAAY,oCAEd,CACED,IAAO,kBACPC,SAAY,oCAEd,CACED,IAAO,yBACPC,SAAY,oCAEd,CACED,IAAO,oBACPC,SAAY,oCAEd,CACED,IAAO,oBACPC,SAAY,oCAEd,CACED,IAAO,8BACPC,SAAY,oCAEd,CACED,IAAO,gBACPC,SAAY,oCAEd,CACED,IAAO,mBACPC,SAAY,oCAEd,CACED,IAAO,cACPC,SAAY,oCAEd,CACED,IAAO,iBACPC,SAAY,oCAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,yCACPC,SAAY,MAEd,CACED,IAAO,qCACPC,SAAY,MAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,2CACPC,SAAY,MAEd,CACED,IAAO,6CACPC,SAAY,MAEd,CACED,IAAO,8CACPC,SAAY,MAEd,CACED,IAAO,4CACPC,SAAY,MAEd,CACED,IAAO,4CACPC,SAAY,MAEd,CACED,IAAO,0CACPC,SAAY,MAEd,CACED,IAAO,iDACPC,SAAY,MAEd,CACED,IAAO,kDACPC,SAAY,MAEd,CACED,IAAO,2CACPC,SAAY,MAEd,CACED,IAAO,0CACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8CACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,oCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,4BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,4BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,uCACPC,SAAY,MAEd,CACED,IAAO,mCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,OAEb,CAAA"} \ No newline at end of file +{"version":3,"file":"service-worker.js","sources":["../../../../../../tmp/f5aa4ec20db395e9f51078d35e6c1f34/service-worker.js"],"sourcesContent":["import {setCacheNameDetails as workbox_core_setCacheNameDetails} from '/drone/src/platypush/backend/http/webapp/node_modules/workbox-core/setCacheNameDetails.mjs';\nimport {precacheAndRoute as workbox_precaching_precacheAndRoute} from '/drone/src/platypush/backend/http/webapp/node_modules/workbox-precaching/precacheAndRoute.mjs';/**\n * Welcome to your Workbox-powered service worker!\n *\n * You'll need to register this file in your web app.\n * See https://goo.gl/nhQhGp\n *\n * The rest of the code is auto-generated. Please don't update this file\n * directly; instead, make changes to your Workbox build configuration\n * and re-run your build process.\n * See https://goo.gl/2aRDsh\n */\n\n\n\n\n\nworkbox_core_setCacheNameDetails({prefix: \"platypush\"});\n\n\nself.addEventListener('message', (event) => {\n if (event.data && event.data.type === 'SKIP_WAITING') {\n self.skipWaiting();\n }\n});\n\n\n\n\n/**\n * The precacheAndRoute() method efficiently caches and responds to\n * requests for URLs in the manifest.\n * See https://goo.gl/S9QRab\n */\nworkbox_precaching_precacheAndRoute([\n {\n \"url\": \"/fonts/Poppins.ttf\",\n \"revision\": \"d10d3ed96303653f936a08b38534f12e\"\n },\n {\n \"url\": \"/fonts/poppins.css\",\n \"revision\": \"413ee9a4d1879f6ae3d62a796644daad\"\n },\n {\n \"url\": \"/icons/jellyfin.svg\",\n \"revision\": \"1ec11e72ffc381f8797ddbebed2652c0\"\n },\n {\n \"url\": \"/icons/kodi.svg\",\n \"revision\": \"81ea5504989d4a0ed19ba6528c39e80f\"\n },\n {\n \"url\": \"/icons/openweathermap/black/01d.png\",\n \"revision\": \"4cf2907a1083c067828830bb007e2f34\"\n },\n {\n \"url\": \"/icons/openweathermap/black/01n.png\",\n \"revision\": \"df30375c6371005e2d238c36255afc8a\"\n },\n {\n \"url\": \"/icons/openweathermap/black/02d.png\",\n \"revision\": \"79a0adce79d78da203beeb7a6f4f510b\"\n },\n {\n \"url\": \"/icons/openweathermap/black/02n.png\",\n \"revision\": \"68d34b41357c2a3ea9479dae653b3617\"\n },\n {\n \"url\": \"/icons/openweathermap/black/03d.png\",\n \"revision\": \"5f13dba4164c437e2fbdc1d1ecaada4c\"\n },\n {\n \"url\": \"/icons/openweathermap/black/03n.png\",\n \"revision\": \"65c125cd51934e24f9e3321cc5448d0e\"\n },\n {\n \"url\": \"/icons/openweathermap/black/04d.png\",\n \"revision\": \"e75cd73c232806d7364ad7feae354074\"\n },\n {\n \"url\": \"/icons/openweathermap/black/04n.png\",\n \"revision\": \"e75cd73c232806d7364ad7feae354074\"\n },\n {\n \"url\": \"/icons/openweathermap/black/09d.png\",\n \"revision\": \"328b726310fb5762861859e33ac9066a\"\n },\n {\n \"url\": \"/icons/openweathermap/black/09n.png\",\n \"revision\": \"328b726310fb5762861859e33ac9066a\"\n },\n {\n \"url\": \"/icons/openweathermap/black/10d.png\",\n \"revision\": \"7dde329628506567faef30b9eb5c5f69\"\n },\n {\n \"url\": \"/icons/openweathermap/black/10n.png\",\n \"revision\": \"7dde329628506567faef30b9eb5c5f69\"\n },\n {\n \"url\": \"/icons/openweathermap/black/11d.png\",\n \"revision\": \"8f6a4b2446b42e8215195e195133e546\"\n },\n {\n \"url\": \"/icons/openweathermap/black/11n.png\",\n \"revision\": \"8f6a4b2446b42e8215195e195133e546\"\n },\n {\n \"url\": \"/icons/openweathermap/black/13d.png\",\n \"revision\": \"45bfce1d2ea7d16415848650eb5d2cb3\"\n },\n {\n \"url\": \"/icons/openweathermap/black/13n.png\",\n \"revision\": \"45bfce1d2ea7d16415848650eb5d2cb3\"\n },\n {\n \"url\": \"/icons/openweathermap/black/50d.png\",\n \"revision\": \"7a304f2b15fe4d9de351dabc44ff900d\"\n },\n {\n \"url\": \"/icons/openweathermap/black/50n.png\",\n \"revision\": \"7a304f2b15fe4d9de351dabc44ff900d\"\n },\n {\n \"url\": \"/icons/openweathermap/black/unknown.png\",\n \"revision\": \"c219891f5796e43d0f75f6525a8d6f33\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/01d.png\",\n \"revision\": \"4cf2907a1083c067828830bb007e2f34\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/01n.png\",\n \"revision\": \"df30375c6371005e2d238c36255afc8a\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/02d.png\",\n \"revision\": \"79a0adce79d78da203beeb7a6f4f510b\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/02n.png\",\n \"revision\": \"68d34b41357c2a3ea9479dae653b3617\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/03d.png\",\n \"revision\": \"5f13dba4164c437e2fbdc1d1ecaada4c\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/03n.png\",\n \"revision\": \"65c125cd51934e24f9e3321cc5448d0e\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/04d.png\",\n \"revision\": \"e75cd73c232806d7364ad7feae354074\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/04n.png\",\n \"revision\": \"e75cd73c232806d7364ad7feae354074\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/09d.png\",\n \"revision\": \"328b726310fb5762861859e33ac9066a\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/09n.png\",\n \"revision\": \"328b726310fb5762861859e33ac9066a\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/10d.png\",\n \"revision\": \"7dde329628506567faef30b9eb5c5f69\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/10n.png\",\n \"revision\": \"7dde329628506567faef30b9eb5c5f69\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/11d.png\",\n \"revision\": \"8f6a4b2446b42e8215195e195133e546\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/11n.png\",\n \"revision\": \"8f6a4b2446b42e8215195e195133e546\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/13d.png\",\n \"revision\": \"45bfce1d2ea7d16415848650eb5d2cb3\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/13n.png\",\n \"revision\": \"45bfce1d2ea7d16415848650eb5d2cb3\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/50d.png\",\n \"revision\": \"7a304f2b15fe4d9de351dabc44ff900d\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/50n.png\",\n \"revision\": \"7a304f2b15fe4d9de351dabc44ff900d\"\n },\n {\n \"url\": \"/icons/openweathermap/dark/unknown.png\",\n \"revision\": \"c219891f5796e43d0f75f6525a8d6f33\"\n },\n {\n \"url\": \"/icons/openweathermap/light/01d.png\",\n \"revision\": \"00c2d0a72a69bf279bf8703cea9ce8d2\"\n },\n {\n \"url\": \"/icons/openweathermap/light/01n.png\",\n \"revision\": \"3a65e9f7ed5c54c6acd638a7bd26de25\"\n },\n {\n \"url\": \"/icons/openweathermap/light/02d.png\",\n \"revision\": \"63dab156e991be7e4174d1d6cd8c2321\"\n },\n {\n \"url\": \"/icons/openweathermap/light/02n.png\",\n \"revision\": \"7c64d1a1c5efdbe38e6b7e3b4f50f2c5\"\n },\n {\n \"url\": \"/icons/openweathermap/light/03d.png\",\n \"revision\": \"f609003793e658a60870587cd450fc6f\"\n },\n {\n \"url\": \"/icons/openweathermap/light/03n.png\",\n \"revision\": \"7e694b4317b3e9f2533db93969fcc3e8\"\n },\n {\n \"url\": \"/icons/openweathermap/light/04d.png\",\n \"revision\": \"098f9d40b1d5747996df9a720f160c81\"\n },\n {\n \"url\": \"/icons/openweathermap/light/04n.png\",\n \"revision\": \"098f9d40b1d5747996df9a720f160c81\"\n },\n {\n \"url\": \"/icons/openweathermap/light/09d.png\",\n \"revision\": \"c48a99b60e45690cdc702a2dc6694002\"\n },\n {\n \"url\": \"/icons/openweathermap/light/09n.png\",\n \"revision\": \"c48a99b60e45690cdc702a2dc6694002\"\n },\n {\n \"url\": \"/icons/openweathermap/light/10d.png\",\n \"revision\": \"2750daf3f0d811230591a415e42bddb2\"\n },\n {\n \"url\": \"/icons/openweathermap/light/10n.png\",\n \"revision\": \"2750daf3f0d811230591a415e42bddb2\"\n },\n {\n \"url\": \"/icons/openweathermap/light/11d.png\",\n \"revision\": \"7bd0501a7bfcf2675467df0c0788ffad\"\n },\n {\n \"url\": \"/icons/openweathermap/light/11n.png\",\n \"revision\": \"7bd0501a7bfcf2675467df0c0788ffad\"\n },\n {\n \"url\": \"/icons/openweathermap/light/13d.png\",\n \"revision\": \"4e11e697c6bafc8dd83c4dfc8ce47919\"\n },\n {\n \"url\": \"/icons/openweathermap/light/13n.png\",\n \"revision\": \"4e11e697c6bafc8dd83c4dfc8ce47919\"\n },\n {\n \"url\": \"/icons/openweathermap/light/50d.png\",\n \"revision\": \"9a0770f3adc7c4a27e131c04a739f735\"\n },\n {\n \"url\": \"/icons/openweathermap/light/50n.png\",\n \"revision\": \"9a0770f3adc7c4a27e131c04a739f735\"\n },\n {\n \"url\": \"/icons/openweathermap/light/unknown.png\",\n \"revision\": \"f14a44a1ecde49a5c6a396f8c1753263\"\n },\n {\n \"url\": \"/icons/openweathermap/white/01d.png\",\n \"revision\": \"00c2d0a72a69bf279bf8703cea9ce8d2\"\n },\n {\n \"url\": \"/icons/openweathermap/white/01n.png\",\n \"revision\": \"3a65e9f7ed5c54c6acd638a7bd26de25\"\n },\n {\n \"url\": \"/icons/openweathermap/white/02d.png\",\n \"revision\": \"63dab156e991be7e4174d1d6cd8c2321\"\n },\n {\n \"url\": \"/icons/openweathermap/white/02n.png\",\n \"revision\": \"7c64d1a1c5efdbe38e6b7e3b4f50f2c5\"\n },\n {\n \"url\": \"/icons/openweathermap/white/03d.png\",\n \"revision\": \"f609003793e658a60870587cd450fc6f\"\n },\n {\n \"url\": \"/icons/openweathermap/white/03n.png\",\n \"revision\": \"7e694b4317b3e9f2533db93969fcc3e8\"\n },\n {\n \"url\": \"/icons/openweathermap/white/04d.png\",\n \"revision\": \"098f9d40b1d5747996df9a720f160c81\"\n },\n {\n \"url\": \"/icons/openweathermap/white/04n.png\",\n \"revision\": \"098f9d40b1d5747996df9a720f160c81\"\n },\n {\n \"url\": \"/icons/openweathermap/white/09d.png\",\n \"revision\": \"c48a99b60e45690cdc702a2dc6694002\"\n },\n {\n \"url\": \"/icons/openweathermap/white/09n.png\",\n \"revision\": \"c48a99b60e45690cdc702a2dc6694002\"\n },\n {\n \"url\": \"/icons/openweathermap/white/10d.png\",\n \"revision\": \"2750daf3f0d811230591a415e42bddb2\"\n },\n {\n \"url\": \"/icons/openweathermap/white/10n.png\",\n \"revision\": \"2750daf3f0d811230591a415e42bddb2\"\n },\n {\n \"url\": \"/icons/openweathermap/white/11d.png\",\n \"revision\": \"7bd0501a7bfcf2675467df0c0788ffad\"\n },\n {\n \"url\": \"/icons/openweathermap/white/11n.png\",\n \"revision\": \"7bd0501a7bfcf2675467df0c0788ffad\"\n },\n {\n \"url\": \"/icons/openweathermap/white/13d.png\",\n \"revision\": \"4e11e697c6bafc8dd83c4dfc8ce47919\"\n },\n {\n \"url\": \"/icons/openweathermap/white/13n.png\",\n \"revision\": \"4e11e697c6bafc8dd83c4dfc8ce47919\"\n },\n {\n \"url\": \"/icons/openweathermap/white/50d.png\",\n \"revision\": \"9a0770f3adc7c4a27e131c04a739f735\"\n },\n {\n \"url\": \"/icons/openweathermap/white/50n.png\",\n \"revision\": \"9a0770f3adc7c4a27e131c04a739f735\"\n },\n {\n \"url\": \"/icons/openweathermap/white/unknown.png\",\n \"revision\": \"f14a44a1ecde49a5c6a396f8c1753263\"\n },\n {\n \"url\": \"/icons/plex.svg\",\n \"revision\": \"9923c5c80858a7da9d48c3ee77974e77\"\n },\n {\n \"url\": \"/icons/smartthings.png\",\n \"revision\": \"9306b6ca82efa85d58823615ff14b00f\"\n },\n {\n \"url\": \"/icons/z-wave.png\",\n \"revision\": \"3045e92627da521267db845b16da6028\"\n },\n {\n \"url\": \"/icons/zigbee.svg\",\n \"revision\": \"3e5f749af9e83ace5c12ff3aac6d4b88\"\n },\n {\n \"url\": \"/img/dashboard-bg-light.jpg\",\n \"revision\": \"f9ab2a6552509997ec0cbaeb47199eba\"\n },\n {\n \"url\": \"/img/logo.png\",\n \"revision\": \"98702e78dde598404826f6e9279e4ab3\"\n },\n {\n \"url\": \"/img/spinner.gif\",\n \"revision\": \"5572838d351b66bf6a3350b6d8d23cb8\"\n },\n {\n \"url\": \"/index.html\",\n \"revision\": \"5f4205506a2ce7c9134fa7eae563e72f\"\n },\n {\n \"url\": \"/manifest.json\",\n \"revision\": \"8a45dcffc3380b17da6ea17291b43e00\"\n },\n {\n \"url\": \"/static/css/1019.af89a8dd.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1054.1651fcc4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1391.e253d1d5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1421.1a42ddca.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1449.9ddbde9a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/169.e6cc03dc.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1706.bb05100a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1949.77f77742.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2029.66acebb6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2140.57230853.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/215.91074688.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2217.4daed832.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2460.352e2032.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2694.515bb415.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2718.5a080a62.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2764.7b323478.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2831.09fe1331.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2844.213aa9d5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2893.fb75679d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2924.355557a9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/293.521a4f1c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2976.59466ee8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2992.ffd96967.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3211.e29a4da3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3248.a0e1e73b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3368.be1ab054.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3369.5df5b182.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/34.a44e466f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3426.50cde06e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3559.ea018a19.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/38.b93403c3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3826.eb2047be.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3835.bc057f22.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3865.8b16d712.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3924.a0990b57.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4015.b27ff6b3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4106.2a5e087e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4339.10e2638e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4364.460ea7ea.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/446.a06f3c43.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4470.aa130b90.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4790.de9cbcae.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4795.708edd2b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5053.af8a2a60.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5086.1debab08.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5144.58c91f04.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5167.27f1bcef.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5207.1bd62254.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5285.9219493c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5329.8fe5b425.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/557.f2c6f156.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5638.8fd4b2fd.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5906.5764c6f4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5933.58e6489b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6217.9d3928a2.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6324.611abb15.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6429.44836618.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/65.14c0a64c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6517.df2ff86e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6523.21976e39.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6561.dca0bf04.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6602.e64a7f9e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/669.2932b8cc.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6734.0e8a5c69.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6882.e84203b6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7257.5944729a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/729.b8d5159d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7439.3e05b426.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/746.73f3ef00.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7503.ef90df2a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7528.e72123ff.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7590.062e0c94.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7617.df56322e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7619.c8d6a02e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7624.e657a974.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7651.febeb48c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7841.73c7ce9d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7897.f0ce1f42.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7976.45217ed0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7998.e7f9b7de.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8069.6137b3a0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8179.54b37efe.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8391.57207909.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8409.5edaa185.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8434.61db845a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8498.381007b7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8621.dc5673af.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/864.b7e8560d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8756.53bc55b1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8769.3c09554f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8825.64638d91.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8989.b08bd0bb.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9025.80353e6d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/906.2d11adc8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9092.5953fa24.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9122.ae7ee25d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9211.c14c28e9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9461.ae92bb88.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9480.9a19b0d1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9663.e136d856.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9751.f5541a2c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/980.0ae4451e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/984.4b68dcc1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9962.b5594d80.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/app.70fb1f4a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/chunk-vendors.d510eff2.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/dashboard.3111af9d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/panel.486b493e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/plugin.12cf4736.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.5d18d427.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.87587a68.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.3ccdbd3d.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.81482cd4.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.0b0cc8a6.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.69d3141a.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/lato-medium-italic.1996cc15.woff\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/lato-medium-italic.1e312dd9.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/lato-medium.13fcde4c.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/lato-medium.b41c3821.woff\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ad.cb33f69a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ad.fa8477e6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ae.a3f5e295.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ae.f06e0095.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/af.89591ab0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/af.8ca96393.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ag.4c37bc2e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ag.56074d55.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ai.70eefdc0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ai.893d1179.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/al.b16acdb2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/al.e0864b5d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/am.00f0fec4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/am.a566904f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ao.3df23f21.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ao.c0c32201.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/aq.1b8c45a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/aq.aa242c4a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ar.22a3116e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ar.d3238270.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/as.10ed1a23.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/as.4a330654.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/at.02a64279.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/at.94cde74c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/au.cc65fc07.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/au.dbcdef2c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/aw.abbad4ac.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/aw.be4540eb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ax.371c7af2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ax.91eea523.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/az.0e2f1d1a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/az.f399f1c8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ba.032070d4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ba.e167b08f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bb.23a15e67.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bb.b800513b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bd.c1abcb00.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bd.c4a5f0e2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/be.29774a37.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/be.3eb14701.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bf.2334e919.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bf.4ffd5dc6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bg.700f100c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bg.d0a49130.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bh.2a884f6c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bh.3968dfe0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bi.211d0f9e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bi.ae3bb248.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bj.2cdc8a62.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bj.aba95ad2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bl.04966866.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bl.3e69e968.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bm.e6903c8e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bm.e69e40c4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bn.07911e0c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bn.4d91734a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bo.03595499.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bo.9c1d9ef8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bq.747d8177.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bq.b9355bec.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/br.058a5086.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/br.fe030c1c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bs.d228cbb2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bs.ef0a29ed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bt.3f8ecb9b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bt.fc241981.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bv.5503f03a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bv.7f7cd26f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bw.494aae64.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bw.b767df8c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/by.78d2c3c9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/by.fba98c48.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bz.14c3376a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/bz.5e0ef548.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ca.163ac200.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ca.a2ab234d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cc.51960f85.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cc.813adff8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cd.39186ec2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cd.b4bd46ee.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cf.b5702729.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cf.fe1120e9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cg.00603842.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cg.12414c99.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ch.7376c9c3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ch.a558d859.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ci.1251a8e3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ci.425a24c2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ck.4e83dd3e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ck.6303aa5b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cl.0917a91e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cl.b5974a35.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cm.253adb39.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cm.853e2843.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cn.38f63e1e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cn.e1b166eb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/co.33e249d8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/co.b5cbc817.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cr.2e572846.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cr.336eb7d3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cu.c2a6f0ed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cu.d6e33f19.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cv.5ea64968.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cv.b3ab83f5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cw.0e14b0b7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cw.9b9b7ed5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cx.da5de6d2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cx.e04e07e8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cy.834e6240.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cy.bfcfd736.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cz.aa114964.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/cz.b5f98a6b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dashboard-bg-light.06da6eab.jpg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/de.8e159e6e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/de.b827ac51.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dj.4197a18a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dj.925748d5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dk.3ca1caed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dk.a867eeef.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dm.7ddb00ac.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dm.bca6d70c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/do.81097daa.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/do.954f0f3e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dz.76d47b01.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/dz.b7e2fbce.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ec.0029f514.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ec.5f387e2f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ee.1b4839e0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ee.828384a8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eg.38443fa6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eg.5756a758.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eh.82bd1c7b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eh.f8d7b64f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/er.bf5b134b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/er.e932abe1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/es-ct.64a68954.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/es-ct.69469f50.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/es.7dd46df0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/es.de5915e5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/et.82e8eb21.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/et.a998a1b2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eu.4c6e130f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/eu.aba724b1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fi.0cd85b78.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fi.3be6b378.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fj.ac9c916f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fj.e8d3e00b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fk.af0350f8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fk.db55fa14.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fm.3491efc7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fm.78d44caa.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fo.1da81e3a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fo.72949ad1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fr.3565b8f4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/fr.9cb70285.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ga.3e474381.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ga.59f7d865.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-eng.0fac6e79.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-eng.513dcf1b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-nir.2b7d2c3a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-nir.f59817d6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-sct.f5001e5d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-sct.fee55173.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-wls.13481560.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb-wls.95b2cfab.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb.2aafb374.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gb.7a456bb2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gd.04ea09b7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gd.60b96978.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ge.b7b65b55.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ge.c7190912.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gf.531f9e07.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gf.90f438a3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gg.3aebc3ce.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gg.65174039.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gh.af443995.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gh.f2b6baac.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gi.302c2506.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gi.7beea6ed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gl.551d0783.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gl.6a5c17b0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gm.0e00e9d4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gm.1724dc37.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gn.54a75b28.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gn.7c96520b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gp.4327060f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gp.f8adbf5c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gq.b1679302.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gq.bd7daf33.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gr.07bedadf.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gr.25dd3287.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gs.60368968.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gs.b2836676.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gt.1a24ed67.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gt.825f7286.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gu.05f0ab85.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gu.19b114eb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gw.bcd1eddb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gw.c97f3f94.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gy.6327f72a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/gy.e11d0234.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hk.b199a9ee.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hk.c72bba0e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hm.4aa61657.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hm.d4b3d393.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hn.08ad78b2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hn.44cee191.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hr.078b1bf9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hr.1f4e28b8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ht.6943447c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ht.7ca68737.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hu.692e97ca.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/hu.b10d3f8e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/id.94464e47.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/id.a05dc04c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ie.5154112a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ie.e23b25d1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/il.150f4c5f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/il.e02a66d3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/im.25166c91.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/im.942419c5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/in.954929a0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/in.bd0d4f19.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/io.a59923ab.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/io.fa003484.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/iq.1232a5c2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/iq.9a48d678.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ir.1ed24953.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ir.bc7ae9e1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/is.cad57f19.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/is.eea59326.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/it.039b4527.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/it.e8516fc7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/je.1684dacc.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/je.3ed72a25.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jellyfin.7b53a541.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jm.2357530e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jm.479f30fe.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jo.06fbaa2c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jo.7ac45a65.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jp.1795778c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/jp.b6063838.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ke.6dbfffd5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ke.769bb975.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kg.96c12490.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kg.daded53c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kh.8eeb1634.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kh.b10339d6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ki.033ff9ce.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ki.89e43a21.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/km.1e3bd5fe.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/km.3ffb0228.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kn.0c16fe68.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kn.8f2e7b29.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kodi.d18f8d23.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kp.0f5253d8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kp.f4ff9e76.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kr.0dc8b972.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kr.0f5e1116.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kw.3b4f3ea3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kw.830d3755.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ky.be81d90b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ky.e3b76b32.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kz.32ac1036.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/kz.579ac0f9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/la.e583f8ec.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/la.f71017ef.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lb.8eea508a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lb.bdbeb8f1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lc.25f644a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lc.68bd77ae.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/li.8dc1ed79.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/li.d7e2a871.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lk.42c41c61.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lk.e52240d6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lr.5b84ff00.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lr.9a67cd3d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ls.6d444cae.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ls.fe1da403.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lt.03a2e8c1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lt.b57ea2a8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lu.93878a1b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lu.e3bdc6d3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lv.1853e3a0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/lv.679c099e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ly.05f8732e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ly.b9e750ff.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ma.65053fc4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ma.88ada30c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mc.2c03ea5c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mc.89b532e8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/md.646818c3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/md.a56562ee.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/me.2e71b778.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/me.f05548f2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mf.70d09a4a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mf.7da6b3d2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mg.09ca17b2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mg.b3fff4a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mh.3fd69bb2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mh.f6cbc774.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mk.4234a248.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mk.e5412079.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ml.3fad079e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ml.4f0dba9e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mm.8ac1f094.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mm.adaa2111.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mn.78547af0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mn.a4bcb0e6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mo.2f0d2c15.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mo.c8198565.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mp.2acb5506.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mp.eeeefff6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mq.145a7657.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mq.bb36a8fc.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mr.dd34eae8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mr.e91e06ea.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ms.2025cd7d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ms.b13001dc.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mt.b6f71c85.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mt.cff39ee0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mu.51f71163.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mu.a926c232.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mv.2c8b92b5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mv.ba4de4fd.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mw.0b005148.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mw.f704f4bb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mx.1b615ec2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mx.8a36b075.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/my.4109ae71.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/my.69c87fc5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mz.1377650b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/mz.2c96acb1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/na.7adf4344.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/na.e0503926.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nc.96fa6a4b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nc.b5a5d41b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ne.d11b82c6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ne.d4fe4faa.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nf.1e8c700b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nf.a7166b00.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ng.51059407.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ng.c3b42ad2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ni.5b80bac0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ni.cc7eb514.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nl.dd138444.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nl.e415f0e7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/no.26996afa.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/no.70157234.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/np.954177a0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/np.f7b8a5c3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nr.2c66d218.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nr.a4f0e762.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nu.26551dc2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nu.860bbe8a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nz.38d0d690.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/nz.c77ae58d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/om.3f5691ca.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/om.ff034f9e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pa.6dc8212a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pa.acde3214.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pe.5a3b0bc5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pe.5c2ced95.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pf.9f06082b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pf.f6ae1bc8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pg.26847b33.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pg.66c8dc3b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ph.12e2b123.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ph.f215833e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pk.0bbf58be.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pk.32b55f6f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pl.03886843.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pl.a1350f0c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/plex.7a4e22a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pm.7a6beab5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pm.a5590fa3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pn.00a9342b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pn.715fd11d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pr.391a48e2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pr.b37cbdc4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ps.1af72ed4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ps.96bcac74.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pt.0703cc3a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pt.351b87cb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pw.17220ffb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pw.6d8e7ce0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/py.25cc39e3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/py.c20318c9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/qa.7e695788.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/qa.86452d7a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/re.b8140129.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/re.cf143c2f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ro.67f8501e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ro.cab93784.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/rs.23638d75.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/rs.ae2e3422.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ru.ccd50623.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ru.edd8b008.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/rw.87d5d899.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/rw.d118aacd.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sa.5bfbe72b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sa.f0a8997b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sb.1c406073.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sb.b0db5b0a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sc.0452f14c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sc.cdc20672.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sd.0e619868.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sd.da3b68ee.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/se.7e499d82.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/se.7ec71700.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sg.4f0e8eff.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sg.8a63b009.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sh.46e2588d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sh.681f8fff.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/si.2a428364.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/si.d9d425c0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sj.638e6522.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sj.92c583b8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sk.7998d1f5.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sk.93c91c0b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sl.d8378c47.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sl.eb9dda3f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sm.0ba901f4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sm.5e2fc188.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sn.4247b831.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sn.98923b55.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/so.2d18a203.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/so.45f08b28.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sr.cb178d98.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sr.d66c1240.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ss.caedfdf2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ss.db181f81.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/st.a70042c6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/st.ecc4827f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sv.9501935a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sv.f67839a6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sx.77e864f0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sx.c0e6297a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sy.2b3eac89.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sy.7fe894df.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sz.70b6fc50.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/sz.eb01cd9f.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tc.30ccd48e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tc.651466dd.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/td.5d622e26.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/td.f1319408.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tf.27cbe00b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tf.a1757237.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tg.b492a751.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tg.d04f874c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/th.79b63a8a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/th.b8e24edb.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tj.b7dafe8d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tj.d3a42312.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tk.6c1f520c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tk.f87f794b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tl.85904d79.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tl.ca9af3c0.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tm.762df128.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tm.e467552c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tn.cc3ab493.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tn.ff4c5190.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/to.8dd22284.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/to.9748a967.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tr.87e40d5c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tr.fc8c91dd.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tt.4acf6cc2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tt.5a459e81.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tv.9717b553.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tv.a8ff4939.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tw.45c8a106.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tw.c0cf9ea7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tz.1abfbb38.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/tz.c27fd405.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ua.04fa0e67.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ua.63d75c84.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ug.5ac71e98.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ug.5ae165a2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/um.582dd57b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/um.b38f913c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/un.2df110d6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/un.58a4a02a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/us.6c459052.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/us.99e04236.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/uy.69cf8938.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/uy.b70ac310.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/uz.7f8823a2.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/uz.d53abc35.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/va.7efb8ba6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/va.abcb42e8.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vc.37cf5ba1.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vc.3e4ac6d4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ve.4cd0e3ed.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ve.9cd63506.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vg.025b8b6a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vg.ae3b6f7e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vi.293e6f1c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vi.f920eec7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vn.11dd1cf6.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vn.9ec4ca4d.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vu.5d2d7643.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/vu.b7a8d91a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/wf.69c77016.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/wf.9ca6f4bc.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ws.15c7a17c.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ws.d2e19e5a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/xk.16b6bb85.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/xk.ca7843be.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ye.0b3f3c76.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/ye.bb567731.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/yt.332bd5d3.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/yt.c33641ca.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/za.2fa94205.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/za.42e033a9.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/zm.92477cab.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/zm.ce5363b7.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/zw.6a535c1e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/zw.f488cb8a.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1019.d219f976.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1054.e7c57dec.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1088.5dc136bc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1421.578b11dd.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1449.a1da87d4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1512.455ca36e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/169.f32b50c1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1706.1994f98e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1949.41fbaf1f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2029.7817db55.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2106.bca710c6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2140.bce5dd59.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/215.57c634fb.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2183.de1bfd17.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2200.98d8144c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2217.4c24b6df.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2305.90eac875.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2460.deeb79ea.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2614.b2a40037.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2694.b61ed311.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2718.ccf949cf.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2726.d2fad2f9.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2732.261f48cf.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2853.2a8ea887.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2893.9df53290.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/293.82f9abb3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2976.34a2208b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2991.633ef421.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3083.b44a83cc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3211.7857f583.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3214.3c8b571f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3322.4b484e81.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3368.78c670ee.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3369.0f87dded.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/34.7540bd55.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3400.037c4ded.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3426.5a388a30.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3518.09389e31.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3559.ca9053ac.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3732.93a4195c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3835.01ac1693.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3865.d8adea3d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3924.c0d2f3c0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4015.5f13183f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4053.2c401fdf.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4106.abda7f15.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4279.04984d78.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4339.c70b7491.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4364.a86699e9.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4447.f732aec5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/446.6a9228c2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/45.6ebcd22c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4619.5c734a42.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4765.a4f302e0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4795.c692d683.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5053.2bd39649.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5144.640e98ef.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5167.85cd1b71.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5207.7f241e21.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5285.3ee4149d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5329.7b52242a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5408.6d02ad6d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/557.8cb5b0a4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5638.1527fc01.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5754.56a492ac.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5966.cd5de796.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6148.3924a21f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6324.b436047b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6362.f15e6ec3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/637.19974b5c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6429.3ea2e105.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/65.ae7df477.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6523.2673834a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6640.9ad3c551.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6734.2b3de85d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6882.70d48600.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7089.0b339076.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7257.115c325c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/729.fde72a02.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7381.bf8f1b35.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/746.089d51ca.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7528.afb767dc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7590.45c9efd9.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7617.a3a062e0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7619.99a790b0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7841.362dbb91.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7976.fb3a73dc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8113.dfd7834f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/813.885d5201.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8179.75e942e3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8391.7c0e7413.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8409.4d2322a6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8498.f1129697.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8621.06c016ad.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8697.3f9798ec.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8756.e02a6548.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8769.7adec074.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8784.2e795580.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8825.0fe0da38.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8895.5ed5433c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8903.53e5ad12.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8930.9bfb6cfc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9086.2436d087.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9091.0a16b99d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9092.89f920f0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9164.2abd7e67.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9171.fa1f1052.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9211.4f9b05a5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9243.22800ece.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9334.59b012e7.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9461.cc5f6345.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9663.a3d8fdca.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9751.8ea7c2f2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/980.b05bbb98.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/984.6626532a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9962.95beb9e3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/app.d90fb573.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/chunk-vendors.5645dfdc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/dashboard.8e6f9fe8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/login.5ccc27d1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/notfound.c3830a81.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/panel.e4a0e5c5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/plugin.266a2564.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/register.807d88c0.js\",\n \"revision\": null\n }\n], {});\n\n\n\n\n\n\n\n\n"],"names":["workbox_core_setCacheNameDetails","prefix","self","addEventListener","event","data","type","skipWaiting","workbox_precaching_precacheAndRoute","url","revision"],"mappings":"0nBAiBAA,EAAAA,oBAAiC,CAACC,OAAQ,cAG1CC,KAAKC,iBAAiB,WAAYC,IAC5BA,EAAMC,MAA4B,iBAApBD,EAAMC,KAAKC,MAC3BJ,KAAKK,aACP,IAWFC,EAAAA,iBAAoC,CAClC,CACEC,IAAO,qBACPC,SAAY,oCAEd,CACED,IAAO,qBACPC,SAAY,oCAEd,CACED,IAAO,sBACPC,SAAY,oCAEd,CACED,IAAO,kBACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,0CACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,yCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,0CACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,sCACPC,SAAY,oCAEd,CACED,IAAO,0CACPC,SAAY,oCAEd,CACED,IAAO,kBACPC,SAAY,oCAEd,CACED,IAAO,yBACPC,SAAY,oCAEd,CACED,IAAO,oBACPC,SAAY,oCAEd,CACED,IAAO,oBACPC,SAAY,oCAEd,CACED,IAAO,8BACPC,SAAY,oCAEd,CACED,IAAO,gBACPC,SAAY,oCAEd,CACED,IAAO,mBACPC,SAAY,oCAEd,CACED,IAAO,cACPC,SAAY,oCAEd,CACED,IAAO,iBACPC,SAAY,oCAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,yCACPC,SAAY,MAEd,CACED,IAAO,qCACPC,SAAY,MAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,2CACPC,SAAY,MAEd,CACED,IAAO,6CACPC,SAAY,MAEd,CACED,IAAO,8CACPC,SAAY,MAEd,CACED,IAAO,4CACPC,SAAY,MAEd,CACED,IAAO,4CACPC,SAAY,MAEd,CACED,IAAO,0CACPC,SAAY,MAEd,CACED,IAAO,iDACPC,SAAY,MAEd,CACED,IAAO,kDACPC,SAAY,MAEd,CACED,IAAO,2CACPC,SAAY,MAEd,CACED,IAAO,0CACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8CACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,oCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,4BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,4BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,4BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,uCACPC,SAAY,MAEd,CACED,IAAO,mCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,OAEb,CAAA"} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1019.af89a8dd.css b/platypush/backend/http/webapp/dist/static/css/1019.af89a8dd.css new file mode 100644 index 0000000000..fc6569596d --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1019.af89a8dd.css @@ -0,0 +1 @@ +.col-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-dd2759da]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-dd2759da]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-dd2759da]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-dd2759da]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-dd2759da]:first-child{margin-left:26%!important}.col-offset-3[data-v-dd2759da]:not(first-child){margin-left:30%!important}.col-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-dd2759da]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-dd2759da]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-dd2759da]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-dd2759da]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-dd2759da]:first-child{margin-left:52%!important}.col-offset-6[data-v-dd2759da]:not(first-child){margin-left:56%!important}.col-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-dd2759da]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-dd2759da]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-dd2759da]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-dd2759da]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-dd2759da]:first-child{margin-left:78%!important}.col-offset-9[data-v-dd2759da]:not(first-child){margin-left:82%!important}.col-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-dd2759da]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-dd2759da]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-dd2759da]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-dd2759da]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-1[data-v-dd2759da]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-2[data-v-dd2759da]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-3[data-v-dd2759da]{margin-left:26%}.col-no-margin-s-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-4[data-v-dd2759da]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-5[data-v-dd2759da]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-6[data-v-dd2759da]{margin-left:52%}.col-no-margin-s-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-7[data-v-dd2759da]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-8[data-v-dd2759da]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-9[data-v-dd2759da]{margin-left:78%}.col-no-margin-s-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-10[data-v-dd2759da]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-dd2759da]:first-child{margin-left:0}.col-offset-s-11[data-v-dd2759da]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-s-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-dd2759da]{display:none!important}.s-visible[data-v-dd2759da]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-1[data-v-dd2759da]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-2[data-v-dd2759da]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-3[data-v-dd2759da]{margin-left:26%}.col-no-margin-m-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-4[data-v-dd2759da]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-5[data-v-dd2759da]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-6[data-v-dd2759da]{margin-left:52%}.col-no-margin-m-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-7[data-v-dd2759da]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-8[data-v-dd2759da]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-9[data-v-dd2759da]{margin-left:78%}.col-no-margin-m-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-10[data-v-dd2759da]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-dd2759da]:first-child{margin-left:0}.col-offset-m-11[data-v-dd2759da]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-m-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-dd2759da]{display:none!important}.m-visible[data-v-dd2759da]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-1[data-v-dd2759da]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-2[data-v-dd2759da]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-3[data-v-dd2759da]{margin-left:26%}.col-no-margin-l-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-4[data-v-dd2759da]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-5[data-v-dd2759da]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-6[data-v-dd2759da]{margin-left:52%}.col-no-margin-l-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-7[data-v-dd2759da]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-8[data-v-dd2759da]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-9[data-v-dd2759da]{margin-left:78%}.col-no-margin-l-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-10[data-v-dd2759da]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-dd2759da]:first-child{margin-left:0}.col-offset-l-11[data-v-dd2759da]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-l-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-dd2759da]{display:none!important}.l-visible[data-v-dd2759da]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-1[data-v-dd2759da]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-2[data-v-dd2759da]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-3[data-v-dd2759da]{margin-left:26%}.col-no-margin-xl-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-4[data-v-dd2759da]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-5[data-v-dd2759da]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-6[data-v-dd2759da]{margin-left:52%}.col-no-margin-xl-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-7[data-v-dd2759da]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-8[data-v-dd2759da]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-9[data-v-dd2759da]{margin-left:78%}.col-no-margin-xl-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-10[data-v-dd2759da]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xl-11[data-v-dd2759da]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-dd2759da]{display:none!important}.xl-visible[data-v-dd2759da]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-1[data-v-dd2759da]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-dd2759da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-2[data-v-dd2759da]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-dd2759da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-3[data-v-dd2759da]{margin-left:26%}.col-no-margin-xxl-3[data-v-dd2759da]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-4[data-v-dd2759da]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-dd2759da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-5[data-v-dd2759da]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-dd2759da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-6[data-v-dd2759da]{margin-left:52%}.col-no-margin-xxl-6[data-v-dd2759da]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-7[data-v-dd2759da]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-dd2759da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-8[data-v-dd2759da]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-dd2759da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-9[data-v-dd2759da]{margin-left:78%}.col-no-margin-xxl-9[data-v-dd2759da]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-10[data-v-dd2759da]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-dd2759da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-dd2759da]:first-child{margin-left:0}.col-offset-xxl-11[data-v-dd2759da]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-dd2759da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-dd2759da]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-dd2759da]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-dd2759da]{display:none!important}.xxl-visible[data-v-dd2759da]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-dd2759da]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-dd2759da]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-dd2759da]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-dd2759da]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-dd2759da]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-dd2759da]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-dd2759da]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-dd2759da]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-dd2759da]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-dd2759da]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-dd2759da]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-dd2759da]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-dd2759da]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-dd2759da]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-dd2759da]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-dd2759da]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-dd2759da]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-dd2759da]{display:none!important}}.vertical-center[data-v-dd2759da]{display:flex;align-items:center}.horizontal-center[data-v-dd2759da]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-dd2759da]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-dd2759da]{display:none!important}.no-content[data-v-dd2759da]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-dd2759da]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-dd2759da]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-dd2759da]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-dd2759da]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-dd2759da]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-dd2759da]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-dd2759da],.btn[data-v-dd2759da],button[data-v-dd2759da]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-dd2759da],.btn-default[type=submit][data-v-dd2759da],.btn.btn-primary[data-v-dd2759da],.btn[type=submit][data-v-dd2759da],button.btn-primary[data-v-dd2759da],button[type=submit][data-v-dd2759da]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-dd2759da]:hover,.btn[data-v-dd2759da]:hover,button[data-v-dd2759da]:hover{color:#35b870}.btn .icon[data-v-dd2759da],.btn-default .icon[data-v-dd2759da],button .icon[data-v-dd2759da]{margin-right:.5em}.btn-default[data-v-dd2759da]:disabled,.btn-default[disabled][data-v-dd2759da],.btn[data-v-dd2759da]:disabled,.btn[disabled][data-v-dd2759da],button[data-v-dd2759da]:disabled,button[disabled][data-v-dd2759da]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-dd2759da]{cursor:grab!important}.dragged[data-v-dd2759da]{opacity:.5!important}input[type=password][data-v-dd2759da],input[type=text][data-v-dd2759da]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-dd2759da]:focus,input[type=text][data-v-dd2759da]:focus{border:1px solid #35b870}button[data-v-dd2759da],input[data-v-dd2759da]{outline:none}input[type=text][data-v-dd2759da]:hover,textarea[data-v-dd2759da]:hover{border:1px solid #9cdfb0}ul[data-v-dd2759da]{margin:0;padding:0;list-style:none}a[data-v-dd2759da]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-dd2759da]:hover{color:#35b870}[data-v-dd2759da]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-dd2759da]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-dd2759da]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-dd2759da]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-dd2759da]{color:#ad1717}body[data-v-dd2759da]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-dd2759da] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-dd2759da] .nav .path{cursor:pointer}.browser[data-v-dd2759da] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-dd2759da] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-dd2759da]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-dd2759da]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-dd2759da],input[type=number][data-v-dd2759da],input[type=password][data-v-dd2759da],input[type=search][data-v-dd2759da],input[type=text][data-v-dd2759da],input[type=time][data-v-dd2759da]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-dd2759da]:hover,input[type=number][data-v-dd2759da]:hover,input[type=password][data-v-dd2759da]:hover,input[type=search][data-v-dd2759da]:hover,input[type=text][data-v-dd2759da]:hover,input[type=time][data-v-dd2759da]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-dd2759da]:focus,input[type=number][data-v-dd2759da]:focus,input[type=password][data-v-dd2759da]:focus,input[type=search][data-v-dd2759da]:focus,input[type=text][data-v-dd2759da]:focus,input[type=time][data-v-dd2759da]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-dd2759da],input[type=number].with-icon[data-v-dd2759da],input[type=password].with-icon[data-v-dd2759da],input[type=search].with-icon[data-v-dd2759da],input[type=text].with-icon[data-v-dd2759da],input[type=time].with-icon[data-v-dd2759da]{padding-left:.3em}input[type=search][data-v-dd2759da],input[type=text][data-v-dd2759da]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-dd2759da]{animation-fill-mode:both;animation-name:fadeIn-dd2759da;-webkit-animation-name:fadeIn-dd2759da}.fade-in[data-v-dd2759da],.fade-out[data-v-dd2759da]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-dd2759da]{animation-fill-mode:both;animation-name:fadeOut-dd2759da;-webkit-animation-name:fadeOut-dd2759da}.expand[data-v-dd2759da]{animation-fill-mode:both;animation-name:expand-dd2759da;-webkit-animation-name:expand-dd2759da}.expand[data-v-dd2759da],.shrink[data-v-dd2759da]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-dd2759da]{animation-fill-mode:both;animation-name:shrink-dd2759da;-webkit-animation-name:shrink-dd2759da}.fold[data-v-dd2759da]{animation-fill-mode:both;animation-name:fold-dd2759da;-webkit-animation-name:fold-dd2759da}.fold[data-v-dd2759da],.unfold[data-v-dd2759da]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-dd2759da]{animation-fill-mode:both;animation-name:unfold-dd2759da;-webkit-animation-name:unfold-dd2759da}.dim[data-v-dd2759da]{animation-fill-mode:both;animation-name:dim-dd2759da;-webkit-animation-name:dim-dd2759da}.brighten[data-v-dd2759da],.dim[data-v-dd2759da]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-dd2759da]{animation-fill-mode:both;animation-name:brighten-dd2759da;-webkit-animation-name:brighten-dd2759da}@keyframes fadeIn-dd2759da{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-dd2759da{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-dd2759da{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-dd2759da{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-dd2759da{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-dd2759da{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-dd2759da{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-dd2759da{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-dd2759da]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-dd2759da;-webkit-animation-name:glow-dd2759da}.loop[data-v-dd2759da]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-dd2759da{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-dd2759da]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-dd2759da]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-dd2759da]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.dragged[data-v-dd2759da]{position:absolute;max-width:100%;max-height:100%;transform:scale(.5);z-index:1000}.col-1[data-v-49487886]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-49487886]:first-child{margin-left:0}.col-no-margin-1[data-v-49487886]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-49487886]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-49487886]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-49487886]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-49487886]:first-child{margin-left:0}.col-no-margin-2[data-v-49487886]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-49487886]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-49487886]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-49487886]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-49487886]:first-child{margin-left:0}.col-no-margin-3[data-v-49487886]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-49487886]:first-child{margin-left:26%!important}.col-offset-3[data-v-49487886]:not(first-child){margin-left:30%!important}.col-4[data-v-49487886]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-49487886]:first-child{margin-left:0}.col-no-margin-4[data-v-49487886]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-49487886]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-49487886]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-49487886]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-49487886]:first-child{margin-left:0}.col-no-margin-5[data-v-49487886]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-49487886]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-49487886]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-49487886]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-49487886]:first-child{margin-left:0}.col-no-margin-6[data-v-49487886]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-49487886]:first-child{margin-left:52%!important}.col-offset-6[data-v-49487886]:not(first-child){margin-left:56%!important}.col-7[data-v-49487886]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-49487886]:first-child{margin-left:0}.col-no-margin-7[data-v-49487886]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-49487886]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-49487886]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-49487886]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-49487886]:first-child{margin-left:0}.col-no-margin-8[data-v-49487886]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-49487886]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-49487886]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-49487886]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-49487886]:first-child{margin-left:0}.col-no-margin-9[data-v-49487886]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-49487886]:first-child{margin-left:78%!important}.col-offset-9[data-v-49487886]:not(first-child){margin-left:82%!important}.col-10[data-v-49487886]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-49487886]:first-child{margin-left:0}.col-no-margin-10[data-v-49487886]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-49487886]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-49487886]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-49487886]:first-child{margin-left:0}.col-no-margin-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-49487886]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-49487886]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-49487886]:first-child{margin-left:0}.col-no-margin-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-49487886]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-49487886]:first-child{margin-left:0}.col-offset-s-1[data-v-49487886]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-49487886]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-49487886]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-49487886]:first-child{margin-left:0}.col-offset-s-2[data-v-49487886]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-49487886]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-49487886]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-49487886]:first-child{margin-left:0}.col-offset-s-3[data-v-49487886]{margin-left:26%}.col-no-margin-s-3[data-v-49487886]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-49487886]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-49487886]:first-child{margin-left:0}.col-offset-s-4[data-v-49487886]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-49487886]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-49487886]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-49487886]:first-child{margin-left:0}.col-offset-s-5[data-v-49487886]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-49487886]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-49487886]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-49487886]:first-child{margin-left:0}.col-offset-s-6[data-v-49487886]{margin-left:52%}.col-no-margin-s-6[data-v-49487886]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-49487886]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-49487886]:first-child{margin-left:0}.col-offset-s-7[data-v-49487886]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-49487886]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-49487886]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-49487886]:first-child{margin-left:0}.col-offset-s-8[data-v-49487886]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-49487886]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-49487886]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-49487886]:first-child{margin-left:0}.col-offset-s-9[data-v-49487886]{margin-left:78%}.col-no-margin-s-9[data-v-49487886]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-49487886]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-49487886]:first-child{margin-left:0}.col-offset-s-10[data-v-49487886]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-49487886]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-49487886]:first-child{margin-left:0}.col-offset-s-11[data-v-49487886]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-49487886]:first-child{margin-left:0}.col-no-margin-s-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-49487886]{display:none!important}.s-visible[data-v-49487886]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-49487886]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-49487886]:first-child{margin-left:0}.col-offset-m-1[data-v-49487886]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-49487886]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-49487886]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-49487886]:first-child{margin-left:0}.col-offset-m-2[data-v-49487886]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-49487886]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-49487886]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-49487886]:first-child{margin-left:0}.col-offset-m-3[data-v-49487886]{margin-left:26%}.col-no-margin-m-3[data-v-49487886]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-49487886]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-49487886]:first-child{margin-left:0}.col-offset-m-4[data-v-49487886]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-49487886]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-49487886]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-49487886]:first-child{margin-left:0}.col-offset-m-5[data-v-49487886]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-49487886]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-49487886]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-49487886]:first-child{margin-left:0}.col-offset-m-6[data-v-49487886]{margin-left:52%}.col-no-margin-m-6[data-v-49487886]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-49487886]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-49487886]:first-child{margin-left:0}.col-offset-m-7[data-v-49487886]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-49487886]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-49487886]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-49487886]:first-child{margin-left:0}.col-offset-m-8[data-v-49487886]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-49487886]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-49487886]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-49487886]:first-child{margin-left:0}.col-offset-m-9[data-v-49487886]{margin-left:78%}.col-no-margin-m-9[data-v-49487886]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-49487886]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-49487886]:first-child{margin-left:0}.col-offset-m-10[data-v-49487886]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-49487886]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-49487886]:first-child{margin-left:0}.col-offset-m-11[data-v-49487886]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-49487886]:first-child{margin-left:0}.col-no-margin-m-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-49487886]{display:none!important}.m-visible[data-v-49487886]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-49487886]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-49487886]:first-child{margin-left:0}.col-offset-l-1[data-v-49487886]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-49487886]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-49487886]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-49487886]:first-child{margin-left:0}.col-offset-l-2[data-v-49487886]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-49487886]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-49487886]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-49487886]:first-child{margin-left:0}.col-offset-l-3[data-v-49487886]{margin-left:26%}.col-no-margin-l-3[data-v-49487886]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-49487886]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-49487886]:first-child{margin-left:0}.col-offset-l-4[data-v-49487886]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-49487886]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-49487886]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-49487886]:first-child{margin-left:0}.col-offset-l-5[data-v-49487886]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-49487886]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-49487886]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-49487886]:first-child{margin-left:0}.col-offset-l-6[data-v-49487886]{margin-left:52%}.col-no-margin-l-6[data-v-49487886]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-49487886]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-49487886]:first-child{margin-left:0}.col-offset-l-7[data-v-49487886]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-49487886]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-49487886]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-49487886]:first-child{margin-left:0}.col-offset-l-8[data-v-49487886]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-49487886]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-49487886]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-49487886]:first-child{margin-left:0}.col-offset-l-9[data-v-49487886]{margin-left:78%}.col-no-margin-l-9[data-v-49487886]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-49487886]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-49487886]:first-child{margin-left:0}.col-offset-l-10[data-v-49487886]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-49487886]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-49487886]:first-child{margin-left:0}.col-offset-l-11[data-v-49487886]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-49487886]:first-child{margin-left:0}.col-no-margin-l-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-49487886]{display:none!important}.l-visible[data-v-49487886]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-49487886]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-1[data-v-49487886]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-49487886]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-49487886]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-2[data-v-49487886]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-49487886]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-49487886]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-3[data-v-49487886]{margin-left:26%}.col-no-margin-xl-3[data-v-49487886]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-49487886]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-4[data-v-49487886]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-49487886]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-49487886]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-5[data-v-49487886]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-49487886]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-49487886]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-6[data-v-49487886]{margin-left:52%}.col-no-margin-xl-6[data-v-49487886]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-49487886]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-7[data-v-49487886]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-49487886]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-49487886]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-8[data-v-49487886]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-49487886]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-49487886]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-9[data-v-49487886]{margin-left:78%}.col-no-margin-xl-9[data-v-49487886]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-49487886]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-10[data-v-49487886]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-49487886]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-49487886]:first-child{margin-left:0}.col-offset-xl-11[data-v-49487886]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-49487886]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-49487886]{display:none!important}.xl-visible[data-v-49487886]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-49487886]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-1[data-v-49487886]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-49487886]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-49487886]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-2[data-v-49487886]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-49487886]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-49487886]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-3[data-v-49487886]{margin-left:26%}.col-no-margin-xxl-3[data-v-49487886]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-49487886]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-4[data-v-49487886]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-49487886]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-49487886]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-5[data-v-49487886]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-49487886]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-49487886]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-6[data-v-49487886]{margin-left:52%}.col-no-margin-xxl-6[data-v-49487886]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-49487886]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-7[data-v-49487886]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-49487886]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-49487886]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-8[data-v-49487886]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-49487886]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-49487886]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-9[data-v-49487886]{margin-left:78%}.col-no-margin-xxl-9[data-v-49487886]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-49487886]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-10[data-v-49487886]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-49487886]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-49487886]:first-child{margin-left:0}.col-offset-xxl-11[data-v-49487886]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-49487886]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-49487886]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-49487886]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-49487886]{display:none!important}.xxl-visible[data-v-49487886]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-49487886]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-49487886]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-49487886]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-49487886]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-49487886]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-49487886]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-49487886]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-49487886]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-49487886]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-49487886]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-49487886]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-49487886]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-49487886]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-49487886]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-49487886]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-49487886]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-49487886]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-49487886]{display:none!important}}.vertical-center[data-v-49487886]{display:flex;align-items:center}.horizontal-center[data-v-49487886]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-49487886]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-49487886]{display:none!important}.no-content[data-v-49487886]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-49487886]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-49487886]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-49487886]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-49487886]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-49487886]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-49487886]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-49487886],.btn[data-v-49487886],button[data-v-49487886]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-49487886],.btn-default[type=submit][data-v-49487886],.btn.btn-primary[data-v-49487886],.btn[type=submit][data-v-49487886],button.btn-primary[data-v-49487886],button[type=submit][data-v-49487886]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-49487886]:hover,.btn[data-v-49487886]:hover,button[data-v-49487886]:hover{color:#35b870}.btn .icon[data-v-49487886],.btn-default .icon[data-v-49487886],button .icon[data-v-49487886]{margin-right:.5em}.btn-default[data-v-49487886]:disabled,.btn-default[disabled][data-v-49487886],.btn[data-v-49487886]:disabled,.btn[disabled][data-v-49487886],button[data-v-49487886]:disabled,button[disabled][data-v-49487886]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-49487886]{cursor:grab!important}.dragged[data-v-49487886]{opacity:.5!important}input[type=password][data-v-49487886],input[type=text][data-v-49487886]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-49487886]:focus,input[type=text][data-v-49487886]:focus{border:1px solid #35b870}button[data-v-49487886],input[data-v-49487886]{outline:none}input[type=text][data-v-49487886]:hover,textarea[data-v-49487886]:hover{border:1px solid #9cdfb0}ul[data-v-49487886]{margin:0;padding:0;list-style:none}a[data-v-49487886]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-49487886]:hover{color:#35b870}[data-v-49487886]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-49487886]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-49487886]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-49487886]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-49487886]{color:#ad1717}body[data-v-49487886]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-49487886] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-49487886] .nav .path{cursor:pointer}.browser[data-v-49487886] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-49487886] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-49487886]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-49487886]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-49487886],input[type=number][data-v-49487886],input[type=password][data-v-49487886],input[type=search][data-v-49487886],input[type=text][data-v-49487886],input[type=time][data-v-49487886]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-49487886]:hover,input[type=number][data-v-49487886]:hover,input[type=password][data-v-49487886]:hover,input[type=search][data-v-49487886]:hover,input[type=text][data-v-49487886]:hover,input[type=time][data-v-49487886]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-49487886]:focus,input[type=number][data-v-49487886]:focus,input[type=password][data-v-49487886]:focus,input[type=search][data-v-49487886]:focus,input[type=text][data-v-49487886]:focus,input[type=time][data-v-49487886]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-49487886],input[type=number].with-icon[data-v-49487886],input[type=password].with-icon[data-v-49487886],input[type=search].with-icon[data-v-49487886],input[type=text].with-icon[data-v-49487886],input[type=time].with-icon[data-v-49487886]{padding-left:.3em}input[type=search][data-v-49487886],input[type=text][data-v-49487886]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-49487886]{animation-fill-mode:both;animation-name:fadeIn-49487886;-webkit-animation-name:fadeIn-49487886}.fade-in[data-v-49487886],.fade-out[data-v-49487886]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-49487886]{animation-fill-mode:both;animation-name:fadeOut-49487886;-webkit-animation-name:fadeOut-49487886}.expand[data-v-49487886]{animation-fill-mode:both;animation-name:expand-49487886;-webkit-animation-name:expand-49487886}.expand[data-v-49487886],.shrink[data-v-49487886]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-49487886]{animation-fill-mode:both;animation-name:shrink-49487886;-webkit-animation-name:shrink-49487886}.fold[data-v-49487886]{animation-fill-mode:both;animation-name:fold-49487886;-webkit-animation-name:fold-49487886}.fold[data-v-49487886],.unfold[data-v-49487886]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-49487886]{animation-fill-mode:both;animation-name:unfold-49487886;-webkit-animation-name:unfold-49487886}.dim[data-v-49487886]{animation-fill-mode:both;animation-name:dim-49487886;-webkit-animation-name:dim-49487886}.brighten[data-v-49487886],.dim[data-v-49487886]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-49487886]{animation-fill-mode:both;animation-name:brighten-49487886;-webkit-animation-name:brighten-49487886}@keyframes fadeIn-49487886{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-49487886{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-49487886{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-49487886{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-49487886{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-49487886{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-49487886{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-49487886{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-49487886]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-49487886;-webkit-animation-name:glow-49487886}.loop[data-v-49487886]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-49487886{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-49487886]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-49487886]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-49487886]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-49487886]{min-height:calc(100vh - 2em)}button[data-v-49487886]{background:none;border:none;box-shadow:none}button[data-v-49487886]:hover{color:#35b870}hgroup[data-v-49487886]{flex-grow:1}h1[data-v-49487886]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-49487886]{border-radius:.5em .5em 0 0}}h2[data-v-49487886]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-49487886]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-49487886]{margin-top:.5em;padding-top:.5em}section.response[data-v-49487886]{flex-grow:1;max-height:40em}section.response .output[data-v-49487886]{overflow:auto}.buttons[data-v-49487886]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-49487886]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-49487886]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-49487886]{background:#fff}header .buttons[data-v-49487886]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-49487886]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-49487886] .doc blockquote{margin-left:0}textarea[data-v-49487886]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-49487886]:hover{border:1px solid #38cf80}textarea[data-v-49487886]:focus{border:1px solid #32b646}form[data-v-49487886]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-49487886]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-49487886]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-49487886]{width:80%;max-width:60em}}.raw .first-row button[data-v-49487886]{margin-left:0}[data-v-49487886] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-49487886] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-49487886] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-49487886] .args-body .args-list{width:30em}}[data-v-49487886] .args-body .args-list label{display:flex;align-items:center}[data-v-49487886] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-49487886] .args-body .args-list .arg{width:100%}}[data-v-49487886] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-49487886] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-49487886] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-49487886]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-49487886]{flex-direction:column}}.add-arg[data-v-49487886]{width:100%}.add-arg button[data-v-49487886]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-49487886]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-49487886]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-49487886]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-49487886]{width:100%}.doc-container[data-v-49487886],.response[data-v-49487886]{flex-grow:1}.doc-container h2[data-v-49487886],.response h2[data-v-49487886]{display:inline-flex}.doc-container h2 .title[data-v-49487886],.response h2 .title[data-v-49487886]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-49487886],.response h2 .buttons[data-v-49487886]{width:2em}.doc-container h2 .buttons button[data-v-49487886],.response h2 .buttons button[data-v-49487886]{padding:0}.output[data-v-49487886]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-49487886]{color:red}textarea.curl-snippet[data-v-49487886]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.action-tile-container[data-v-49487886]{position:relative}.action-tile-container .action-tile[data-v-49487886]{min-width:20em;background:linear-gradient(90deg,#09ae80,#47e2b3 120%);color:#fff;display:flex;flex-direction:column;padding:.5em 1em;overflow:hidden;text-overflow:ellipsis;content:"";position:relative;border-radius:1em;cursor:pointer}.action-tile-container .action-tile.selected[data-v-49487886],.action-tile-container .action-tile[data-v-49487886]:hover{background:linear-gradient(90deg,#29d89f,#09bc8a 70%)}.action-tile-container .action-tile.new[data-v-49487886]{background:linear-gradient(90deg,#09ae2b,#47e2b3 120%)}.action-tile-container .action-tile.new[data-v-49487886]:hover{background:linear-gradient(90deg,#29d83f,#09bc8a 120%)}.action-tile-container .action-tile .action-delete[data-v-49487886]{width:1.5em;height:1.5em;font-size:1.25em;position:absolute;top:.25em;right:0;opacity:.7;transition:opacity .25s ease-in-out;cursor:pointer}.action-tile-container .action-tile .action-delete[data-v-49487886]:hover{opacity:1}.action-tile-container .action-tile .action-name[data-v-49487886]{display:inline-flex;font-size:1.1em;font-weight:700;font-family:monospace;align-items:center}.action-tile-container .action-tile .action-name .icon[data-v-49487886]{width:1.5em;height:1.5em;margin-right:.75em}.action-tile-container .action-tile .new-action[data-v-49487886]{font-style:italic}.action-tile-container .action-tile .action-args[data-v-49487886]{display:flex;flex-direction:column;margin-top:.5em}.action-tile-container .action-tile .action-args .arg[data-v-49487886]{display:flex;flex-direction:row;align-items:center;margin-bottom:.5em}.action-tile-container .action-tile .action-args .arg .arg-name[data-v-49487886]{font-weight:700;margin-right:.5em}.action-tile-container .action-tile .action-args .arg .arg-value[data-v-49487886]{font-family:monospace;font-size:.9em;flex:1}@media screen and (max-width:calc(769px - 1px)){.action-tile-container .action-editor-container[data-v-49487886] .modal-container .modal{width:calc(100vw - 1em)}.action-tile-container .action-editor-container[data-v-49487886] .modal-container .modal .content,.action-tile-container .action-editor-container[data-v-49487886] .modal-container .modal .content .body{width:100%}}.action-tile-container .action-editor-container[data-v-49487886] .modal-container .content .body{width:80vw;height:80vh;max-width:800px;padding:0}.action-tile-container .action-editor-container[data-v-49487886] .modal-container .tabs{margin-top:0}.action-tile-container .action-editor-container[data-v-49487886] .modal-container .action-editor{height:100%}.action-tile-container .action-editor-container[data-v-49487886] .modal-container form{height:calc(100% - 3.5em);overflow:auto}.col-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7d0cf109]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7d0cf109]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7d0cf109]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7d0cf109]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7d0cf109]:first-child{margin-left:26%!important}.col-offset-3[data-v-7d0cf109]:not(first-child){margin-left:30%!important}.col-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7d0cf109]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7d0cf109]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7d0cf109]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7d0cf109]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7d0cf109]:first-child{margin-left:52%!important}.col-offset-6[data-v-7d0cf109]:not(first-child){margin-left:56%!important}.col-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7d0cf109]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7d0cf109]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7d0cf109]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7d0cf109]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7d0cf109]:first-child{margin-left:78%!important}.col-offset-9[data-v-7d0cf109]:not(first-child){margin-left:82%!important}.col-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7d0cf109]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7d0cf109]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7d0cf109]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7d0cf109]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-1[data-v-7d0cf109]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-2[data-v-7d0cf109]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-3[data-v-7d0cf109]{margin-left:26%}.col-no-margin-s-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-4[data-v-7d0cf109]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-5[data-v-7d0cf109]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-6[data-v-7d0cf109]{margin-left:52%}.col-no-margin-s-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-7[data-v-7d0cf109]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-8[data-v-7d0cf109]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-9[data-v-7d0cf109]{margin-left:78%}.col-no-margin-s-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-10[data-v-7d0cf109]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-s-11[data-v-7d0cf109]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7d0cf109]{display:none!important}.s-visible[data-v-7d0cf109]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-1[data-v-7d0cf109]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-2[data-v-7d0cf109]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-3[data-v-7d0cf109]{margin-left:26%}.col-no-margin-m-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-4[data-v-7d0cf109]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-5[data-v-7d0cf109]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-6[data-v-7d0cf109]{margin-left:52%}.col-no-margin-m-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-7[data-v-7d0cf109]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-8[data-v-7d0cf109]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-9[data-v-7d0cf109]{margin-left:78%}.col-no-margin-m-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-10[data-v-7d0cf109]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-m-11[data-v-7d0cf109]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7d0cf109]{display:none!important}.m-visible[data-v-7d0cf109]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-1[data-v-7d0cf109]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-2[data-v-7d0cf109]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-3[data-v-7d0cf109]{margin-left:26%}.col-no-margin-l-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-4[data-v-7d0cf109]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-5[data-v-7d0cf109]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-6[data-v-7d0cf109]{margin-left:52%}.col-no-margin-l-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-7[data-v-7d0cf109]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-8[data-v-7d0cf109]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-9[data-v-7d0cf109]{margin-left:78%}.col-no-margin-l-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-10[data-v-7d0cf109]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-l-11[data-v-7d0cf109]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7d0cf109]{display:none!important}.l-visible[data-v-7d0cf109]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-1[data-v-7d0cf109]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-2[data-v-7d0cf109]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-3[data-v-7d0cf109]{margin-left:26%}.col-no-margin-xl-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-4[data-v-7d0cf109]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-5[data-v-7d0cf109]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-6[data-v-7d0cf109]{margin-left:52%}.col-no-margin-xl-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-7[data-v-7d0cf109]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-8[data-v-7d0cf109]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-9[data-v-7d0cf109]{margin-left:78%}.col-no-margin-xl-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-10[data-v-7d0cf109]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xl-11[data-v-7d0cf109]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7d0cf109]{display:none!important}.xl-visible[data-v-7d0cf109]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7d0cf109]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7d0cf109]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7d0cf109]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7d0cf109]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7d0cf109]{margin-left:26%}.col-no-margin-xxl-3[data-v-7d0cf109]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7d0cf109]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7d0cf109]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7d0cf109]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7d0cf109]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7d0cf109]{margin-left:52%}.col-no-margin-xxl-6[data-v-7d0cf109]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7d0cf109]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7d0cf109]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7d0cf109]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7d0cf109]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7d0cf109]{margin-left:78%}.col-no-margin-xxl-9[data-v-7d0cf109]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7d0cf109]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7d0cf109]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7d0cf109]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7d0cf109]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7d0cf109]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7d0cf109]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7d0cf109]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7d0cf109]{display:none!important}.xxl-visible[data-v-7d0cf109]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7d0cf109]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7d0cf109]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7d0cf109]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7d0cf109]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7d0cf109]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7d0cf109]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7d0cf109]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7d0cf109]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7d0cf109]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7d0cf109]{display:none!important}}.vertical-center[data-v-7d0cf109]{display:flex;align-items:center}.horizontal-center[data-v-7d0cf109]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7d0cf109]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7d0cf109]{display:none!important}.no-content[data-v-7d0cf109]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7d0cf109]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7d0cf109]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7d0cf109]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7d0cf109]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7d0cf109]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7d0cf109]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7d0cf109],.btn[data-v-7d0cf109],button[data-v-7d0cf109]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7d0cf109],.btn-default[type=submit][data-v-7d0cf109],.btn.btn-primary[data-v-7d0cf109],.btn[type=submit][data-v-7d0cf109],button.btn-primary[data-v-7d0cf109],button[type=submit][data-v-7d0cf109]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7d0cf109]:hover,.btn[data-v-7d0cf109]:hover,button[data-v-7d0cf109]:hover{color:#35b870}.btn .icon[data-v-7d0cf109],.btn-default .icon[data-v-7d0cf109],button .icon[data-v-7d0cf109]{margin-right:.5em}.btn-default[data-v-7d0cf109]:disabled,.btn-default[disabled][data-v-7d0cf109],.btn[data-v-7d0cf109]:disabled,.btn[disabled][data-v-7d0cf109],button[data-v-7d0cf109]:disabled,button[disabled][data-v-7d0cf109]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7d0cf109]{cursor:grab!important}.dragged[data-v-7d0cf109]{opacity:.5!important}input[type=password][data-v-7d0cf109],input[type=text][data-v-7d0cf109]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7d0cf109]:focus,input[type=text][data-v-7d0cf109]:focus{border:1px solid #35b870}button[data-v-7d0cf109],input[data-v-7d0cf109]{outline:none}input[type=text][data-v-7d0cf109]:hover,textarea[data-v-7d0cf109]:hover{border:1px solid #9cdfb0}ul[data-v-7d0cf109]{margin:0;padding:0;list-style:none}a[data-v-7d0cf109]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7d0cf109]:hover{color:#35b870}[data-v-7d0cf109]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7d0cf109]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7d0cf109]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7d0cf109]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7d0cf109]{color:#ad1717}body[data-v-7d0cf109]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7d0cf109] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7d0cf109] .nav .path{cursor:pointer}.browser[data-v-7d0cf109] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7d0cf109] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7d0cf109]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7d0cf109]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7d0cf109],input[type=number][data-v-7d0cf109],input[type=password][data-v-7d0cf109],input[type=search][data-v-7d0cf109],input[type=text][data-v-7d0cf109],input[type=time][data-v-7d0cf109]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7d0cf109]:hover,input[type=number][data-v-7d0cf109]:hover,input[type=password][data-v-7d0cf109]:hover,input[type=search][data-v-7d0cf109]:hover,input[type=text][data-v-7d0cf109]:hover,input[type=time][data-v-7d0cf109]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7d0cf109]:focus,input[type=number][data-v-7d0cf109]:focus,input[type=password][data-v-7d0cf109]:focus,input[type=search][data-v-7d0cf109]:focus,input[type=text][data-v-7d0cf109]:focus,input[type=time][data-v-7d0cf109]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7d0cf109],input[type=number].with-icon[data-v-7d0cf109],input[type=password].with-icon[data-v-7d0cf109],input[type=search].with-icon[data-v-7d0cf109],input[type=text].with-icon[data-v-7d0cf109],input[type=time].with-icon[data-v-7d0cf109]{padding-left:.3em}input[type=search][data-v-7d0cf109],input[type=text][data-v-7d0cf109]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7d0cf109]{animation-fill-mode:both;animation-name:fadeIn-7d0cf109;-webkit-animation-name:fadeIn-7d0cf109}.fade-in[data-v-7d0cf109],.fade-out[data-v-7d0cf109]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7d0cf109]{animation-fill-mode:both;animation-name:fadeOut-7d0cf109;-webkit-animation-name:fadeOut-7d0cf109}.expand[data-v-7d0cf109]{animation-fill-mode:both;animation-name:expand-7d0cf109;-webkit-animation-name:expand-7d0cf109}.expand[data-v-7d0cf109],.shrink[data-v-7d0cf109]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7d0cf109]{animation-fill-mode:both;animation-name:shrink-7d0cf109;-webkit-animation-name:shrink-7d0cf109}.fold[data-v-7d0cf109]{animation-fill-mode:both;animation-name:fold-7d0cf109;-webkit-animation-name:fold-7d0cf109}.fold[data-v-7d0cf109],.unfold[data-v-7d0cf109]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7d0cf109]{animation-fill-mode:both;animation-name:unfold-7d0cf109;-webkit-animation-name:unfold-7d0cf109}.dim[data-v-7d0cf109]{animation-fill-mode:both;animation-name:dim-7d0cf109;-webkit-animation-name:dim-7d0cf109}.brighten[data-v-7d0cf109],.dim[data-v-7d0cf109]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7d0cf109]{animation-fill-mode:both;animation-name:brighten-7d0cf109;-webkit-animation-name:brighten-7d0cf109}@keyframes fadeIn-7d0cf109{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7d0cf109{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7d0cf109{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7d0cf109{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7d0cf109{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7d0cf109{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7d0cf109{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7d0cf109{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7d0cf109]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7d0cf109;-webkit-animation-name:glow-7d0cf109}.loop[data-v-7d0cf109]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7d0cf109{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7d0cf109]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7d0cf109]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7d0cf109]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.list-item[data-v-7d0cf109]{margin:0}.list-item .spacer[data-v-7d0cf109]{height:1em}.list-item .spacer.active[data-v-7d0cf109]{border-top:1px dashed transparent;border-bottom:1px dashed transparent}.list-item .spacer.active .droppable-frame[data-v-7d0cf109]{border:1px dashed #32b646;border-radius:.5em}.list-item .spacer.selected[data-v-7d0cf109]{height:5em;padding:.5em 0}.list-item .spacer.selected .droppable-frame[data-v-7d0cf109]{height:100%;margin:.5em 0;padding:.1em;border:2px dashed #17ad17}.list-item .spacer.selected .droppable[data-v-7d0cf109]{height:100%;background:#27ee5e;border:none;box-shadow:none;border-radius:1em;opacity:.5}.list-item .droppable-container[data-v-7d0cf109],.list-item .droppable-wrapper[data-v-7d0cf109]{width:100%;height:100%;display:flex;align-items:center}.list-item .droppable-container .droppable-frame[data-v-7d0cf109]{width:100%;height:1px;opacity:.5}.list-item .droppable-container .droppable[data-v-7d0cf109]{width:100%;opacity:.8}.col-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-9354cf66]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-9354cf66]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-9354cf66]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-9354cf66]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-9354cf66]:first-child{margin-left:26%!important}.col-offset-3[data-v-9354cf66]:not(first-child){margin-left:30%!important}.col-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-9354cf66]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-9354cf66]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-9354cf66]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-9354cf66]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-9354cf66]:first-child{margin-left:52%!important}.col-offset-6[data-v-9354cf66]:not(first-child){margin-left:56%!important}.col-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-9354cf66]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-9354cf66]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-9354cf66]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-9354cf66]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-9354cf66]:first-child{margin-left:78%!important}.col-offset-9[data-v-9354cf66]:not(first-child){margin-left:82%!important}.col-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-9354cf66]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-9354cf66]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-9354cf66]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-9354cf66]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-1[data-v-9354cf66]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-2[data-v-9354cf66]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-3[data-v-9354cf66]{margin-left:26%}.col-no-margin-s-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-4[data-v-9354cf66]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-5[data-v-9354cf66]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-6[data-v-9354cf66]{margin-left:52%}.col-no-margin-s-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-7[data-v-9354cf66]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-8[data-v-9354cf66]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-9[data-v-9354cf66]{margin-left:78%}.col-no-margin-s-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-10[data-v-9354cf66]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-9354cf66]:first-child{margin-left:0}.col-offset-s-11[data-v-9354cf66]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-s-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-9354cf66]{display:none!important}.s-visible[data-v-9354cf66]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-1[data-v-9354cf66]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-2[data-v-9354cf66]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-3[data-v-9354cf66]{margin-left:26%}.col-no-margin-m-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-4[data-v-9354cf66]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-5[data-v-9354cf66]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-6[data-v-9354cf66]{margin-left:52%}.col-no-margin-m-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-7[data-v-9354cf66]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-8[data-v-9354cf66]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-9[data-v-9354cf66]{margin-left:78%}.col-no-margin-m-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-10[data-v-9354cf66]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-9354cf66]:first-child{margin-left:0}.col-offset-m-11[data-v-9354cf66]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-m-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-9354cf66]{display:none!important}.m-visible[data-v-9354cf66]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-1[data-v-9354cf66]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-2[data-v-9354cf66]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-3[data-v-9354cf66]{margin-left:26%}.col-no-margin-l-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-4[data-v-9354cf66]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-5[data-v-9354cf66]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-6[data-v-9354cf66]{margin-left:52%}.col-no-margin-l-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-7[data-v-9354cf66]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-8[data-v-9354cf66]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-9[data-v-9354cf66]{margin-left:78%}.col-no-margin-l-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-10[data-v-9354cf66]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-9354cf66]:first-child{margin-left:0}.col-offset-l-11[data-v-9354cf66]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-l-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-9354cf66]{display:none!important}.l-visible[data-v-9354cf66]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-1[data-v-9354cf66]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-2[data-v-9354cf66]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-3[data-v-9354cf66]{margin-left:26%}.col-no-margin-xl-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-4[data-v-9354cf66]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-5[data-v-9354cf66]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-6[data-v-9354cf66]{margin-left:52%}.col-no-margin-xl-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-7[data-v-9354cf66]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-8[data-v-9354cf66]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-9[data-v-9354cf66]{margin-left:78%}.col-no-margin-xl-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-10[data-v-9354cf66]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xl-11[data-v-9354cf66]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-9354cf66]{display:none!important}.xl-visible[data-v-9354cf66]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-1[data-v-9354cf66]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-9354cf66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-2[data-v-9354cf66]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-9354cf66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-3[data-v-9354cf66]{margin-left:26%}.col-no-margin-xxl-3[data-v-9354cf66]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-4[data-v-9354cf66]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-9354cf66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-5[data-v-9354cf66]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-9354cf66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-6[data-v-9354cf66]{margin-left:52%}.col-no-margin-xxl-6[data-v-9354cf66]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-7[data-v-9354cf66]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-9354cf66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-8[data-v-9354cf66]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-9354cf66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-9[data-v-9354cf66]{margin-left:78%}.col-no-margin-xxl-9[data-v-9354cf66]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-10[data-v-9354cf66]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-9354cf66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-9354cf66]:first-child{margin-left:0}.col-offset-xxl-11[data-v-9354cf66]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-9354cf66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-9354cf66]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-9354cf66]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-9354cf66]{display:none!important}.xxl-visible[data-v-9354cf66]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-9354cf66]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-9354cf66]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-9354cf66]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-9354cf66]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-9354cf66]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-9354cf66]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-9354cf66]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-9354cf66]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-9354cf66]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-9354cf66]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-9354cf66]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-9354cf66]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-9354cf66]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-9354cf66]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-9354cf66]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-9354cf66]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-9354cf66]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-9354cf66]{display:none!important}}.vertical-center[data-v-9354cf66]{display:flex;align-items:center}.horizontal-center[data-v-9354cf66]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-9354cf66]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-9354cf66]{display:none!important}.no-content[data-v-9354cf66]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-9354cf66]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-9354cf66]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-9354cf66]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-9354cf66]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-9354cf66]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-9354cf66]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-9354cf66],.btn[data-v-9354cf66],button[data-v-9354cf66]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-9354cf66],.btn-default[type=submit][data-v-9354cf66],.btn.btn-primary[data-v-9354cf66],.btn[type=submit][data-v-9354cf66],button.btn-primary[data-v-9354cf66],button[type=submit][data-v-9354cf66]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-9354cf66]:hover,.btn[data-v-9354cf66]:hover,button[data-v-9354cf66]:hover{color:#35b870}.btn .icon[data-v-9354cf66],.btn-default .icon[data-v-9354cf66],button .icon[data-v-9354cf66]{margin-right:.5em}.btn-default[data-v-9354cf66]:disabled,.btn-default[disabled][data-v-9354cf66],.btn[data-v-9354cf66]:disabled,.btn[disabled][data-v-9354cf66],button[data-v-9354cf66]:disabled,button[disabled][data-v-9354cf66]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-9354cf66]{cursor:grab!important}.dragged[data-v-9354cf66]{opacity:.5!important}input[type=password][data-v-9354cf66],input[type=text][data-v-9354cf66]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-9354cf66]:focus,input[type=text][data-v-9354cf66]:focus{border:1px solid #35b870}button[data-v-9354cf66],input[data-v-9354cf66]{outline:none}input[type=text][data-v-9354cf66]:hover,textarea[data-v-9354cf66]:hover{border:1px solid #9cdfb0}ul[data-v-9354cf66]{margin:0;padding:0;list-style:none}a[data-v-9354cf66]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-9354cf66]:hover{color:#35b870}[data-v-9354cf66]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-9354cf66]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-9354cf66]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-9354cf66]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-9354cf66]{color:#ad1717}body[data-v-9354cf66]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-9354cf66] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-9354cf66] .nav .path{cursor:pointer}.browser[data-v-9354cf66] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-9354cf66] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-9354cf66]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-9354cf66]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-9354cf66],input[type=number][data-v-9354cf66],input[type=password][data-v-9354cf66],input[type=search][data-v-9354cf66],input[type=text][data-v-9354cf66],input[type=time][data-v-9354cf66]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-9354cf66]:hover,input[type=number][data-v-9354cf66]:hover,input[type=password][data-v-9354cf66]:hover,input[type=search][data-v-9354cf66]:hover,input[type=text][data-v-9354cf66]:hover,input[type=time][data-v-9354cf66]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-9354cf66]:focus,input[type=number][data-v-9354cf66]:focus,input[type=password][data-v-9354cf66]:focus,input[type=search][data-v-9354cf66]:focus,input[type=text][data-v-9354cf66]:focus,input[type=time][data-v-9354cf66]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-9354cf66],input[type=number].with-icon[data-v-9354cf66],input[type=password].with-icon[data-v-9354cf66],input[type=search].with-icon[data-v-9354cf66],input[type=text].with-icon[data-v-9354cf66],input[type=time].with-icon[data-v-9354cf66]{padding-left:.3em}input[type=search][data-v-9354cf66],input[type=text][data-v-9354cf66]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-9354cf66]{animation-fill-mode:both;animation-name:fadeIn-9354cf66;-webkit-animation-name:fadeIn-9354cf66}.fade-in[data-v-9354cf66],.fade-out[data-v-9354cf66]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-9354cf66]{animation-fill-mode:both;animation-name:fadeOut-9354cf66;-webkit-animation-name:fadeOut-9354cf66}.expand[data-v-9354cf66]{animation-fill-mode:both;animation-name:expand-9354cf66;-webkit-animation-name:expand-9354cf66}.expand[data-v-9354cf66],.shrink[data-v-9354cf66]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-9354cf66]{animation-fill-mode:both;animation-name:shrink-9354cf66;-webkit-animation-name:shrink-9354cf66}.fold[data-v-9354cf66]{animation-fill-mode:both;animation-name:fold-9354cf66;-webkit-animation-name:fold-9354cf66}.fold[data-v-9354cf66],.unfold[data-v-9354cf66]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-9354cf66]{animation-fill-mode:both;animation-name:unfold-9354cf66;-webkit-animation-name:unfold-9354cf66}.dim[data-v-9354cf66]{animation-fill-mode:both;animation-name:dim-9354cf66;-webkit-animation-name:dim-9354cf66}.brighten[data-v-9354cf66],.dim[data-v-9354cf66]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-9354cf66]{animation-fill-mode:both;animation-name:brighten-9354cf66;-webkit-animation-name:brighten-9354cf66}@keyframes fadeIn-9354cf66{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-9354cf66{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-9354cf66{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-9354cf66{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-9354cf66{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-9354cf66{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-9354cf66{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-9354cf66{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-9354cf66]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-9354cf66;-webkit-animation-name:glow-9354cf66}.loop[data-v-9354cf66]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-9354cf66{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-9354cf66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-9354cf66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-9354cf66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tile-container[data-v-9354cf66]{position:relative}.tile-container .tile[data-v-9354cf66]{min-width:20em;background:linear-gradient(90deg,#09ae80,#47e2b3 120%);color:#fff;display:flex;flex-direction:column;padding:.5em 1em;overflow:hidden;text-overflow:ellipsis;content:"";position:relative;border-radius:1em;cursor:pointer}.tile-container .tile.selected[data-v-9354cf66],.tile-container .tile[data-v-9354cf66]:hover{background:linear-gradient(90deg,#29d89f,#09bc8a 70%)}.tile-container .tile .delete[data-v-9354cf66]{width:1.5em;height:1.5em;font-size:1.25em;position:absolute;top:.25em;right:0;opacity:.7;transition:opacity .25s ease-in-out;cursor:pointer}.tile-container .tile .delete[data-v-9354cf66]:hover{opacity:1}.tile-container.keyword .tile[data-v-9354cf66]{background:linear-gradient(270deg,#47e2b3,#51bad2 120%)}.tile-container.keyword .tile[data-v-9354cf66]:hover{background:linear-gradient(90deg,#47e2b3,#51bad2 120%)}.tile-container.add .tile[data-v-9354cf66]{background:linear-gradient(90deg,#09ae2b,#47e2b3 120%)}.tile-container.add .tile[data-v-9354cf66]:hover{background:linear-gradient(90deg,#29d83f,#09bc8a 120%)}[data-v-9354cf66] .tile .tile-name{display:inline-flex;font-size:1.1em;font-weight:700;font-family:monospace;align-items:center}[data-v-9354cf66] .tile .tile-name .icon{width:1.5em;height:1.5em;margin-right:.75em}[data-v-9354cf66] .tile .keyword{color:#f8ff00}[data-v-9354cf66] .tile .code{color:#2a5ab7}.col-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2ff09bb6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2ff09bb6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2ff09bb6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2ff09bb6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2ff09bb6]:first-child{margin-left:26%!important}.col-offset-3[data-v-2ff09bb6]:not(first-child){margin-left:30%!important}.col-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2ff09bb6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2ff09bb6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2ff09bb6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2ff09bb6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2ff09bb6]:first-child{margin-left:52%!important}.col-offset-6[data-v-2ff09bb6]:not(first-child){margin-left:56%!important}.col-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2ff09bb6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2ff09bb6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2ff09bb6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2ff09bb6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2ff09bb6]:first-child{margin-left:78%!important}.col-offset-9[data-v-2ff09bb6]:not(first-child){margin-left:82%!important}.col-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2ff09bb6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2ff09bb6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2ff09bb6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2ff09bb6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-1[data-v-2ff09bb6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-2[data-v-2ff09bb6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-3[data-v-2ff09bb6]{margin-left:26%}.col-no-margin-s-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-4[data-v-2ff09bb6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-5[data-v-2ff09bb6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-6[data-v-2ff09bb6]{margin-left:52%}.col-no-margin-s-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-7[data-v-2ff09bb6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-8[data-v-2ff09bb6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-9[data-v-2ff09bb6]{margin-left:78%}.col-no-margin-s-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-10[data-v-2ff09bb6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-s-11[data-v-2ff09bb6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2ff09bb6]{display:none!important}.s-visible[data-v-2ff09bb6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-1[data-v-2ff09bb6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-2[data-v-2ff09bb6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-3[data-v-2ff09bb6]{margin-left:26%}.col-no-margin-m-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-4[data-v-2ff09bb6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-5[data-v-2ff09bb6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-6[data-v-2ff09bb6]{margin-left:52%}.col-no-margin-m-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-7[data-v-2ff09bb6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-8[data-v-2ff09bb6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-9[data-v-2ff09bb6]{margin-left:78%}.col-no-margin-m-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-10[data-v-2ff09bb6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-m-11[data-v-2ff09bb6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2ff09bb6]{display:none!important}.m-visible[data-v-2ff09bb6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-1[data-v-2ff09bb6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-2[data-v-2ff09bb6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-3[data-v-2ff09bb6]{margin-left:26%}.col-no-margin-l-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-4[data-v-2ff09bb6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-5[data-v-2ff09bb6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-6[data-v-2ff09bb6]{margin-left:52%}.col-no-margin-l-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-7[data-v-2ff09bb6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-8[data-v-2ff09bb6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-9[data-v-2ff09bb6]{margin-left:78%}.col-no-margin-l-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-10[data-v-2ff09bb6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-l-11[data-v-2ff09bb6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2ff09bb6]{display:none!important}.l-visible[data-v-2ff09bb6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-1[data-v-2ff09bb6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-2[data-v-2ff09bb6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-3[data-v-2ff09bb6]{margin-left:26%}.col-no-margin-xl-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-4[data-v-2ff09bb6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-5[data-v-2ff09bb6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-6[data-v-2ff09bb6]{margin-left:52%}.col-no-margin-xl-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-7[data-v-2ff09bb6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-8[data-v-2ff09bb6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-9[data-v-2ff09bb6]{margin-left:78%}.col-no-margin-xl-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-10[data-v-2ff09bb6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xl-11[data-v-2ff09bb6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2ff09bb6]{display:none!important}.xl-visible[data-v-2ff09bb6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2ff09bb6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2ff09bb6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2ff09bb6]{margin-left:26%}.col-no-margin-xxl-3[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2ff09bb6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2ff09bb6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2ff09bb6]{margin-left:52%}.col-no-margin-xxl-6[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2ff09bb6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2ff09bb6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2ff09bb6]{margin-left:78%}.col-no-margin-xxl-9[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2ff09bb6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2ff09bb6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2ff09bb6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2ff09bb6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2ff09bb6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2ff09bb6]{display:none!important}.xxl-visible[data-v-2ff09bb6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2ff09bb6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2ff09bb6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2ff09bb6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2ff09bb6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2ff09bb6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2ff09bb6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2ff09bb6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2ff09bb6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2ff09bb6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2ff09bb6]{display:none!important}}.vertical-center[data-v-2ff09bb6]{display:flex;align-items:center}.horizontal-center[data-v-2ff09bb6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2ff09bb6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2ff09bb6]{display:none!important}.no-content[data-v-2ff09bb6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2ff09bb6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2ff09bb6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2ff09bb6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2ff09bb6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2ff09bb6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2ff09bb6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2ff09bb6],.btn[data-v-2ff09bb6],button[data-v-2ff09bb6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2ff09bb6],.btn-default[type=submit][data-v-2ff09bb6],.btn.btn-primary[data-v-2ff09bb6],.btn[type=submit][data-v-2ff09bb6],button.btn-primary[data-v-2ff09bb6],button[type=submit][data-v-2ff09bb6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2ff09bb6]:hover,.btn[data-v-2ff09bb6]:hover,button[data-v-2ff09bb6]:hover{color:#35b870}.btn .icon[data-v-2ff09bb6],.btn-default .icon[data-v-2ff09bb6],button .icon[data-v-2ff09bb6]{margin-right:.5em}.btn-default[data-v-2ff09bb6]:disabled,.btn-default[disabled][data-v-2ff09bb6],.btn[data-v-2ff09bb6]:disabled,.btn[disabled][data-v-2ff09bb6],button[data-v-2ff09bb6]:disabled,button[disabled][data-v-2ff09bb6]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2ff09bb6]{cursor:grab!important}.dragged[data-v-2ff09bb6]{opacity:.5!important}input[type=password][data-v-2ff09bb6],input[type=text][data-v-2ff09bb6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2ff09bb6]:focus,input[type=text][data-v-2ff09bb6]:focus{border:1px solid #35b870}button[data-v-2ff09bb6],input[data-v-2ff09bb6]{outline:none}input[type=text][data-v-2ff09bb6]:hover,textarea[data-v-2ff09bb6]:hover{border:1px solid #9cdfb0}ul[data-v-2ff09bb6]{margin:0;padding:0;list-style:none}a[data-v-2ff09bb6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2ff09bb6]:hover{color:#35b870}[data-v-2ff09bb6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2ff09bb6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2ff09bb6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2ff09bb6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2ff09bb6]{color:#ad1717}body[data-v-2ff09bb6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2ff09bb6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2ff09bb6] .nav .path{cursor:pointer}.browser[data-v-2ff09bb6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2ff09bb6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2ff09bb6]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2ff09bb6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2ff09bb6],input[type=number][data-v-2ff09bb6],input[type=password][data-v-2ff09bb6],input[type=search][data-v-2ff09bb6],input[type=text][data-v-2ff09bb6],input[type=time][data-v-2ff09bb6]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2ff09bb6]:hover,input[type=number][data-v-2ff09bb6]:hover,input[type=password][data-v-2ff09bb6]:hover,input[type=search][data-v-2ff09bb6]:hover,input[type=text][data-v-2ff09bb6]:hover,input[type=time][data-v-2ff09bb6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2ff09bb6]:focus,input[type=number][data-v-2ff09bb6]:focus,input[type=password][data-v-2ff09bb6]:focus,input[type=search][data-v-2ff09bb6]:focus,input[type=text][data-v-2ff09bb6]:focus,input[type=time][data-v-2ff09bb6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2ff09bb6],input[type=number].with-icon[data-v-2ff09bb6],input[type=password].with-icon[data-v-2ff09bb6],input[type=search].with-icon[data-v-2ff09bb6],input[type=text].with-icon[data-v-2ff09bb6],input[type=time].with-icon[data-v-2ff09bb6]{padding-left:.3em}input[type=search][data-v-2ff09bb6],input[type=text][data-v-2ff09bb6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2ff09bb6]{animation-fill-mode:both;animation-name:fadeIn-2ff09bb6;-webkit-animation-name:fadeIn-2ff09bb6}.fade-in[data-v-2ff09bb6],.fade-out[data-v-2ff09bb6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2ff09bb6]{animation-fill-mode:both;animation-name:fadeOut-2ff09bb6;-webkit-animation-name:fadeOut-2ff09bb6}.expand[data-v-2ff09bb6]{animation-fill-mode:both;animation-name:expand-2ff09bb6;-webkit-animation-name:expand-2ff09bb6}.expand[data-v-2ff09bb6],.shrink[data-v-2ff09bb6]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2ff09bb6]{animation-fill-mode:both;animation-name:shrink-2ff09bb6;-webkit-animation-name:shrink-2ff09bb6}.fold[data-v-2ff09bb6]{animation-fill-mode:both;animation-name:fold-2ff09bb6;-webkit-animation-name:fold-2ff09bb6}.fold[data-v-2ff09bb6],.unfold[data-v-2ff09bb6]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2ff09bb6]{animation-fill-mode:both;animation-name:unfold-2ff09bb6;-webkit-animation-name:unfold-2ff09bb6}.dim[data-v-2ff09bb6]{animation-fill-mode:both;animation-name:dim-2ff09bb6;-webkit-animation-name:dim-2ff09bb6}.brighten[data-v-2ff09bb6],.dim[data-v-2ff09bb6]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2ff09bb6]{animation-fill-mode:both;animation-name:brighten-2ff09bb6;-webkit-animation-name:brighten-2ff09bb6}@keyframes fadeIn-2ff09bb6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2ff09bb6{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2ff09bb6{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2ff09bb6{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2ff09bb6{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2ff09bb6{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2ff09bb6{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2ff09bb6{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2ff09bb6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2ff09bb6;-webkit-animation-name:glow-2ff09bb6}.loop[data-v-2ff09bb6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2ff09bb6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2ff09bb6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2ff09bb6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2ff09bb6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-2ff09bb6]{min-height:calc(100vh - 2em)}button[data-v-2ff09bb6]{background:none;border:none;box-shadow:none}button[data-v-2ff09bb6]:hover{color:#35b870}hgroup[data-v-2ff09bb6]{flex-grow:1}h1[data-v-2ff09bb6]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-2ff09bb6]{border-radius:.5em .5em 0 0}}h2[data-v-2ff09bb6]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-2ff09bb6]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-2ff09bb6]{margin-top:.5em;padding-top:.5em}section.response[data-v-2ff09bb6]{flex-grow:1;max-height:40em}section.response .output[data-v-2ff09bb6]{overflow:auto}.buttons[data-v-2ff09bb6]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-2ff09bb6]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-2ff09bb6]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-2ff09bb6]{background:#fff}header .buttons[data-v-2ff09bb6]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-2ff09bb6]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-2ff09bb6] .doc blockquote{margin-left:0}textarea[data-v-2ff09bb6]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-2ff09bb6]:hover{border:1px solid #38cf80}textarea[data-v-2ff09bb6]:focus{border:1px solid #32b646}form[data-v-2ff09bb6]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-2ff09bb6]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-2ff09bb6]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-2ff09bb6]{width:80%;max-width:60em}}.raw .first-row button[data-v-2ff09bb6]{margin-left:0}[data-v-2ff09bb6] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-2ff09bb6] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-2ff09bb6] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-2ff09bb6] .args-body .args-list{width:30em}}[data-v-2ff09bb6] .args-body .args-list label{display:flex;align-items:center}[data-v-2ff09bb6] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-2ff09bb6] .args-body .args-list .arg{width:100%}}[data-v-2ff09bb6] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-2ff09bb6] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-2ff09bb6] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-2ff09bb6]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-2ff09bb6]{flex-direction:column}}.add-arg[data-v-2ff09bb6]{width:100%}.add-arg button[data-v-2ff09bb6]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-2ff09bb6]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-2ff09bb6]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-2ff09bb6]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-2ff09bb6]{width:100%}.doc-container[data-v-2ff09bb6],.response[data-v-2ff09bb6]{flex-grow:1}.doc-container h2[data-v-2ff09bb6],.response h2[data-v-2ff09bb6]{display:inline-flex}.doc-container h2 .title[data-v-2ff09bb6],.response h2 .title[data-v-2ff09bb6]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-2ff09bb6],.response h2 .buttons[data-v-2ff09bb6]{width:2em}.doc-container h2 .buttons button[data-v-2ff09bb6],.response h2 .buttons button[data-v-2ff09bb6]{padding:0}.output[data-v-2ff09bb6]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-2ff09bb6]{color:red}textarea.curl-snippet[data-v-2ff09bb6]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.add-tile-container[data-v-2ff09bb6]{position:relative;margin:.5em 0}.add-tile-container .icon[data-v-2ff09bb6]{width:1.5em;height:1.5em;margin-right:.75em}.add-tile-container .name[data-v-2ff09bb6]{font-style:italic}.col-1[data-v-505af250]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-505af250]:first-child{margin-left:0}.col-no-margin-1[data-v-505af250]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-505af250]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-505af250]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-505af250]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-505af250]:first-child{margin-left:0}.col-no-margin-2[data-v-505af250]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-505af250]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-505af250]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-505af250]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-505af250]:first-child{margin-left:0}.col-no-margin-3[data-v-505af250]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-505af250]:first-child{margin-left:26%!important}.col-offset-3[data-v-505af250]:not(first-child){margin-left:30%!important}.col-4[data-v-505af250]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-505af250]:first-child{margin-left:0}.col-no-margin-4[data-v-505af250]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-505af250]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-505af250]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-505af250]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-505af250]:first-child{margin-left:0}.col-no-margin-5[data-v-505af250]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-505af250]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-505af250]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-505af250]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-505af250]:first-child{margin-left:0}.col-no-margin-6[data-v-505af250]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-505af250]:first-child{margin-left:52%!important}.col-offset-6[data-v-505af250]:not(first-child){margin-left:56%!important}.col-7[data-v-505af250]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-505af250]:first-child{margin-left:0}.col-no-margin-7[data-v-505af250]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-505af250]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-505af250]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-505af250]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-505af250]:first-child{margin-left:0}.col-no-margin-8[data-v-505af250]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-505af250]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-505af250]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-505af250]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-505af250]:first-child{margin-left:0}.col-no-margin-9[data-v-505af250]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-505af250]:first-child{margin-left:78%!important}.col-offset-9[data-v-505af250]:not(first-child){margin-left:82%!important}.col-10[data-v-505af250]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-505af250]:first-child{margin-left:0}.col-no-margin-10[data-v-505af250]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-505af250]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-505af250]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-505af250]:first-child{margin-left:0}.col-no-margin-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-505af250]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-505af250]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-505af250]:first-child{margin-left:0}.col-no-margin-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-505af250]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-505af250]:first-child{margin-left:0}.col-offset-s-1[data-v-505af250]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-505af250]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-505af250]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-505af250]:first-child{margin-left:0}.col-offset-s-2[data-v-505af250]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-505af250]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-505af250]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-505af250]:first-child{margin-left:0}.col-offset-s-3[data-v-505af250]{margin-left:26%}.col-no-margin-s-3[data-v-505af250]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-505af250]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-505af250]:first-child{margin-left:0}.col-offset-s-4[data-v-505af250]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-505af250]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-505af250]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-505af250]:first-child{margin-left:0}.col-offset-s-5[data-v-505af250]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-505af250]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-505af250]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-505af250]:first-child{margin-left:0}.col-offset-s-6[data-v-505af250]{margin-left:52%}.col-no-margin-s-6[data-v-505af250]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-505af250]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-505af250]:first-child{margin-left:0}.col-offset-s-7[data-v-505af250]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-505af250]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-505af250]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-505af250]:first-child{margin-left:0}.col-offset-s-8[data-v-505af250]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-505af250]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-505af250]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-505af250]:first-child{margin-left:0}.col-offset-s-9[data-v-505af250]{margin-left:78%}.col-no-margin-s-9[data-v-505af250]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-505af250]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-505af250]:first-child{margin-left:0}.col-offset-s-10[data-v-505af250]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-505af250]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-505af250]:first-child{margin-left:0}.col-offset-s-11[data-v-505af250]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-505af250]:first-child{margin-left:0}.col-no-margin-s-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-505af250]{display:none!important}.s-visible[data-v-505af250]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-505af250]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-505af250]:first-child{margin-left:0}.col-offset-m-1[data-v-505af250]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-505af250]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-505af250]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-505af250]:first-child{margin-left:0}.col-offset-m-2[data-v-505af250]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-505af250]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-505af250]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-505af250]:first-child{margin-left:0}.col-offset-m-3[data-v-505af250]{margin-left:26%}.col-no-margin-m-3[data-v-505af250]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-505af250]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-505af250]:first-child{margin-left:0}.col-offset-m-4[data-v-505af250]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-505af250]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-505af250]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-505af250]:first-child{margin-left:0}.col-offset-m-5[data-v-505af250]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-505af250]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-505af250]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-505af250]:first-child{margin-left:0}.col-offset-m-6[data-v-505af250]{margin-left:52%}.col-no-margin-m-6[data-v-505af250]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-505af250]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-505af250]:first-child{margin-left:0}.col-offset-m-7[data-v-505af250]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-505af250]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-505af250]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-505af250]:first-child{margin-left:0}.col-offset-m-8[data-v-505af250]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-505af250]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-505af250]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-505af250]:first-child{margin-left:0}.col-offset-m-9[data-v-505af250]{margin-left:78%}.col-no-margin-m-9[data-v-505af250]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-505af250]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-505af250]:first-child{margin-left:0}.col-offset-m-10[data-v-505af250]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-505af250]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-505af250]:first-child{margin-left:0}.col-offset-m-11[data-v-505af250]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-505af250]:first-child{margin-left:0}.col-no-margin-m-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-505af250]{display:none!important}.m-visible[data-v-505af250]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-505af250]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-505af250]:first-child{margin-left:0}.col-offset-l-1[data-v-505af250]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-505af250]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-505af250]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-505af250]:first-child{margin-left:0}.col-offset-l-2[data-v-505af250]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-505af250]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-505af250]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-505af250]:first-child{margin-left:0}.col-offset-l-3[data-v-505af250]{margin-left:26%}.col-no-margin-l-3[data-v-505af250]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-505af250]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-505af250]:first-child{margin-left:0}.col-offset-l-4[data-v-505af250]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-505af250]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-505af250]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-505af250]:first-child{margin-left:0}.col-offset-l-5[data-v-505af250]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-505af250]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-505af250]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-505af250]:first-child{margin-left:0}.col-offset-l-6[data-v-505af250]{margin-left:52%}.col-no-margin-l-6[data-v-505af250]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-505af250]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-505af250]:first-child{margin-left:0}.col-offset-l-7[data-v-505af250]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-505af250]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-505af250]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-505af250]:first-child{margin-left:0}.col-offset-l-8[data-v-505af250]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-505af250]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-505af250]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-505af250]:first-child{margin-left:0}.col-offset-l-9[data-v-505af250]{margin-left:78%}.col-no-margin-l-9[data-v-505af250]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-505af250]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-505af250]:first-child{margin-left:0}.col-offset-l-10[data-v-505af250]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-505af250]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-505af250]:first-child{margin-left:0}.col-offset-l-11[data-v-505af250]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-505af250]:first-child{margin-left:0}.col-no-margin-l-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-505af250]{display:none!important}.l-visible[data-v-505af250]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-505af250]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-1[data-v-505af250]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-505af250]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-505af250]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-2[data-v-505af250]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-505af250]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-505af250]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-3[data-v-505af250]{margin-left:26%}.col-no-margin-xl-3[data-v-505af250]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-505af250]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-4[data-v-505af250]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-505af250]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-505af250]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-5[data-v-505af250]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-505af250]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-505af250]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-6[data-v-505af250]{margin-left:52%}.col-no-margin-xl-6[data-v-505af250]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-505af250]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-7[data-v-505af250]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-505af250]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-505af250]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-8[data-v-505af250]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-505af250]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-505af250]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-9[data-v-505af250]{margin-left:78%}.col-no-margin-xl-9[data-v-505af250]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-505af250]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-10[data-v-505af250]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-505af250]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-505af250]:first-child{margin-left:0}.col-offset-xl-11[data-v-505af250]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-505af250]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-505af250]{display:none!important}.xl-visible[data-v-505af250]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-505af250]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-1[data-v-505af250]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-505af250]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-505af250]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-2[data-v-505af250]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-505af250]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-505af250]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-3[data-v-505af250]{margin-left:26%}.col-no-margin-xxl-3[data-v-505af250]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-505af250]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-4[data-v-505af250]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-505af250]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-505af250]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-5[data-v-505af250]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-505af250]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-505af250]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-6[data-v-505af250]{margin-left:52%}.col-no-margin-xxl-6[data-v-505af250]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-505af250]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-7[data-v-505af250]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-505af250]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-505af250]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-8[data-v-505af250]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-505af250]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-505af250]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-9[data-v-505af250]{margin-left:78%}.col-no-margin-xxl-9[data-v-505af250]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-505af250]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-10[data-v-505af250]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-505af250]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-505af250]:first-child{margin-left:0}.col-offset-xxl-11[data-v-505af250]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-505af250]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-505af250]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-505af250]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-505af250]{display:none!important}.xxl-visible[data-v-505af250]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-505af250]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-505af250]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-505af250]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-505af250]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-505af250]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-505af250]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-505af250]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-505af250]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-505af250]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-505af250]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-505af250]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-505af250]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-505af250]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-505af250]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-505af250]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-505af250]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-505af250]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-505af250]{display:none!important}}.vertical-center[data-v-505af250]{display:flex;align-items:center}.horizontal-center[data-v-505af250]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-505af250]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-505af250]{display:none!important}.no-content[data-v-505af250]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-505af250]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-505af250]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-505af250]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-505af250]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-505af250]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-505af250]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-505af250],.btn[data-v-505af250],button[data-v-505af250]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-505af250],.btn-default[type=submit][data-v-505af250],.btn.btn-primary[data-v-505af250],.btn[type=submit][data-v-505af250],button.btn-primary[data-v-505af250],button[type=submit][data-v-505af250]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-505af250]:hover,.btn[data-v-505af250]:hover,button[data-v-505af250]:hover{color:#35b870}.btn .icon[data-v-505af250],.btn-default .icon[data-v-505af250],button .icon[data-v-505af250]{margin-right:.5em}.btn-default[data-v-505af250]:disabled,.btn-default[disabled][data-v-505af250],.btn[data-v-505af250]:disabled,.btn[disabled][data-v-505af250],button[data-v-505af250]:disabled,button[disabled][data-v-505af250]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-505af250]{cursor:grab!important}.dragged[data-v-505af250]{opacity:.5!important}input[type=password][data-v-505af250],input[type=text][data-v-505af250]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-505af250]:focus,input[type=text][data-v-505af250]:focus{border:1px solid #35b870}button[data-v-505af250],input[data-v-505af250]{outline:none}input[type=text][data-v-505af250]:hover,textarea[data-v-505af250]:hover{border:1px solid #9cdfb0}ul[data-v-505af250]{margin:0;padding:0;list-style:none}a[data-v-505af250]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-505af250]:hover{color:#35b870}[data-v-505af250]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-505af250]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-505af250]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-505af250]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-505af250]{color:#ad1717}body[data-v-505af250]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-505af250] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-505af250] .nav .path{cursor:pointer}.browser[data-v-505af250] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-505af250] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-505af250]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-505af250]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-505af250],input[type=number][data-v-505af250],input[type=password][data-v-505af250],input[type=search][data-v-505af250],input[type=text][data-v-505af250],input[type=time][data-v-505af250]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-505af250]:hover,input[type=number][data-v-505af250]:hover,input[type=password][data-v-505af250]:hover,input[type=search][data-v-505af250]:hover,input[type=text][data-v-505af250]:hover,input[type=time][data-v-505af250]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-505af250]:focus,input[type=number][data-v-505af250]:focus,input[type=password][data-v-505af250]:focus,input[type=search][data-v-505af250]:focus,input[type=text][data-v-505af250]:focus,input[type=time][data-v-505af250]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-505af250],input[type=number].with-icon[data-v-505af250],input[type=password].with-icon[data-v-505af250],input[type=search].with-icon[data-v-505af250],input[type=text].with-icon[data-v-505af250],input[type=time].with-icon[data-v-505af250]{padding-left:.3em}input[type=search][data-v-505af250],input[type=text][data-v-505af250]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-505af250]{animation-fill-mode:both;animation-name:fadeIn-505af250;-webkit-animation-name:fadeIn-505af250}.fade-in[data-v-505af250],.fade-out[data-v-505af250]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-505af250]{animation-fill-mode:both;animation-name:fadeOut-505af250;-webkit-animation-name:fadeOut-505af250}.expand[data-v-505af250]{animation-fill-mode:both;animation-name:expand-505af250;-webkit-animation-name:expand-505af250}.expand[data-v-505af250],.shrink[data-v-505af250]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-505af250]{animation-fill-mode:both;animation-name:shrink-505af250;-webkit-animation-name:shrink-505af250}.fold[data-v-505af250]{animation-fill-mode:both;animation-name:fold-505af250;-webkit-animation-name:fold-505af250}.fold[data-v-505af250],.unfold[data-v-505af250]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-505af250]{animation-fill-mode:both;animation-name:unfold-505af250;-webkit-animation-name:unfold-505af250}.dim[data-v-505af250]{animation-fill-mode:both;animation-name:dim-505af250;-webkit-animation-name:dim-505af250}.brighten[data-v-505af250],.dim[data-v-505af250]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-505af250]{animation-fill-mode:both;animation-name:brighten-505af250;-webkit-animation-name:brighten-505af250}@keyframes fadeIn-505af250{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-505af250{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-505af250{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-505af250{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-505af250{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-505af250{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-505af250{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-505af250{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-505af250]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-505af250;-webkit-animation-name:glow-505af250}.loop[data-v-505af250]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-505af250{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-505af250]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-505af250]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-505af250]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.actions-block .collapse-button[data-v-505af250]{width:100%;background:none!important;margin-left:1em;font-size:.85em;text-align:left;border:none}.actions-block.hover .collapse-button[data-v-505af250]{color:#35b870}.col-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-cfcbaedc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-cfcbaedc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-cfcbaedc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-cfcbaedc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-cfcbaedc]:first-child{margin-left:26%!important}.col-offset-3[data-v-cfcbaedc]:not(first-child){margin-left:30%!important}.col-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-cfcbaedc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-cfcbaedc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-cfcbaedc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-cfcbaedc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-cfcbaedc]:first-child{margin-left:52%!important}.col-offset-6[data-v-cfcbaedc]:not(first-child){margin-left:56%!important}.col-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-cfcbaedc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-cfcbaedc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-cfcbaedc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-cfcbaedc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-cfcbaedc]:first-child{margin-left:78%!important}.col-offset-9[data-v-cfcbaedc]:not(first-child){margin-left:82%!important}.col-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-cfcbaedc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-cfcbaedc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-cfcbaedc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-cfcbaedc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-1[data-v-cfcbaedc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-2[data-v-cfcbaedc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-3[data-v-cfcbaedc]{margin-left:26%}.col-no-margin-s-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-4[data-v-cfcbaedc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-5[data-v-cfcbaedc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-6[data-v-cfcbaedc]{margin-left:52%}.col-no-margin-s-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-7[data-v-cfcbaedc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-8[data-v-cfcbaedc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-9[data-v-cfcbaedc]{margin-left:78%}.col-no-margin-s-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-10[data-v-cfcbaedc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-s-11[data-v-cfcbaedc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-cfcbaedc]{display:none!important}.s-visible[data-v-cfcbaedc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-1[data-v-cfcbaedc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-2[data-v-cfcbaedc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-3[data-v-cfcbaedc]{margin-left:26%}.col-no-margin-m-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-4[data-v-cfcbaedc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-5[data-v-cfcbaedc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-6[data-v-cfcbaedc]{margin-left:52%}.col-no-margin-m-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-7[data-v-cfcbaedc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-8[data-v-cfcbaedc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-9[data-v-cfcbaedc]{margin-left:78%}.col-no-margin-m-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-10[data-v-cfcbaedc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-m-11[data-v-cfcbaedc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-cfcbaedc]{display:none!important}.m-visible[data-v-cfcbaedc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-1[data-v-cfcbaedc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-2[data-v-cfcbaedc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-3[data-v-cfcbaedc]{margin-left:26%}.col-no-margin-l-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-4[data-v-cfcbaedc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-5[data-v-cfcbaedc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-6[data-v-cfcbaedc]{margin-left:52%}.col-no-margin-l-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-7[data-v-cfcbaedc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-8[data-v-cfcbaedc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-9[data-v-cfcbaedc]{margin-left:78%}.col-no-margin-l-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-10[data-v-cfcbaedc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-l-11[data-v-cfcbaedc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-cfcbaedc]{display:none!important}.l-visible[data-v-cfcbaedc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-1[data-v-cfcbaedc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-2[data-v-cfcbaedc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-3[data-v-cfcbaedc]{margin-left:26%}.col-no-margin-xl-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-4[data-v-cfcbaedc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-5[data-v-cfcbaedc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-6[data-v-cfcbaedc]{margin-left:52%}.col-no-margin-xl-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-7[data-v-cfcbaedc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-8[data-v-cfcbaedc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-9[data-v-cfcbaedc]{margin-left:78%}.col-no-margin-xl-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-10[data-v-cfcbaedc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xl-11[data-v-cfcbaedc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-cfcbaedc]{display:none!important}.xl-visible[data-v-cfcbaedc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-cfcbaedc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-cfcbaedc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-cfcbaedc]{margin-left:26%}.col-no-margin-xxl-3[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-cfcbaedc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-cfcbaedc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-cfcbaedc]{margin-left:52%}.col-no-margin-xxl-6[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-cfcbaedc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-cfcbaedc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-cfcbaedc]{margin-left:78%}.col-no-margin-xxl-9[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-cfcbaedc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-cfcbaedc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-cfcbaedc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-cfcbaedc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-cfcbaedc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-cfcbaedc]{display:none!important}.xxl-visible[data-v-cfcbaedc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-cfcbaedc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-cfcbaedc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-cfcbaedc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-cfcbaedc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-cfcbaedc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-cfcbaedc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-cfcbaedc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-cfcbaedc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-cfcbaedc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-cfcbaedc]{display:none!important}}.vertical-center[data-v-cfcbaedc]{display:flex;align-items:center}.horizontal-center[data-v-cfcbaedc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-cfcbaedc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-cfcbaedc]{display:none!important}.no-content[data-v-cfcbaedc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-cfcbaedc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-cfcbaedc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-cfcbaedc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-cfcbaedc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-cfcbaedc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-cfcbaedc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-cfcbaedc],.btn[data-v-cfcbaedc],button[data-v-cfcbaedc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-cfcbaedc],.btn-default[type=submit][data-v-cfcbaedc],.btn.btn-primary[data-v-cfcbaedc],.btn[type=submit][data-v-cfcbaedc],button.btn-primary[data-v-cfcbaedc],button[type=submit][data-v-cfcbaedc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-cfcbaedc]:hover,.btn[data-v-cfcbaedc]:hover,button[data-v-cfcbaedc]:hover{color:#35b870}.btn .icon[data-v-cfcbaedc],.btn-default .icon[data-v-cfcbaedc],button .icon[data-v-cfcbaedc]{margin-right:.5em}.btn-default[data-v-cfcbaedc]:disabled,.btn-default[disabled][data-v-cfcbaedc],.btn[data-v-cfcbaedc]:disabled,.btn[disabled][data-v-cfcbaedc],button[data-v-cfcbaedc]:disabled,button[disabled][data-v-cfcbaedc]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-cfcbaedc]{cursor:grab!important}.dragged[data-v-cfcbaedc]{opacity:.5!important}input[type=password][data-v-cfcbaedc],input[type=text][data-v-cfcbaedc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-cfcbaedc]:focus,input[type=text][data-v-cfcbaedc]:focus{border:1px solid #35b870}button[data-v-cfcbaedc],input[data-v-cfcbaedc]{outline:none}input[type=text][data-v-cfcbaedc]:hover,textarea[data-v-cfcbaedc]:hover{border:1px solid #9cdfb0}ul[data-v-cfcbaedc]{margin:0;padding:0;list-style:none}a[data-v-cfcbaedc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-cfcbaedc]:hover{color:#35b870}[data-v-cfcbaedc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-cfcbaedc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-cfcbaedc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-cfcbaedc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-cfcbaedc]{color:#ad1717}body[data-v-cfcbaedc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-cfcbaedc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-cfcbaedc] .nav .path{cursor:pointer}.browser[data-v-cfcbaedc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-cfcbaedc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-cfcbaedc]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-cfcbaedc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-cfcbaedc],input[type=number][data-v-cfcbaedc],input[type=password][data-v-cfcbaedc],input[type=search][data-v-cfcbaedc],input[type=text][data-v-cfcbaedc],input[type=time][data-v-cfcbaedc]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-cfcbaedc]:hover,input[type=number][data-v-cfcbaedc]:hover,input[type=password][data-v-cfcbaedc]:hover,input[type=search][data-v-cfcbaedc]:hover,input[type=text][data-v-cfcbaedc]:hover,input[type=time][data-v-cfcbaedc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-cfcbaedc]:focus,input[type=number][data-v-cfcbaedc]:focus,input[type=password][data-v-cfcbaedc]:focus,input[type=search][data-v-cfcbaedc]:focus,input[type=text][data-v-cfcbaedc]:focus,input[type=time][data-v-cfcbaedc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-cfcbaedc],input[type=number].with-icon[data-v-cfcbaedc],input[type=password].with-icon[data-v-cfcbaedc],input[type=search].with-icon[data-v-cfcbaedc],input[type=text].with-icon[data-v-cfcbaedc],input[type=time].with-icon[data-v-cfcbaedc]{padding-left:.3em}input[type=search][data-v-cfcbaedc],input[type=text][data-v-cfcbaedc]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-cfcbaedc]{animation-fill-mode:both;animation-name:fadeIn-cfcbaedc;-webkit-animation-name:fadeIn-cfcbaedc}.fade-in[data-v-cfcbaedc],.fade-out[data-v-cfcbaedc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-cfcbaedc]{animation-fill-mode:both;animation-name:fadeOut-cfcbaedc;-webkit-animation-name:fadeOut-cfcbaedc}.expand[data-v-cfcbaedc]{animation-fill-mode:both;animation-name:expand-cfcbaedc;-webkit-animation-name:expand-cfcbaedc}.expand[data-v-cfcbaedc],.shrink[data-v-cfcbaedc]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-cfcbaedc]{animation-fill-mode:both;animation-name:shrink-cfcbaedc;-webkit-animation-name:shrink-cfcbaedc}.fold[data-v-cfcbaedc]{animation-fill-mode:both;animation-name:fold-cfcbaedc;-webkit-animation-name:fold-cfcbaedc}.fold[data-v-cfcbaedc],.unfold[data-v-cfcbaedc]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-cfcbaedc]{animation-fill-mode:both;animation-name:unfold-cfcbaedc;-webkit-animation-name:unfold-cfcbaedc}.dim[data-v-cfcbaedc]{animation-fill-mode:both;animation-name:dim-cfcbaedc;-webkit-animation-name:dim-cfcbaedc}.brighten[data-v-cfcbaedc],.dim[data-v-cfcbaedc]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-cfcbaedc]{animation-fill-mode:both;animation-name:brighten-cfcbaedc;-webkit-animation-name:brighten-cfcbaedc}@keyframes fadeIn-cfcbaedc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-cfcbaedc{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-cfcbaedc{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-cfcbaedc{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-cfcbaedc{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-cfcbaedc{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-cfcbaedc{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-cfcbaedc{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-cfcbaedc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-cfcbaedc;-webkit-animation-name:glow-cfcbaedc}.loop[data-v-cfcbaedc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-cfcbaedc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-cfcbaedc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-cfcbaedc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-cfcbaedc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-cfcbaedc]{min-height:calc(100vh - 2em)}button[data-v-cfcbaedc]{background:none;border:none;box-shadow:none}button[data-v-cfcbaedc]:hover{color:#35b870}hgroup[data-v-cfcbaedc]{flex-grow:1}h1[data-v-cfcbaedc]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-cfcbaedc]{border-radius:.5em .5em 0 0}}h2[data-v-cfcbaedc]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-cfcbaedc]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-cfcbaedc]{margin-top:.5em;padding-top:.5em}section.response[data-v-cfcbaedc]{flex-grow:1;max-height:40em}section.response .output[data-v-cfcbaedc]{overflow:auto}.buttons[data-v-cfcbaedc]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-cfcbaedc]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-cfcbaedc]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-cfcbaedc]{background:#fff}header .buttons[data-v-cfcbaedc]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-cfcbaedc]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-cfcbaedc] .doc blockquote{margin-left:0}textarea[data-v-cfcbaedc]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-cfcbaedc]:hover{border:1px solid #38cf80}textarea[data-v-cfcbaedc]:focus{border:1px solid #32b646}form[data-v-cfcbaedc]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-cfcbaedc]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-cfcbaedc]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-cfcbaedc]{width:80%;max-width:60em}}.raw .first-row button[data-v-cfcbaedc]{margin-left:0}[data-v-cfcbaedc] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-cfcbaedc] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-cfcbaedc] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-cfcbaedc] .args-body .args-list{width:30em}}[data-v-cfcbaedc] .args-body .args-list label{display:flex;align-items:center}[data-v-cfcbaedc] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-cfcbaedc] .args-body .args-list .arg{width:100%}}[data-v-cfcbaedc] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-cfcbaedc] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-cfcbaedc] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-cfcbaedc]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-cfcbaedc]{flex-direction:column}}.add-arg[data-v-cfcbaedc]{width:100%}.add-arg button[data-v-cfcbaedc]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-cfcbaedc]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-cfcbaedc]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-cfcbaedc]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-cfcbaedc]{width:100%}.doc-container[data-v-cfcbaedc],.response[data-v-cfcbaedc]{flex-grow:1}.doc-container h2[data-v-cfcbaedc],.response h2[data-v-cfcbaedc]{display:inline-flex}.doc-container h2 .title[data-v-cfcbaedc],.response h2 .title[data-v-cfcbaedc]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-cfcbaedc],.response h2 .buttons[data-v-cfcbaedc]{width:2em}.doc-container h2 .buttons button[data-v-cfcbaedc],.response h2 .buttons button[data-v-cfcbaedc]{padding:0}.output[data-v-cfcbaedc]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-cfcbaedc]{color:red}textarea.curl-snippet[data-v-cfcbaedc]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.expression-editor[data-v-cfcbaedc]{min-width:40em;max-width:100%;display:flex;flex-direction:column;justify-content:center}.expression-editor label[data-v-cfcbaedc]{width:100%;display:flex;flex-direction:column;justify-content:center;padding:1em}.expression-editor label input[type=text][data-v-cfcbaedc]{width:100%;margin-left:1em}.col-1[data-v-7d017735]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-1[data-v-7d017735]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7d017735]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7d017735]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7d017735]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-2[data-v-7d017735]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7d017735]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7d017735]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7d017735]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-3[data-v-7d017735]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7d017735]:first-child{margin-left:26%!important}.col-offset-3[data-v-7d017735]:not(first-child){margin-left:30%!important}.col-4[data-v-7d017735]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-4[data-v-7d017735]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7d017735]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7d017735]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7d017735]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-5[data-v-7d017735]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7d017735]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7d017735]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7d017735]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-6[data-v-7d017735]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7d017735]:first-child{margin-left:52%!important}.col-offset-6[data-v-7d017735]:not(first-child){margin-left:56%!important}.col-7[data-v-7d017735]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-7[data-v-7d017735]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7d017735]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7d017735]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7d017735]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-8[data-v-7d017735]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7d017735]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7d017735]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7d017735]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-9[data-v-7d017735]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7d017735]:first-child{margin-left:78%!important}.col-offset-9[data-v-7d017735]:not(first-child){margin-left:82%!important}.col-10[data-v-7d017735]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-10[data-v-7d017735]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7d017735]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7d017735]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7d017735]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7d017735]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7d017735]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-1[data-v-7d017735]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7d017735]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7d017735]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-2[data-v-7d017735]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7d017735]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7d017735]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-3[data-v-7d017735]{margin-left:26%}.col-no-margin-s-3[data-v-7d017735]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7d017735]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-4[data-v-7d017735]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7d017735]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7d017735]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-5[data-v-7d017735]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7d017735]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7d017735]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-6[data-v-7d017735]{margin-left:52%}.col-no-margin-s-6[data-v-7d017735]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7d017735]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-7[data-v-7d017735]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7d017735]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7d017735]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-8[data-v-7d017735]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7d017735]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7d017735]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-9[data-v-7d017735]{margin-left:78%}.col-no-margin-s-9[data-v-7d017735]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7d017735]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-10[data-v-7d017735]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7d017735]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7d017735]:first-child{margin-left:0}.col-offset-s-11[data-v-7d017735]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7d017735]{display:none!important}.s-visible[data-v-7d017735]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7d017735]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-1[data-v-7d017735]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7d017735]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7d017735]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-2[data-v-7d017735]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7d017735]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7d017735]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-3[data-v-7d017735]{margin-left:26%}.col-no-margin-m-3[data-v-7d017735]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7d017735]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-4[data-v-7d017735]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7d017735]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7d017735]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-5[data-v-7d017735]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7d017735]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7d017735]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-6[data-v-7d017735]{margin-left:52%}.col-no-margin-m-6[data-v-7d017735]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7d017735]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-7[data-v-7d017735]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7d017735]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7d017735]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-8[data-v-7d017735]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7d017735]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7d017735]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-9[data-v-7d017735]{margin-left:78%}.col-no-margin-m-9[data-v-7d017735]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7d017735]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-10[data-v-7d017735]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7d017735]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7d017735]:first-child{margin-left:0}.col-offset-m-11[data-v-7d017735]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7d017735]{display:none!important}.m-visible[data-v-7d017735]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7d017735]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-1[data-v-7d017735]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7d017735]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7d017735]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-2[data-v-7d017735]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7d017735]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7d017735]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-3[data-v-7d017735]{margin-left:26%}.col-no-margin-l-3[data-v-7d017735]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7d017735]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-4[data-v-7d017735]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7d017735]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7d017735]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-5[data-v-7d017735]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7d017735]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7d017735]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-6[data-v-7d017735]{margin-left:52%}.col-no-margin-l-6[data-v-7d017735]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7d017735]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-7[data-v-7d017735]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7d017735]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7d017735]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-8[data-v-7d017735]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7d017735]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7d017735]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-9[data-v-7d017735]{margin-left:78%}.col-no-margin-l-9[data-v-7d017735]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7d017735]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-10[data-v-7d017735]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7d017735]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7d017735]:first-child{margin-left:0}.col-offset-l-11[data-v-7d017735]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7d017735]{display:none!important}.l-visible[data-v-7d017735]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7d017735]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-1[data-v-7d017735]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7d017735]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7d017735]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-2[data-v-7d017735]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7d017735]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7d017735]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-3[data-v-7d017735]{margin-left:26%}.col-no-margin-xl-3[data-v-7d017735]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7d017735]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-4[data-v-7d017735]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7d017735]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7d017735]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-5[data-v-7d017735]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7d017735]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7d017735]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-6[data-v-7d017735]{margin-left:52%}.col-no-margin-xl-6[data-v-7d017735]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7d017735]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-7[data-v-7d017735]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7d017735]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7d017735]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-8[data-v-7d017735]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7d017735]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7d017735]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-9[data-v-7d017735]{margin-left:78%}.col-no-margin-xl-9[data-v-7d017735]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7d017735]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-10[data-v-7d017735]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7d017735]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7d017735]:first-child{margin-left:0}.col-offset-xl-11[data-v-7d017735]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7d017735]{display:none!important}.xl-visible[data-v-7d017735]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7d017735]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7d017735]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7d017735]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7d017735]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7d017735]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7d017735]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7d017735]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7d017735]{margin-left:26%}.col-no-margin-xxl-3[data-v-7d017735]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7d017735]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7d017735]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7d017735]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7d017735]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7d017735]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7d017735]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7d017735]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7d017735]{margin-left:52%}.col-no-margin-xxl-6[data-v-7d017735]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7d017735]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7d017735]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7d017735]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7d017735]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7d017735]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7d017735]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7d017735]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7d017735]{margin-left:78%}.col-no-margin-xxl-9[data-v-7d017735]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7d017735]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7d017735]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7d017735]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7d017735]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7d017735]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7d017735]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7d017735]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7d017735]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7d017735]{display:none!important}.xxl-visible[data-v-7d017735]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7d017735]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7d017735]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7d017735]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7d017735]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7d017735]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7d017735]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7d017735]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7d017735]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7d017735]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7d017735]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7d017735]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7d017735]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7d017735]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7d017735]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7d017735]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7d017735]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7d017735]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7d017735]{display:none!important}}.vertical-center[data-v-7d017735]{display:flex;align-items:center}.horizontal-center[data-v-7d017735]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7d017735]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7d017735]{display:none!important}.no-content[data-v-7d017735]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7d017735]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7d017735]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7d017735]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7d017735]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7d017735]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7d017735]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7d017735],.btn[data-v-7d017735],button[data-v-7d017735]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7d017735],.btn-default[type=submit][data-v-7d017735],.btn.btn-primary[data-v-7d017735],.btn[type=submit][data-v-7d017735],button.btn-primary[data-v-7d017735],button[type=submit][data-v-7d017735]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7d017735]:hover,.btn[data-v-7d017735]:hover,button[data-v-7d017735]:hover{color:#35b870}.btn .icon[data-v-7d017735],.btn-default .icon[data-v-7d017735],button .icon[data-v-7d017735]{margin-right:.5em}.btn-default[data-v-7d017735]:disabled,.btn-default[disabled][data-v-7d017735],.btn[data-v-7d017735]:disabled,.btn[disabled][data-v-7d017735],button[data-v-7d017735]:disabled,button[disabled][data-v-7d017735]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7d017735]{cursor:grab!important}.dragged[data-v-7d017735]{opacity:.5!important}input[type=password][data-v-7d017735],input[type=text][data-v-7d017735]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7d017735]:focus,input[type=text][data-v-7d017735]:focus{border:1px solid #35b870}button[data-v-7d017735],input[data-v-7d017735]{outline:none}input[type=text][data-v-7d017735]:hover,textarea[data-v-7d017735]:hover{border:1px solid #9cdfb0}ul[data-v-7d017735]{margin:0;padding:0;list-style:none}a[data-v-7d017735]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7d017735]:hover{color:#35b870}[data-v-7d017735]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7d017735]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7d017735]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7d017735]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7d017735]{color:#ad1717}body[data-v-7d017735]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7d017735] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7d017735] .nav .path{cursor:pointer}.browser[data-v-7d017735] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7d017735] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7d017735]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7d017735]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7d017735],input[type=number][data-v-7d017735],input[type=password][data-v-7d017735],input[type=search][data-v-7d017735],input[type=text][data-v-7d017735],input[type=time][data-v-7d017735]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7d017735]:hover,input[type=number][data-v-7d017735]:hover,input[type=password][data-v-7d017735]:hover,input[type=search][data-v-7d017735]:hover,input[type=text][data-v-7d017735]:hover,input[type=time][data-v-7d017735]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7d017735]:focus,input[type=number][data-v-7d017735]:focus,input[type=password][data-v-7d017735]:focus,input[type=search][data-v-7d017735]:focus,input[type=text][data-v-7d017735]:focus,input[type=time][data-v-7d017735]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7d017735],input[type=number].with-icon[data-v-7d017735],input[type=password].with-icon[data-v-7d017735],input[type=search].with-icon[data-v-7d017735],input[type=text].with-icon[data-v-7d017735],input[type=time].with-icon[data-v-7d017735]{padding-left:.3em}input[type=search][data-v-7d017735],input[type=text][data-v-7d017735]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7d017735]{animation-fill-mode:both;animation-name:fadeIn-7d017735;-webkit-animation-name:fadeIn-7d017735}.fade-in[data-v-7d017735],.fade-out[data-v-7d017735]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7d017735]{animation-fill-mode:both;animation-name:fadeOut-7d017735;-webkit-animation-name:fadeOut-7d017735}.expand[data-v-7d017735]{animation-fill-mode:both;animation-name:expand-7d017735;-webkit-animation-name:expand-7d017735}.expand[data-v-7d017735],.shrink[data-v-7d017735]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7d017735]{animation-fill-mode:both;animation-name:shrink-7d017735;-webkit-animation-name:shrink-7d017735}.fold[data-v-7d017735]{animation-fill-mode:both;animation-name:fold-7d017735;-webkit-animation-name:fold-7d017735}.fold[data-v-7d017735],.unfold[data-v-7d017735]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7d017735]{animation-fill-mode:both;animation-name:unfold-7d017735;-webkit-animation-name:unfold-7d017735}.dim[data-v-7d017735]{animation-fill-mode:both;animation-name:dim-7d017735;-webkit-animation-name:dim-7d017735}.brighten[data-v-7d017735],.dim[data-v-7d017735]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7d017735]{animation-fill-mode:both;animation-name:brighten-7d017735;-webkit-animation-name:brighten-7d017735}@keyframes fadeIn-7d017735{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7d017735{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7d017735{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7d017735{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7d017735{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7d017735{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7d017735{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7d017735{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7d017735]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7d017735;-webkit-animation-name:glow-7d017735}.loop[data-v-7d017735]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7d017735{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7d017735]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7d017735]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7d017735]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-7d017735]{min-height:calc(100vh - 2em)}button[data-v-7d017735]{background:none;border:none;box-shadow:none}button[data-v-7d017735]:hover{color:#35b870}hgroup[data-v-7d017735]{flex-grow:1}h1[data-v-7d017735]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-7d017735]{border-radius:.5em .5em 0 0}}h2[data-v-7d017735]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-7d017735]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-7d017735]{margin-top:.5em;padding-top:.5em}section.response[data-v-7d017735]{flex-grow:1;max-height:40em}section.response .output[data-v-7d017735]{overflow:auto}.buttons[data-v-7d017735]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-7d017735]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-7d017735]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-7d017735]{background:#fff}header .buttons[data-v-7d017735]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-7d017735]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-7d017735] .doc blockquote{margin-left:0}textarea[data-v-7d017735]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-7d017735]:hover{border:1px solid #38cf80}textarea[data-v-7d017735]:focus{border:1px solid #32b646}form[data-v-7d017735]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-7d017735]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-7d017735]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-7d017735]{width:80%;max-width:60em}}.raw .first-row button[data-v-7d017735]{margin-left:0}[data-v-7d017735] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-7d017735] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-7d017735] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-7d017735] .args-body .args-list{width:30em}}[data-v-7d017735] .args-body .args-list label{display:flex;align-items:center}[data-v-7d017735] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-7d017735] .args-body .args-list .arg{width:100%}}[data-v-7d017735] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-7d017735] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-7d017735] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-7d017735]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-7d017735]{flex-direction:column}}.add-arg[data-v-7d017735]{width:100%}.add-arg button[data-v-7d017735]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-7d017735]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-7d017735]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-7d017735]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-7d017735]{width:100%}.doc-container[data-v-7d017735],.response[data-v-7d017735]{flex-grow:1}.doc-container h2[data-v-7d017735],.response h2[data-v-7d017735]{display:inline-flex}.doc-container h2 .title[data-v-7d017735],.response h2 .title[data-v-7d017735]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-7d017735],.response h2 .buttons[data-v-7d017735]{width:2em}.doc-container h2 .buttons button[data-v-7d017735],.response h2 .buttons button[data-v-7d017735]{padding:0}.output[data-v-7d017735]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-7d017735]{color:red}textarea.curl-snippet[data-v-7d017735]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.action-tile .condition[data-v-7d017735]{font-style:italic}.action-tile .drag-spacer[data-v-7d017735]{height:0}.action-tile[data-v-7d017735] .expression-editor .header{display:block}.col-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-79ae696c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-79ae696c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-79ae696c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-79ae696c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-79ae696c]:first-child{margin-left:26%!important}.col-offset-3[data-v-79ae696c]:not(first-child){margin-left:30%!important}.col-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-79ae696c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-79ae696c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-79ae696c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-79ae696c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-79ae696c]:first-child{margin-left:52%!important}.col-offset-6[data-v-79ae696c]:not(first-child){margin-left:56%!important}.col-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-79ae696c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-79ae696c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-79ae696c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-79ae696c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-79ae696c]:first-child{margin-left:78%!important}.col-offset-9[data-v-79ae696c]:not(first-child){margin-left:82%!important}.col-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-79ae696c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-79ae696c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-79ae696c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-79ae696c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-1[data-v-79ae696c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-2[data-v-79ae696c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-3[data-v-79ae696c]{margin-left:26%}.col-no-margin-s-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-4[data-v-79ae696c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-5[data-v-79ae696c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-6[data-v-79ae696c]{margin-left:52%}.col-no-margin-s-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-7[data-v-79ae696c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-8[data-v-79ae696c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-9[data-v-79ae696c]{margin-left:78%}.col-no-margin-s-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-10[data-v-79ae696c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-79ae696c]:first-child{margin-left:0}.col-offset-s-11[data-v-79ae696c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-79ae696c]{display:none!important}.s-visible[data-v-79ae696c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-1[data-v-79ae696c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-2[data-v-79ae696c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-3[data-v-79ae696c]{margin-left:26%}.col-no-margin-m-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-4[data-v-79ae696c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-5[data-v-79ae696c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-6[data-v-79ae696c]{margin-left:52%}.col-no-margin-m-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-7[data-v-79ae696c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-8[data-v-79ae696c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-9[data-v-79ae696c]{margin-left:78%}.col-no-margin-m-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-10[data-v-79ae696c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-79ae696c]:first-child{margin-left:0}.col-offset-m-11[data-v-79ae696c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-79ae696c]{display:none!important}.m-visible[data-v-79ae696c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-1[data-v-79ae696c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-2[data-v-79ae696c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-3[data-v-79ae696c]{margin-left:26%}.col-no-margin-l-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-4[data-v-79ae696c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-5[data-v-79ae696c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-6[data-v-79ae696c]{margin-left:52%}.col-no-margin-l-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-7[data-v-79ae696c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-8[data-v-79ae696c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-9[data-v-79ae696c]{margin-left:78%}.col-no-margin-l-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-10[data-v-79ae696c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-79ae696c]:first-child{margin-left:0}.col-offset-l-11[data-v-79ae696c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-79ae696c]{display:none!important}.l-visible[data-v-79ae696c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-1[data-v-79ae696c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-2[data-v-79ae696c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-3[data-v-79ae696c]{margin-left:26%}.col-no-margin-xl-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-4[data-v-79ae696c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-5[data-v-79ae696c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-6[data-v-79ae696c]{margin-left:52%}.col-no-margin-xl-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-7[data-v-79ae696c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-8[data-v-79ae696c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-9[data-v-79ae696c]{margin-left:78%}.col-no-margin-xl-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-10[data-v-79ae696c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xl-11[data-v-79ae696c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-79ae696c]{display:none!important}.xl-visible[data-v-79ae696c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-79ae696c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-79ae696c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-79ae696c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-79ae696c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-79ae696c]{margin-left:26%}.col-no-margin-xxl-3[data-v-79ae696c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-79ae696c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-79ae696c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-79ae696c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-79ae696c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-79ae696c]{margin-left:52%}.col-no-margin-xxl-6[data-v-79ae696c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-79ae696c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-79ae696c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-79ae696c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-79ae696c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-79ae696c]{margin-left:78%}.col-no-margin-xxl-9[data-v-79ae696c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-79ae696c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-79ae696c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-79ae696c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-79ae696c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-79ae696c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-79ae696c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-79ae696c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-79ae696c]{display:none!important}.xxl-visible[data-v-79ae696c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-79ae696c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-79ae696c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-79ae696c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-79ae696c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-79ae696c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-79ae696c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-79ae696c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-79ae696c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-79ae696c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-79ae696c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-79ae696c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-79ae696c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-79ae696c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-79ae696c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-79ae696c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-79ae696c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-79ae696c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-79ae696c]{display:none!important}}.vertical-center[data-v-79ae696c]{display:flex;align-items:center}.horizontal-center[data-v-79ae696c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-79ae696c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-79ae696c]{display:none!important}.no-content[data-v-79ae696c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-79ae696c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-79ae696c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-79ae696c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-79ae696c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-79ae696c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-79ae696c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-79ae696c],.btn[data-v-79ae696c],button[data-v-79ae696c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-79ae696c],.btn-default[type=submit][data-v-79ae696c],.btn.btn-primary[data-v-79ae696c],.btn[type=submit][data-v-79ae696c],button.btn-primary[data-v-79ae696c],button[type=submit][data-v-79ae696c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-79ae696c]:hover,.btn[data-v-79ae696c]:hover,button[data-v-79ae696c]:hover{color:#35b870}.btn .icon[data-v-79ae696c],.btn-default .icon[data-v-79ae696c],button .icon[data-v-79ae696c]{margin-right:.5em}.btn-default[data-v-79ae696c]:disabled,.btn-default[disabled][data-v-79ae696c],.btn[data-v-79ae696c]:disabled,.btn[disabled][data-v-79ae696c],button[data-v-79ae696c]:disabled,button[disabled][data-v-79ae696c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-79ae696c]{cursor:grab!important}.dragged[data-v-79ae696c]{opacity:.5!important}input[type=password][data-v-79ae696c],input[type=text][data-v-79ae696c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-79ae696c]:focus,input[type=text][data-v-79ae696c]:focus{border:1px solid #35b870}button[data-v-79ae696c],input[data-v-79ae696c]{outline:none}input[type=text][data-v-79ae696c]:hover,textarea[data-v-79ae696c]:hover{border:1px solid #9cdfb0}ul[data-v-79ae696c]{margin:0;padding:0;list-style:none}a[data-v-79ae696c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-79ae696c]:hover{color:#35b870}[data-v-79ae696c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-79ae696c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-79ae696c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-79ae696c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-79ae696c]{color:#ad1717}body[data-v-79ae696c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-79ae696c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-79ae696c] .nav .path{cursor:pointer}.browser[data-v-79ae696c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-79ae696c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-79ae696c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-79ae696c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-79ae696c],input[type=number][data-v-79ae696c],input[type=password][data-v-79ae696c],input[type=search][data-v-79ae696c],input[type=text][data-v-79ae696c],input[type=time][data-v-79ae696c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-79ae696c]:hover,input[type=number][data-v-79ae696c]:hover,input[type=password][data-v-79ae696c]:hover,input[type=search][data-v-79ae696c]:hover,input[type=text][data-v-79ae696c]:hover,input[type=time][data-v-79ae696c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-79ae696c]:focus,input[type=number][data-v-79ae696c]:focus,input[type=password][data-v-79ae696c]:focus,input[type=search][data-v-79ae696c]:focus,input[type=text][data-v-79ae696c]:focus,input[type=time][data-v-79ae696c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-79ae696c],input[type=number].with-icon[data-v-79ae696c],input[type=password].with-icon[data-v-79ae696c],input[type=search].with-icon[data-v-79ae696c],input[type=text].with-icon[data-v-79ae696c],input[type=time].with-icon[data-v-79ae696c]{padding-left:.3em}input[type=search][data-v-79ae696c],input[type=text][data-v-79ae696c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-79ae696c]{animation-fill-mode:both;animation-name:fadeIn-79ae696c;-webkit-animation-name:fadeIn-79ae696c}.fade-in[data-v-79ae696c],.fade-out[data-v-79ae696c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-79ae696c]{animation-fill-mode:both;animation-name:fadeOut-79ae696c;-webkit-animation-name:fadeOut-79ae696c}.expand[data-v-79ae696c]{animation-fill-mode:both;animation-name:expand-79ae696c;-webkit-animation-name:expand-79ae696c}.expand[data-v-79ae696c],.shrink[data-v-79ae696c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-79ae696c]{animation-fill-mode:both;animation-name:shrink-79ae696c;-webkit-animation-name:shrink-79ae696c}.fold[data-v-79ae696c]{animation-fill-mode:both;animation-name:fold-79ae696c;-webkit-animation-name:fold-79ae696c}.fold[data-v-79ae696c],.unfold[data-v-79ae696c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-79ae696c]{animation-fill-mode:both;animation-name:unfold-79ae696c;-webkit-animation-name:unfold-79ae696c}.dim[data-v-79ae696c]{animation-fill-mode:both;animation-name:dim-79ae696c;-webkit-animation-name:dim-79ae696c}.brighten[data-v-79ae696c],.dim[data-v-79ae696c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-79ae696c]{animation-fill-mode:both;animation-name:brighten-79ae696c;-webkit-animation-name:brighten-79ae696c}@keyframes fadeIn-79ae696c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-79ae696c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-79ae696c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-79ae696c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-79ae696c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-79ae696c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-79ae696c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-79ae696c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-79ae696c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-79ae696c;-webkit-animation-name:glow-79ae696c}.loop[data-v-79ae696c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-79ae696c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-79ae696c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-79ae696c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-79ae696c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-79ae696c] .condition-block .end-if-container{margin-bottom:1em}.col-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f2db70a8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f2db70a8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f2db70a8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f2db70a8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f2db70a8]:first-child{margin-left:26%!important}.col-offset-3[data-v-f2db70a8]:not(first-child){margin-left:30%!important}.col-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f2db70a8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f2db70a8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f2db70a8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f2db70a8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f2db70a8]:first-child{margin-left:52%!important}.col-offset-6[data-v-f2db70a8]:not(first-child){margin-left:56%!important}.col-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f2db70a8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f2db70a8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f2db70a8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f2db70a8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f2db70a8]:first-child{margin-left:78%!important}.col-offset-9[data-v-f2db70a8]:not(first-child){margin-left:82%!important}.col-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f2db70a8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f2db70a8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f2db70a8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f2db70a8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-1[data-v-f2db70a8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-2[data-v-f2db70a8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-3[data-v-f2db70a8]{margin-left:26%}.col-no-margin-s-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-4[data-v-f2db70a8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-5[data-v-f2db70a8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-6[data-v-f2db70a8]{margin-left:52%}.col-no-margin-s-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-7[data-v-f2db70a8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-8[data-v-f2db70a8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-9[data-v-f2db70a8]{margin-left:78%}.col-no-margin-s-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-10[data-v-f2db70a8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-s-11[data-v-f2db70a8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f2db70a8]{display:none!important}.s-visible[data-v-f2db70a8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-1[data-v-f2db70a8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-2[data-v-f2db70a8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-3[data-v-f2db70a8]{margin-left:26%}.col-no-margin-m-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-4[data-v-f2db70a8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-5[data-v-f2db70a8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-6[data-v-f2db70a8]{margin-left:52%}.col-no-margin-m-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-7[data-v-f2db70a8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-8[data-v-f2db70a8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-9[data-v-f2db70a8]{margin-left:78%}.col-no-margin-m-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-10[data-v-f2db70a8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-m-11[data-v-f2db70a8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f2db70a8]{display:none!important}.m-visible[data-v-f2db70a8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-1[data-v-f2db70a8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-2[data-v-f2db70a8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-3[data-v-f2db70a8]{margin-left:26%}.col-no-margin-l-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-4[data-v-f2db70a8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-5[data-v-f2db70a8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-6[data-v-f2db70a8]{margin-left:52%}.col-no-margin-l-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-7[data-v-f2db70a8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-8[data-v-f2db70a8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-9[data-v-f2db70a8]{margin-left:78%}.col-no-margin-l-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-10[data-v-f2db70a8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-l-11[data-v-f2db70a8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f2db70a8]{display:none!important}.l-visible[data-v-f2db70a8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-1[data-v-f2db70a8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-2[data-v-f2db70a8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-3[data-v-f2db70a8]{margin-left:26%}.col-no-margin-xl-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-4[data-v-f2db70a8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-5[data-v-f2db70a8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-6[data-v-f2db70a8]{margin-left:52%}.col-no-margin-xl-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-7[data-v-f2db70a8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-8[data-v-f2db70a8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-9[data-v-f2db70a8]{margin-left:78%}.col-no-margin-xl-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-10[data-v-f2db70a8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xl-11[data-v-f2db70a8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f2db70a8]{display:none!important}.xl-visible[data-v-f2db70a8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f2db70a8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f2db70a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f2db70a8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f2db70a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f2db70a8]{margin-left:26%}.col-no-margin-xxl-3[data-v-f2db70a8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f2db70a8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f2db70a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f2db70a8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f2db70a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f2db70a8]{margin-left:52%}.col-no-margin-xxl-6[data-v-f2db70a8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f2db70a8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f2db70a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f2db70a8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f2db70a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f2db70a8]{margin-left:78%}.col-no-margin-xxl-9[data-v-f2db70a8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f2db70a8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f2db70a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f2db70a8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f2db70a8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f2db70a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f2db70a8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f2db70a8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f2db70a8]{display:none!important}.xxl-visible[data-v-f2db70a8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f2db70a8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f2db70a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f2db70a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f2db70a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f2db70a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f2db70a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f2db70a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f2db70a8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f2db70a8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f2db70a8]{display:none!important}}.vertical-center[data-v-f2db70a8]{display:flex;align-items:center}.horizontal-center[data-v-f2db70a8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f2db70a8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f2db70a8]{display:none!important}.no-content[data-v-f2db70a8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f2db70a8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f2db70a8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f2db70a8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f2db70a8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f2db70a8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f2db70a8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f2db70a8],.btn[data-v-f2db70a8],button[data-v-f2db70a8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f2db70a8],.btn-default[type=submit][data-v-f2db70a8],.btn.btn-primary[data-v-f2db70a8],.btn[type=submit][data-v-f2db70a8],button.btn-primary[data-v-f2db70a8],button[type=submit][data-v-f2db70a8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-f2db70a8]:hover,.btn[data-v-f2db70a8]:hover,button[data-v-f2db70a8]:hover{color:#35b870}.btn .icon[data-v-f2db70a8],.btn-default .icon[data-v-f2db70a8],button .icon[data-v-f2db70a8]{margin-right:.5em}.btn-default[data-v-f2db70a8]:disabled,.btn-default[disabled][data-v-f2db70a8],.btn[data-v-f2db70a8]:disabled,.btn[disabled][data-v-f2db70a8],button[data-v-f2db70a8]:disabled,button[disabled][data-v-f2db70a8]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-f2db70a8]{cursor:grab!important}.dragged[data-v-f2db70a8]{opacity:.5!important}input[type=password][data-v-f2db70a8],input[type=text][data-v-f2db70a8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f2db70a8]:focus,input[type=text][data-v-f2db70a8]:focus{border:1px solid #35b870}button[data-v-f2db70a8],input[data-v-f2db70a8]{outline:none}input[type=text][data-v-f2db70a8]:hover,textarea[data-v-f2db70a8]:hover{border:1px solid #9cdfb0}ul[data-v-f2db70a8]{margin:0;padding:0;list-style:none}a[data-v-f2db70a8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f2db70a8]:hover{color:#35b870}[data-v-f2db70a8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f2db70a8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f2db70a8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f2db70a8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-f2db70a8]{color:#ad1717}body[data-v-f2db70a8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f2db70a8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f2db70a8] .nav .path{cursor:pointer}.browser[data-v-f2db70a8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f2db70a8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-f2db70a8]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-f2db70a8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f2db70a8],input[type=number][data-v-f2db70a8],input[type=password][data-v-f2db70a8],input[type=search][data-v-f2db70a8],input[type=text][data-v-f2db70a8],input[type=time][data-v-f2db70a8]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-f2db70a8]:hover,input[type=number][data-v-f2db70a8]:hover,input[type=password][data-v-f2db70a8]:hover,input[type=search][data-v-f2db70a8]:hover,input[type=text][data-v-f2db70a8]:hover,input[type=time][data-v-f2db70a8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f2db70a8]:focus,input[type=number][data-v-f2db70a8]:focus,input[type=password][data-v-f2db70a8]:focus,input[type=search][data-v-f2db70a8]:focus,input[type=text][data-v-f2db70a8]:focus,input[type=time][data-v-f2db70a8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f2db70a8],input[type=number].with-icon[data-v-f2db70a8],input[type=password].with-icon[data-v-f2db70a8],input[type=search].with-icon[data-v-f2db70a8],input[type=text].with-icon[data-v-f2db70a8],input[type=time].with-icon[data-v-f2db70a8]{padding-left:.3em}input[type=search][data-v-f2db70a8],input[type=text][data-v-f2db70a8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f2db70a8]{animation-fill-mode:both;animation-name:fadeIn-f2db70a8;-webkit-animation-name:fadeIn-f2db70a8}.fade-in[data-v-f2db70a8],.fade-out[data-v-f2db70a8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f2db70a8]{animation-fill-mode:both;animation-name:fadeOut-f2db70a8;-webkit-animation-name:fadeOut-f2db70a8}.expand[data-v-f2db70a8]{animation-fill-mode:both;animation-name:expand-f2db70a8;-webkit-animation-name:expand-f2db70a8}.expand[data-v-f2db70a8],.shrink[data-v-f2db70a8]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-f2db70a8]{animation-fill-mode:both;animation-name:shrink-f2db70a8;-webkit-animation-name:shrink-f2db70a8}.fold[data-v-f2db70a8]{animation-fill-mode:both;animation-name:fold-f2db70a8;-webkit-animation-name:fold-f2db70a8}.fold[data-v-f2db70a8],.unfold[data-v-f2db70a8]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-f2db70a8]{animation-fill-mode:both;animation-name:unfold-f2db70a8;-webkit-animation-name:unfold-f2db70a8}.dim[data-v-f2db70a8]{animation-fill-mode:both;animation-name:dim-f2db70a8;-webkit-animation-name:dim-f2db70a8}.brighten[data-v-f2db70a8],.dim[data-v-f2db70a8]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-f2db70a8]{animation-fill-mode:both;animation-name:brighten-f2db70a8;-webkit-animation-name:brighten-f2db70a8}@keyframes fadeIn-f2db70a8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f2db70a8{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-f2db70a8{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-f2db70a8{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-f2db70a8{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-f2db70a8{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-f2db70a8{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-f2db70a8{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-f2db70a8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f2db70a8;-webkit-animation-name:glow-f2db70a8}.loop[data-v-f2db70a8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f2db70a8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f2db70a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f2db70a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f2db70a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-f2db70a8]{min-height:calc(100vh - 2em)}button[data-v-f2db70a8]{background:none;border:none;box-shadow:none}button[data-v-f2db70a8]:hover{color:#35b870}hgroup[data-v-f2db70a8]{flex-grow:1}h1[data-v-f2db70a8]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-f2db70a8]{border-radius:.5em .5em 0 0}}h2[data-v-f2db70a8]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-f2db70a8]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-f2db70a8]{margin-top:.5em;padding-top:.5em}section.response[data-v-f2db70a8]{flex-grow:1;max-height:40em}section.response .output[data-v-f2db70a8]{overflow:auto}.buttons[data-v-f2db70a8]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-f2db70a8]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-f2db70a8]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-f2db70a8]{background:#fff}header .buttons[data-v-f2db70a8]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-f2db70a8]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-f2db70a8] .doc blockquote{margin-left:0}textarea[data-v-f2db70a8]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-f2db70a8]:hover{border:1px solid #38cf80}textarea[data-v-f2db70a8]:focus{border:1px solid #32b646}form[data-v-f2db70a8]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-f2db70a8]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-f2db70a8]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-f2db70a8]{width:80%;max-width:60em}}.raw .first-row button[data-v-f2db70a8]{margin-left:0}[data-v-f2db70a8] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-f2db70a8] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-f2db70a8] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-f2db70a8] .args-body .args-list{width:30em}}[data-v-f2db70a8] .args-body .args-list label{display:flex;align-items:center}[data-v-f2db70a8] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-f2db70a8] .args-body .args-list .arg{width:100%}}[data-v-f2db70a8] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-f2db70a8] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-f2db70a8] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-f2db70a8]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-f2db70a8]{flex-direction:column}}.add-arg[data-v-f2db70a8]{width:100%}.add-arg button[data-v-f2db70a8]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-f2db70a8]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-f2db70a8]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-f2db70a8]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-f2db70a8]{width:100%}.doc-container[data-v-f2db70a8],.response[data-v-f2db70a8]{flex-grow:1}.doc-container h2[data-v-f2db70a8],.response h2[data-v-f2db70a8]{display:inline-flex}.doc-container h2 .title[data-v-f2db70a8],.response h2 .title[data-v-f2db70a8]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-f2db70a8],.response h2 .buttons[data-v-f2db70a8]{width:2em}.doc-container h2 .buttons button[data-v-f2db70a8],.response h2 .buttons button[data-v-f2db70a8]{padding:0}.output[data-v-f2db70a8]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-f2db70a8]{color:red}textarea.curl-snippet[data-v-f2db70a8]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.loop-editor[data-v-f2db70a8]{min-width:40em;max-width:100%;display:flex;flex-direction:column;justify-content:center}.loop-editor label[data-v-f2db70a8]{width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;padding:1em}.loop-editor label input[type=text][data-v-f2db70a8]{width:100%;margin-left:1em}.loop-editor label.async[data-v-f2db70a8]{justify-content:flex-start;padding-bottom:0}[data-v-f2db70a8] label{width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center}[data-v-f2db70a8] label input[type=text]{width:100%;margin-left:1em}[data-v-f2db70a8] label.async{justify-content:flex-start;padding-bottom:0}[data-v-f2db70a8] label .autocomplete,[data-v-f2db70a8] label .autocomplete-with-context{width:100%}.col-1[data-v-54198b35]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-1[data-v-54198b35]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-54198b35]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-54198b35]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-54198b35]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-2[data-v-54198b35]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-54198b35]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-54198b35]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-54198b35]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-3[data-v-54198b35]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-54198b35]:first-child{margin-left:26%!important}.col-offset-3[data-v-54198b35]:not(first-child){margin-left:30%!important}.col-4[data-v-54198b35]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-4[data-v-54198b35]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-54198b35]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-54198b35]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-54198b35]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-5[data-v-54198b35]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-54198b35]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-54198b35]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-54198b35]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-6[data-v-54198b35]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-54198b35]:first-child{margin-left:52%!important}.col-offset-6[data-v-54198b35]:not(first-child){margin-left:56%!important}.col-7[data-v-54198b35]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-7[data-v-54198b35]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-54198b35]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-54198b35]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-54198b35]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-8[data-v-54198b35]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-54198b35]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-54198b35]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-54198b35]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-9[data-v-54198b35]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-54198b35]:first-child{margin-left:78%!important}.col-offset-9[data-v-54198b35]:not(first-child){margin-left:82%!important}.col-10[data-v-54198b35]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-10[data-v-54198b35]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-54198b35]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-54198b35]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-54198b35]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-54198b35]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-54198b35]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-1[data-v-54198b35]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-54198b35]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-54198b35]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-2[data-v-54198b35]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-54198b35]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-54198b35]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-3[data-v-54198b35]{margin-left:26%}.col-no-margin-s-3[data-v-54198b35]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-54198b35]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-4[data-v-54198b35]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-54198b35]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-54198b35]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-5[data-v-54198b35]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-54198b35]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-54198b35]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-6[data-v-54198b35]{margin-left:52%}.col-no-margin-s-6[data-v-54198b35]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-54198b35]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-7[data-v-54198b35]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-54198b35]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-54198b35]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-8[data-v-54198b35]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-54198b35]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-54198b35]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-9[data-v-54198b35]{margin-left:78%}.col-no-margin-s-9[data-v-54198b35]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-54198b35]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-10[data-v-54198b35]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-54198b35]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-54198b35]:first-child{margin-left:0}.col-offset-s-11[data-v-54198b35]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-s-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-54198b35]{display:none!important}.s-visible[data-v-54198b35]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-54198b35]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-1[data-v-54198b35]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-54198b35]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-54198b35]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-2[data-v-54198b35]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-54198b35]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-54198b35]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-3[data-v-54198b35]{margin-left:26%}.col-no-margin-m-3[data-v-54198b35]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-54198b35]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-4[data-v-54198b35]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-54198b35]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-54198b35]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-5[data-v-54198b35]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-54198b35]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-54198b35]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-6[data-v-54198b35]{margin-left:52%}.col-no-margin-m-6[data-v-54198b35]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-54198b35]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-7[data-v-54198b35]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-54198b35]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-54198b35]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-8[data-v-54198b35]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-54198b35]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-54198b35]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-9[data-v-54198b35]{margin-left:78%}.col-no-margin-m-9[data-v-54198b35]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-54198b35]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-10[data-v-54198b35]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-54198b35]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-54198b35]:first-child{margin-left:0}.col-offset-m-11[data-v-54198b35]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-m-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-54198b35]{display:none!important}.m-visible[data-v-54198b35]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-54198b35]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-1[data-v-54198b35]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-54198b35]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-54198b35]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-2[data-v-54198b35]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-54198b35]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-54198b35]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-3[data-v-54198b35]{margin-left:26%}.col-no-margin-l-3[data-v-54198b35]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-54198b35]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-4[data-v-54198b35]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-54198b35]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-54198b35]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-5[data-v-54198b35]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-54198b35]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-54198b35]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-6[data-v-54198b35]{margin-left:52%}.col-no-margin-l-6[data-v-54198b35]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-54198b35]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-7[data-v-54198b35]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-54198b35]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-54198b35]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-8[data-v-54198b35]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-54198b35]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-54198b35]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-9[data-v-54198b35]{margin-left:78%}.col-no-margin-l-9[data-v-54198b35]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-54198b35]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-10[data-v-54198b35]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-54198b35]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-54198b35]:first-child{margin-left:0}.col-offset-l-11[data-v-54198b35]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-l-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-54198b35]{display:none!important}.l-visible[data-v-54198b35]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-54198b35]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-1[data-v-54198b35]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-54198b35]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-54198b35]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-2[data-v-54198b35]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-54198b35]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-54198b35]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-3[data-v-54198b35]{margin-left:26%}.col-no-margin-xl-3[data-v-54198b35]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-54198b35]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-4[data-v-54198b35]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-54198b35]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-54198b35]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-5[data-v-54198b35]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-54198b35]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-54198b35]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-6[data-v-54198b35]{margin-left:52%}.col-no-margin-xl-6[data-v-54198b35]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-54198b35]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-7[data-v-54198b35]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-54198b35]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-54198b35]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-8[data-v-54198b35]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-54198b35]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-54198b35]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-9[data-v-54198b35]{margin-left:78%}.col-no-margin-xl-9[data-v-54198b35]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-54198b35]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-10[data-v-54198b35]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-54198b35]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-54198b35]:first-child{margin-left:0}.col-offset-xl-11[data-v-54198b35]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-54198b35]{display:none!important}.xl-visible[data-v-54198b35]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-54198b35]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-1[data-v-54198b35]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-54198b35]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-54198b35]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-2[data-v-54198b35]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-54198b35]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-54198b35]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-3[data-v-54198b35]{margin-left:26%}.col-no-margin-xxl-3[data-v-54198b35]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-54198b35]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-4[data-v-54198b35]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-54198b35]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-54198b35]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-5[data-v-54198b35]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-54198b35]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-54198b35]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-6[data-v-54198b35]{margin-left:52%}.col-no-margin-xxl-6[data-v-54198b35]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-54198b35]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-7[data-v-54198b35]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-54198b35]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-54198b35]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-8[data-v-54198b35]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-54198b35]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-54198b35]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-9[data-v-54198b35]{margin-left:78%}.col-no-margin-xxl-9[data-v-54198b35]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-54198b35]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-10[data-v-54198b35]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-54198b35]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-54198b35]:first-child{margin-left:0}.col-offset-xxl-11[data-v-54198b35]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-54198b35]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-54198b35]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-54198b35]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-54198b35]{display:none!important}.xxl-visible[data-v-54198b35]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-54198b35]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-54198b35]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-54198b35]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-54198b35]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-54198b35]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-54198b35]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-54198b35]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-54198b35]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-54198b35]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-54198b35]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-54198b35]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-54198b35]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-54198b35]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-54198b35]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-54198b35]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-54198b35]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-54198b35]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-54198b35]{display:none!important}}.vertical-center[data-v-54198b35]{display:flex;align-items:center}.horizontal-center[data-v-54198b35]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-54198b35]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-54198b35]{display:none!important}.no-content[data-v-54198b35]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-54198b35]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-54198b35]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-54198b35]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-54198b35]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-54198b35]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-54198b35]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-54198b35],.btn[data-v-54198b35],button[data-v-54198b35]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-54198b35],.btn-default[type=submit][data-v-54198b35],.btn.btn-primary[data-v-54198b35],.btn[type=submit][data-v-54198b35],button.btn-primary[data-v-54198b35],button[type=submit][data-v-54198b35]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-54198b35]:hover,.btn[data-v-54198b35]:hover,button[data-v-54198b35]:hover{color:#35b870}.btn .icon[data-v-54198b35],.btn-default .icon[data-v-54198b35],button .icon[data-v-54198b35]{margin-right:.5em}.btn-default[data-v-54198b35]:disabled,.btn-default[disabled][data-v-54198b35],.btn[data-v-54198b35]:disabled,.btn[disabled][data-v-54198b35],button[data-v-54198b35]:disabled,button[disabled][data-v-54198b35]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-54198b35]{cursor:grab!important}.dragged[data-v-54198b35]{opacity:.5!important}input[type=password][data-v-54198b35],input[type=text][data-v-54198b35]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-54198b35]:focus,input[type=text][data-v-54198b35]:focus{border:1px solid #35b870}button[data-v-54198b35],input[data-v-54198b35]{outline:none}input[type=text][data-v-54198b35]:hover,textarea[data-v-54198b35]:hover{border:1px solid #9cdfb0}ul[data-v-54198b35]{margin:0;padding:0;list-style:none}a[data-v-54198b35]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-54198b35]:hover{color:#35b870}[data-v-54198b35]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-54198b35]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-54198b35]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-54198b35]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-54198b35]{color:#ad1717}body[data-v-54198b35]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-54198b35] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-54198b35] .nav .path{cursor:pointer}.browser[data-v-54198b35] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-54198b35] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-54198b35]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-54198b35]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-54198b35],input[type=number][data-v-54198b35],input[type=password][data-v-54198b35],input[type=search][data-v-54198b35],input[type=text][data-v-54198b35],input[type=time][data-v-54198b35]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-54198b35]:hover,input[type=number][data-v-54198b35]:hover,input[type=password][data-v-54198b35]:hover,input[type=search][data-v-54198b35]:hover,input[type=text][data-v-54198b35]:hover,input[type=time][data-v-54198b35]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-54198b35]:focus,input[type=number][data-v-54198b35]:focus,input[type=password][data-v-54198b35]:focus,input[type=search][data-v-54198b35]:focus,input[type=text][data-v-54198b35]:focus,input[type=time][data-v-54198b35]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-54198b35],input[type=number].with-icon[data-v-54198b35],input[type=password].with-icon[data-v-54198b35],input[type=search].with-icon[data-v-54198b35],input[type=text].with-icon[data-v-54198b35],input[type=time].with-icon[data-v-54198b35]{padding-left:.3em}input[type=search][data-v-54198b35],input[type=text][data-v-54198b35]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-54198b35]{animation-fill-mode:both;animation-name:fadeIn-54198b35;-webkit-animation-name:fadeIn-54198b35}.fade-in[data-v-54198b35],.fade-out[data-v-54198b35]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-54198b35]{animation-fill-mode:both;animation-name:fadeOut-54198b35;-webkit-animation-name:fadeOut-54198b35}.expand[data-v-54198b35]{animation-fill-mode:both;animation-name:expand-54198b35;-webkit-animation-name:expand-54198b35}.expand[data-v-54198b35],.shrink[data-v-54198b35]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-54198b35]{animation-fill-mode:both;animation-name:shrink-54198b35;-webkit-animation-name:shrink-54198b35}.fold[data-v-54198b35]{animation-fill-mode:both;animation-name:fold-54198b35;-webkit-animation-name:fold-54198b35}.fold[data-v-54198b35],.unfold[data-v-54198b35]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-54198b35]{animation-fill-mode:both;animation-name:unfold-54198b35;-webkit-animation-name:unfold-54198b35}.dim[data-v-54198b35]{animation-fill-mode:both;animation-name:dim-54198b35;-webkit-animation-name:dim-54198b35}.brighten[data-v-54198b35],.dim[data-v-54198b35]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-54198b35]{animation-fill-mode:both;animation-name:brighten-54198b35;-webkit-animation-name:brighten-54198b35}@keyframes fadeIn-54198b35{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-54198b35{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-54198b35{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-54198b35{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-54198b35{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-54198b35{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-54198b35{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-54198b35{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-54198b35]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-54198b35;-webkit-animation-name:glow-54198b35}.loop[data-v-54198b35]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-54198b35{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-54198b35]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-54198b35]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-54198b35]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-54198b35]{min-height:calc(100vh - 2em)}button[data-v-54198b35]{background:none;border:none;box-shadow:none}button[data-v-54198b35]:hover{color:#35b870}hgroup[data-v-54198b35]{flex-grow:1}h1[data-v-54198b35]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-54198b35]{border-radius:.5em .5em 0 0}}h2[data-v-54198b35]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-54198b35]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-54198b35]{margin-top:.5em;padding-top:.5em}section.response[data-v-54198b35]{flex-grow:1;max-height:40em}section.response .output[data-v-54198b35]{overflow:auto}.buttons[data-v-54198b35]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-54198b35]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-54198b35]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-54198b35]{background:#fff}header .buttons[data-v-54198b35]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-54198b35]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-54198b35] .doc blockquote{margin-left:0}textarea[data-v-54198b35]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-54198b35]:hover{border:1px solid #38cf80}textarea[data-v-54198b35]:focus{border:1px solid #32b646}form[data-v-54198b35]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-54198b35]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-54198b35]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-54198b35]{width:80%;max-width:60em}}.raw .first-row button[data-v-54198b35]{margin-left:0}[data-v-54198b35] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-54198b35] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-54198b35] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-54198b35] .args-body .args-list{width:30em}}[data-v-54198b35] .args-body .args-list label{display:flex;align-items:center}[data-v-54198b35] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-54198b35] .args-body .args-list .arg{width:100%}}[data-v-54198b35] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-54198b35] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-54198b35] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-54198b35]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-54198b35]{flex-direction:column}}.add-arg[data-v-54198b35]{width:100%}.add-arg button[data-v-54198b35]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-54198b35]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-54198b35]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-54198b35]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-54198b35]{width:100%}.doc-container[data-v-54198b35],.response[data-v-54198b35]{flex-grow:1}.doc-container h2[data-v-54198b35],.response h2[data-v-54198b35]{display:inline-flex}.doc-container h2 .title[data-v-54198b35],.response h2 .title[data-v-54198b35]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-54198b35],.response h2 .buttons[data-v-54198b35]{width:2em}.doc-container h2 .buttons button[data-v-54198b35],.response h2 .buttons button[data-v-54198b35]{padding:0}.output[data-v-54198b35]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-54198b35]{color:red}textarea.curl-snippet[data-v-54198b35]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.action-tile .condition[data-v-54198b35]{font-style:italic}.action-tile .drag-spacer[data-v-54198b35]{height:0}.col-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-73c595c1]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-73c595c1]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-73c595c1]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-73c595c1]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-73c595c1]:first-child{margin-left:26%!important}.col-offset-3[data-v-73c595c1]:not(first-child){margin-left:30%!important}.col-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-73c595c1]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-73c595c1]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-73c595c1]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-73c595c1]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-73c595c1]:first-child{margin-left:52%!important}.col-offset-6[data-v-73c595c1]:not(first-child){margin-left:56%!important}.col-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-73c595c1]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-73c595c1]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-73c595c1]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-73c595c1]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-73c595c1]:first-child{margin-left:78%!important}.col-offset-9[data-v-73c595c1]:not(first-child){margin-left:82%!important}.col-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-73c595c1]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-73c595c1]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-73c595c1]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-73c595c1]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-1[data-v-73c595c1]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-2[data-v-73c595c1]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-3[data-v-73c595c1]{margin-left:26%}.col-no-margin-s-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-4[data-v-73c595c1]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-5[data-v-73c595c1]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-6[data-v-73c595c1]{margin-left:52%}.col-no-margin-s-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-7[data-v-73c595c1]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-8[data-v-73c595c1]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-9[data-v-73c595c1]{margin-left:78%}.col-no-margin-s-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-10[data-v-73c595c1]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-73c595c1]:first-child{margin-left:0}.col-offset-s-11[data-v-73c595c1]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-s-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-73c595c1]{display:none!important}.s-visible[data-v-73c595c1]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-1[data-v-73c595c1]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-2[data-v-73c595c1]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-3[data-v-73c595c1]{margin-left:26%}.col-no-margin-m-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-4[data-v-73c595c1]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-5[data-v-73c595c1]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-6[data-v-73c595c1]{margin-left:52%}.col-no-margin-m-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-7[data-v-73c595c1]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-8[data-v-73c595c1]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-9[data-v-73c595c1]{margin-left:78%}.col-no-margin-m-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-10[data-v-73c595c1]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-73c595c1]:first-child{margin-left:0}.col-offset-m-11[data-v-73c595c1]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-m-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-73c595c1]{display:none!important}.m-visible[data-v-73c595c1]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-1[data-v-73c595c1]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-2[data-v-73c595c1]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-3[data-v-73c595c1]{margin-left:26%}.col-no-margin-l-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-4[data-v-73c595c1]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-5[data-v-73c595c1]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-6[data-v-73c595c1]{margin-left:52%}.col-no-margin-l-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-7[data-v-73c595c1]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-8[data-v-73c595c1]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-9[data-v-73c595c1]{margin-left:78%}.col-no-margin-l-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-10[data-v-73c595c1]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-73c595c1]:first-child{margin-left:0}.col-offset-l-11[data-v-73c595c1]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-l-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-73c595c1]{display:none!important}.l-visible[data-v-73c595c1]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-1[data-v-73c595c1]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-2[data-v-73c595c1]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-3[data-v-73c595c1]{margin-left:26%}.col-no-margin-xl-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-4[data-v-73c595c1]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-5[data-v-73c595c1]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-6[data-v-73c595c1]{margin-left:52%}.col-no-margin-xl-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-7[data-v-73c595c1]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-8[data-v-73c595c1]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-9[data-v-73c595c1]{margin-left:78%}.col-no-margin-xl-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-10[data-v-73c595c1]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xl-11[data-v-73c595c1]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-73c595c1]{display:none!important}.xl-visible[data-v-73c595c1]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-1[data-v-73c595c1]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-73c595c1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-2[data-v-73c595c1]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-73c595c1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-3[data-v-73c595c1]{margin-left:26%}.col-no-margin-xxl-3[data-v-73c595c1]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-4[data-v-73c595c1]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-73c595c1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-5[data-v-73c595c1]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-73c595c1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-6[data-v-73c595c1]{margin-left:52%}.col-no-margin-xxl-6[data-v-73c595c1]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-7[data-v-73c595c1]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-73c595c1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-8[data-v-73c595c1]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-73c595c1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-9[data-v-73c595c1]{margin-left:78%}.col-no-margin-xxl-9[data-v-73c595c1]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-10[data-v-73c595c1]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-73c595c1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-73c595c1]:first-child{margin-left:0}.col-offset-xxl-11[data-v-73c595c1]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-73c595c1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-73c595c1]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-73c595c1]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-73c595c1]{display:none!important}.xxl-visible[data-v-73c595c1]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-73c595c1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-73c595c1]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-73c595c1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-73c595c1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-73c595c1]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-73c595c1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-73c595c1]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-73c595c1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-73c595c1]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-73c595c1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-73c595c1]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-73c595c1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-73c595c1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-73c595c1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-73c595c1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-73c595c1]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-73c595c1]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-73c595c1]{display:none!important}}.vertical-center[data-v-73c595c1]{display:flex;align-items:center}.horizontal-center[data-v-73c595c1]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-73c595c1]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-73c595c1]{display:none!important}.no-content[data-v-73c595c1]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-73c595c1]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-73c595c1]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-73c595c1]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-73c595c1]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-73c595c1]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-73c595c1]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-73c595c1],.btn[data-v-73c595c1],button[data-v-73c595c1]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-73c595c1],.btn-default[type=submit][data-v-73c595c1],.btn.btn-primary[data-v-73c595c1],.btn[type=submit][data-v-73c595c1],button.btn-primary[data-v-73c595c1],button[type=submit][data-v-73c595c1]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-73c595c1]:hover,.btn[data-v-73c595c1]:hover,button[data-v-73c595c1]:hover{color:#35b870}.btn .icon[data-v-73c595c1],.btn-default .icon[data-v-73c595c1],button .icon[data-v-73c595c1]{margin-right:.5em}.btn-default[data-v-73c595c1]:disabled,.btn-default[disabled][data-v-73c595c1],.btn[data-v-73c595c1]:disabled,.btn[disabled][data-v-73c595c1],button[data-v-73c595c1]:disabled,button[disabled][data-v-73c595c1]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-73c595c1]{cursor:grab!important}.dragged[data-v-73c595c1]{opacity:.5!important}input[type=password][data-v-73c595c1],input[type=text][data-v-73c595c1]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-73c595c1]:focus,input[type=text][data-v-73c595c1]:focus{border:1px solid #35b870}button[data-v-73c595c1],input[data-v-73c595c1]{outline:none}input[type=text][data-v-73c595c1]:hover,textarea[data-v-73c595c1]:hover{border:1px solid #9cdfb0}ul[data-v-73c595c1]{margin:0;padding:0;list-style:none}a[data-v-73c595c1]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-73c595c1]:hover{color:#35b870}[data-v-73c595c1]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-73c595c1]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-73c595c1]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-73c595c1]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-73c595c1]{color:#ad1717}body[data-v-73c595c1]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-73c595c1] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-73c595c1] .nav .path{cursor:pointer}.browser[data-v-73c595c1] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-73c595c1] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-73c595c1]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-73c595c1]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-73c595c1],input[type=number][data-v-73c595c1],input[type=password][data-v-73c595c1],input[type=search][data-v-73c595c1],input[type=text][data-v-73c595c1],input[type=time][data-v-73c595c1]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-73c595c1]:hover,input[type=number][data-v-73c595c1]:hover,input[type=password][data-v-73c595c1]:hover,input[type=search][data-v-73c595c1]:hover,input[type=text][data-v-73c595c1]:hover,input[type=time][data-v-73c595c1]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-73c595c1]:focus,input[type=number][data-v-73c595c1]:focus,input[type=password][data-v-73c595c1]:focus,input[type=search][data-v-73c595c1]:focus,input[type=text][data-v-73c595c1]:focus,input[type=time][data-v-73c595c1]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-73c595c1],input[type=number].with-icon[data-v-73c595c1],input[type=password].with-icon[data-v-73c595c1],input[type=search].with-icon[data-v-73c595c1],input[type=text].with-icon[data-v-73c595c1],input[type=time].with-icon[data-v-73c595c1]{padding-left:.3em}input[type=search][data-v-73c595c1],input[type=text][data-v-73c595c1]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-73c595c1]{animation-fill-mode:both;animation-name:fadeIn-73c595c1;-webkit-animation-name:fadeIn-73c595c1}.fade-in[data-v-73c595c1],.fade-out[data-v-73c595c1]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-73c595c1]{animation-fill-mode:both;animation-name:fadeOut-73c595c1;-webkit-animation-name:fadeOut-73c595c1}.expand[data-v-73c595c1]{animation-fill-mode:both;animation-name:expand-73c595c1;-webkit-animation-name:expand-73c595c1}.expand[data-v-73c595c1],.shrink[data-v-73c595c1]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-73c595c1]{animation-fill-mode:both;animation-name:shrink-73c595c1;-webkit-animation-name:shrink-73c595c1}.fold[data-v-73c595c1]{animation-fill-mode:both;animation-name:fold-73c595c1;-webkit-animation-name:fold-73c595c1}.fold[data-v-73c595c1],.unfold[data-v-73c595c1]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-73c595c1]{animation-fill-mode:both;animation-name:unfold-73c595c1;-webkit-animation-name:unfold-73c595c1}.dim[data-v-73c595c1]{animation-fill-mode:both;animation-name:dim-73c595c1;-webkit-animation-name:dim-73c595c1}.brighten[data-v-73c595c1],.dim[data-v-73c595c1]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-73c595c1]{animation-fill-mode:both;animation-name:brighten-73c595c1;-webkit-animation-name:brighten-73c595c1}@keyframes fadeIn-73c595c1{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-73c595c1{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-73c595c1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-73c595c1{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-73c595c1{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-73c595c1{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-73c595c1{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-73c595c1{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-73c595c1]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-73c595c1;-webkit-animation-name:glow-73c595c1}.loop[data-v-73c595c1]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-73c595c1{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-73c595c1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-73c595c1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-73c595c1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-73c595c1]{min-height:calc(100vh - 2em)}button[data-v-73c595c1]{background:none;border:none;box-shadow:none}button[data-v-73c595c1]:hover{color:#35b870}hgroup[data-v-73c595c1]{flex-grow:1}h1[data-v-73c595c1]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-73c595c1]{border-radius:.5em .5em 0 0}}h2[data-v-73c595c1]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-73c595c1]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-73c595c1]{margin-top:.5em;padding-top:.5em}section.response[data-v-73c595c1]{flex-grow:1;max-height:40em}section.response .output[data-v-73c595c1]{overflow:auto}.buttons[data-v-73c595c1]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-73c595c1]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-73c595c1]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-73c595c1]{background:#fff}header .buttons[data-v-73c595c1]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-73c595c1]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-73c595c1] .doc blockquote{margin-left:0}textarea[data-v-73c595c1]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-73c595c1]:hover{border:1px solid #38cf80}textarea[data-v-73c595c1]:focus{border:1px solid #32b646}form[data-v-73c595c1]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-73c595c1]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-73c595c1]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-73c595c1]{width:80%;max-width:60em}}.raw .first-row button[data-v-73c595c1]{margin-left:0}[data-v-73c595c1] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-73c595c1] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-73c595c1] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-73c595c1] .args-body .args-list{width:30em}}[data-v-73c595c1] .args-body .args-list label{display:flex;align-items:center}[data-v-73c595c1] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-73c595c1] .args-body .args-list .arg{width:100%}}[data-v-73c595c1] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-73c595c1] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-73c595c1] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-73c595c1]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-73c595c1]{flex-direction:column}}.add-arg[data-v-73c595c1]{width:100%}.add-arg button[data-v-73c595c1]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-73c595c1]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-73c595c1]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-73c595c1]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-73c595c1]{width:100%}.doc-container[data-v-73c595c1],.response[data-v-73c595c1]{flex-grow:1}.doc-container h2[data-v-73c595c1],.response h2[data-v-73c595c1]{display:inline-flex}.doc-container h2 .title[data-v-73c595c1],.response h2 .title[data-v-73c595c1]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-73c595c1],.response h2 .buttons[data-v-73c595c1]{width:2em}.doc-container h2 .buttons button[data-v-73c595c1],.response h2 .buttons button[data-v-73c595c1]{padding:0}.output[data-v-73c595c1]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-73c595c1]{color:red}textarea.curl-snippet[data-v-73c595c1]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.set-variables-tile .variables[data-v-73c595c1]{margin-left:2.5em}.set-variables-tile .variable .value[data-v-73c595c1]{font-style:italic}.set-variables-tile .drag-spacer[data-v-73c595c1]{height:0}.set-variables-tile .editor[data-v-73c595c1]{display:flex;flex-direction:column;padding:1em}.set-variables-tile .editor .variable[data-v-73c595c1]{display:flex;margin-bottom:1em}.set-variables-tile .editor .variable .value[data-v-73c595c1]{flex:1}.set-variables-tile .editor .variable .value input[type=text][data-v-73c595c1]{width:100%}.set-variables-tile .editor .buttons[data-v-73c595c1]{margin:1em}.col-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-74ca2010]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-74ca2010]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-74ca2010]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-74ca2010]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-74ca2010]:first-child{margin-left:26%!important}.col-offset-3[data-v-74ca2010]:not(first-child){margin-left:30%!important}.col-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-74ca2010]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-74ca2010]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-74ca2010]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-74ca2010]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-74ca2010]:first-child{margin-left:52%!important}.col-offset-6[data-v-74ca2010]:not(first-child){margin-left:56%!important}.col-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-74ca2010]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-74ca2010]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-74ca2010]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-74ca2010]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-74ca2010]:first-child{margin-left:78%!important}.col-offset-9[data-v-74ca2010]:not(first-child){margin-left:82%!important}.col-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-74ca2010]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-74ca2010]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-74ca2010]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-74ca2010]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-1[data-v-74ca2010]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-2[data-v-74ca2010]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-3[data-v-74ca2010]{margin-left:26%}.col-no-margin-s-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-4[data-v-74ca2010]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-5[data-v-74ca2010]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-6[data-v-74ca2010]{margin-left:52%}.col-no-margin-s-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-7[data-v-74ca2010]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-8[data-v-74ca2010]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-9[data-v-74ca2010]{margin-left:78%}.col-no-margin-s-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-10[data-v-74ca2010]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-74ca2010]:first-child{margin-left:0}.col-offset-s-11[data-v-74ca2010]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-s-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-74ca2010]{display:none!important}.s-visible[data-v-74ca2010]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-1[data-v-74ca2010]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-2[data-v-74ca2010]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-3[data-v-74ca2010]{margin-left:26%}.col-no-margin-m-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-4[data-v-74ca2010]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-5[data-v-74ca2010]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-6[data-v-74ca2010]{margin-left:52%}.col-no-margin-m-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-7[data-v-74ca2010]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-8[data-v-74ca2010]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-9[data-v-74ca2010]{margin-left:78%}.col-no-margin-m-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-10[data-v-74ca2010]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-74ca2010]:first-child{margin-left:0}.col-offset-m-11[data-v-74ca2010]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-m-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-74ca2010]{display:none!important}.m-visible[data-v-74ca2010]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-1[data-v-74ca2010]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-2[data-v-74ca2010]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-3[data-v-74ca2010]{margin-left:26%}.col-no-margin-l-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-4[data-v-74ca2010]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-5[data-v-74ca2010]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-6[data-v-74ca2010]{margin-left:52%}.col-no-margin-l-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-7[data-v-74ca2010]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-8[data-v-74ca2010]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-9[data-v-74ca2010]{margin-left:78%}.col-no-margin-l-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-10[data-v-74ca2010]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-74ca2010]:first-child{margin-left:0}.col-offset-l-11[data-v-74ca2010]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-l-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-74ca2010]{display:none!important}.l-visible[data-v-74ca2010]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-1[data-v-74ca2010]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-2[data-v-74ca2010]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-3[data-v-74ca2010]{margin-left:26%}.col-no-margin-xl-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-4[data-v-74ca2010]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-5[data-v-74ca2010]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-6[data-v-74ca2010]{margin-left:52%}.col-no-margin-xl-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-7[data-v-74ca2010]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-8[data-v-74ca2010]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-9[data-v-74ca2010]{margin-left:78%}.col-no-margin-xl-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-10[data-v-74ca2010]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xl-11[data-v-74ca2010]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-74ca2010]{display:none!important}.xl-visible[data-v-74ca2010]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-1[data-v-74ca2010]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-74ca2010]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-2[data-v-74ca2010]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-74ca2010]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-3[data-v-74ca2010]{margin-left:26%}.col-no-margin-xxl-3[data-v-74ca2010]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-4[data-v-74ca2010]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-74ca2010]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-5[data-v-74ca2010]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-74ca2010]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-6[data-v-74ca2010]{margin-left:52%}.col-no-margin-xxl-6[data-v-74ca2010]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-7[data-v-74ca2010]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-74ca2010]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-8[data-v-74ca2010]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-74ca2010]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-9[data-v-74ca2010]{margin-left:78%}.col-no-margin-xxl-9[data-v-74ca2010]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-10[data-v-74ca2010]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-74ca2010]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-74ca2010]:first-child{margin-left:0}.col-offset-xxl-11[data-v-74ca2010]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-74ca2010]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-74ca2010]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-74ca2010]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-74ca2010]{display:none!important}.xxl-visible[data-v-74ca2010]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-74ca2010]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-74ca2010]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-74ca2010]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-74ca2010]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-74ca2010]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-74ca2010]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-74ca2010]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-74ca2010]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-74ca2010]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-74ca2010]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-74ca2010]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-74ca2010]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-74ca2010]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-74ca2010]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-74ca2010]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-74ca2010]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-74ca2010]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-74ca2010]{display:none!important}}.vertical-center[data-v-74ca2010]{display:flex;align-items:center}.horizontal-center[data-v-74ca2010]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-74ca2010]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-74ca2010]{display:none!important}.no-content[data-v-74ca2010]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-74ca2010]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-74ca2010]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-74ca2010]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-74ca2010]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-74ca2010]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-74ca2010]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-74ca2010],.btn[data-v-74ca2010],button[data-v-74ca2010]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-74ca2010],.btn-default[type=submit][data-v-74ca2010],.btn.btn-primary[data-v-74ca2010],.btn[type=submit][data-v-74ca2010],button.btn-primary[data-v-74ca2010],button[type=submit][data-v-74ca2010]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-74ca2010]:hover,.btn[data-v-74ca2010]:hover,button[data-v-74ca2010]:hover{color:#35b870}.btn .icon[data-v-74ca2010],.btn-default .icon[data-v-74ca2010],button .icon[data-v-74ca2010]{margin-right:.5em}.btn-default[data-v-74ca2010]:disabled,.btn-default[disabled][data-v-74ca2010],.btn[data-v-74ca2010]:disabled,.btn[disabled][data-v-74ca2010],button[data-v-74ca2010]:disabled,button[disabled][data-v-74ca2010]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-74ca2010]{cursor:grab!important}.dragged[data-v-74ca2010]{opacity:.5!important}input[type=password][data-v-74ca2010],input[type=text][data-v-74ca2010]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-74ca2010]:focus,input[type=text][data-v-74ca2010]:focus{border:1px solid #35b870}button[data-v-74ca2010],input[data-v-74ca2010]{outline:none}input[type=text][data-v-74ca2010]:hover,textarea[data-v-74ca2010]:hover{border:1px solid #9cdfb0}ul[data-v-74ca2010]{margin:0;padding:0;list-style:none}a[data-v-74ca2010]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-74ca2010]:hover{color:#35b870}[data-v-74ca2010]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-74ca2010]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-74ca2010]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-74ca2010]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-74ca2010]{color:#ad1717}body[data-v-74ca2010]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-74ca2010] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-74ca2010] .nav .path{cursor:pointer}.browser[data-v-74ca2010] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-74ca2010] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-74ca2010]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-74ca2010]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-74ca2010],input[type=number][data-v-74ca2010],input[type=password][data-v-74ca2010],input[type=search][data-v-74ca2010],input[type=text][data-v-74ca2010],input[type=time][data-v-74ca2010]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-74ca2010]:hover,input[type=number][data-v-74ca2010]:hover,input[type=password][data-v-74ca2010]:hover,input[type=search][data-v-74ca2010]:hover,input[type=text][data-v-74ca2010]:hover,input[type=time][data-v-74ca2010]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-74ca2010]:focus,input[type=number][data-v-74ca2010]:focus,input[type=password][data-v-74ca2010]:focus,input[type=search][data-v-74ca2010]:focus,input[type=text][data-v-74ca2010]:focus,input[type=time][data-v-74ca2010]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-74ca2010],input[type=number].with-icon[data-v-74ca2010],input[type=password].with-icon[data-v-74ca2010],input[type=search].with-icon[data-v-74ca2010],input[type=text].with-icon[data-v-74ca2010],input[type=time].with-icon[data-v-74ca2010]{padding-left:.3em}input[type=search][data-v-74ca2010],input[type=text][data-v-74ca2010]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-74ca2010]{animation-fill-mode:both;animation-name:fadeIn-74ca2010;-webkit-animation-name:fadeIn-74ca2010}.fade-in[data-v-74ca2010],.fade-out[data-v-74ca2010]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-74ca2010]{animation-fill-mode:both;animation-name:fadeOut-74ca2010;-webkit-animation-name:fadeOut-74ca2010}.expand[data-v-74ca2010]{animation-fill-mode:both;animation-name:expand-74ca2010;-webkit-animation-name:expand-74ca2010}.expand[data-v-74ca2010],.shrink[data-v-74ca2010]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-74ca2010]{animation-fill-mode:both;animation-name:shrink-74ca2010;-webkit-animation-name:shrink-74ca2010}.fold[data-v-74ca2010]{animation-fill-mode:both;animation-name:fold-74ca2010;-webkit-animation-name:fold-74ca2010}.fold[data-v-74ca2010],.unfold[data-v-74ca2010]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-74ca2010]{animation-fill-mode:both;animation-name:unfold-74ca2010;-webkit-animation-name:unfold-74ca2010}.dim[data-v-74ca2010]{animation-fill-mode:both;animation-name:dim-74ca2010;-webkit-animation-name:dim-74ca2010}.brighten[data-v-74ca2010],.dim[data-v-74ca2010]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-74ca2010]{animation-fill-mode:both;animation-name:brighten-74ca2010;-webkit-animation-name:brighten-74ca2010}@keyframes fadeIn-74ca2010{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-74ca2010{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-74ca2010{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-74ca2010{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-74ca2010{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-74ca2010{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-74ca2010{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-74ca2010{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-74ca2010]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-74ca2010;-webkit-animation-name:glow-74ca2010}.loop[data-v-74ca2010]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-74ca2010{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-74ca2010]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-74ca2010]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-74ca2010]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.actions-list[data-v-74ca2010]{display:flex;flex-direction:row}.actions-list .actions[data-v-74ca2010]{flex:1}.actions-list .actions .action[data-v-74ca2010]{margin:0}.actions-list .actions .add-action-container[data-v-74ca2010]{margin-bottom:.5em}.actions-list .spacer[data-v-74ca2010]{height:1em}.actions-list .indent-spacers[data-v-74ca2010]{display:flex;flex-direction:row}.actions-list .indent-spacers .indent-spacer[data-v-74ca2010]{width:1.5em;height:100%;margin:0;cursor:pointer}.actions-list .indent-spacers .indent-spacer .side[data-v-74ca2010]{width:.75em;height:100%}.actions-list .indent-spacers .indent-spacer .side.left[data-v-74ca2010]{border-right:1px solid #32b646}.actions-list .indent-spacers .indent-spacer:hover .side.left[data-v-74ca2010]{border-right:1px solid #2a5ab7}.actions-list .add-buttons-expander[data-v-74ca2010]{width:100%;height:1em;margin:-.5em 0 .5em 0;display:flex}.actions-list .add-buttons-expander button[data-v-74ca2010]{width:100%;height:100%;background:none;display:flex;align-items:center;justify-content:center;border:none;margin:0;padding:.5em 0 0 0}.actions-list .add-buttons-expander button[data-v-74ca2010]:hover{color:#35b870} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1054.1651fcc4.css b/platypush/backend/http/webapp/dist/static/css/1054.1651fcc4.css new file mode 100644 index 0000000000..a21bc96c56 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1054.1651fcc4.css @@ -0,0 +1 @@ +.col-1[data-v-03ac0f14],.entity .head .icon[data-v-03ac0f14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-03ac0f14]:first-child,.entity .head .icon[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-03ac0f14]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-03ac0f14]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-03ac0f14]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-03ac0f14]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-03ac0f14],.entity .head .value-and-toggler[data-v-03ac0f14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-03ac0f14]:first-child,.entity .head .value-and-toggler[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-03ac0f14]:first-child{margin-left:26%!important}.col-offset-3[data-v-03ac0f14]:not(first-child){margin-left:30%!important}.col-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-03ac0f14]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-03ac0f14]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-03ac0f14]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-03ac0f14]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-03ac0f14]:first-child{margin-left:52%!important}.col-offset-6[data-v-03ac0f14]:not(first-child){margin-left:56%!important}.col-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-03ac0f14]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-03ac0f14]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-03ac0f14]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-03ac0f14]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-03ac0f14]:first-child{margin-left:78%!important}.col-offset-9[data-v-03ac0f14]:not(first-child){margin-left:82%!important}.col-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-03ac0f14]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-03ac0f14]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-03ac0f14]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-03ac0f14]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-1[data-v-03ac0f14]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-2[data-v-03ac0f14]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-03ac0f14],.entity .head .value-container[data-v-03ac0f14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-03ac0f14]:first-child,.entity .head .value-container[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-3[data-v-03ac0f14]{margin-left:26%}.col-no-margin-s-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-4[data-v-03ac0f14]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-5[data-v-03ac0f14]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-6[data-v-03ac0f14]{margin-left:52%}.col-no-margin-s-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-7[data-v-03ac0f14]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-03ac0f14],.entity .head .label[data-v-03ac0f14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-03ac0f14]:first-child,.entity .head .label[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-8[data-v-03ac0f14]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-9[data-v-03ac0f14]{margin-left:78%}.col-no-margin-s-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-10[data-v-03ac0f14]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-s-11[data-v-03ac0f14]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-03ac0f14],.attributes .child .value[data-v-03ac0f14],.col-s-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-03ac0f14]:first-child,.attributes .child .value[data-v-03ac0f14]:first-child,.col-s-12[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-s-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-03ac0f14]{display:none!important}.s-visible[data-v-03ac0f14]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-1[data-v-03ac0f14]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-03ac0f14],.entity .head .value-container[data-v-03ac0f14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-03ac0f14]:first-child,.entity .head .value-container[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-2[data-v-03ac0f14]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-3[data-v-03ac0f14]{margin-left:26%}.col-no-margin-m-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-4[data-v-03ac0f14]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-5[data-v-03ac0f14]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-03ac0f14],.attributes .child .value[data-v-03ac0f14],.col-m-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-03ac0f14]:first-child,.attributes .child .value[data-v-03ac0f14]:first-child,.col-m-6[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-6[data-v-03ac0f14]{margin-left:52%}.col-no-margin-m-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-7[data-v-03ac0f14]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-8[data-v-03ac0f14]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-03ac0f14],.entity .head .label[data-v-03ac0f14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-03ac0f14]:first-child,.entity .head .label[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-9[data-v-03ac0f14]{margin-left:78%}.col-no-margin-m-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-10[data-v-03ac0f14]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-m-11[data-v-03ac0f14]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-m-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-03ac0f14]{display:none!important}.m-visible[data-v-03ac0f14]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-1[data-v-03ac0f14]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-2[data-v-03ac0f14]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-3[data-v-03ac0f14]{margin-left:26%}.col-no-margin-l-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-4[data-v-03ac0f14]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-5[data-v-03ac0f14]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-6[data-v-03ac0f14]{margin-left:52%}.col-no-margin-l-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-7[data-v-03ac0f14]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-8[data-v-03ac0f14]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-9[data-v-03ac0f14]{margin-left:78%}.col-no-margin-l-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-10[data-v-03ac0f14]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-l-11[data-v-03ac0f14]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-l-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-03ac0f14]{display:none!important}.l-visible[data-v-03ac0f14]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-1[data-v-03ac0f14]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-2[data-v-03ac0f14]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-3[data-v-03ac0f14]{margin-left:26%}.col-no-margin-xl-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-4[data-v-03ac0f14]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-5[data-v-03ac0f14]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-6[data-v-03ac0f14]{margin-left:52%}.col-no-margin-xl-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-7[data-v-03ac0f14]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-8[data-v-03ac0f14]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-9[data-v-03ac0f14]{margin-left:78%}.col-no-margin-xl-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-10[data-v-03ac0f14]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xl-11[data-v-03ac0f14]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-03ac0f14]{display:none!important}.xl-visible[data-v-03ac0f14]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-1[data-v-03ac0f14]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-03ac0f14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-2[data-v-03ac0f14]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-03ac0f14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-3[data-v-03ac0f14]{margin-left:26%}.col-no-margin-xxl-3[data-v-03ac0f14]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-4[data-v-03ac0f14]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-03ac0f14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-5[data-v-03ac0f14]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-03ac0f14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-6[data-v-03ac0f14]{margin-left:52%}.col-no-margin-xxl-6[data-v-03ac0f14]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-7[data-v-03ac0f14]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-03ac0f14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-8[data-v-03ac0f14]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-03ac0f14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-9[data-v-03ac0f14]{margin-left:78%}.col-no-margin-xxl-9[data-v-03ac0f14]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-10[data-v-03ac0f14]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-03ac0f14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-03ac0f14]:first-child{margin-left:0}.col-offset-xxl-11[data-v-03ac0f14]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-03ac0f14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-03ac0f14]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-03ac0f14]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-03ac0f14]{display:none!important}.xxl-visible[data-v-03ac0f14]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-03ac0f14]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-03ac0f14]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-03ac0f14]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-03ac0f14]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-03ac0f14]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-03ac0f14]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-03ac0f14]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-03ac0f14]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-03ac0f14]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-03ac0f14]{display:none!important}}.vertical-center[data-v-03ac0f14]{display:flex;align-items:center}.horizontal-center[data-v-03ac0f14]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-03ac0f14],.pull-right[data-v-03ac0f14]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-03ac0f14]{display:none!important}.no-content[data-v-03ac0f14]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-03ac0f14]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-03ac0f14]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-03ac0f14]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-03ac0f14]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-03ac0f14]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-03ac0f14]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-03ac0f14],.btn[data-v-03ac0f14],button[data-v-03ac0f14]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-03ac0f14],.btn-default[type=submit][data-v-03ac0f14],.btn.btn-primary[data-v-03ac0f14],.btn[type=submit][data-v-03ac0f14],button.btn-primary[data-v-03ac0f14],button[type=submit][data-v-03ac0f14]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-03ac0f14]:hover,.btn[data-v-03ac0f14]:hover,button[data-v-03ac0f14]:hover{color:#35b870}.btn .icon[data-v-03ac0f14],.btn-default .icon[data-v-03ac0f14],button .icon[data-v-03ac0f14]{margin-right:.5em}.btn-default[data-v-03ac0f14]:disabled,.btn-default[disabled][data-v-03ac0f14],.btn[data-v-03ac0f14]:disabled,.btn[disabled][data-v-03ac0f14],button[data-v-03ac0f14]:disabled,button[disabled][data-v-03ac0f14]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-03ac0f14]{cursor:grab!important}.dragged[data-v-03ac0f14]{opacity:.5!important}input[type=password][data-v-03ac0f14],input[type=text][data-v-03ac0f14]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-03ac0f14]:focus,input[type=text][data-v-03ac0f14]:focus{border:1px solid #35b870}button[data-v-03ac0f14],input[data-v-03ac0f14]{outline:none}input[type=text][data-v-03ac0f14]:hover,textarea[data-v-03ac0f14]:hover{border:1px solid #9cdfb0}ul[data-v-03ac0f14]{margin:0;padding:0;list-style:none}a[data-v-03ac0f14]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-03ac0f14]:hover{color:#35b870}[data-v-03ac0f14]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-03ac0f14]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-03ac0f14]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-03ac0f14]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-03ac0f14]{color:#ad1717}body[data-v-03ac0f14]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-03ac0f14] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-03ac0f14] .nav .path{cursor:pointer}.browser[data-v-03ac0f14] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-03ac0f14] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-03ac0f14]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-03ac0f14]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-03ac0f14],input[type=number][data-v-03ac0f14],input[type=password][data-v-03ac0f14],input[type=search][data-v-03ac0f14],input[type=text][data-v-03ac0f14],input[type=time][data-v-03ac0f14]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-03ac0f14]:hover,input[type=number][data-v-03ac0f14]:hover,input[type=password][data-v-03ac0f14]:hover,input[type=search][data-v-03ac0f14]:hover,input[type=text][data-v-03ac0f14]:hover,input[type=time][data-v-03ac0f14]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-03ac0f14]:focus,input[type=number][data-v-03ac0f14]:focus,input[type=password][data-v-03ac0f14]:focus,input[type=search][data-v-03ac0f14]:focus,input[type=text][data-v-03ac0f14]:focus,input[type=time][data-v-03ac0f14]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-03ac0f14],input[type=number].with-icon[data-v-03ac0f14],input[type=password].with-icon[data-v-03ac0f14],input[type=search].with-icon[data-v-03ac0f14],input[type=text].with-icon[data-v-03ac0f14],input[type=time].with-icon[data-v-03ac0f14]{padding-left:.3em}input[type=search][data-v-03ac0f14],input[type=text][data-v-03ac0f14]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-03ac0f14],.fade-in[data-v-03ac0f14]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-03ac0f14;-webkit-animation-name:fadeIn-03ac0f14}.fade-out[data-v-03ac0f14]{animation-fill-mode:both;animation-name:fadeOut-03ac0f14;-webkit-animation-name:fadeOut-03ac0f14}.expand[data-v-03ac0f14],.fade-out[data-v-03ac0f14]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-03ac0f14]{animation-fill-mode:both;animation-name:expand-03ac0f14;-webkit-animation-name:expand-03ac0f14}.shrink[data-v-03ac0f14]{animation-fill-mode:both;animation-name:shrink-03ac0f14;-webkit-animation-name:shrink-03ac0f14}.fold[data-v-03ac0f14],.shrink[data-v-03ac0f14]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-03ac0f14]{animation-fill-mode:both;animation-name:fold-03ac0f14;-webkit-animation-name:fold-03ac0f14}.unfold[data-v-03ac0f14]{animation-fill-mode:both;animation-name:unfold-03ac0f14;-webkit-animation-name:unfold-03ac0f14}.dim[data-v-03ac0f14],.unfold[data-v-03ac0f14]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-03ac0f14]{animation-fill-mode:both;animation-name:dim-03ac0f14;-webkit-animation-name:dim-03ac0f14}.brighten[data-v-03ac0f14]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-03ac0f14;-webkit-animation-name:brighten-03ac0f14}@keyframes fadeIn-03ac0f14{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-03ac0f14{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-03ac0f14{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-03ac0f14{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-03ac0f14{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-03ac0f14{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-03ac0f14{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-03ac0f14{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-03ac0f14]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-03ac0f14;-webkit-animation-name:glow-03ac0f14}.loop[data-v-03ac0f14]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-03ac0f14{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-03ac0f14]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-03ac0f14]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-03ac0f14]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-03ac0f14]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-03ac0f14]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-03ac0f14]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-03ac0f14]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-03ac0f14]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-03ac0f14]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-03ac0f14]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-03ac0f14]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-03ac0f14]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-03ac0f14]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-03ac0f14]{margin-right:.5em}.entity .head .icon[data-v-03ac0f14]:hover{color:#35b870}.entity .head .label[data-v-03ac0f14]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-03ac0f14]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-03ac0f14]:hover{color:#35b870}.entity .head .value[data-v-03ac0f14]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-03ac0f14]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-03ac0f14]{margin-right:2.5em}.entity .head .value-container[data-v-03ac0f14]{min-width:7em}.entity .head .unit[data-v-03ac0f14]{margin-left:.2em}.entity .head .pull-right[data-v-03ac0f14],.entity .head .value-container[data-v-03ac0f14]{padding-right:.5em}.entity .head .pull-right[data-v-03ac0f14] .power-switch,.entity .head .value-container[data-v-03ac0f14] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-03ac0f14]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-03ac0f14]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-03ac0f14]:hover{color:#35b870}.collapse-toggler[data-v-03ac0f14]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-03ac0f14]:hover{color:#35b870}.attributes .child[data-v-03ac0f14]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-03ac0f14]{flex-direction:column}}.attributes .child[data-v-03ac0f14]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-03ac0f14]:hover{cursor:auto}.attributes .child.head[data-v-03ac0f14]{cursor:pointer}.attributes .child.head[data-v-03ac0f14]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-03ac0f14]{font-weight:700}.attributes .child .value[data-v-03ac0f14]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-03ac0f14]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-03ac0f14]:last-child,.entity-container-wrapper.with-children[data-v-03ac0f14]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-03ac0f14]{animation:blink-animation-03ac0f14 1s steps(20,start)}.alarm-container .head .collapse-toggler[data-v-03ac0f14],.alarm-container .head .icon[data-v-03ac0f14]{width:2em}.alarm-container .head .label[data-v-03ac0f14],.alarm-container .head .value-and-toggler[data-v-03ac0f14]{min-width:calc(50% - 3em);max-width:calc(50% - 3em)}.alarm-container .head .label[data-v-03ac0f14]{margin-left:1em}.alarm-container .head .value-and-toggler[data-v-03ac0f14]{text-align:right}.alarm-container .head .value .date[data-v-03ac0f14]{font-weight:400}.alarm-container .body[data-v-03ac0f14]{padding:0}.alarm-container .body .child[data-v-03ac0f14]{min-height:3em;display:flex;align-items:center;padding:0 1em}.alarm-container .body .child[data-v-03ac0f14]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.alarm-container .body .child .label[data-v-03ac0f14]{width:100%;font-weight:700}.alarm-container .body .value[data-v-03ac0f14]{text-align:right}.alarm-container .body .value input[data-v-03ac0f14]{width:1em;height:1em}.alarm-container .body .buttons .value[data-v-03ac0f14]{text-align:center}.alarm-container .body .buttons button[data-v-03ac0f14]{border:1px solid #ddd;border-radius:.25em;padding:0 1em;margin:.5em;height:3em}.alarm-container .remove[data-v-03ac0f14]{color:#ad1717;cursor:pointer}.alarm-container .remove label[data-v-03ac0f14]{cursor:pointer}.alarm-container .edit.child[data-v-03ac0f14]{flex-direction:column;padding:0}.alarm-container .edit .head[data-v-03ac0f14]{width:100%;padding:0 1em;cursor:pointer;display:flex;align-items:center;border-top:1px solid #ddd;box-shadow:0 3px 2px -1px silver}.alarm-container .edit .head .name[data-v-03ac0f14]{display:flex;align-items:center}.alarm-container[data-v-03ac0f14] .modal-container{cursor:default}.alarm-container[data-v-03ac0f14] .modal-container .content .body{width:100%}.alarm-container[data-v-03ac0f14] .modal-container .alarm-running-modal{min-width:90vw;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1em}@media screen and (min-width:769px){.alarm-container[data-v-03ac0f14] .modal-container .alarm-running-modal{min-width:40em}}.alarm-container[data-v-03ac0f14] .modal-container .alarm-running-modal .icon{font-size:3.5em;color:#32b646}.alarm-container[data-v-03ac0f14] .modal-container .alarm-running-modal .title{width:100%;display:flex;justify-content:center;margin-bottom:1em}.alarm-container[data-v-03ac0f14] .modal-container .alarm-running-modal .buttons{width:100%;display:flex;justify-content:center;align-items:center}.alarm-container[data-v-03ac0f14] .modal-container .alarm-running-modal .buttons label{width:50%;text-align:center;cursor:pointer}.alarm-container[data-v-03ac0f14] .modal-container .alarm-running-modal .buttons button{margin:.5em}.blink[data-v-03ac0f14]{animation:blink-animation-03ac0f14 2s infinite}@keyframes blink-animation-03ac0f14{0%{opacity:1}50%{opacity:.1}to{opacity:1}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1259.705b87de.css b/platypush/backend/http/webapp/dist/static/css/1259.705b87de.css deleted file mode 100644 index 5586b78c5b..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/1259.705b87de.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6437b841]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6437b841]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6437b841]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6437b841]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6437b841]:first-child{margin-left:26%!important}.col-offset-3[data-v-6437b841]:not(first-child){margin-left:30%!important}.col-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6437b841]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6437b841]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6437b841]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6437b841]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6437b841]:first-child{margin-left:52%!important}.col-offset-6[data-v-6437b841]:not(first-child){margin-left:56%!important}.col-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6437b841]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6437b841]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6437b841]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6437b841]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6437b841]:first-child{margin-left:78%!important}.col-offset-9[data-v-6437b841]:not(first-child){margin-left:82%!important}.col-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6437b841]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6437b841]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6437b841]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6437b841]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-3[data-v-6437b841]{margin-left:26%}.col-no-margin-s-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-6[data-v-6437b841]{margin-left:52%}.col-no-margin-s-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-9[data-v-6437b841]{margin-left:78%}.col-no-margin-s-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6437b841]{display:none!important}.s-visible[data-v-6437b841]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-3[data-v-6437b841]{margin-left:26%}.col-no-margin-m-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-6[data-v-6437b841]{margin-left:52%}.col-no-margin-m-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-9[data-v-6437b841]{margin-left:78%}.col-no-margin-m-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6437b841]{display:none!important}.m-visible[data-v-6437b841]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-3[data-v-6437b841]{margin-left:26%}.col-no-margin-l-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-6[data-v-6437b841]{margin-left:52%}.col-no-margin-l-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-9[data-v-6437b841]{margin-left:78%}.col-no-margin-l-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6437b841]{display:none!important}.l-visible[data-v-6437b841]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-3[data-v-6437b841]{margin-left:26%}.col-no-margin-xl-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-6[data-v-6437b841]{margin-left:52%}.col-no-margin-xl-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-9[data-v-6437b841]{margin-left:78%}.col-no-margin-xl-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6437b841]{display:none!important}.xl-visible[data-v-6437b841]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6437b841]{margin-left:26%}.col-no-margin-xxl-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6437b841]{margin-left:52%}.col-no-margin-xxl-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6437b841]{margin-left:78%}.col-no-margin-xxl-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6437b841]{display:none!important}.xxl-visible[data-v-6437b841]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6437b841]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6437b841]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6437b841]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6437b841]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6437b841]{display:none!important}}.vertical-center[data-v-6437b841]{display:flex;align-items:center}.horizontal-center[data-v-6437b841]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6437b841]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6437b841]{display:none!important}.no-content[data-v-6437b841]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6437b841]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6437b841]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6437b841]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6437b841]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6437b841]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6437b841]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6437b841],.btn[data-v-6437b841],button[data-v-6437b841]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6437b841],.btn-default[type=submit][data-v-6437b841],.btn.btn-primary[data-v-6437b841],.btn[type=submit][data-v-6437b841],button.btn-primary[data-v-6437b841],button[type=submit][data-v-6437b841]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6437b841],.btn-default .icon[data-v-6437b841],button .icon[data-v-6437b841]{margin-right:.5em}input[type=password][data-v-6437b841],input[type=text][data-v-6437b841]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6437b841]:focus,input[type=text][data-v-6437b841]:focus{border:1px solid #35b870}button[data-v-6437b841],input[data-v-6437b841]{outline:none}input[type=text][data-v-6437b841]:hover,textarea[data-v-6437b841]:hover{border:1px solid #9cdfb0}ul[data-v-6437b841]{margin:0;padding:0;list-style:none}a[data-v-6437b841]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6437b841]:hover{color:#35b870}[data-v-6437b841]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6437b841]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6437b841]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6437b841]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6437b841]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6437b841] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6437b841] .nav .path{cursor:pointer}.browser[data-v-6437b841] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6437b841] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-6437b841]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6437b841],input[type=number][data-v-6437b841],input[type=password][data-v-6437b841],input[type=search][data-v-6437b841],input[type=text][data-v-6437b841],input[type=time][data-v-6437b841]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-6437b841]:hover,input[type=number][data-v-6437b841]:hover,input[type=password][data-v-6437b841]:hover,input[type=search][data-v-6437b841]:hover,input[type=text][data-v-6437b841]:hover,input[type=time][data-v-6437b841]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6437b841]:focus,input[type=number][data-v-6437b841]:focus,input[type=password][data-v-6437b841]:focus,input[type=search][data-v-6437b841]:focus,input[type=text][data-v-6437b841]:focus,input[type=time][data-v-6437b841]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6437b841],input[type=number].with-icon[data-v-6437b841],input[type=password].with-icon[data-v-6437b841],input[type=search].with-icon[data-v-6437b841],input[type=text].with-icon[data-v-6437b841],input[type=time].with-icon[data-v-6437b841]{padding-left:.3em}input[type=search][data-v-6437b841],input[type=text][data-v-6437b841]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6437b841]{animation-fill-mode:both;animation-name:fadeIn-6437b841;-webkit-animation-name:fadeIn-6437b841}.fade-in[data-v-6437b841],.fade-out[data-v-6437b841]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6437b841]{animation-fill-mode:both;animation-name:fadeOut-6437b841;-webkit-animation-name:fadeOut-6437b841}@keyframes fadeIn-6437b841{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6437b841{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-6437b841]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6437b841;-webkit-animation-name:glow-6437b841}.loop[data-v-6437b841]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6437b841{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6437b841]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6437b841]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6437b841]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zigbee-container .info-body .row[data-v-6437b841]:nth-child(2n),.zigbee-container .params .row[data-v-6437b841]:nth-child(2n){background:#f0f0f0}.zigbee-container .info-body .row[data-v-6437b841]:nth-child(odd),.zigbee-container .params .row[data-v-6437b841]:nth-child(odd){background:#fff}.zigbee-container .info-body .row[data-v-6437b841],.zigbee-container .view .row[data-v-6437b841]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zigbee-container .info-body .row[data-v-6437b841]:hover,.zigbee-container .view .row[data-v-6437b841]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item.selected[data-v-6437b841],.zigbee-container .view .item.selected[data-v-6437b841]{box-shadow:0 2px 4px 0 #bbb}.zigbee-container .info-body .item .name.header[data-v-6437b841],.zigbee-container .view .item .name.header[data-v-6437b841]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zigbee-container .info-body .item .name.header.selected[data-v-6437b841],.zigbee-container .view .item .name.header.selected[data-v-6437b841]{border-radius:1.5em;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item .title[data-v-6437b841],.zigbee-container .view .item .title[data-v-6437b841]{font-size:1.2em;padding-left:.5em}.zigbee-container .info-body .item .buttons[data-v-6437b841],.zigbee-container .view .item .buttons[data-v-6437b841]{margin:0}.zigbee-container .info-body .item[data-v-6437b841]:hover,.zigbee-container .view .item[data-v-6437b841]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item:hover.selected[data-v-6437b841],.zigbee-container .view .item:hover.selected[data-v-6437b841]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item[data-v-6437b841]:not(:last-child),.zigbee-container .view .item[data-v-6437b841]:not(:last-child){border-bottom:1px solid #ddd}.zigbee-container .info-body .item[data-v-6437b841]:first-child,.zigbee-container .view .item[data-v-6437b841]:first-child{border-radius:1.5em 1.5em 0 0}.zigbee-container .info-body .item[data-v-6437b841]:last-child,.zigbee-container .view .item[data-v-6437b841]:last-child{border-radius:0 0 1.5em 1.5em}.zigbee-container .info-body .item .params .section[data-v-6437b841],.zigbee-container .view .item .params .section[data-v-6437b841]{padding:1.5em 0 0 0}.zigbee-container .info-body .item .value .param-name[data-v-6437b841],.zigbee-container .view .item .value .param-name[data-v-6437b841]{display:inline-block}.zigbee-container .info-body .item .value .param-name .name[data-v-6437b841],.zigbee-container .view .item .value .param-name .name[data-v-6437b841]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zigbee-container .info-body .item .value .param-name .name[data-v-6437b841]:before,.zigbee-container .view .item .value .param-name .name[data-v-6437b841]:before{content:"["}.zigbee-container .info-body .item .value .param-name .name[data-v-6437b841]:after,.zigbee-container .view .item .value .param-name .name[data-v-6437b841]:after{content:"]"}.zigbee-container .info-body .item .value .param-name .unit[data-v-6437b841],.zigbee-container .view .item .value .param-name .unit[data-v-6437b841]{font-size:.8em}.zigbee-container .info-body .item .value .param-name .unit[data-v-6437b841]:before,.zigbee-container .view .item .value .param-name .unit[data-v-6437b841]:before{content:" [unit: "}.zigbee-container .info-body .item .value .param-name .unit[data-v-6437b841]:after,.zigbee-container .view .item .value .param-name .unit[data-v-6437b841]:after{content:"]"}.zigbee-container .info-body .item .value .param-value label[data-v-6437b841],.zigbee-container .view .item .value .param-value label[data-v-6437b841]{width:90%}.zigbee-container .info-body .item .value .param-value input[data-v-6437b841],.zigbee-container .view .item .value .param-value input[data-v-6437b841]{width:100%}.zigbee-container .info-body .item button[data-v-6437b841],.zigbee-container .view .item button[data-v-6437b841]{border:0;background:none;padding:0 .5em}.zigbee-container .info-body .item button[data-v-6437b841]:hover,.zigbee-container .view .item button[data-v-6437b841]:hover{color:#35b870}@media screen and (max-width:769px){.zigbee-container .info-body .item .name-edit[data-v-6437b841],.zigbee-container .view .item .name-edit[data-v-6437b841]{justify-content:left}}@media screen and (min-width:769px){.zigbee-container .info-body .item .name-edit[data-v-6437b841],.zigbee-container .view .item .name-edit[data-v-6437b841]{justify-content:right}}.zigbee-container .info-body .item .name-edit[data-v-6437b841],.zigbee-container .view .item .name-edit[data-v-6437b841]{width:100%;display:inline-flex;align-items:center}.zigbee-container .info-body .item .name-edit form[data-v-6437b841],.zigbee-container .view .item .name-edit form[data-v-6437b841]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zigbee-container .info-body .item .name-edit .buttons[data-v-6437b841],.zigbee-container .view .item .name-edit .buttons[data-v-6437b841]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zigbee-container .info-body .item .name-edit form[data-v-6437b841],.zigbee-container .view .item .name-edit form[data-v-6437b841]{background:none;padding:0;border:none;box-shadow:none}.zigbee-container .row[data-v-6437b841]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zigbee-container .row .param-name[data-v-6437b841]{width:100%;font-weight:700}.zigbee-container .row .param-value[data-v-6437b841]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zigbee-container .row .param-name[data-v-6437b841]{width:40%}.zigbee-container .row .param-value[data-v-6437b841]{width:58%;justify-content:right}}.zigbee-container .row .param-name[data-v-6437b841]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zigbee-container .row .param-value[data-v-6437b841]{display:inline-flex;align-items:center}.zigbee-container .row .param-value .value-edit[data-v-6437b841]{display:flex;align-items:center}.zigbee-container .row .param-value .value-data[data-v-6437b841]{display:inline-block;font-weight:700}.zigbee-container .row .param-value .slider-container[data-v-6437b841]{display:flex;align-items:center}.zigbee-container .row .param-value .unit[data-v-6437b841]{font-size:.8em;margin-left:1em;display:inline}.zigbee-container .row .param-value select[data-v-6437b841]{width:100%}.zigbee-container .row .param-value .numeric input.slider[data-v-6437b841]{text-align:left}.zigbee-container .row .param-value .numeric input[type=text][data-v-6437b841]{text-align:right;width:100%}.zigbee-container .row .param-value .numeric .row[data-v-6437b841],.zigbee-container .row .param-value .numeric .row[data-v-6437b841]:hover{background:none}.zigbee-container .row .param-value .numeric .value-max[data-v-6437b841],.zigbee-container .row .param-value .numeric .value-min[data-v-6437b841]{width:50%;font-size:.85em;opacity:.75}.zigbee-container .row .param-value .numeric .value-min[data-v-6437b841]{text-align:left}.zigbee-container .row .param-value .numeric .value-max[data-v-6437b841]{text-align:right}.zigbee-container select[data-v-6437b841]{width:100%}.groups-modal .content[data-v-6437b841]{min-width:20em;margin:-2em;padding:0;border:none;box-shadow:none}.groups-modal .group[data-v-6437b841]{width:100%;display:flex;align-items:center;padding:.5em 1em!important}.groups-modal .group input[type=checkbox][data-v-6437b841]{margin-right:1em}.groups-modal .groups[data-v-6437b841]{width:100%;height:calc(100% - 3.5em);display:flex;justify-content:center;align-items:center;overflow:auto}.groups-modal .footer[data-v-6437b841]{width:100%;height:3.5em;display:flex;justify-content:right;align-items:center;padding:0;background:#f8f8f8;border-top:1px solid #ddd}@media screen and (max-width:769px){.section.actions .row[data-v-6437b841]{flex-direction:row-reverse;justify-content:left}.section.actions .row .param-name[data-v-6437b841]{width:auto}.section.actions .row .param-value[data-v-6437b841]{width:1.5em;margin-right:.5em}}.col-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7667f7ba]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7667f7ba]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7667f7ba]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7667f7ba]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7667f7ba]:first-child{margin-left:26%!important}.col-offset-3[data-v-7667f7ba]:not(first-child){margin-left:30%!important}.col-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7667f7ba]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7667f7ba]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7667f7ba]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7667f7ba]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7667f7ba]:first-child{margin-left:52%!important}.col-offset-6[data-v-7667f7ba]:not(first-child){margin-left:56%!important}.col-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7667f7ba]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7667f7ba]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7667f7ba]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7667f7ba]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7667f7ba]:first-child{margin-left:78%!important}.col-offset-9[data-v-7667f7ba]:not(first-child){margin-left:82%!important}.col-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7667f7ba]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7667f7ba]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7667f7ba]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7667f7ba]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-s-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-s-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-s-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7667f7ba]{display:none!important}.s-visible[data-v-7667f7ba]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-m-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-m-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-m-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7667f7ba]{display:none!important}.m-visible[data-v-7667f7ba]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-l-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-l-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-l-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7667f7ba]{display:none!important}.l-visible[data-v-7667f7ba]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-xl-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-xl-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-xl-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7667f7ba]{display:none!important}.xl-visible[data-v-7667f7ba]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-xxl-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-xxl-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-xxl-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7667f7ba]{display:none!important}.xxl-visible[data-v-7667f7ba]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7667f7ba]{display:none!important}}.vertical-center[data-v-7667f7ba]{display:flex;align-items:center}.horizontal-center[data-v-7667f7ba]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7667f7ba]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7667f7ba]{display:none!important}.no-content[data-v-7667f7ba]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7667f7ba]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7667f7ba]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7667f7ba]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7667f7ba]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7667f7ba]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7667f7ba]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7667f7ba],.btn[data-v-7667f7ba],button[data-v-7667f7ba]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7667f7ba],.btn-default[type=submit][data-v-7667f7ba],.btn.btn-primary[data-v-7667f7ba],.btn[type=submit][data-v-7667f7ba],button.btn-primary[data-v-7667f7ba],button[type=submit][data-v-7667f7ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7667f7ba],.btn-default .icon[data-v-7667f7ba],button .icon[data-v-7667f7ba]{margin-right:.5em}input[type=password][data-v-7667f7ba],input[type=text][data-v-7667f7ba]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7667f7ba]:focus,input[type=text][data-v-7667f7ba]:focus{border:1px solid #35b870}button[data-v-7667f7ba],input[data-v-7667f7ba]{outline:none}input[type=text][data-v-7667f7ba]:hover,textarea[data-v-7667f7ba]:hover{border:1px solid #9cdfb0}ul[data-v-7667f7ba]{margin:0;padding:0;list-style:none}a[data-v-7667f7ba]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7667f7ba]:hover{color:#35b870}[data-v-7667f7ba]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7667f7ba]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7667f7ba]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7667f7ba]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7667f7ba]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7667f7ba] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7667f7ba] .nav .path{cursor:pointer}.browser[data-v-7667f7ba] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7667f7ba] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7667f7ba]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7667f7ba],input[type=number][data-v-7667f7ba],input[type=password][data-v-7667f7ba],input[type=search][data-v-7667f7ba],input[type=text][data-v-7667f7ba],input[type=time][data-v-7667f7ba]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7667f7ba]:hover,input[type=number][data-v-7667f7ba]:hover,input[type=password][data-v-7667f7ba]:hover,input[type=search][data-v-7667f7ba]:hover,input[type=text][data-v-7667f7ba]:hover,input[type=time][data-v-7667f7ba]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7667f7ba]:focus,input[type=number][data-v-7667f7ba]:focus,input[type=password][data-v-7667f7ba]:focus,input[type=search][data-v-7667f7ba]:focus,input[type=text][data-v-7667f7ba]:focus,input[type=time][data-v-7667f7ba]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7667f7ba],input[type=number].with-icon[data-v-7667f7ba],input[type=password].with-icon[data-v-7667f7ba],input[type=search].with-icon[data-v-7667f7ba],input[type=text].with-icon[data-v-7667f7ba],input[type=time].with-icon[data-v-7667f7ba]{padding-left:.3em}input[type=search][data-v-7667f7ba],input[type=text][data-v-7667f7ba]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7667f7ba]{animation-fill-mode:both;animation-name:fadeIn-7667f7ba;-webkit-animation-name:fadeIn-7667f7ba}.fade-in[data-v-7667f7ba],.fade-out[data-v-7667f7ba]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7667f7ba]{animation-fill-mode:both;animation-name:fadeOut-7667f7ba;-webkit-animation-name:fadeOut-7667f7ba}@keyframes fadeIn-7667f7ba{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7667f7ba{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7667f7ba]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7667f7ba;-webkit-animation-name:glow-7667f7ba}.loop[data-v-7667f7ba]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7667f7ba{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7667f7ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7667f7ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7667f7ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zigbee-container .info-body .row[data-v-7667f7ba]:nth-child(2n),.zigbee-container .params .row[data-v-7667f7ba]:nth-child(2n){background:#f0f0f0}.zigbee-container .info-body .row[data-v-7667f7ba]:nth-child(odd),.zigbee-container .params .row[data-v-7667f7ba]:nth-child(odd){background:#fff}.zigbee-container .info-body .row[data-v-7667f7ba],.zigbee-container .view .row[data-v-7667f7ba]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zigbee-container .info-body .row[data-v-7667f7ba]:hover,.zigbee-container .view .row[data-v-7667f7ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item.selected[data-v-7667f7ba],.zigbee-container .view .item.selected[data-v-7667f7ba]{box-shadow:0 2px 4px 0 #bbb}.zigbee-container .info-body .item .name.header[data-v-7667f7ba],.zigbee-container .view .item .name.header[data-v-7667f7ba]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zigbee-container .info-body .item .name.header.selected[data-v-7667f7ba],.zigbee-container .view .item .name.header.selected[data-v-7667f7ba]{border-radius:1.5em;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item .title[data-v-7667f7ba],.zigbee-container .view .item .title[data-v-7667f7ba]{font-size:1.2em;padding-left:.5em}.zigbee-container .info-body .item .buttons[data-v-7667f7ba],.zigbee-container .view .item .buttons[data-v-7667f7ba]{margin:0}.zigbee-container .info-body .item[data-v-7667f7ba]:hover,.zigbee-container .view .item[data-v-7667f7ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item:hover.selected[data-v-7667f7ba],.zigbee-container .view .item:hover.selected[data-v-7667f7ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item[data-v-7667f7ba]:not(:last-child),.zigbee-container .view .item[data-v-7667f7ba]:not(:last-child){border-bottom:1px solid #ddd}.zigbee-container .info-body .item[data-v-7667f7ba]:first-child,.zigbee-container .view .item[data-v-7667f7ba]:first-child{border-radius:1.5em 1.5em 0 0}.zigbee-container .info-body .item[data-v-7667f7ba]:last-child,.zigbee-container .view .item[data-v-7667f7ba]:last-child{border-radius:0 0 1.5em 1.5em}.zigbee-container .info-body .item .params .section[data-v-7667f7ba],.zigbee-container .view .item .params .section[data-v-7667f7ba]{padding:1.5em 0 0 0}.zigbee-container .info-body .item .value .param-name[data-v-7667f7ba],.zigbee-container .view .item .value .param-name[data-v-7667f7ba]{display:inline-block}.zigbee-container .info-body .item .value .param-name .name[data-v-7667f7ba],.zigbee-container .view .item .value .param-name .name[data-v-7667f7ba]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zigbee-container .info-body .item .value .param-name .name[data-v-7667f7ba]:before,.zigbee-container .view .item .value .param-name .name[data-v-7667f7ba]:before{content:"["}.zigbee-container .info-body .item .value .param-name .name[data-v-7667f7ba]:after,.zigbee-container .view .item .value .param-name .name[data-v-7667f7ba]:after{content:"]"}.zigbee-container .info-body .item .value .param-name .unit[data-v-7667f7ba],.zigbee-container .view .item .value .param-name .unit[data-v-7667f7ba]{font-size:.8em}.zigbee-container .info-body .item .value .param-name .unit[data-v-7667f7ba]:before,.zigbee-container .view .item .value .param-name .unit[data-v-7667f7ba]:before{content:" [unit: "}.zigbee-container .info-body .item .value .param-name .unit[data-v-7667f7ba]:after,.zigbee-container .view .item .value .param-name .unit[data-v-7667f7ba]:after{content:"]"}.zigbee-container .info-body .item .value .param-value label[data-v-7667f7ba],.zigbee-container .view .item .value .param-value label[data-v-7667f7ba]{width:90%}.zigbee-container .info-body .item .value .param-value input[data-v-7667f7ba],.zigbee-container .view .item .value .param-value input[data-v-7667f7ba]{width:100%}.zigbee-container .info-body .item button[data-v-7667f7ba],.zigbee-container .view .item button[data-v-7667f7ba]{border:0;background:none;padding:0 .5em}.zigbee-container .info-body .item button[data-v-7667f7ba]:hover,.zigbee-container .view .item button[data-v-7667f7ba]:hover{color:#35b870}@media screen and (max-width:769px){.zigbee-container .info-body .item .name-edit[data-v-7667f7ba],.zigbee-container .view .item .name-edit[data-v-7667f7ba]{justify-content:left}}@media screen and (min-width:769px){.zigbee-container .info-body .item .name-edit[data-v-7667f7ba],.zigbee-container .view .item .name-edit[data-v-7667f7ba]{justify-content:right}}.zigbee-container .info-body .item .name-edit[data-v-7667f7ba],.zigbee-container .view .item .name-edit[data-v-7667f7ba]{width:100%;display:inline-flex;align-items:center}.zigbee-container .info-body .item .name-edit form[data-v-7667f7ba],.zigbee-container .view .item .name-edit form[data-v-7667f7ba]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zigbee-container .info-body .item .name-edit .buttons[data-v-7667f7ba],.zigbee-container .view .item .name-edit .buttons[data-v-7667f7ba]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zigbee-container .info-body .item .name-edit form[data-v-7667f7ba],.zigbee-container .view .item .name-edit form[data-v-7667f7ba]{background:none;padding:0;border:none;box-shadow:none}.zigbee-container .row[data-v-7667f7ba]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zigbee-container .row .param-name[data-v-7667f7ba]{width:100%;font-weight:700}.zigbee-container .row .param-value[data-v-7667f7ba]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zigbee-container .row .param-name[data-v-7667f7ba]{width:40%}.zigbee-container .row .param-value[data-v-7667f7ba]{width:58%;justify-content:right}}.zigbee-container .row .param-name[data-v-7667f7ba]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zigbee-container .row .param-value[data-v-7667f7ba]{display:inline-flex;align-items:center}.zigbee-container .row .param-value .value-edit[data-v-7667f7ba]{display:flex;align-items:center}.zigbee-container .row .param-value .value-data[data-v-7667f7ba]{display:inline-block;font-weight:700}.zigbee-container .row .param-value .slider-container[data-v-7667f7ba]{display:flex;align-items:center}.zigbee-container .row .param-value .unit[data-v-7667f7ba]{font-size:.8em;margin-left:1em;display:inline}.zigbee-container .row .param-value select[data-v-7667f7ba]{width:100%}.zigbee-container .row .param-value .numeric input.slider[data-v-7667f7ba]{text-align:left}.zigbee-container .row .param-value .numeric input[type=text][data-v-7667f7ba]{text-align:right;width:100%}.zigbee-container .row .param-value .numeric .row[data-v-7667f7ba],.zigbee-container .row .param-value .numeric .row[data-v-7667f7ba]:hover{background:none}.zigbee-container .row .param-value .numeric .value-max[data-v-7667f7ba],.zigbee-container .row .param-value .numeric .value-min[data-v-7667f7ba]{width:50%;font-size:.85em;opacity:.75}.zigbee-container .row .param-value .numeric .value-min[data-v-7667f7ba]{text-align:left}.zigbee-container .row .param-value .numeric .value-max[data-v-7667f7ba]{text-align:right}.zigbee-container select[data-v-7667f7ba]{width:100%}.section[data-v-7667f7ba]{padding-left:1em!important}form[data-v-7667f7ba]{margin:0;padding:0;border:none;box-shadow:none}form .row[data-v-7667f7ba]{background:none!important}form .row[data-v-7667f7ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important}form .row .label[data-v-7667f7ba]{margin-left:.75em;font-weight:400}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zigbee-container .info-body .row:nth-child(2n),.zigbee-container .params .row:nth-child(2n){background:#f0f0f0}.zigbee-container .info-body .row:nth-child(odd),.zigbee-container .params .row:nth-child(odd){background:#fff}.zigbee-container .info-body .row,.zigbee-container .view .row{display:flex;align-items:center;border-radius:1em;padding:.3em}.zigbee-container .info-body .row:hover,.zigbee-container .view .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item.selected,.zigbee-container .view .item.selected{box-shadow:0 2px 4px 0 #bbb}.zigbee-container .info-body .item .name.header,.zigbee-container .view .item .name.header{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zigbee-container .info-body .item .name.header.selected,.zigbee-container .view .item .name.header.selected{border-radius:1.5em;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item .title,.zigbee-container .view .item .title{font-size:1.2em;padding-left:.5em}.zigbee-container .info-body .item .buttons,.zigbee-container .view .item .buttons{margin:0}.zigbee-container .info-body .item:hover,.zigbee-container .view .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item:hover.selected,.zigbee-container .view .item:hover.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item:not(:last-child),.zigbee-container .view .item:not(:last-child){border-bottom:1px solid #ddd}.zigbee-container .info-body .item:first-child,.zigbee-container .view .item:first-child{border-radius:1.5em 1.5em 0 0}.zigbee-container .info-body .item:last-child,.zigbee-container .view .item:last-child{border-radius:0 0 1.5em 1.5em}.zigbee-container .info-body .item .params .section,.zigbee-container .view .item .params .section{padding:1.5em 0 0 0}.zigbee-container .info-body .item .value .param-name,.zigbee-container .view .item .value .param-name{display:inline-block}.zigbee-container .info-body .item .value .param-name .name,.zigbee-container .view .item .value .param-name .name{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zigbee-container .info-body .item .value .param-name .name:before,.zigbee-container .view .item .value .param-name .name:before{content:"["}.zigbee-container .info-body .item .value .param-name .name:after,.zigbee-container .view .item .value .param-name .name:after{content:"]"}.zigbee-container .info-body .item .value .param-name .unit,.zigbee-container .view .item .value .param-name .unit{font-size:.8em}.zigbee-container .info-body .item .value .param-name .unit:before,.zigbee-container .view .item .value .param-name .unit:before{content:" [unit: "}.zigbee-container .info-body .item .value .param-name .unit:after,.zigbee-container .view .item .value .param-name .unit:after{content:"]"}.zigbee-container .info-body .item .value .param-value label,.zigbee-container .view .item .value .param-value label{width:90%}.zigbee-container .info-body .item .value .param-value input,.zigbee-container .view .item .value .param-value input{width:100%}.zigbee-container .info-body .item button,.zigbee-container .view .item button{border:0;background:none;padding:0 .5em}.zigbee-container .info-body .item button:hover,.zigbee-container .view .item button:hover{color:#35b870}@media screen and (max-width:769px){.zigbee-container .info-body .item .name-edit,.zigbee-container .view .item .name-edit{justify-content:left}}@media screen and (min-width:769px){.zigbee-container .info-body .item .name-edit,.zigbee-container .view .item .name-edit{justify-content:right}}.zigbee-container .info-body .item .name-edit,.zigbee-container .view .item .name-edit{width:100%;display:inline-flex;align-items:center}.zigbee-container .info-body .item .name-edit form,.zigbee-container .view .item .name-edit form{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zigbee-container .info-body .item .name-edit .buttons,.zigbee-container .view .item .name-edit .buttons{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zigbee-container .info-body .item .name-edit form,.zigbee-container .view .item .name-edit form{background:none;padding:0;border:none;box-shadow:none}.zigbee-container .row{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zigbee-container .row .param-name{width:100%;font-weight:700}.zigbee-container .row .param-value{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zigbee-container .row .param-name{width:40%}.zigbee-container .row .param-value{width:58%;justify-content:right}}.zigbee-container .row .param-name{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zigbee-container .row .param-value{display:inline-flex;align-items:center}.zigbee-container .row .param-value .value-edit{display:flex;align-items:center}.zigbee-container .row .param-value .value-data{display:inline-block;font-weight:700}.zigbee-container .row .param-value .slider-container{display:flex;align-items:center}.zigbee-container .row .param-value .unit{font-size:.8em;margin-left:1em;display:inline}.zigbee-container .row .param-value select{width:100%}.zigbee-container .row .param-value .numeric input.slider{text-align:left}.zigbee-container .row .param-value .numeric input[type=text]{text-align:right;width:100%}.zigbee-container .row .param-value .numeric .row,.zigbee-container .row .param-value .numeric .row:hover{background:none}.zigbee-container .row .param-value .numeric .value-max,.zigbee-container .row .param-value .numeric .value-min{width:50%;font-size:.85em;opacity:.75}.zigbee-container .row .param-value .numeric .value-min{text-align:left}.zigbee-container .row .param-value .numeric .value-max{text-align:right}.zigbee-container select{width:100%}.zigbee-container{width:100%;height:100%;padding:0;display:flex;flex-direction:column;align-items:center;overflow:auto}.zigbee-container .no-items{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zigbee-container .view-options{display:flex;width:100%;height:3.5em;justify-content:space-between;align-items:center;padding:0;background:#f9fafa;border-bottom:1px solid #ddd;box-shadow:0 3px 2px -1px silver}.zigbee-container .view-options .view-selector{display:inline-flex;padding-left:.5em}.zigbee-container .view-options .view-selector label{width:100%}.zigbee-container .view-options .buttons{display:inline-flex;margin:0}.zigbee-container .view-options .buttons button{background:none;border:none;padding:0 .75em}.zigbee-container .view-options .buttons button:hover{color:#35b870}.zigbee-container .view-options .buttons .dropdown .item{padding:.5em 2em .5em .5em}.zigbee-container .view-container{width:100%;height:calc(100% - 3.5em);display:flex;justify-content:center;overflow:auto}.zigbee-container .view{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:769px){.zigbee-container .view{width:100%}}@media screen and (min-width:769px){.zigbee-container .view{width:100%}}@media screen and (min-width:1024px){.zigbee-container .view{min-width:400pt;max-width:750pt;border-radius:1.5em}.zigbee-container .view-container{padding-top:2em}}.zigbee-container .params{background:#fff;padding-bottom:1em}.zigbee-container .params .section{display:flex;flex-direction:column;padding:0 1em}.zigbee-container .params .section:not(:first-child){padding-top:1em}.zigbee-container .params .section .header{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zigbee-container .btn-value-name-edit{padding:0}.zigbee-container .modal .section .header{background:none;padding:.5em 0}.zigbee-container .modal .section .body{padding:0}.zigbee-container .modal .network-info{min-width:600pt}.zigbee-container .error{color:#a00}.zigbee-container .device .actions .row,.zigbee-container .group .actions .row{cursor:pointer}.zigbee-container .device form,.zigbee-container .group form{margin-bottom:0}.zigbee-container .device .param-value input[type=text],.zigbee-container .group .param-value input[type=text]{text-align:right}.zigbee-container .info-body{margin:-2em;padding:0}.zigbee-container .info-body .row{padding:1em .5em}.zigbee-container .info-body .row .param-name{font-weight:700}@media screen and (max-width:769px){.zigbee-container .info-body{width:100vw}}@media screen and (min-width:769px){.zigbee-container .info-body{width:80vw}}@media screen and (min-width:1024px){.zigbee-container .info-body{width:60vw;max-width:30em}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1327.a8aa3d69.css b/platypush/backend/http/webapp/dist/static/css/1327.a8aa3d69.css deleted file mode 100644 index 33c25fa360..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/1327.a8aa3d69.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-0131d440]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-1[data-v-0131d440]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0131d440]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0131d440]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0131d440]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-2[data-v-0131d440]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0131d440]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0131d440]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0131d440]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-3[data-v-0131d440]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0131d440]:first-child{margin-left:26%!important}.col-offset-3[data-v-0131d440]:not(first-child){margin-left:30%!important}.col-4[data-v-0131d440]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-4[data-v-0131d440]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0131d440]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0131d440]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0131d440]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-5[data-v-0131d440]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0131d440]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0131d440]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0131d440]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-6[data-v-0131d440]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0131d440]:first-child{margin-left:52%!important}.col-offset-6[data-v-0131d440]:not(first-child){margin-left:56%!important}.col-7[data-v-0131d440]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-7[data-v-0131d440]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0131d440]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0131d440]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0131d440]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-8[data-v-0131d440]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0131d440]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0131d440]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0131d440]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-9[data-v-0131d440]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0131d440]:first-child{margin-left:78%!important}.col-offset-9[data-v-0131d440]:not(first-child){margin-left:82%!important}.col-10[data-v-0131d440]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-10[data-v-0131d440]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0131d440]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0131d440]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0131d440]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0131d440]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0131d440]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-1[data-v-0131d440]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0131d440]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0131d440]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-2[data-v-0131d440]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0131d440]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0131d440]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-3[data-v-0131d440]{margin-left:26%}.col-no-margin-s-3[data-v-0131d440]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0131d440]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-4[data-v-0131d440]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0131d440]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0131d440]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-5[data-v-0131d440]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0131d440]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0131d440]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-6[data-v-0131d440]{margin-left:52%}.col-no-margin-s-6[data-v-0131d440]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0131d440]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-7[data-v-0131d440]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0131d440]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0131d440]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-8[data-v-0131d440]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0131d440]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0131d440]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-9[data-v-0131d440]{margin-left:78%}.col-no-margin-s-9[data-v-0131d440]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0131d440]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-10[data-v-0131d440]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0131d440]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0131d440]:first-child{margin-left:0}.col-offset-s-11[data-v-0131d440]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0131d440]{display:none!important}.s-visible[data-v-0131d440]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0131d440]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-1[data-v-0131d440]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0131d440]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0131d440]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-2[data-v-0131d440]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0131d440]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0131d440]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-3[data-v-0131d440]{margin-left:26%}.col-no-margin-m-3[data-v-0131d440]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0131d440]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-4[data-v-0131d440]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0131d440]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0131d440]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-5[data-v-0131d440]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0131d440]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0131d440]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-6[data-v-0131d440]{margin-left:52%}.col-no-margin-m-6[data-v-0131d440]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0131d440]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-7[data-v-0131d440]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0131d440]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0131d440]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-8[data-v-0131d440]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0131d440]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0131d440]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-9[data-v-0131d440]{margin-left:78%}.col-no-margin-m-9[data-v-0131d440]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0131d440]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-10[data-v-0131d440]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0131d440]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0131d440]:first-child{margin-left:0}.col-offset-m-11[data-v-0131d440]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0131d440]{display:none!important}.m-visible[data-v-0131d440]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0131d440]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-1[data-v-0131d440]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0131d440]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0131d440]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-2[data-v-0131d440]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0131d440]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0131d440]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-3[data-v-0131d440]{margin-left:26%}.col-no-margin-l-3[data-v-0131d440]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0131d440]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-4[data-v-0131d440]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0131d440]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0131d440]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-5[data-v-0131d440]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0131d440]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0131d440]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-6[data-v-0131d440]{margin-left:52%}.col-no-margin-l-6[data-v-0131d440]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0131d440]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-7[data-v-0131d440]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0131d440]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0131d440]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-8[data-v-0131d440]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0131d440]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0131d440]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-9[data-v-0131d440]{margin-left:78%}.col-no-margin-l-9[data-v-0131d440]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0131d440]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-10[data-v-0131d440]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0131d440]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0131d440]:first-child{margin-left:0}.col-offset-l-11[data-v-0131d440]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0131d440]{display:none!important}.l-visible[data-v-0131d440]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0131d440]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-1[data-v-0131d440]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0131d440]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0131d440]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-2[data-v-0131d440]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0131d440]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0131d440]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-3[data-v-0131d440]{margin-left:26%}.col-no-margin-xl-3[data-v-0131d440]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0131d440]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-4[data-v-0131d440]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0131d440]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0131d440]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-5[data-v-0131d440]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0131d440]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0131d440]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-6[data-v-0131d440]{margin-left:52%}.col-no-margin-xl-6[data-v-0131d440]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0131d440]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-7[data-v-0131d440]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0131d440]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0131d440]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-8[data-v-0131d440]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0131d440]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0131d440]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-9[data-v-0131d440]{margin-left:78%}.col-no-margin-xl-9[data-v-0131d440]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0131d440]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-10[data-v-0131d440]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0131d440]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0131d440]:first-child{margin-left:0}.col-offset-xl-11[data-v-0131d440]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0131d440]{display:none!important}.xl-visible[data-v-0131d440]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0131d440]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0131d440]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0131d440]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0131d440]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0131d440]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0131d440]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0131d440]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0131d440]{margin-left:26%}.col-no-margin-xxl-3[data-v-0131d440]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0131d440]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0131d440]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0131d440]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0131d440]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0131d440]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0131d440]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0131d440]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0131d440]{margin-left:52%}.col-no-margin-xxl-6[data-v-0131d440]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0131d440]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0131d440]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0131d440]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0131d440]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0131d440]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0131d440]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0131d440]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0131d440]{margin-left:78%}.col-no-margin-xxl-9[data-v-0131d440]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0131d440]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0131d440]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0131d440]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0131d440]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0131d440]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0131d440]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0131d440]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0131d440]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0131d440]{display:none!important}.xxl-visible[data-v-0131d440]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0131d440]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0131d440]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0131d440]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0131d440]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0131d440]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0131d440]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0131d440]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0131d440]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0131d440]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0131d440]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0131d440]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0131d440]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0131d440]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0131d440]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0131d440]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0131d440]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0131d440]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0131d440]{display:none!important}}.vertical-center[data-v-0131d440]{display:flex;align-items:center}.horizontal-center[data-v-0131d440]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0131d440]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0131d440]{display:none!important}.no-content[data-v-0131d440]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0131d440]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0131d440]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0131d440]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0131d440]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0131d440]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0131d440]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0131d440],.btn[data-v-0131d440],button[data-v-0131d440]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0131d440],.btn-default[type=submit][data-v-0131d440],.btn.btn-primary[data-v-0131d440],.btn[type=submit][data-v-0131d440],button.btn-primary[data-v-0131d440],button[type=submit][data-v-0131d440]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0131d440],.btn-default .icon[data-v-0131d440],button .icon[data-v-0131d440]{margin-right:.5em}input[type=password][data-v-0131d440],input[type=text][data-v-0131d440]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0131d440]:focus,input[type=text][data-v-0131d440]:focus{border:1px solid #35b870}button[data-v-0131d440],input[data-v-0131d440]{outline:none}input[type=text][data-v-0131d440]:hover,textarea[data-v-0131d440]:hover{border:1px solid #9cdfb0}ul[data-v-0131d440]{margin:0;padding:0;list-style:none}a[data-v-0131d440]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0131d440]:hover{color:#35b870}[data-v-0131d440]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0131d440]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0131d440]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0131d440]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0131d440]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0131d440] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0131d440] .nav .path{cursor:pointer}.browser[data-v-0131d440] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0131d440] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0131d440]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0131d440],input[type=number][data-v-0131d440],input[type=password][data-v-0131d440],input[type=search][data-v-0131d440],input[type=text][data-v-0131d440],input[type=time][data-v-0131d440]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0131d440]:hover,input[type=number][data-v-0131d440]:hover,input[type=password][data-v-0131d440]:hover,input[type=search][data-v-0131d440]:hover,input[type=text][data-v-0131d440]:hover,input[type=time][data-v-0131d440]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0131d440]:focus,input[type=number][data-v-0131d440]:focus,input[type=password][data-v-0131d440]:focus,input[type=search][data-v-0131d440]:focus,input[type=text][data-v-0131d440]:focus,input[type=time][data-v-0131d440]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0131d440],input[type=number].with-icon[data-v-0131d440],input[type=password].with-icon[data-v-0131d440],input[type=search].with-icon[data-v-0131d440],input[type=text].with-icon[data-v-0131d440],input[type=time].with-icon[data-v-0131d440]{padding-left:.3em}input[type=search][data-v-0131d440],input[type=text][data-v-0131d440]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0131d440]{animation-fill-mode:both;animation-name:fadeIn-0131d440;-webkit-animation-name:fadeIn-0131d440}.fade-in[data-v-0131d440],.fade-out[data-v-0131d440]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0131d440]{animation-fill-mode:both;animation-name:fadeOut-0131d440;-webkit-animation-name:fadeOut-0131d440}@keyframes fadeIn-0131d440{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0131d440{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0131d440]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0131d440;-webkit-animation-name:glow-0131d440}.loop[data-v-0131d440]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0131d440{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0131d440]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0131d440]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0131d440]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-feed[data-v-0131d440]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1391.3a28e845.css b/platypush/backend/http/webapp/dist/static/css/1391.e253d1d5.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/1391.3a28e845.css rename to platypush/backend/http/webapp/dist/static/css/1391.e253d1d5.css index 10385a3a38..9bd7946050 100644 --- a/platypush/backend/http/webapp/dist/static/css/1391.3a28e845.css +++ b/platypush/backend/http/webapp/dist/static/css/1391.e253d1d5.css @@ -1 +1 @@ -.col-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-ca42eb9c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-ca42eb9c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-ca42eb9c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-ca42eb9c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-ca42eb9c]:first-child{margin-left:26%!important}.col-offset-3[data-v-ca42eb9c]:not(first-child){margin-left:30%!important}.col-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-ca42eb9c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-ca42eb9c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-ca42eb9c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-ca42eb9c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-ca42eb9c]:first-child{margin-left:52%!important}.col-offset-6[data-v-ca42eb9c]:not(first-child){margin-left:56%!important}.col-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-ca42eb9c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-ca42eb9c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-ca42eb9c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-ca42eb9c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-ca42eb9c]:first-child{margin-left:78%!important}.col-offset-9[data-v-ca42eb9c]:not(first-child){margin-left:82%!important}.col-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-ca42eb9c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-ca42eb9c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-ca42eb9c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-ca42eb9c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-s-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-s-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-s-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-ca42eb9c]{display:none!important}.s-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-m-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-m-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-m-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-ca42eb9c]{display:none!important}.m-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-l-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-l-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-l-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-ca42eb9c]{display:none!important}.l-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-xl-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-xl-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-xl-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-ca42eb9c]{display:none!important}.xl-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-xxl-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-xxl-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-xxl-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-ca42eb9c]{display:none!important}.xxl-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-ca42eb9c]{display:none!important}}.vertical-center[data-v-ca42eb9c]{display:flex;align-items:center}.horizontal-center[data-v-ca42eb9c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-ca42eb9c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-ca42eb9c]{display:none!important}.no-content[data-v-ca42eb9c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-ca42eb9c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-ca42eb9c],.btn[data-v-ca42eb9c],button[data-v-ca42eb9c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-ca42eb9c],.btn-default[type=submit][data-v-ca42eb9c],.btn.btn-primary[data-v-ca42eb9c],.btn[type=submit][data-v-ca42eb9c],button.btn-primary[data-v-ca42eb9c],button[type=submit][data-v-ca42eb9c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-ca42eb9c],.btn-default .icon[data-v-ca42eb9c],button .icon[data-v-ca42eb9c]{margin-right:.5em}input[type=password][data-v-ca42eb9c],input[type=text][data-v-ca42eb9c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-ca42eb9c]:focus,input[type=text][data-v-ca42eb9c]:focus{border:1px solid #35b870}button[data-v-ca42eb9c],input[data-v-ca42eb9c]{outline:none}input[type=text][data-v-ca42eb9c]:hover,textarea[data-v-ca42eb9c]:hover{border:1px solid #9cdfb0}ul[data-v-ca42eb9c]{margin:0;padding:0;list-style:none}a[data-v-ca42eb9c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-ca42eb9c]:hover{color:#35b870}[data-v-ca42eb9c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-ca42eb9c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-ca42eb9c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-ca42eb9c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-ca42eb9c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-ca42eb9c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-ca42eb9c] .nav .path{cursor:pointer}.browser[data-v-ca42eb9c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-ca42eb9c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-ca42eb9c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-ca42eb9c],input[type=number][data-v-ca42eb9c],input[type=password][data-v-ca42eb9c],input[type=search][data-v-ca42eb9c],input[type=text][data-v-ca42eb9c],input[type=time][data-v-ca42eb9c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-ca42eb9c]:hover,input[type=number][data-v-ca42eb9c]:hover,input[type=password][data-v-ca42eb9c]:hover,input[type=search][data-v-ca42eb9c]:hover,input[type=text][data-v-ca42eb9c]:hover,input[type=time][data-v-ca42eb9c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-ca42eb9c]:focus,input[type=number][data-v-ca42eb9c]:focus,input[type=password][data-v-ca42eb9c]:focus,input[type=search][data-v-ca42eb9c]:focus,input[type=text][data-v-ca42eb9c]:focus,input[type=time][data-v-ca42eb9c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-ca42eb9c],input[type=number].with-icon[data-v-ca42eb9c],input[type=password].with-icon[data-v-ca42eb9c],input[type=search].with-icon[data-v-ca42eb9c],input[type=text].with-icon[data-v-ca42eb9c],input[type=time].with-icon[data-v-ca42eb9c]{padding-left:.3em}input[type=search][data-v-ca42eb9c],input[type=text][data-v-ca42eb9c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:fadeIn-ca42eb9c;-webkit-animation-name:fadeIn-ca42eb9c}.fade-in[data-v-ca42eb9c],.fade-out[data-v-ca42eb9c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:fadeOut-ca42eb9c;-webkit-animation-name:fadeOut-ca42eb9c}@keyframes fadeIn-ca42eb9c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-ca42eb9c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-ca42eb9c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-ca42eb9c;-webkit-animation-name:glow-ca42eb9c}.loop[data-v-ca42eb9c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-ca42eb9c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-ca42eb9c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-ca42eb9c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-ca42eb9c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.date-time .date[data-v-ca42eb9c]{font-size:1.3em}.date-time .time[data-v-ca42eb9c]{font-size:2em} \ No newline at end of file +.col-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-ca42eb9c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-ca42eb9c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-ca42eb9c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-ca42eb9c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-ca42eb9c]:first-child{margin-left:26%!important}.col-offset-3[data-v-ca42eb9c]:not(first-child){margin-left:30%!important}.col-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-ca42eb9c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-ca42eb9c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-ca42eb9c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-ca42eb9c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-ca42eb9c]:first-child{margin-left:52%!important}.col-offset-6[data-v-ca42eb9c]:not(first-child){margin-left:56%!important}.col-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-ca42eb9c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-ca42eb9c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-ca42eb9c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-ca42eb9c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-ca42eb9c]:first-child{margin-left:78%!important}.col-offset-9[data-v-ca42eb9c]:not(first-child){margin-left:82%!important}.col-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-ca42eb9c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-ca42eb9c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-ca42eb9c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-ca42eb9c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-s-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-s-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-s-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-s-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-ca42eb9c]{display:none!important}.s-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-m-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-m-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-m-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-m-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-ca42eb9c]{display:none!important}.m-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-l-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-l-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-l-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-l-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-ca42eb9c]{display:none!important}.l-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-xl-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-xl-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-xl-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xl-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-ca42eb9c]{display:none!important}.xl-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-ca42eb9c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-ca42eb9c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-ca42eb9c]{margin-left:26%}.col-no-margin-xxl-3[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-ca42eb9c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-ca42eb9c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-ca42eb9c]{margin-left:52%}.col-no-margin-xxl-6[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-ca42eb9c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-ca42eb9c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-ca42eb9c]{margin-left:78%}.col-no-margin-xxl-9[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-ca42eb9c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-ca42eb9c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-ca42eb9c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-ca42eb9c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-ca42eb9c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-ca42eb9c]{display:none!important}.xxl-visible[data-v-ca42eb9c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-ca42eb9c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-ca42eb9c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-ca42eb9c]{display:none!important}}.vertical-center[data-v-ca42eb9c]{display:flex;align-items:center}.horizontal-center[data-v-ca42eb9c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-ca42eb9c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-ca42eb9c]{display:none!important}.no-content[data-v-ca42eb9c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-ca42eb9c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-ca42eb9c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-ca42eb9c],.btn[data-v-ca42eb9c],button[data-v-ca42eb9c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-ca42eb9c],.btn-default[type=submit][data-v-ca42eb9c],.btn.btn-primary[data-v-ca42eb9c],.btn[type=submit][data-v-ca42eb9c],button.btn-primary[data-v-ca42eb9c],button[type=submit][data-v-ca42eb9c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-ca42eb9c]:hover,.btn[data-v-ca42eb9c]:hover,button[data-v-ca42eb9c]:hover{color:#35b870}.btn .icon[data-v-ca42eb9c],.btn-default .icon[data-v-ca42eb9c],button .icon[data-v-ca42eb9c]{margin-right:.5em}.btn-default[data-v-ca42eb9c]:disabled,.btn-default[disabled][data-v-ca42eb9c],.btn[data-v-ca42eb9c]:disabled,.btn[disabled][data-v-ca42eb9c],button[data-v-ca42eb9c]:disabled,button[disabled][data-v-ca42eb9c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-ca42eb9c]{cursor:grab!important}.dragged[data-v-ca42eb9c]{opacity:.5!important}input[type=password][data-v-ca42eb9c],input[type=text][data-v-ca42eb9c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-ca42eb9c]:focus,input[type=text][data-v-ca42eb9c]:focus{border:1px solid #35b870}button[data-v-ca42eb9c],input[data-v-ca42eb9c]{outline:none}input[type=text][data-v-ca42eb9c]:hover,textarea[data-v-ca42eb9c]:hover{border:1px solid #9cdfb0}ul[data-v-ca42eb9c]{margin:0;padding:0;list-style:none}a[data-v-ca42eb9c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-ca42eb9c]:hover{color:#35b870}[data-v-ca42eb9c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-ca42eb9c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-ca42eb9c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-ca42eb9c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-ca42eb9c]{color:#ad1717}body[data-v-ca42eb9c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-ca42eb9c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-ca42eb9c] .nav .path{cursor:pointer}.browser[data-v-ca42eb9c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-ca42eb9c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-ca42eb9c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-ca42eb9c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-ca42eb9c],input[type=number][data-v-ca42eb9c],input[type=password][data-v-ca42eb9c],input[type=search][data-v-ca42eb9c],input[type=text][data-v-ca42eb9c],input[type=time][data-v-ca42eb9c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-ca42eb9c]:hover,input[type=number][data-v-ca42eb9c]:hover,input[type=password][data-v-ca42eb9c]:hover,input[type=search][data-v-ca42eb9c]:hover,input[type=text][data-v-ca42eb9c]:hover,input[type=time][data-v-ca42eb9c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-ca42eb9c]:focus,input[type=number][data-v-ca42eb9c]:focus,input[type=password][data-v-ca42eb9c]:focus,input[type=search][data-v-ca42eb9c]:focus,input[type=text][data-v-ca42eb9c]:focus,input[type=time][data-v-ca42eb9c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-ca42eb9c],input[type=number].with-icon[data-v-ca42eb9c],input[type=password].with-icon[data-v-ca42eb9c],input[type=search].with-icon[data-v-ca42eb9c],input[type=text].with-icon[data-v-ca42eb9c],input[type=time].with-icon[data-v-ca42eb9c]{padding-left:.3em}input[type=search][data-v-ca42eb9c],input[type=text][data-v-ca42eb9c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:fadeIn-ca42eb9c;-webkit-animation-name:fadeIn-ca42eb9c}.fade-in[data-v-ca42eb9c],.fade-out[data-v-ca42eb9c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:fadeOut-ca42eb9c;-webkit-animation-name:fadeOut-ca42eb9c}.expand[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:expand-ca42eb9c;-webkit-animation-name:expand-ca42eb9c}.expand[data-v-ca42eb9c],.shrink[data-v-ca42eb9c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:shrink-ca42eb9c;-webkit-animation-name:shrink-ca42eb9c}.fold[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:fold-ca42eb9c;-webkit-animation-name:fold-ca42eb9c}.fold[data-v-ca42eb9c],.unfold[data-v-ca42eb9c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:unfold-ca42eb9c;-webkit-animation-name:unfold-ca42eb9c}.dim[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:dim-ca42eb9c;-webkit-animation-name:dim-ca42eb9c}.brighten[data-v-ca42eb9c],.dim[data-v-ca42eb9c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-ca42eb9c]{animation-fill-mode:both;animation-name:brighten-ca42eb9c;-webkit-animation-name:brighten-ca42eb9c}@keyframes fadeIn-ca42eb9c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-ca42eb9c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-ca42eb9c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-ca42eb9c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-ca42eb9c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-ca42eb9c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-ca42eb9c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-ca42eb9c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-ca42eb9c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-ca42eb9c;-webkit-animation-name:glow-ca42eb9c}.loop[data-v-ca42eb9c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-ca42eb9c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-ca42eb9c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-ca42eb9c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-ca42eb9c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.date-time .date[data-v-ca42eb9c]{font-size:1.3em}.date-time .time[data-v-ca42eb9c]{font-size:2em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1421.1a42ddca.css b/platypush/backend/http/webapp/dist/static/css/1421.1a42ddca.css new file mode 100644 index 0000000000..0616bd2737 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1421.1a42ddca.css @@ -0,0 +1 @@ +.col-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-772c7a5b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-772c7a5b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-772c7a5b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-772c7a5b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-772c7a5b]:first-child{margin-left:26%!important}.col-offset-3[data-v-772c7a5b]:not(first-child){margin-left:30%!important}.col-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-772c7a5b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-772c7a5b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-772c7a5b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-772c7a5b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-772c7a5b]:first-child{margin-left:52%!important}.col-offset-6[data-v-772c7a5b]:not(first-child){margin-left:56%!important}.col-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-772c7a5b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-772c7a5b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-772c7a5b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-772c7a5b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-772c7a5b]:first-child{margin-left:78%!important}.col-offset-9[data-v-772c7a5b]:not(first-child){margin-left:82%!important}.col-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-772c7a5b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-772c7a5b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-772c7a5b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-772c7a5b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-s-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-s-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-s-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-772c7a5b]{display:none!important}.s-visible[data-v-772c7a5b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-m-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-m-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-m-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-772c7a5b]{display:none!important}.m-visible[data-v-772c7a5b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-l-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-l-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-l-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-772c7a5b]{display:none!important}.l-visible[data-v-772c7a5b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-xl-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-xl-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-xl-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-772c7a5b]{display:none!important}.xl-visible[data-v-772c7a5b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-xxl-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-xxl-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-xxl-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-772c7a5b]{display:none!important}.xxl-visible[data-v-772c7a5b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-772c7a5b]{display:none!important}}.vertical-center[data-v-772c7a5b]{display:flex;align-items:center}.horizontal-center[data-v-772c7a5b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-772c7a5b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-772c7a5b]{display:none!important}.no-content[data-v-772c7a5b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-772c7a5b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-772c7a5b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-772c7a5b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-772c7a5b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-772c7a5b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-772c7a5b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-772c7a5b],.btn[data-v-772c7a5b],button[data-v-772c7a5b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-772c7a5b],.btn-default[type=submit][data-v-772c7a5b],.btn.btn-primary[data-v-772c7a5b],.btn[type=submit][data-v-772c7a5b],button.btn-primary[data-v-772c7a5b],button[type=submit][data-v-772c7a5b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-772c7a5b]:hover,.btn[data-v-772c7a5b]:hover,button[data-v-772c7a5b]:hover{color:#35b870}.btn .icon[data-v-772c7a5b],.btn-default .icon[data-v-772c7a5b],button .icon[data-v-772c7a5b]{margin-right:.5em}.btn-default[data-v-772c7a5b]:disabled,.btn-default[disabled][data-v-772c7a5b],.btn[data-v-772c7a5b]:disabled,.btn[disabled][data-v-772c7a5b],button[data-v-772c7a5b]:disabled,button[disabled][data-v-772c7a5b]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-772c7a5b]{cursor:grab!important}.dragged[data-v-772c7a5b]{opacity:.5!important}input[type=password][data-v-772c7a5b],input[type=text][data-v-772c7a5b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-772c7a5b]:focus,input[type=text][data-v-772c7a5b]:focus{border:1px solid #35b870}button[data-v-772c7a5b],input[data-v-772c7a5b]{outline:none}input[type=text][data-v-772c7a5b]:hover,textarea[data-v-772c7a5b]:hover{border:1px solid #9cdfb0}ul[data-v-772c7a5b]{margin:0;padding:0;list-style:none}a[data-v-772c7a5b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-772c7a5b]:hover{color:#35b870}[data-v-772c7a5b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-772c7a5b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-772c7a5b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-772c7a5b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-772c7a5b]{color:#ad1717}body[data-v-772c7a5b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-772c7a5b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-772c7a5b] .nav .path{cursor:pointer}.browser[data-v-772c7a5b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-772c7a5b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-772c7a5b]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-772c7a5b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-772c7a5b],input[type=number][data-v-772c7a5b],input[type=password][data-v-772c7a5b],input[type=search][data-v-772c7a5b],input[type=text][data-v-772c7a5b],input[type=time][data-v-772c7a5b]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-772c7a5b]:hover,input[type=number][data-v-772c7a5b]:hover,input[type=password][data-v-772c7a5b]:hover,input[type=search][data-v-772c7a5b]:hover,input[type=text][data-v-772c7a5b]:hover,input[type=time][data-v-772c7a5b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-772c7a5b]:focus,input[type=number][data-v-772c7a5b]:focus,input[type=password][data-v-772c7a5b]:focus,input[type=search][data-v-772c7a5b]:focus,input[type=text][data-v-772c7a5b]:focus,input[type=time][data-v-772c7a5b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-772c7a5b],input[type=number].with-icon[data-v-772c7a5b],input[type=password].with-icon[data-v-772c7a5b],input[type=search].with-icon[data-v-772c7a5b],input[type=text].with-icon[data-v-772c7a5b],input[type=time].with-icon[data-v-772c7a5b]{padding-left:.3em}input[type=search][data-v-772c7a5b],input[type=text][data-v-772c7a5b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-772c7a5b]{animation-fill-mode:both;animation-name:fadeIn-772c7a5b;-webkit-animation-name:fadeIn-772c7a5b}.fade-in[data-v-772c7a5b],.fade-out[data-v-772c7a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-772c7a5b]{animation-fill-mode:both;animation-name:fadeOut-772c7a5b;-webkit-animation-name:fadeOut-772c7a5b}.expand[data-v-772c7a5b]{animation-fill-mode:both;animation-name:expand-772c7a5b;-webkit-animation-name:expand-772c7a5b}.expand[data-v-772c7a5b],.shrink[data-v-772c7a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-772c7a5b]{animation-fill-mode:both;animation-name:shrink-772c7a5b;-webkit-animation-name:shrink-772c7a5b}.fold[data-v-772c7a5b]{animation-fill-mode:both;animation-name:fold-772c7a5b;-webkit-animation-name:fold-772c7a5b}.fold[data-v-772c7a5b],.unfold[data-v-772c7a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-772c7a5b]{animation-fill-mode:both;animation-name:unfold-772c7a5b;-webkit-animation-name:unfold-772c7a5b}.dim[data-v-772c7a5b]{animation-fill-mode:both;animation-name:dim-772c7a5b;-webkit-animation-name:dim-772c7a5b}.brighten[data-v-772c7a5b],.dim[data-v-772c7a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-772c7a5b]{animation-fill-mode:both;animation-name:brighten-772c7a5b;-webkit-animation-name:brighten-772c7a5b}@keyframes fadeIn-772c7a5b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-772c7a5b{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-772c7a5b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-772c7a5b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-772c7a5b{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-772c7a5b{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-772c7a5b{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-772c7a5b{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-772c7a5b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-772c7a5b;-webkit-animation-name:glow-772c7a5b}.loop[data-v-772c7a5b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-772c7a5b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-772c7a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-772c7a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-772c7a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.extra-controls-container[data-v-772c7a5b]{display:flex;align-items:center;justify-content:center;opacity:.7}.extra-controls-container button[data-v-772c7a5b]{margin:0 .25em;padding:0;background:none;border:0}.extra-controls-container button.enabled[data-v-772c7a5b]{color:#32b646}.extra-controls-container button[data-v-772c7a5b]:not(:disabled):hover{color:#35b870;opacity:1}.col-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a742ddb0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a742ddb0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a742ddb0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a742ddb0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a742ddb0]:first-child{margin-left:26%!important}.col-offset-3[data-v-a742ddb0]:not(first-child){margin-left:30%!important}.col-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a742ddb0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a742ddb0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a742ddb0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a742ddb0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a742ddb0]:first-child{margin-left:52%!important}.col-offset-6[data-v-a742ddb0]:not(first-child){margin-left:56%!important}.col-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a742ddb0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a742ddb0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a742ddb0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a742ddb0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a742ddb0]:first-child{margin-left:78%!important}.col-offset-9[data-v-a742ddb0]:not(first-child){margin-left:82%!important}.col-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a742ddb0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a742ddb0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a742ddb0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a742ddb0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-s-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-s-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-s-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a742ddb0]{display:none!important}.s-visible[data-v-a742ddb0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-m-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-m-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-m-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a742ddb0]{display:none!important}.m-visible[data-v-a742ddb0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-l-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-l-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-l-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a742ddb0]{display:none!important}.l-visible[data-v-a742ddb0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-xl-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-xl-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-xl-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a742ddb0]{display:none!important}.xl-visible[data-v-a742ddb0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-xxl-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-xxl-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-xxl-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a742ddb0]{display:none!important}.xxl-visible[data-v-a742ddb0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a742ddb0]{display:none!important}}.vertical-center[data-v-a742ddb0]{display:flex;align-items:center}.horizontal-center[data-v-a742ddb0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a742ddb0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a742ddb0]{display:none!important}.no-content[data-v-a742ddb0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-a742ddb0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-a742ddb0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-a742ddb0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-a742ddb0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-a742ddb0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-a742ddb0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-a742ddb0],.btn[data-v-a742ddb0],button[data-v-a742ddb0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a742ddb0],.btn-default[type=submit][data-v-a742ddb0],.btn.btn-primary[data-v-a742ddb0],.btn[type=submit][data-v-a742ddb0],button.btn-primary[data-v-a742ddb0],button[type=submit][data-v-a742ddb0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-a742ddb0]:hover,.btn[data-v-a742ddb0]:hover,button[data-v-a742ddb0]:hover{color:#35b870}.btn .icon[data-v-a742ddb0],.btn-default .icon[data-v-a742ddb0],button .icon[data-v-a742ddb0]{margin-right:.5em}.btn-default[data-v-a742ddb0]:disabled,.btn-default[disabled][data-v-a742ddb0],.btn[data-v-a742ddb0]:disabled,.btn[disabled][data-v-a742ddb0],button[data-v-a742ddb0]:disabled,button[disabled][data-v-a742ddb0]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-a742ddb0]{cursor:grab!important}.dragged[data-v-a742ddb0]{opacity:.5!important}input[type=password][data-v-a742ddb0],input[type=text][data-v-a742ddb0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a742ddb0]:focus,input[type=text][data-v-a742ddb0]:focus{border:1px solid #35b870}button[data-v-a742ddb0],input[data-v-a742ddb0]{outline:none}input[type=text][data-v-a742ddb0]:hover,textarea[data-v-a742ddb0]:hover{border:1px solid #9cdfb0}ul[data-v-a742ddb0]{margin:0;padding:0;list-style:none}a[data-v-a742ddb0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a742ddb0]:hover{color:#35b870}[data-v-a742ddb0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-a742ddb0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-a742ddb0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a742ddb0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-a742ddb0]{color:#ad1717}body[data-v-a742ddb0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-a742ddb0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-a742ddb0] .nav .path{cursor:pointer}.browser[data-v-a742ddb0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-a742ddb0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-a742ddb0]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-a742ddb0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-a742ddb0],input[type=number][data-v-a742ddb0],input[type=password][data-v-a742ddb0],input[type=search][data-v-a742ddb0],input[type=text][data-v-a742ddb0],input[type=time][data-v-a742ddb0]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-a742ddb0]:hover,input[type=number][data-v-a742ddb0]:hover,input[type=password][data-v-a742ddb0]:hover,input[type=search][data-v-a742ddb0]:hover,input[type=text][data-v-a742ddb0]:hover,input[type=time][data-v-a742ddb0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-a742ddb0]:focus,input[type=number][data-v-a742ddb0]:focus,input[type=password][data-v-a742ddb0]:focus,input[type=search][data-v-a742ddb0]:focus,input[type=text][data-v-a742ddb0]:focus,input[type=time][data-v-a742ddb0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-a742ddb0],input[type=number].with-icon[data-v-a742ddb0],input[type=password].with-icon[data-v-a742ddb0],input[type=search].with-icon[data-v-a742ddb0],input[type=text].with-icon[data-v-a742ddb0],input[type=time].with-icon[data-v-a742ddb0]{padding-left:.3em}input[type=search][data-v-a742ddb0],input[type=text][data-v-a742ddb0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a742ddb0]{animation-fill-mode:both;animation-name:fadeIn-a742ddb0;-webkit-animation-name:fadeIn-a742ddb0}.fade-in[data-v-a742ddb0],.fade-out[data-v-a742ddb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a742ddb0]{animation-fill-mode:both;animation-name:fadeOut-a742ddb0;-webkit-animation-name:fadeOut-a742ddb0}.expand[data-v-a742ddb0]{animation-fill-mode:both;animation-name:expand-a742ddb0;-webkit-animation-name:expand-a742ddb0}.expand[data-v-a742ddb0],.shrink[data-v-a742ddb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-a742ddb0]{animation-fill-mode:both;animation-name:shrink-a742ddb0;-webkit-animation-name:shrink-a742ddb0}.fold[data-v-a742ddb0]{animation-fill-mode:both;animation-name:fold-a742ddb0;-webkit-animation-name:fold-a742ddb0}.fold[data-v-a742ddb0],.unfold[data-v-a742ddb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-a742ddb0]{animation-fill-mode:both;animation-name:unfold-a742ddb0;-webkit-animation-name:unfold-a742ddb0}.dim[data-v-a742ddb0]{animation-fill-mode:both;animation-name:dim-a742ddb0;-webkit-animation-name:dim-a742ddb0}.brighten[data-v-a742ddb0],.dim[data-v-a742ddb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-a742ddb0]{animation-fill-mode:both;animation-name:brighten-a742ddb0;-webkit-animation-name:brighten-a742ddb0}@keyframes fadeIn-a742ddb0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a742ddb0{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-a742ddb0{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-a742ddb0{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-a742ddb0{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-a742ddb0{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-a742ddb0{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-a742ddb0{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-a742ddb0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-a742ddb0;-webkit-animation-name:glow-a742ddb0}.loop[data-v-a742ddb0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-a742ddb0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-a742ddb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a742ddb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a742ddb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}button[data-v-a742ddb0]{font-size:1.75em;background:transparent;color:#27ee5e;padding:0!important;border:none}button[data-v-a742ddb0]:hover{color:#5cfd88}.col-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-662f988f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-662f988f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-662f988f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-662f988f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-662f988f]:first-child{margin-left:26%!important}.col-offset-3[data-v-662f988f]:not(first-child){margin-left:30%!important}.col-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-662f988f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-662f988f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-662f988f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-662f988f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-662f988f]:first-child{margin-left:52%!important}.col-offset-6[data-v-662f988f]:not(first-child){margin-left:56%!important}.col-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-662f988f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-662f988f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-662f988f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-662f988f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-662f988f]:first-child{margin-left:78%!important}.col-offset-9[data-v-662f988f]:not(first-child){margin-left:82%!important}.col-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-662f988f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-662f988f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-662f988f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-662f988f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-3[data-v-662f988f]{margin-left:26%}.col-no-margin-s-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-6[data-v-662f988f]{margin-left:52%}.col-no-margin-s-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-9[data-v-662f988f]{margin-left:78%}.col-no-margin-s-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-662f988f]{display:none!important}.s-visible[data-v-662f988f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-3[data-v-662f988f]{margin-left:26%}.col-no-margin-m-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-6[data-v-662f988f]{margin-left:52%}.col-no-margin-m-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-9[data-v-662f988f]{margin-left:78%}.col-no-margin-m-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-662f988f]{display:none!important}.m-visible[data-v-662f988f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-3[data-v-662f988f]{margin-left:26%}.col-no-margin-l-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-6[data-v-662f988f]{margin-left:52%}.col-no-margin-l-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-9[data-v-662f988f]{margin-left:78%}.col-no-margin-l-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-662f988f]{display:none!important}.l-visible[data-v-662f988f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-3[data-v-662f988f]{margin-left:26%}.col-no-margin-xl-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-6[data-v-662f988f]{margin-left:52%}.col-no-margin-xl-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-9[data-v-662f988f]{margin-left:78%}.col-no-margin-xl-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-662f988f]{display:none!important}.xl-visible[data-v-662f988f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-662f988f]{margin-left:26%}.col-no-margin-xxl-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-662f988f]{margin-left:52%}.col-no-margin-xxl-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-662f988f]{margin-left:78%}.col-no-margin-xxl-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-662f988f]{display:none!important}.xxl-visible[data-v-662f988f]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-662f988f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-662f988f]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-662f988f]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-662f988f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-662f988f]{display:none!important}}.vertical-center[data-v-662f988f]{display:flex;align-items:center}.horizontal-center[data-v-662f988f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-662f988f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-662f988f]{display:none!important}.no-content[data-v-662f988f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-662f988f]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-662f988f]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-662f988f]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-662f988f]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-662f988f]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-662f988f]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-662f988f],.btn[data-v-662f988f],button[data-v-662f988f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-662f988f],.btn-default[type=submit][data-v-662f988f],.btn.btn-primary[data-v-662f988f],.btn[type=submit][data-v-662f988f],button.btn-primary[data-v-662f988f],button[type=submit][data-v-662f988f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-662f988f]:hover,.btn[data-v-662f988f]:hover,button[data-v-662f988f]:hover{color:#35b870}.btn .icon[data-v-662f988f],.btn-default .icon[data-v-662f988f],button .icon[data-v-662f988f]{margin-right:.5em}.btn-default[data-v-662f988f]:disabled,.btn-default[disabled][data-v-662f988f],.btn[data-v-662f988f]:disabled,.btn[disabled][data-v-662f988f],button[data-v-662f988f]:disabled,button[disabled][data-v-662f988f]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-662f988f]{cursor:grab!important}.dragged[data-v-662f988f]{opacity:.5!important}input[type=password][data-v-662f988f],input[type=text][data-v-662f988f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-662f988f]:focus,input[type=text][data-v-662f988f]:focus{border:1px solid #35b870}button[data-v-662f988f],input[data-v-662f988f]{outline:none}input[type=text][data-v-662f988f]:hover,textarea[data-v-662f988f]:hover{border:1px solid #9cdfb0}ul[data-v-662f988f]{margin:0;padding:0;list-style:none}a[data-v-662f988f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-662f988f]:hover{color:#35b870}[data-v-662f988f]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-662f988f]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-662f988f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-662f988f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-662f988f]{color:#ad1717}body[data-v-662f988f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-662f988f] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-662f988f] .nav .path{cursor:pointer}.browser[data-v-662f988f] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-662f988f] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-662f988f]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-662f988f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-662f988f],input[type=number][data-v-662f988f],input[type=password][data-v-662f988f],input[type=search][data-v-662f988f],input[type=text][data-v-662f988f],input[type=time][data-v-662f988f]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-662f988f]:hover,input[type=number][data-v-662f988f]:hover,input[type=password][data-v-662f988f]:hover,input[type=search][data-v-662f988f]:hover,input[type=text][data-v-662f988f]:hover,input[type=time][data-v-662f988f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-662f988f]:focus,input[type=number][data-v-662f988f]:focus,input[type=password][data-v-662f988f]:focus,input[type=search][data-v-662f988f]:focus,input[type=text][data-v-662f988f]:focus,input[type=time][data-v-662f988f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-662f988f],input[type=number].with-icon[data-v-662f988f],input[type=password].with-icon[data-v-662f988f],input[type=search].with-icon[data-v-662f988f],input[type=text].with-icon[data-v-662f988f],input[type=time].with-icon[data-v-662f988f]{padding-left:.3em}input[type=search][data-v-662f988f],input[type=text][data-v-662f988f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-662f988f]{animation-fill-mode:both;animation-name:fadeIn-662f988f;-webkit-animation-name:fadeIn-662f988f}.fade-in[data-v-662f988f],.fade-out[data-v-662f988f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-662f988f]{animation-fill-mode:both;animation-name:fadeOut-662f988f;-webkit-animation-name:fadeOut-662f988f}.expand[data-v-662f988f]{animation-fill-mode:both;animation-name:expand-662f988f;-webkit-animation-name:expand-662f988f}.expand[data-v-662f988f],.shrink[data-v-662f988f]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-662f988f]{animation-fill-mode:both;animation-name:shrink-662f988f;-webkit-animation-name:shrink-662f988f}.fold[data-v-662f988f]{animation-fill-mode:both;animation-name:fold-662f988f;-webkit-animation-name:fold-662f988f}.fold[data-v-662f988f],.unfold[data-v-662f988f]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-662f988f]{animation-fill-mode:both;animation-name:unfold-662f988f;-webkit-animation-name:unfold-662f988f}.dim[data-v-662f988f]{animation-fill-mode:both;animation-name:dim-662f988f;-webkit-animation-name:dim-662f988f}.brighten[data-v-662f988f],.dim[data-v-662f988f]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-662f988f]{animation-fill-mode:both;animation-name:brighten-662f988f;-webkit-animation-name:brighten-662f988f}@keyframes fadeIn-662f988f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-662f988f{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-662f988f{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-662f988f{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-662f988f{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-662f988f{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-662f988f{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-662f988f{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-662f988f]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-662f988f;-webkit-animation-name:glow-662f988f}.loop[data-v-662f988f]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-662f988f{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-662f988f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-662f988f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-662f988f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-662f988f]{color:#d21}.volume-slider-container[data-v-662f988f]{min-width:15em;max-width:25em;display:inline-flex;align-items:center;flex:1}.volume-slider-container .volume-slider[data-v-662f988f]{margin:0;padding:0 .5em 0 1em;flex:1}.volume-slider-container button[data-v-662f988f]{margin:0;padding:0;background:transparent;border:none}.volume-slider-container button[data-v-662f988f]:disabled{cursor:default}.volume-slider-container button[data-v-662f988f]:not(:disabled):hover{color:#35b870}.col-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1f77dbac]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1f77dbac]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1f77dbac]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1f77dbac]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1f77dbac]:first-child{margin-left:26%!important}.col-offset-3[data-v-1f77dbac]:not(first-child){margin-left:30%!important}.col-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1f77dbac]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1f77dbac]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1f77dbac]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1f77dbac]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1f77dbac]:first-child{margin-left:52%!important}.col-offset-6[data-v-1f77dbac]:not(first-child){margin-left:56%!important}.col-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1f77dbac]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1f77dbac]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1f77dbac]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1f77dbac]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1f77dbac]:first-child{margin-left:78%!important}.col-offset-9[data-v-1f77dbac]:not(first-child){margin-left:82%!important}.col-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1f77dbac]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1f77dbac]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1f77dbac]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1f77dbac]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-1[data-v-1f77dbac]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-2[data-v-1f77dbac]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-3[data-v-1f77dbac]{margin-left:26%}.col-no-margin-s-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-4[data-v-1f77dbac]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-5[data-v-1f77dbac]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-6[data-v-1f77dbac]{margin-left:52%}.col-no-margin-s-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-7[data-v-1f77dbac]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-8[data-v-1f77dbac]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-9[data-v-1f77dbac]{margin-left:78%}.col-no-margin-s-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-10[data-v-1f77dbac]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-s-11[data-v-1f77dbac]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1f77dbac]{display:none!important}.s-visible[data-v-1f77dbac]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-1[data-v-1f77dbac]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-2[data-v-1f77dbac]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-3[data-v-1f77dbac]{margin-left:26%}.col-no-margin-m-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-4[data-v-1f77dbac]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-5[data-v-1f77dbac]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-6[data-v-1f77dbac]{margin-left:52%}.col-no-margin-m-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-7[data-v-1f77dbac]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-8[data-v-1f77dbac]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-9[data-v-1f77dbac]{margin-left:78%}.col-no-margin-m-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-10[data-v-1f77dbac]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-m-11[data-v-1f77dbac]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1f77dbac]{display:none!important}.m-visible[data-v-1f77dbac]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-1[data-v-1f77dbac]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-2[data-v-1f77dbac]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-3[data-v-1f77dbac]{margin-left:26%}.col-no-margin-l-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-4[data-v-1f77dbac]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-5[data-v-1f77dbac]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-6[data-v-1f77dbac]{margin-left:52%}.col-no-margin-l-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-7[data-v-1f77dbac]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-8[data-v-1f77dbac]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-9[data-v-1f77dbac]{margin-left:78%}.col-no-margin-l-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-10[data-v-1f77dbac]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-l-11[data-v-1f77dbac]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1f77dbac]{display:none!important}.l-visible[data-v-1f77dbac]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-1[data-v-1f77dbac]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-2[data-v-1f77dbac]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-3[data-v-1f77dbac]{margin-left:26%}.col-no-margin-xl-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-4[data-v-1f77dbac]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-5[data-v-1f77dbac]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-6[data-v-1f77dbac]{margin-left:52%}.col-no-margin-xl-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-7[data-v-1f77dbac]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-8[data-v-1f77dbac]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-9[data-v-1f77dbac]{margin-left:78%}.col-no-margin-xl-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-10[data-v-1f77dbac]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xl-11[data-v-1f77dbac]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1f77dbac]{display:none!important}.xl-visible[data-v-1f77dbac]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1f77dbac]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1f77dbac]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1f77dbac]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1f77dbac]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1f77dbac]{margin-left:26%}.col-no-margin-xxl-3[data-v-1f77dbac]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1f77dbac]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1f77dbac]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1f77dbac]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1f77dbac]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1f77dbac]{margin-left:52%}.col-no-margin-xxl-6[data-v-1f77dbac]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1f77dbac]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1f77dbac]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1f77dbac]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1f77dbac]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1f77dbac]{margin-left:78%}.col-no-margin-xxl-9[data-v-1f77dbac]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1f77dbac]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1f77dbac]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1f77dbac]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1f77dbac]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1f77dbac]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1f77dbac]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1f77dbac]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1f77dbac]{display:none!important}.xxl-visible[data-v-1f77dbac]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1f77dbac]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1f77dbac]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1f77dbac]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1f77dbac]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1f77dbac]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1f77dbac]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1f77dbac]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1f77dbac]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1f77dbac]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1f77dbac]{display:none!important}}.vertical-center[data-v-1f77dbac]{display:flex;align-items:center}.horizontal-center[data-v-1f77dbac]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.controls .right-controls[data-v-1f77dbac],.controls .right-controls[data-v-1f77dbac] .extra-controls-container,.extension[data-v-1f77dbac] .extra-controls-container,.pull-right[data-v-1f77dbac]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1f77dbac]{display:none!important}.no-content[data-v-1f77dbac]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1f77dbac]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1f77dbac]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1f77dbac]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1f77dbac]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1f77dbac]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1f77dbac]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1f77dbac],.btn[data-v-1f77dbac],button[data-v-1f77dbac]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1f77dbac],.btn-default[type=submit][data-v-1f77dbac],.btn.btn-primary[data-v-1f77dbac],.btn[type=submit][data-v-1f77dbac],button.btn-primary[data-v-1f77dbac],button[type=submit][data-v-1f77dbac]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1f77dbac]:hover,.btn[data-v-1f77dbac]:hover,button[data-v-1f77dbac]:hover{color:#35b870}.btn .icon[data-v-1f77dbac],.btn-default .icon[data-v-1f77dbac],button .icon[data-v-1f77dbac]{margin-right:.5em}.btn-default[data-v-1f77dbac]:disabled,.btn-default[disabled][data-v-1f77dbac],.btn[data-v-1f77dbac]:disabled,.btn[disabled][data-v-1f77dbac],button[data-v-1f77dbac]:disabled,button[disabled][data-v-1f77dbac]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1f77dbac]{cursor:grab!important}.dragged[data-v-1f77dbac]{opacity:.5!important}input[type=password][data-v-1f77dbac],input[type=text][data-v-1f77dbac]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1f77dbac]:focus,input[type=text][data-v-1f77dbac]:focus{border:1px solid #35b870}button[data-v-1f77dbac],input[data-v-1f77dbac]{outline:none}input[type=text][data-v-1f77dbac]:hover,textarea[data-v-1f77dbac]:hover{border:1px solid #9cdfb0}ul[data-v-1f77dbac]{margin:0;padding:0;list-style:none}a[data-v-1f77dbac]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1f77dbac]:hover{color:#35b870}[data-v-1f77dbac]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1f77dbac]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1f77dbac]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1f77dbac]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1f77dbac]{color:#ad1717}body[data-v-1f77dbac]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1f77dbac] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1f77dbac] .nav .path{cursor:pointer}.browser[data-v-1f77dbac] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1f77dbac] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1f77dbac]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1f77dbac]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1f77dbac],input[type=number][data-v-1f77dbac],input[type=password][data-v-1f77dbac],input[type=search][data-v-1f77dbac],input[type=text][data-v-1f77dbac],input[type=time][data-v-1f77dbac]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1f77dbac]:hover,input[type=number][data-v-1f77dbac]:hover,input[type=password][data-v-1f77dbac]:hover,input[type=search][data-v-1f77dbac]:hover,input[type=text][data-v-1f77dbac]:hover,input[type=time][data-v-1f77dbac]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1f77dbac]:focus,input[type=number][data-v-1f77dbac]:focus,input[type=password][data-v-1f77dbac]:focus,input[type=search][data-v-1f77dbac]:focus,input[type=text][data-v-1f77dbac]:focus,input[type=time][data-v-1f77dbac]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1f77dbac],input[type=number].with-icon[data-v-1f77dbac],input[type=password].with-icon[data-v-1f77dbac],input[type=search].with-icon[data-v-1f77dbac],input[type=text].with-icon[data-v-1f77dbac],input[type=time].with-icon[data-v-1f77dbac]{padding-left:.3em}input[type=search][data-v-1f77dbac],input[type=text][data-v-1f77dbac]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1f77dbac]{animation-fill-mode:both;animation-name:fadeIn-1f77dbac;-webkit-animation-name:fadeIn-1f77dbac}.fade-in[data-v-1f77dbac],.fade-out[data-v-1f77dbac]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1f77dbac]{animation-fill-mode:both;animation-name:fadeOut-1f77dbac;-webkit-animation-name:fadeOut-1f77dbac}.expand[data-v-1f77dbac]{animation-fill-mode:both;animation-name:expand-1f77dbac;-webkit-animation-name:expand-1f77dbac}.expand[data-v-1f77dbac],.shrink[data-v-1f77dbac]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1f77dbac]{animation-fill-mode:both;animation-name:shrink-1f77dbac;-webkit-animation-name:shrink-1f77dbac}.fold[data-v-1f77dbac]{animation-fill-mode:both;animation-name:fold-1f77dbac;-webkit-animation-name:fold-1f77dbac}.fold[data-v-1f77dbac],.unfold[data-v-1f77dbac]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1f77dbac]{animation-fill-mode:both;animation-name:unfold-1f77dbac;-webkit-animation-name:unfold-1f77dbac}.dim[data-v-1f77dbac]{animation-fill-mode:both;animation-name:dim-1f77dbac;-webkit-animation-name:dim-1f77dbac}.brighten[data-v-1f77dbac],.dim[data-v-1f77dbac]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1f77dbac]{animation-fill-mode:both;animation-name:brighten-1f77dbac;-webkit-animation-name:brighten-1f77dbac}@keyframes fadeIn-1f77dbac{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1f77dbac{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1f77dbac{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1f77dbac{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1f77dbac{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1f77dbac{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1f77dbac{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1f77dbac{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1f77dbac]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1f77dbac;-webkit-animation-name:glow-1f77dbac}.loop[data-v-1f77dbac]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1f77dbac{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1f77dbac]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1f77dbac]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1f77dbac]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-1f77dbac]{color:#d21}button[data-v-1f77dbac]{border:0;background:none}button[data-v-1f77dbac]:hover{border:0}button:hover .icon[data-v-1f77dbac]{color:#35b870}button.enabled[data-v-1f77dbac]{color:#32b646}.extension[data-v-1f77dbac]{background:radial-gradient(#fff,hsla(69,25%,85%,.627));box-shadow:inset 0 0 1px 2px #c7c8c8;border-radius:1em 1em 0 0;flex-direction:column;display:none;overflow:hidden;padding:.5em}@media screen and (max-width:calc(1024px - 1px)){.extension[data-v-1f77dbac]{display:flex}}.extension[data-v-1f77dbac] .extra-controls-container{flex:1}.extension[data-v-1f77dbac] .progress-bar-container{font-size:1.25em}.extension[data-v-1f77dbac] .volume-slider-container{margin:1em 0}.extension .row[data-v-1f77dbac]{display:flex}.extension .buttons-container[data-v-1f77dbac]{width:calc(100% + 1em);margin-left:-.5em;font-size:2em;justify-content:center;box-shadow:0 3px 2px -1px silver}.extension .buttons-container button[data-v-1f77dbac]{text-align:center}.extension .buttons-container button[data-v-1f77dbac]:hover{color:#35b870}.extension .buttons-container button i[data-v-1f77dbac]{margin:auto}.extension .buttons[data-v-1f77dbac]{display:flex;justify-content:center;margin:0}.extension .image-container[data-v-1f77dbac]{width:100%;display:flex;justify-content:center;cursor:pointer}.extension .image-container .remote-image-container[data-v-1f77dbac]{height:30vh}.extension .image-container .remote-image-container .image[data-v-1f77dbac]{height:100%}.extension .image-container .icon-container[data-v-1f77dbac]{padding:.05em;display:flex;align-items:center;justify-content:center;font-size:15em;opacity:.5;border:1px solid #ddd;box-shadow:0 3px 2px -1px silver}.extension .image-container .icon-container[data-v-1f77dbac]:hover{color:#35b870;opacity:1}.extension .image-container .icon.playing[data-v-1f77dbac]{animation-duration:3s;animation-name:rotate-1f77dbac;animation-iteration-count:infinite}@keyframes rotate-1f77dbac{0%{transform:rotate(0deg);opacity:1}50%{opacity:.5}to{transform:rotate(359deg);opacity:1}}.controls[data-v-1f77dbac]{width:100%;height:5.5em;display:flex;padding:1em .5em;overflow:hidden;align-items:center}.controls button[data-v-1f77dbac]{background:none!important}.controls .row[data-v-1f77dbac]{width:100%;display:flex}.controls .track-container[data-v-1f77dbac]{height:100%;display:flex;align-items:center;margin-left:0}@media screen and (max-width:calc(1024px - 1px)){.controls .track-container[data-v-1f77dbac]{flex-direction:column;text-align:center}}.controls .track-container a[data-v-1f77dbac]{color:initial;text-decoration:none}.controls .track-container a[data-v-1f77dbac]:hover{color:#35b870}.controls .track-container .artist[data-v-1f77dbac],.controls .track-container .title[data-v-1f77dbac]{overflow:hidden;text-overflow:ellipsis}.controls .track-container .artist[data-v-1f77dbac]{opacity:.6;letter-spacing:.04em}.controls .track-container .title[data-v-1f77dbac]{font-weight:400;font-size:1em;letter-spacing:.05em;margin-bottom:.25em}.controls .track-container .image[data-v-1f77dbac]{width:5em;max-height:100%;display:inline-flex}.controls .track-info[data-v-1f77dbac]{height:100%;display:flex}@media screen and (max-width:calc(1024px - 1px)){.controls .track-info[data-v-1f77dbac]{flex-direction:column}}@media screen and (min-width:1024px){.controls .track-info[data-v-1f77dbac]{flex-direction:row;align-items:center}.controls .track-info .img-container[data-v-1f77dbac]{max-width:100%;max-height:calc(100% + 3em)}.controls .track-info .image[data-v-1f77dbac]{padding:.5em;max-height:100%}}.controls .playback-controls .row[data-v-1f77dbac]{justify-content:center}.controls .playback-controls .buttons[data-v-1f77dbac]{margin-bottom:.5em;align-items:center}.controls .playback-controls button[data-v-1f77dbac]{padding:.5em;margin:0 .75em}.controls .playback-controls button .play-pause[data-v-1f77dbac]{color:#27ee5e;font-size:1.75em}.controls .playback-controls button .play-pause[data-v-1f77dbac]:hover{color:#38cf80}.controls .right-controls[data-v-1f77dbac]{display:flex;flex-direction:column;flex:1;align-items:flex-end}.controls .right-controls button[data-v-1f77dbac]{padding:.5em}.controls .seek-slider[data-v-1f77dbac]{width:75%}.col-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6f73c9f5]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6f73c9f5]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6f73c9f5]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6f73c9f5]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6f73c9f5]:first-child{margin-left:26%!important}.col-offset-3[data-v-6f73c9f5]:not(first-child){margin-left:30%!important}.col-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6f73c9f5]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6f73c9f5]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6f73c9f5]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6f73c9f5]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6f73c9f5]:first-child{margin-left:52%!important}.col-offset-6[data-v-6f73c9f5]:not(first-child){margin-left:56%!important}.col-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6f73c9f5]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6f73c9f5]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6f73c9f5]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6f73c9f5]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6f73c9f5]:first-child{margin-left:78%!important}.col-offset-9[data-v-6f73c9f5]:not(first-child){margin-left:82%!important}.col-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6f73c9f5]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6f73c9f5]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6f73c9f5]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6f73c9f5]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-1[data-v-6f73c9f5]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-2[data-v-6f73c9f5]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-3[data-v-6f73c9f5]{margin-left:26%}.col-no-margin-s-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-4[data-v-6f73c9f5]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-5[data-v-6f73c9f5]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-6[data-v-6f73c9f5]{margin-left:52%}.col-no-margin-s-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-7[data-v-6f73c9f5]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-8[data-v-6f73c9f5]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-9[data-v-6f73c9f5]{margin-left:78%}.col-no-margin-s-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-10[data-v-6f73c9f5]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-s-11[data-v-6f73c9f5]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6f73c9f5]{display:none!important}.s-visible[data-v-6f73c9f5]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-1[data-v-6f73c9f5]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-2[data-v-6f73c9f5]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-3[data-v-6f73c9f5]{margin-left:26%}.col-no-margin-m-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-4[data-v-6f73c9f5]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-5[data-v-6f73c9f5]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-6[data-v-6f73c9f5]{margin-left:52%}.col-no-margin-m-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-7[data-v-6f73c9f5]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-8[data-v-6f73c9f5]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-9[data-v-6f73c9f5]{margin-left:78%}.col-no-margin-m-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-10[data-v-6f73c9f5]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-m-11[data-v-6f73c9f5]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6f73c9f5]{display:none!important}.m-visible[data-v-6f73c9f5]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-1[data-v-6f73c9f5]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-2[data-v-6f73c9f5]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-3[data-v-6f73c9f5]{margin-left:26%}.col-no-margin-l-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-4[data-v-6f73c9f5]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-5[data-v-6f73c9f5]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-6[data-v-6f73c9f5]{margin-left:52%}.col-no-margin-l-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-7[data-v-6f73c9f5]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-8[data-v-6f73c9f5]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-9[data-v-6f73c9f5]{margin-left:78%}.col-no-margin-l-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-10[data-v-6f73c9f5]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-l-11[data-v-6f73c9f5]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6f73c9f5]{display:none!important}.l-visible[data-v-6f73c9f5]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-1[data-v-6f73c9f5]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-2[data-v-6f73c9f5]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-3[data-v-6f73c9f5]{margin-left:26%}.col-no-margin-xl-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-4[data-v-6f73c9f5]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-5[data-v-6f73c9f5]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-6[data-v-6f73c9f5]{margin-left:52%}.col-no-margin-xl-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-7[data-v-6f73c9f5]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-8[data-v-6f73c9f5]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-9[data-v-6f73c9f5]{margin-left:78%}.col-no-margin-xl-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-10[data-v-6f73c9f5]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xl-11[data-v-6f73c9f5]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6f73c9f5]{display:none!important}.xl-visible[data-v-6f73c9f5]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6f73c9f5]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6f73c9f5]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6f73c9f5]{margin-left:26%}.col-no-margin-xxl-3[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6f73c9f5]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6f73c9f5]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6f73c9f5]{margin-left:52%}.col-no-margin-xxl-6[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6f73c9f5]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6f73c9f5]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6f73c9f5]{margin-left:78%}.col-no-margin-xxl-9[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6f73c9f5]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6f73c9f5]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6f73c9f5]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6f73c9f5]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6f73c9f5]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6f73c9f5]{display:none!important}.xxl-visible[data-v-6f73c9f5]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6f73c9f5]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6f73c9f5]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6f73c9f5]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6f73c9f5]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6f73c9f5]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6f73c9f5]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6f73c9f5]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6f73c9f5]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6f73c9f5]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6f73c9f5]{display:none!important}}.vertical-center[data-v-6f73c9f5]{display:flex;align-items:center}.horizontal-center[data-v-6f73c9f5]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6f73c9f5]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6f73c9f5]{display:none!important}.no-content[data-v-6f73c9f5]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6f73c9f5]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6f73c9f5]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6f73c9f5]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6f73c9f5]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6f73c9f5]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6f73c9f5]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6f73c9f5],.btn[data-v-6f73c9f5],button[data-v-6f73c9f5]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6f73c9f5],.btn-default[type=submit][data-v-6f73c9f5],.btn.btn-primary[data-v-6f73c9f5],.btn[type=submit][data-v-6f73c9f5],button.btn-primary[data-v-6f73c9f5],button[type=submit][data-v-6f73c9f5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-6f73c9f5]:hover,.btn[data-v-6f73c9f5]:hover,button[data-v-6f73c9f5]:hover{color:#35b870}.btn .icon[data-v-6f73c9f5],.btn-default .icon[data-v-6f73c9f5],button .icon[data-v-6f73c9f5]{margin-right:.5em}.btn-default[data-v-6f73c9f5]:disabled,.btn-default[disabled][data-v-6f73c9f5],.btn[data-v-6f73c9f5]:disabled,.btn[disabled][data-v-6f73c9f5],button[data-v-6f73c9f5]:disabled,button[disabled][data-v-6f73c9f5]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-6f73c9f5]{cursor:grab!important}.dragged[data-v-6f73c9f5]{opacity:.5!important}input[type=password][data-v-6f73c9f5],input[type=text][data-v-6f73c9f5]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6f73c9f5]:focus,input[type=text][data-v-6f73c9f5]:focus{border:1px solid #35b870}button[data-v-6f73c9f5],input[data-v-6f73c9f5]{outline:none}input[type=text][data-v-6f73c9f5]:hover,textarea[data-v-6f73c9f5]:hover{border:1px solid #9cdfb0}ul[data-v-6f73c9f5]{margin:0;padding:0;list-style:none}a[data-v-6f73c9f5]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6f73c9f5]:hover{color:#35b870}[data-v-6f73c9f5]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6f73c9f5]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6f73c9f5]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6f73c9f5]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-6f73c9f5]{color:#ad1717}body[data-v-6f73c9f5]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6f73c9f5] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6f73c9f5] .nav .path{cursor:pointer}.browser[data-v-6f73c9f5] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6f73c9f5] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-6f73c9f5]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-6f73c9f5]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6f73c9f5],input[type=number][data-v-6f73c9f5],input[type=password][data-v-6f73c9f5],input[type=search][data-v-6f73c9f5],input[type=text][data-v-6f73c9f5],input[type=time][data-v-6f73c9f5]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-6f73c9f5]:hover,input[type=number][data-v-6f73c9f5]:hover,input[type=password][data-v-6f73c9f5]:hover,input[type=search][data-v-6f73c9f5]:hover,input[type=text][data-v-6f73c9f5]:hover,input[type=time][data-v-6f73c9f5]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6f73c9f5]:focus,input[type=number][data-v-6f73c9f5]:focus,input[type=password][data-v-6f73c9f5]:focus,input[type=search][data-v-6f73c9f5]:focus,input[type=text][data-v-6f73c9f5]:focus,input[type=time][data-v-6f73c9f5]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6f73c9f5],input[type=number].with-icon[data-v-6f73c9f5],input[type=password].with-icon[data-v-6f73c9f5],input[type=search].with-icon[data-v-6f73c9f5],input[type=text].with-icon[data-v-6f73c9f5],input[type=time].with-icon[data-v-6f73c9f5]{padding-left:.3em}input[type=search][data-v-6f73c9f5],input[type=text][data-v-6f73c9f5]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6f73c9f5]{animation-fill-mode:both;animation-name:fadeIn-6f73c9f5;-webkit-animation-name:fadeIn-6f73c9f5}.fade-in[data-v-6f73c9f5],.fade-out[data-v-6f73c9f5]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6f73c9f5]{animation-fill-mode:both;animation-name:fadeOut-6f73c9f5;-webkit-animation-name:fadeOut-6f73c9f5}.expand[data-v-6f73c9f5]{animation-fill-mode:both;animation-name:expand-6f73c9f5;-webkit-animation-name:expand-6f73c9f5}.expand[data-v-6f73c9f5],.shrink[data-v-6f73c9f5]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-6f73c9f5]{animation-fill-mode:both;animation-name:shrink-6f73c9f5;-webkit-animation-name:shrink-6f73c9f5}.fold[data-v-6f73c9f5]{animation-fill-mode:both;animation-name:fold-6f73c9f5;-webkit-animation-name:fold-6f73c9f5}.fold[data-v-6f73c9f5],.unfold[data-v-6f73c9f5]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-6f73c9f5]{animation-fill-mode:both;animation-name:unfold-6f73c9f5;-webkit-animation-name:unfold-6f73c9f5}.dim[data-v-6f73c9f5]{animation-fill-mode:both;animation-name:dim-6f73c9f5;-webkit-animation-name:dim-6f73c9f5}.brighten[data-v-6f73c9f5],.dim[data-v-6f73c9f5]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-6f73c9f5]{animation-fill-mode:both;animation-name:brighten-6f73c9f5;-webkit-animation-name:brighten-6f73c9f5}@keyframes fadeIn-6f73c9f5{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6f73c9f5{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-6f73c9f5{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-6f73c9f5{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-6f73c9f5{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-6f73c9f5{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-6f73c9f5{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-6f73c9f5{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-6f73c9f5]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6f73c9f5;-webkit-animation-name:glow-6f73c9f5}.loop[data-v-6f73c9f5]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6f73c9f5{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6f73c9f5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6f73c9f5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6f73c9f5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-6f73c9f5]{color:#d21}.media-container[data-v-6f73c9f5]{width:100%;height:100%;display:flex;flex-direction:column;position:relative}.media-container .view-container[data-v-6f73c9f5]{height:100%}.media-container .controls-container[data-v-6f73c9f5]{width:100%;position:absolute;bottom:0;border-top:1px solid #ddd;background:#f8f8f8;box-shadow:0 -2.5px 4px 0 silver;z-index:100} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1449.48f369df.css b/platypush/backend/http/webapp/dist/static/css/1449.48f369df.css deleted file mode 100644 index 59bf2554b5..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/1449.48f369df.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7478b72d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7478b72d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7478b72d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7478b72d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7478b72d]:first-child{margin-left:26%!important}.col-offset-3[data-v-7478b72d]:not(first-child){margin-left:30%!important}.col-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7478b72d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7478b72d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7478b72d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7478b72d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7478b72d]:first-child{margin-left:52%!important}.col-offset-6[data-v-7478b72d]:not(first-child){margin-left:56%!important}.col-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7478b72d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7478b72d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7478b72d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7478b72d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7478b72d]:first-child{margin-left:78%!important}.col-offset-9[data-v-7478b72d]:not(first-child){margin-left:82%!important}.col-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7478b72d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7478b72d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7478b72d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7478b72d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-s-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-s-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-s-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7478b72d]{display:none!important}.s-visible[data-v-7478b72d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-m-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-m-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-m-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7478b72d]{display:none!important}.m-visible[data-v-7478b72d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-l-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-l-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-l-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7478b72d]{display:none!important}.l-visible[data-v-7478b72d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-xl-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-xl-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-xl-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7478b72d]{display:none!important}.xl-visible[data-v-7478b72d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-xxl-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-xxl-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-xxl-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7478b72d]{display:none!important}.xxl-visible[data-v-7478b72d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7478b72d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7478b72d]{display:none!important}}.vertical-center[data-v-7478b72d]{display:flex;align-items:center}.horizontal-center[data-v-7478b72d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7478b72d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7478b72d]{display:none!important}.no-content[data-v-7478b72d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7478b72d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7478b72d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7478b72d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7478b72d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7478b72d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7478b72d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7478b72d],.btn[data-v-7478b72d],button[data-v-7478b72d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7478b72d],.btn-default[type=submit][data-v-7478b72d],.btn.btn-primary[data-v-7478b72d],.btn[type=submit][data-v-7478b72d],button.btn-primary[data-v-7478b72d],button[type=submit][data-v-7478b72d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7478b72d],.btn-default .icon[data-v-7478b72d],button .icon[data-v-7478b72d]{margin-right:.5em}input[type=password][data-v-7478b72d],input[type=text][data-v-7478b72d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7478b72d]:focus,input[type=text][data-v-7478b72d]:focus{border:1px solid #35b870}button[data-v-7478b72d],input[data-v-7478b72d]{outline:none}input[type=text][data-v-7478b72d]:hover,textarea[data-v-7478b72d]:hover{border:1px solid #9cdfb0}ul[data-v-7478b72d]{margin:0;padding:0;list-style:none}a[data-v-7478b72d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7478b72d]:hover{color:#35b870}[data-v-7478b72d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7478b72d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7478b72d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7478b72d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7478b72d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7478b72d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7478b72d] .nav .path{cursor:pointer}.browser[data-v-7478b72d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7478b72d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7478b72d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7478b72d],input[type=number][data-v-7478b72d],input[type=password][data-v-7478b72d],input[type=search][data-v-7478b72d],input[type=text][data-v-7478b72d],input[type=time][data-v-7478b72d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7478b72d]:hover,input[type=number][data-v-7478b72d]:hover,input[type=password][data-v-7478b72d]:hover,input[type=search][data-v-7478b72d]:hover,input[type=text][data-v-7478b72d]:hover,input[type=time][data-v-7478b72d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7478b72d]:focus,input[type=number][data-v-7478b72d]:focus,input[type=password][data-v-7478b72d]:focus,input[type=search][data-v-7478b72d]:focus,input[type=text][data-v-7478b72d]:focus,input[type=time][data-v-7478b72d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7478b72d],input[type=number].with-icon[data-v-7478b72d],input[type=password].with-icon[data-v-7478b72d],input[type=search].with-icon[data-v-7478b72d],input[type=text].with-icon[data-v-7478b72d],input[type=time].with-icon[data-v-7478b72d]{padding-left:.3em}input[type=search][data-v-7478b72d],input[type=text][data-v-7478b72d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7478b72d]{animation-fill-mode:both;animation-name:fadeIn-7478b72d;-webkit-animation-name:fadeIn-7478b72d}.fade-in[data-v-7478b72d],.fade-out[data-v-7478b72d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7478b72d]{animation-fill-mode:both;animation-name:fadeOut-7478b72d;-webkit-animation-name:fadeOut-7478b72d}@keyframes fadeIn-7478b72d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7478b72d{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7478b72d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7478b72d;-webkit-animation-name:glow-7478b72d}.loop[data-v-7478b72d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7478b72d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7478b72d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7478b72d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7478b72d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-7478b72d]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-7478b72d]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-53594122]:first-child{margin-left:0}.col-no-margin-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-53594122]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-53594122]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-53594122]:first-child{margin-left:0}.col-no-margin-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-53594122]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-53594122]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-53594122]:first-child{margin-left:0}.col-no-margin-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-53594122]:first-child{margin-left:26%!important}.col-offset-3[data-v-53594122]:not(first-child){margin-left:30%!important}.col-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-53594122]:first-child{margin-left:0}.col-no-margin-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-53594122]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-53594122]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-53594122]:first-child{margin-left:0}.col-no-margin-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-53594122]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-53594122]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-53594122]:first-child{margin-left:0}.col-no-margin-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-53594122]:first-child{margin-left:52%!important}.col-offset-6[data-v-53594122]:not(first-child){margin-left:56%!important}.col-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-53594122]:first-child{margin-left:0}.col-no-margin-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-53594122]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-53594122]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-53594122]:first-child{margin-left:0}.col-no-margin-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-53594122]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-53594122]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-53594122]:first-child{margin-left:0}.col-no-margin-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-53594122]:first-child{margin-left:78%!important}.col-offset-9[data-v-53594122]:not(first-child){margin-left:82%!important}.col-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-53594122]:first-child{margin-left:0}.col-no-margin-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-53594122]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-53594122]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-53594122]:first-child{margin-left:0}.col-no-margin-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-53594122]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-53594122]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-53594122]:first-child{margin-left:0}.col-offset-s-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-53594122]:first-child{margin-left:0}.col-offset-s-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-53594122]:first-child{margin-left:0}.col-offset-s-3[data-v-53594122]{margin-left:26%}.col-no-margin-s-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-53594122]:first-child{margin-left:0}.col-offset-s-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-53594122]:first-child{margin-left:0}.col-offset-s-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-53594122]:first-child{margin-left:0}.col-offset-s-6[data-v-53594122]{margin-left:52%}.col-no-margin-s-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-53594122]:first-child{margin-left:0}.col-offset-s-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-53594122]:first-child{margin-left:0}.col-offset-s-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-53594122]:first-child{margin-left:0}.col-offset-s-9[data-v-53594122]{margin-left:78%}.col-no-margin-s-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-53594122]:first-child{margin-left:0}.col-offset-s-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-53594122]:first-child{margin-left:0}.col-offset-s-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-s-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-53594122]{display:none!important}.s-visible[data-v-53594122]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-53594122]:first-child{margin-left:0}.col-offset-m-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-53594122]:first-child{margin-left:0}.col-offset-m-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-53594122]:first-child{margin-left:0}.col-offset-m-3[data-v-53594122]{margin-left:26%}.col-no-margin-m-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-53594122]:first-child{margin-left:0}.col-offset-m-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-53594122]:first-child{margin-left:0}.col-offset-m-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-53594122]:first-child{margin-left:0}.col-offset-m-6[data-v-53594122]{margin-left:52%}.col-no-margin-m-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-53594122]:first-child{margin-left:0}.col-offset-m-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-53594122]:first-child{margin-left:0}.col-offset-m-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-53594122]:first-child{margin-left:0}.col-offset-m-9[data-v-53594122]{margin-left:78%}.col-no-margin-m-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-53594122]:first-child{margin-left:0}.col-offset-m-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-53594122]:first-child{margin-left:0}.col-offset-m-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-m-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-53594122]{display:none!important}.m-visible[data-v-53594122]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-53594122]:first-child{margin-left:0}.col-offset-l-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-53594122]:first-child{margin-left:0}.col-offset-l-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-53594122]:first-child{margin-left:0}.col-offset-l-3[data-v-53594122]{margin-left:26%}.col-no-margin-l-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-53594122]:first-child{margin-left:0}.col-offset-l-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-53594122]:first-child{margin-left:0}.col-offset-l-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-53594122]:first-child{margin-left:0}.col-offset-l-6[data-v-53594122]{margin-left:52%}.col-no-margin-l-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-53594122]:first-child{margin-left:0}.col-offset-l-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-53594122]:first-child{margin-left:0}.col-offset-l-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-53594122]:first-child{margin-left:0}.col-offset-l-9[data-v-53594122]{margin-left:78%}.col-no-margin-l-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-53594122]:first-child{margin-left:0}.col-offset-l-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-53594122]:first-child{margin-left:0}.col-offset-l-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-l-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-53594122]{display:none!important}.l-visible[data-v-53594122]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-3[data-v-53594122]{margin-left:26%}.col-no-margin-xl-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-6[data-v-53594122]{margin-left:52%}.col-no-margin-xl-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-9[data-v-53594122]{margin-left:78%}.col-no-margin-xl-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-53594122]{display:none!important}.xl-visible[data-v-53594122]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-3[data-v-53594122]{margin-left:26%}.col-no-margin-xxl-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-6[data-v-53594122]{margin-left:52%}.col-no-margin-xxl-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-9[data-v-53594122]{margin-left:78%}.col-no-margin-xxl-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-53594122]{display:none!important}.xxl-visible[data-v-53594122]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-53594122]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-53594122]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-53594122]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-53594122]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-53594122]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-53594122]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-53594122]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-53594122]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-53594122]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-53594122]{display:none!important}}.vertical-center[data-v-53594122]{display:flex;align-items:center}.horizontal-center[data-v-53594122]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-53594122]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-53594122]{display:none!important}.no-content[data-v-53594122]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-53594122]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-53594122]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-53594122]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-53594122]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-53594122]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-53594122]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-53594122],.btn[data-v-53594122],button[data-v-53594122]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-53594122],.btn-default[type=submit][data-v-53594122],.btn.btn-primary[data-v-53594122],.btn[type=submit][data-v-53594122],button.btn-primary[data-v-53594122],button[type=submit][data-v-53594122]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-53594122],.btn-default .icon[data-v-53594122],button .icon[data-v-53594122]{margin-right:.5em}input[type=password][data-v-53594122],input[type=text][data-v-53594122]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-53594122]:focus,input[type=text][data-v-53594122]:focus{border:1px solid #35b870}button[data-v-53594122],input[data-v-53594122]{outline:none}input[type=text][data-v-53594122]:hover,textarea[data-v-53594122]:hover{border:1px solid #9cdfb0}ul[data-v-53594122]{margin:0;padding:0;list-style:none}a[data-v-53594122]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-53594122]:hover{color:#35b870}[data-v-53594122]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-53594122]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-53594122]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-53594122]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-53594122]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-53594122] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-53594122] .nav .path{cursor:pointer}.browser[data-v-53594122] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-53594122] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-53594122]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-53594122],input[type=number][data-v-53594122],input[type=password][data-v-53594122],input[type=search][data-v-53594122],input[type=text][data-v-53594122],input[type=time][data-v-53594122]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-53594122]:hover,input[type=number][data-v-53594122]:hover,input[type=password][data-v-53594122]:hover,input[type=search][data-v-53594122]:hover,input[type=text][data-v-53594122]:hover,input[type=time][data-v-53594122]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-53594122]:focus,input[type=number][data-v-53594122]:focus,input[type=password][data-v-53594122]:focus,input[type=search][data-v-53594122]:focus,input[type=text][data-v-53594122]:focus,input[type=time][data-v-53594122]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-53594122],input[type=number].with-icon[data-v-53594122],input[type=password].with-icon[data-v-53594122],input[type=search].with-icon[data-v-53594122],input[type=text].with-icon[data-v-53594122],input[type=time].with-icon[data-v-53594122]{padding-left:.3em}input[type=search][data-v-53594122],input[type=text][data-v-53594122]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-53594122]{animation-fill-mode:both;animation-name:fadeIn-53594122;-webkit-animation-name:fadeIn-53594122}.fade-in[data-v-53594122],.fade-out[data-v-53594122]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-53594122]{animation-fill-mode:both;animation-name:fadeOut-53594122;-webkit-animation-name:fadeOut-53594122}@keyframes fadeIn-53594122{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-53594122{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-53594122]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-53594122;-webkit-animation-name:glow-53594122}.loop[data-v-53594122]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-53594122{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-53594122]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-53594122]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-53594122]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-53594122]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-53594122]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.sensor .value-container[data-v-53594122]{position:relative}.sensor .value-container .value[data-v-53594122]{position:absolute;right:0;font-weight:700}.col-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-71b842b2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-71b842b2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-71b842b2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-71b842b2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-71b842b2]:first-child{margin-left:26%!important}.col-offset-3[data-v-71b842b2]:not(first-child){margin-left:30%!important}.col-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-71b842b2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-71b842b2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-71b842b2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-71b842b2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-71b842b2]:first-child{margin-left:52%!important}.col-offset-6[data-v-71b842b2]:not(first-child){margin-left:56%!important}.col-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-71b842b2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-71b842b2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-71b842b2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-71b842b2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-71b842b2]:first-child{margin-left:78%!important}.col-offset-9[data-v-71b842b2]:not(first-child){margin-left:82%!important}.col-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-71b842b2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-71b842b2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-71b842b2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-71b842b2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-s-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-s-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-s-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-71b842b2]{display:none!important}.s-visible[data-v-71b842b2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-m-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-m-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-m-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-71b842b2]{display:none!important}.m-visible[data-v-71b842b2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-l-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-l-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-l-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-71b842b2]{display:none!important}.l-visible[data-v-71b842b2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-xl-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-xl-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-xl-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-71b842b2]{display:none!important}.xl-visible[data-v-71b842b2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-xxl-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-xxl-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-xxl-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-71b842b2]{display:none!important}.xxl-visible[data-v-71b842b2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-71b842b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-71b842b2]{display:none!important}}.vertical-center[data-v-71b842b2]{display:flex;align-items:center}.horizontal-center[data-v-71b842b2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-71b842b2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-71b842b2]{display:none!important}.no-content[data-v-71b842b2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-71b842b2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-71b842b2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-71b842b2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-71b842b2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-71b842b2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-71b842b2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-71b842b2],.btn[data-v-71b842b2],button[data-v-71b842b2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-71b842b2],.btn-default[type=submit][data-v-71b842b2],.btn.btn-primary[data-v-71b842b2],.btn[type=submit][data-v-71b842b2],button.btn-primary[data-v-71b842b2],button[type=submit][data-v-71b842b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-71b842b2],.btn-default .icon[data-v-71b842b2],button .icon[data-v-71b842b2]{margin-right:.5em}input[type=password][data-v-71b842b2],input[type=text][data-v-71b842b2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-71b842b2]:focus,input[type=text][data-v-71b842b2]:focus{border:1px solid #35b870}button[data-v-71b842b2],input[data-v-71b842b2]{outline:none}input[type=text][data-v-71b842b2]:hover,textarea[data-v-71b842b2]:hover{border:1px solid #9cdfb0}ul[data-v-71b842b2]{margin:0;padding:0;list-style:none}a[data-v-71b842b2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-71b842b2]:hover{color:#35b870}[data-v-71b842b2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-71b842b2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-71b842b2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-71b842b2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-71b842b2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-71b842b2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-71b842b2] .nav .path{cursor:pointer}.browser[data-v-71b842b2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-71b842b2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-71b842b2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-71b842b2],input[type=number][data-v-71b842b2],input[type=password][data-v-71b842b2],input[type=search][data-v-71b842b2],input[type=text][data-v-71b842b2],input[type=time][data-v-71b842b2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-71b842b2]:hover,input[type=number][data-v-71b842b2]:hover,input[type=password][data-v-71b842b2]:hover,input[type=search][data-v-71b842b2]:hover,input[type=text][data-v-71b842b2]:hover,input[type=time][data-v-71b842b2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-71b842b2]:focus,input[type=number][data-v-71b842b2]:focus,input[type=password][data-v-71b842b2]:focus,input[type=search][data-v-71b842b2]:focus,input[type=text][data-v-71b842b2]:focus,input[type=time][data-v-71b842b2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-71b842b2],input[type=number].with-icon[data-v-71b842b2],input[type=password].with-icon[data-v-71b842b2],input[type=search].with-icon[data-v-71b842b2],input[type=text].with-icon[data-v-71b842b2],input[type=time].with-icon[data-v-71b842b2]{padding-left:.3em}input[type=search][data-v-71b842b2],input[type=text][data-v-71b842b2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-71b842b2]{animation-fill-mode:both;animation-name:fadeIn-71b842b2;-webkit-animation-name:fadeIn-71b842b2}.fade-in[data-v-71b842b2],.fade-out[data-v-71b842b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-71b842b2]{animation-fill-mode:both;animation-name:fadeOut-71b842b2;-webkit-animation-name:fadeOut-71b842b2}@keyframes fadeIn-71b842b2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-71b842b2{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-71b842b2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-71b842b2;-webkit-animation-name:glow-71b842b2}.loop[data-v-71b842b2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-71b842b2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-71b842b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-71b842b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-71b842b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-71b842b2]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-71b842b2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.slider-root .slider-container[data-v-71b842b2]{position:relative}.slider-root .slider-container .slider[data-v-71b842b2]{position:absolute;right:0}.col-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-97d3a936]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-97d3a936]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-97d3a936]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-97d3a936]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-97d3a936]:first-child{margin-left:26%!important}.col-offset-3[data-v-97d3a936]:not(first-child){margin-left:30%!important}.col-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-97d3a936]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-97d3a936]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-97d3a936]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-97d3a936]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-97d3a936]:first-child{margin-left:52%!important}.col-offset-6[data-v-97d3a936]:not(first-child){margin-left:56%!important}.col-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-97d3a936]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-97d3a936]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-97d3a936]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-97d3a936]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-97d3a936]:first-child{margin-left:78%!important}.col-offset-9[data-v-97d3a936]:not(first-child){margin-left:82%!important}.col-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-97d3a936]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-97d3a936]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-97d3a936]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-97d3a936]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-s-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-s-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-s-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-s-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-97d3a936]{display:none!important}.s-visible[data-v-97d3a936]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-m-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-m-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-m-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-m-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-97d3a936]{display:none!important}.m-visible[data-v-97d3a936]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-l-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-l-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-l-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-l-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-97d3a936]{display:none!important}.l-visible[data-v-97d3a936]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-xl-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-xl-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-xl-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-97d3a936]{display:none!important}.xl-visible[data-v-97d3a936]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-xxl-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-xxl-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-xxl-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-97d3a936]{display:none!important}.xxl-visible[data-v-97d3a936]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-97d3a936]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-97d3a936]{display:none!important}}.vertical-center[data-v-97d3a936]{display:flex;align-items:center}.horizontal-center[data-v-97d3a936]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-97d3a936]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-97d3a936]{display:none!important}.no-content[data-v-97d3a936]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-97d3a936]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-97d3a936]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-97d3a936]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-97d3a936]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-97d3a936]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-97d3a936]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-97d3a936],.btn[data-v-97d3a936],button[data-v-97d3a936]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-97d3a936],.btn-default[type=submit][data-v-97d3a936],.btn.btn-primary[data-v-97d3a936],.btn[type=submit][data-v-97d3a936],button.btn-primary[data-v-97d3a936],button[type=submit][data-v-97d3a936]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-97d3a936],.btn-default .icon[data-v-97d3a936],button .icon[data-v-97d3a936]{margin-right:.5em}input[type=password][data-v-97d3a936],input[type=text][data-v-97d3a936]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-97d3a936]:focus,input[type=text][data-v-97d3a936]:focus{border:1px solid #35b870}button[data-v-97d3a936],input[data-v-97d3a936]{outline:none}input[type=text][data-v-97d3a936]:hover,textarea[data-v-97d3a936]:hover{border:1px solid #9cdfb0}ul[data-v-97d3a936]{margin:0;padding:0;list-style:none}a[data-v-97d3a936]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-97d3a936]:hover{color:#35b870}[data-v-97d3a936]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-97d3a936]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-97d3a936]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-97d3a936]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-97d3a936]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-97d3a936] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-97d3a936] .nav .path{cursor:pointer}.browser[data-v-97d3a936] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-97d3a936] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-97d3a936]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-97d3a936],input[type=number][data-v-97d3a936],input[type=password][data-v-97d3a936],input[type=search][data-v-97d3a936],input[type=text][data-v-97d3a936],input[type=time][data-v-97d3a936]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-97d3a936]:hover,input[type=number][data-v-97d3a936]:hover,input[type=password][data-v-97d3a936]:hover,input[type=search][data-v-97d3a936]:hover,input[type=text][data-v-97d3a936]:hover,input[type=time][data-v-97d3a936]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-97d3a936]:focus,input[type=number][data-v-97d3a936]:focus,input[type=password][data-v-97d3a936]:focus,input[type=search][data-v-97d3a936]:focus,input[type=text][data-v-97d3a936]:focus,input[type=time][data-v-97d3a936]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-97d3a936],input[type=number].with-icon[data-v-97d3a936],input[type=password].with-icon[data-v-97d3a936],input[type=search].with-icon[data-v-97d3a936],input[type=text].with-icon[data-v-97d3a936],input[type=time].with-icon[data-v-97d3a936]{padding-left:.3em}input[type=search][data-v-97d3a936],input[type=text][data-v-97d3a936]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-97d3a936]{animation-fill-mode:both;animation-name:fadeIn-97d3a936;-webkit-animation-name:fadeIn-97d3a936}.fade-in[data-v-97d3a936],.fade-out[data-v-97d3a936]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-97d3a936]{animation-fill-mode:both;animation-name:fadeOut-97d3a936;-webkit-animation-name:fadeOut-97d3a936}@keyframes fadeIn-97d3a936{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-97d3a936{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-97d3a936]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-97d3a936;-webkit-animation-name:glow-97d3a936}.loop[data-v-97d3a936]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-97d3a936{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-97d3a936]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-97d3a936]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-97d3a936]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-97d3a936]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-97d3a936]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.switch .toggle-container[data-v-97d3a936]{position:relative}.switch .toggle-container .toggle[data-v-97d3a936]{position:absolute;right:0}.col-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-450fcab1]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-450fcab1]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-450fcab1]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-450fcab1]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-450fcab1]:first-child{margin-left:26%!important}.col-offset-3[data-v-450fcab1]:not(first-child){margin-left:30%!important}.col-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-450fcab1]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-450fcab1]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-450fcab1]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-450fcab1]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-450fcab1]:first-child{margin-left:52%!important}.col-offset-6[data-v-450fcab1]:not(first-child){margin-left:56%!important}.col-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-450fcab1]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-450fcab1]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-450fcab1]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-450fcab1]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-450fcab1]:first-child{margin-left:78%!important}.col-offset-9[data-v-450fcab1]:not(first-child){margin-left:82%!important}.col-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-450fcab1]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-450fcab1]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-450fcab1]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-450fcab1]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-s-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-s-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-s-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-s-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-450fcab1]{display:none!important}.s-visible[data-v-450fcab1]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-m-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-m-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-m-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-m-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-450fcab1]{display:none!important}.m-visible[data-v-450fcab1]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-l-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-l-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-l-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-l-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-450fcab1]{display:none!important}.l-visible[data-v-450fcab1]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-xl-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-xl-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-xl-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-450fcab1]{display:none!important}.xl-visible[data-v-450fcab1]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-xxl-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-xxl-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-xxl-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-450fcab1]{display:none!important}.xxl-visible[data-v-450fcab1]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-450fcab1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-450fcab1]{display:none!important}}.vertical-center[data-v-450fcab1]{display:flex;align-items:center}.horizontal-center[data-v-450fcab1]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-450fcab1]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-450fcab1]{display:none!important}.no-content[data-v-450fcab1]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-450fcab1]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-450fcab1]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-450fcab1]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-450fcab1]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-450fcab1]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-450fcab1]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-450fcab1],.btn[data-v-450fcab1],button[data-v-450fcab1]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-450fcab1],.btn-default[type=submit][data-v-450fcab1],.btn.btn-primary[data-v-450fcab1],.btn[type=submit][data-v-450fcab1],button.btn-primary[data-v-450fcab1],button[type=submit][data-v-450fcab1]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-450fcab1],.btn-default .icon[data-v-450fcab1],button .icon[data-v-450fcab1]{margin-right:.5em}input[type=password][data-v-450fcab1],input[type=text][data-v-450fcab1]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-450fcab1]:focus,input[type=text][data-v-450fcab1]:focus{border:1px solid #35b870}button[data-v-450fcab1],input[data-v-450fcab1]{outline:none}input[type=text][data-v-450fcab1]:hover,textarea[data-v-450fcab1]:hover{border:1px solid #9cdfb0}ul[data-v-450fcab1]{margin:0;padding:0;list-style:none}a[data-v-450fcab1]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-450fcab1]:hover{color:#35b870}[data-v-450fcab1]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-450fcab1]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-450fcab1]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-450fcab1]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-450fcab1]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-450fcab1] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-450fcab1] .nav .path{cursor:pointer}.browser[data-v-450fcab1] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-450fcab1] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-450fcab1]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-450fcab1],input[type=number][data-v-450fcab1],input[type=password][data-v-450fcab1],input[type=search][data-v-450fcab1],input[type=text][data-v-450fcab1],input[type=time][data-v-450fcab1]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-450fcab1]:hover,input[type=number][data-v-450fcab1]:hover,input[type=password][data-v-450fcab1]:hover,input[type=search][data-v-450fcab1]:hover,input[type=text][data-v-450fcab1]:hover,input[type=time][data-v-450fcab1]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-450fcab1]:focus,input[type=number][data-v-450fcab1]:focus,input[type=password][data-v-450fcab1]:focus,input[type=search][data-v-450fcab1]:focus,input[type=text][data-v-450fcab1]:focus,input[type=time][data-v-450fcab1]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-450fcab1],input[type=number].with-icon[data-v-450fcab1],input[type=password].with-icon[data-v-450fcab1],input[type=search].with-icon[data-v-450fcab1],input[type=text].with-icon[data-v-450fcab1],input[type=time].with-icon[data-v-450fcab1]{padding-left:.3em}input[type=search][data-v-450fcab1],input[type=text][data-v-450fcab1]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-450fcab1]{animation-fill-mode:both;animation-name:fadeIn-450fcab1;-webkit-animation-name:fadeIn-450fcab1}.fade-in[data-v-450fcab1],.fade-out[data-v-450fcab1]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-450fcab1]{animation-fill-mode:both;animation-name:fadeOut-450fcab1;-webkit-animation-name:fadeOut-450fcab1}@keyframes fadeIn-450fcab1{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-450fcab1{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-450fcab1]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-450fcab1;-webkit-animation-name:glow-450fcab1}.loop[data-v-450fcab1]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-450fcab1{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-450fcab1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-450fcab1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-450fcab1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-widget[data-v-450fcab1]{margin:-.75em 0 0 -.75em!important;padding:0;width:calc(100% + 1.5em);height:calc(100% + 1.5em)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1449.9ddbde9a.css b/platypush/backend/http/webapp/dist/static/css/1449.9ddbde9a.css new file mode 100644 index 0000000000..dec16eeda1 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1449.9ddbde9a.css @@ -0,0 +1 @@ +.col-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7478b72d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7478b72d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7478b72d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7478b72d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7478b72d]:first-child{margin-left:26%!important}.col-offset-3[data-v-7478b72d]:not(first-child){margin-left:30%!important}.col-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7478b72d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7478b72d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7478b72d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7478b72d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7478b72d]:first-child{margin-left:52%!important}.col-offset-6[data-v-7478b72d]:not(first-child){margin-left:56%!important}.col-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7478b72d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7478b72d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7478b72d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7478b72d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7478b72d]:first-child{margin-left:78%!important}.col-offset-9[data-v-7478b72d]:not(first-child){margin-left:82%!important}.col-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7478b72d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7478b72d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7478b72d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7478b72d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-s-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-s-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-s-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-s-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7478b72d]{display:none!important}.s-visible[data-v-7478b72d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-m-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-m-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-m-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-m-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7478b72d]{display:none!important}.m-visible[data-v-7478b72d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-l-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-l-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-l-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-l-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7478b72d]{display:none!important}.l-visible[data-v-7478b72d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-xl-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-xl-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-xl-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xl-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7478b72d]{display:none!important}.xl-visible[data-v-7478b72d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7478b72d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7478b72d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7478b72d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7478b72d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7478b72d]{margin-left:26%}.col-no-margin-xxl-3[data-v-7478b72d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7478b72d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7478b72d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7478b72d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7478b72d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7478b72d]{margin-left:52%}.col-no-margin-xxl-6[data-v-7478b72d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7478b72d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7478b72d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7478b72d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7478b72d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7478b72d]{margin-left:78%}.col-no-margin-xxl-9[data-v-7478b72d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7478b72d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7478b72d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7478b72d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7478b72d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7478b72d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7478b72d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7478b72d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7478b72d]{display:none!important}.xxl-visible[data-v-7478b72d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7478b72d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7478b72d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7478b72d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7478b72d]{display:none!important}}.vertical-center[data-v-7478b72d]{display:flex;align-items:center}.horizontal-center[data-v-7478b72d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7478b72d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7478b72d]{display:none!important}.no-content[data-v-7478b72d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7478b72d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7478b72d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7478b72d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7478b72d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7478b72d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7478b72d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7478b72d],.btn[data-v-7478b72d],button[data-v-7478b72d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7478b72d],.btn-default[type=submit][data-v-7478b72d],.btn.btn-primary[data-v-7478b72d],.btn[type=submit][data-v-7478b72d],button.btn-primary[data-v-7478b72d],button[type=submit][data-v-7478b72d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7478b72d]:hover,.btn[data-v-7478b72d]:hover,button[data-v-7478b72d]:hover{color:#35b870}.btn .icon[data-v-7478b72d],.btn-default .icon[data-v-7478b72d],button .icon[data-v-7478b72d]{margin-right:.5em}.btn-default[data-v-7478b72d]:disabled,.btn-default[disabled][data-v-7478b72d],.btn[data-v-7478b72d]:disabled,.btn[disabled][data-v-7478b72d],button[data-v-7478b72d]:disabled,button[disabled][data-v-7478b72d]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7478b72d]{cursor:grab!important}.dragged[data-v-7478b72d]{opacity:.5!important}input[type=password][data-v-7478b72d],input[type=text][data-v-7478b72d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7478b72d]:focus,input[type=text][data-v-7478b72d]:focus{border:1px solid #35b870}button[data-v-7478b72d],input[data-v-7478b72d]{outline:none}input[type=text][data-v-7478b72d]:hover,textarea[data-v-7478b72d]:hover{border:1px solid #9cdfb0}ul[data-v-7478b72d]{margin:0;padding:0;list-style:none}a[data-v-7478b72d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7478b72d]:hover{color:#35b870}[data-v-7478b72d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7478b72d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7478b72d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7478b72d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7478b72d]{color:#ad1717}body[data-v-7478b72d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7478b72d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7478b72d] .nav .path{cursor:pointer}.browser[data-v-7478b72d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7478b72d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7478b72d]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7478b72d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7478b72d],input[type=number][data-v-7478b72d],input[type=password][data-v-7478b72d],input[type=search][data-v-7478b72d],input[type=text][data-v-7478b72d],input[type=time][data-v-7478b72d]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7478b72d]:hover,input[type=number][data-v-7478b72d]:hover,input[type=password][data-v-7478b72d]:hover,input[type=search][data-v-7478b72d]:hover,input[type=text][data-v-7478b72d]:hover,input[type=time][data-v-7478b72d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7478b72d]:focus,input[type=number][data-v-7478b72d]:focus,input[type=password][data-v-7478b72d]:focus,input[type=search][data-v-7478b72d]:focus,input[type=text][data-v-7478b72d]:focus,input[type=time][data-v-7478b72d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7478b72d],input[type=number].with-icon[data-v-7478b72d],input[type=password].with-icon[data-v-7478b72d],input[type=search].with-icon[data-v-7478b72d],input[type=text].with-icon[data-v-7478b72d],input[type=time].with-icon[data-v-7478b72d]{padding-left:.3em}input[type=search][data-v-7478b72d],input[type=text][data-v-7478b72d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7478b72d]{animation-fill-mode:both;animation-name:fadeIn-7478b72d;-webkit-animation-name:fadeIn-7478b72d}.fade-in[data-v-7478b72d],.fade-out[data-v-7478b72d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7478b72d]{animation-fill-mode:both;animation-name:fadeOut-7478b72d;-webkit-animation-name:fadeOut-7478b72d}.expand[data-v-7478b72d]{animation-fill-mode:both;animation-name:expand-7478b72d;-webkit-animation-name:expand-7478b72d}.expand[data-v-7478b72d],.shrink[data-v-7478b72d]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7478b72d]{animation-fill-mode:both;animation-name:shrink-7478b72d;-webkit-animation-name:shrink-7478b72d}.fold[data-v-7478b72d]{animation-fill-mode:both;animation-name:fold-7478b72d;-webkit-animation-name:fold-7478b72d}.fold[data-v-7478b72d],.unfold[data-v-7478b72d]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7478b72d]{animation-fill-mode:both;animation-name:unfold-7478b72d;-webkit-animation-name:unfold-7478b72d}.dim[data-v-7478b72d]{animation-fill-mode:both;animation-name:dim-7478b72d;-webkit-animation-name:dim-7478b72d}.brighten[data-v-7478b72d],.dim[data-v-7478b72d]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7478b72d]{animation-fill-mode:both;animation-name:brighten-7478b72d;-webkit-animation-name:brighten-7478b72d}@keyframes fadeIn-7478b72d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7478b72d{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7478b72d{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7478b72d{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7478b72d{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7478b72d{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7478b72d{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7478b72d{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7478b72d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7478b72d;-webkit-animation-name:glow-7478b72d}.loop[data-v-7478b72d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7478b72d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7478b72d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7478b72d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7478b72d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-7478b72d]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-7478b72d]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-53594122]:first-child{margin-left:0}.col-no-margin-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-53594122]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-53594122]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-53594122]:first-child{margin-left:0}.col-no-margin-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-53594122]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-53594122]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-53594122]:first-child{margin-left:0}.col-no-margin-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-53594122]:first-child{margin-left:26%!important}.col-offset-3[data-v-53594122]:not(first-child){margin-left:30%!important}.col-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-53594122]:first-child{margin-left:0}.col-no-margin-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-53594122]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-53594122]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-53594122]:first-child{margin-left:0}.col-no-margin-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-53594122]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-53594122]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-53594122]:first-child{margin-left:0}.col-no-margin-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-53594122]:first-child{margin-left:52%!important}.col-offset-6[data-v-53594122]:not(first-child){margin-left:56%!important}.col-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-53594122]:first-child{margin-left:0}.col-no-margin-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-53594122]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-53594122]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-53594122]:first-child{margin-left:0}.col-no-margin-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-53594122]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-53594122]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-53594122]:first-child{margin-left:0}.col-no-margin-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-53594122]:first-child{margin-left:78%!important}.col-offset-9[data-v-53594122]:not(first-child){margin-left:82%!important}.col-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-53594122]:first-child{margin-left:0}.col-no-margin-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-53594122]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-53594122]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-53594122]:first-child{margin-left:0}.col-no-margin-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-53594122]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-53594122]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-53594122]:first-child{margin-left:0}.col-offset-s-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-53594122]:first-child{margin-left:0}.col-offset-s-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-53594122]:first-child{margin-left:0}.col-offset-s-3[data-v-53594122]{margin-left:26%}.col-no-margin-s-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-53594122]:first-child{margin-left:0}.col-offset-s-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-53594122]:first-child{margin-left:0}.col-offset-s-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-53594122]:first-child{margin-left:0}.col-offset-s-6[data-v-53594122]{margin-left:52%}.col-no-margin-s-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-53594122]:first-child{margin-left:0}.col-offset-s-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-53594122]:first-child{margin-left:0}.col-offset-s-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-53594122]:first-child{margin-left:0}.col-offset-s-9[data-v-53594122]{margin-left:78%}.col-no-margin-s-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-53594122]:first-child{margin-left:0}.col-offset-s-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-53594122]:first-child{margin-left:0}.col-offset-s-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-s-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-53594122]{display:none!important}.s-visible[data-v-53594122]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-53594122]:first-child{margin-left:0}.col-offset-m-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-53594122]:first-child{margin-left:0}.col-offset-m-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-53594122]:first-child{margin-left:0}.col-offset-m-3[data-v-53594122]{margin-left:26%}.col-no-margin-m-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-53594122]:first-child{margin-left:0}.col-offset-m-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-53594122]:first-child{margin-left:0}.col-offset-m-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-53594122]:first-child{margin-left:0}.col-offset-m-6[data-v-53594122]{margin-left:52%}.col-no-margin-m-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-53594122]:first-child{margin-left:0}.col-offset-m-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-53594122]:first-child{margin-left:0}.col-offset-m-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-53594122]:first-child{margin-left:0}.col-offset-m-9[data-v-53594122]{margin-left:78%}.col-no-margin-m-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-53594122]:first-child{margin-left:0}.col-offset-m-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-53594122]:first-child{margin-left:0}.col-offset-m-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-m-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-53594122]{display:none!important}.m-visible[data-v-53594122]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-53594122]:first-child{margin-left:0}.col-offset-l-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-53594122]:first-child{margin-left:0}.col-offset-l-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-53594122]:first-child{margin-left:0}.col-offset-l-3[data-v-53594122]{margin-left:26%}.col-no-margin-l-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-53594122]:first-child{margin-left:0}.col-offset-l-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-53594122]:first-child{margin-left:0}.col-offset-l-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-53594122]:first-child{margin-left:0}.col-offset-l-6[data-v-53594122]{margin-left:52%}.col-no-margin-l-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-53594122]:first-child{margin-left:0}.col-offset-l-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-53594122]:first-child{margin-left:0}.col-offset-l-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-53594122]:first-child{margin-left:0}.col-offset-l-9[data-v-53594122]{margin-left:78%}.col-no-margin-l-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-53594122]:first-child{margin-left:0}.col-offset-l-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-53594122]:first-child{margin-left:0}.col-offset-l-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-l-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-53594122]{display:none!important}.l-visible[data-v-53594122]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-3[data-v-53594122]{margin-left:26%}.col-no-margin-xl-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-6[data-v-53594122]{margin-left:52%}.col-no-margin-xl-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-9[data-v-53594122]{margin-left:78%}.col-no-margin-xl-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-53594122]:first-child{margin-left:0}.col-offset-xl-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-53594122]{display:none!important}.xl-visible[data-v-53594122]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-53594122]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-1[data-v-53594122]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-53594122]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-53594122]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-2[data-v-53594122]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-53594122]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-53594122]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-3[data-v-53594122]{margin-left:26%}.col-no-margin-xxl-3[data-v-53594122]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-53594122]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-4[data-v-53594122]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-53594122]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-53594122]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-5[data-v-53594122]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-53594122]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-53594122]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-6[data-v-53594122]{margin-left:52%}.col-no-margin-xxl-6[data-v-53594122]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-53594122]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-7[data-v-53594122]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-53594122]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-53594122]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-8[data-v-53594122]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-53594122]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-53594122]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-9[data-v-53594122]{margin-left:78%}.col-no-margin-xxl-9[data-v-53594122]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-53594122]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-10[data-v-53594122]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-53594122]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-53594122]:first-child{margin-left:0}.col-offset-xxl-11[data-v-53594122]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-53594122]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-53594122]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-53594122]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-53594122]{display:none!important}.xxl-visible[data-v-53594122]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-53594122]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-53594122]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-53594122]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-53594122]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-53594122]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-53594122]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-53594122]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-53594122]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-53594122]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-53594122]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-53594122]{display:none!important}}.vertical-center[data-v-53594122]{display:flex;align-items:center}.horizontal-center[data-v-53594122]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-53594122]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-53594122]{display:none!important}.no-content[data-v-53594122]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-53594122]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-53594122]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-53594122]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-53594122]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-53594122]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-53594122]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-53594122],.btn[data-v-53594122],button[data-v-53594122]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-53594122],.btn-default[type=submit][data-v-53594122],.btn.btn-primary[data-v-53594122],.btn[type=submit][data-v-53594122],button.btn-primary[data-v-53594122],button[type=submit][data-v-53594122]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-53594122]:hover,.btn[data-v-53594122]:hover,button[data-v-53594122]:hover{color:#35b870}.btn .icon[data-v-53594122],.btn-default .icon[data-v-53594122],button .icon[data-v-53594122]{margin-right:.5em}.btn-default[data-v-53594122]:disabled,.btn-default[disabled][data-v-53594122],.btn[data-v-53594122]:disabled,.btn[disabled][data-v-53594122],button[data-v-53594122]:disabled,button[disabled][data-v-53594122]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-53594122]{cursor:grab!important}.dragged[data-v-53594122]{opacity:.5!important}input[type=password][data-v-53594122],input[type=text][data-v-53594122]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-53594122]:focus,input[type=text][data-v-53594122]:focus{border:1px solid #35b870}button[data-v-53594122],input[data-v-53594122]{outline:none}input[type=text][data-v-53594122]:hover,textarea[data-v-53594122]:hover{border:1px solid #9cdfb0}ul[data-v-53594122]{margin:0;padding:0;list-style:none}a[data-v-53594122]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-53594122]:hover{color:#35b870}[data-v-53594122]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-53594122]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-53594122]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-53594122]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-53594122]{color:#ad1717}body[data-v-53594122]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-53594122] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-53594122] .nav .path{cursor:pointer}.browser[data-v-53594122] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-53594122] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-53594122]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-53594122]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-53594122],input[type=number][data-v-53594122],input[type=password][data-v-53594122],input[type=search][data-v-53594122],input[type=text][data-v-53594122],input[type=time][data-v-53594122]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-53594122]:hover,input[type=number][data-v-53594122]:hover,input[type=password][data-v-53594122]:hover,input[type=search][data-v-53594122]:hover,input[type=text][data-v-53594122]:hover,input[type=time][data-v-53594122]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-53594122]:focus,input[type=number][data-v-53594122]:focus,input[type=password][data-v-53594122]:focus,input[type=search][data-v-53594122]:focus,input[type=text][data-v-53594122]:focus,input[type=time][data-v-53594122]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-53594122],input[type=number].with-icon[data-v-53594122],input[type=password].with-icon[data-v-53594122],input[type=search].with-icon[data-v-53594122],input[type=text].with-icon[data-v-53594122],input[type=time].with-icon[data-v-53594122]{padding-left:.3em}input[type=search][data-v-53594122],input[type=text][data-v-53594122]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-53594122]{animation-fill-mode:both;animation-name:fadeIn-53594122;-webkit-animation-name:fadeIn-53594122}.fade-in[data-v-53594122],.fade-out[data-v-53594122]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-53594122]{animation-fill-mode:both;animation-name:fadeOut-53594122;-webkit-animation-name:fadeOut-53594122}.expand[data-v-53594122]{animation-fill-mode:both;animation-name:expand-53594122;-webkit-animation-name:expand-53594122}.expand[data-v-53594122],.shrink[data-v-53594122]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-53594122]{animation-fill-mode:both;animation-name:shrink-53594122;-webkit-animation-name:shrink-53594122}.fold[data-v-53594122]{animation-fill-mode:both;animation-name:fold-53594122;-webkit-animation-name:fold-53594122}.fold[data-v-53594122],.unfold[data-v-53594122]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-53594122]{animation-fill-mode:both;animation-name:unfold-53594122;-webkit-animation-name:unfold-53594122}.dim[data-v-53594122]{animation-fill-mode:both;animation-name:dim-53594122;-webkit-animation-name:dim-53594122}.brighten[data-v-53594122],.dim[data-v-53594122]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-53594122]{animation-fill-mode:both;animation-name:brighten-53594122;-webkit-animation-name:brighten-53594122}@keyframes fadeIn-53594122{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-53594122{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-53594122{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-53594122{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-53594122{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-53594122{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-53594122{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-53594122{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-53594122]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-53594122;-webkit-animation-name:glow-53594122}.loop[data-v-53594122]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-53594122{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-53594122]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-53594122]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-53594122]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-53594122]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-53594122]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.sensor .value-container[data-v-53594122]{position:relative}.sensor .value-container .value[data-v-53594122]{position:absolute;right:0;font-weight:700}.col-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-71b842b2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-71b842b2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-71b842b2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-71b842b2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-71b842b2]:first-child{margin-left:26%!important}.col-offset-3[data-v-71b842b2]:not(first-child){margin-left:30%!important}.col-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-71b842b2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-71b842b2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-71b842b2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-71b842b2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-71b842b2]:first-child{margin-left:52%!important}.col-offset-6[data-v-71b842b2]:not(first-child){margin-left:56%!important}.col-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-71b842b2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-71b842b2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-71b842b2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-71b842b2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-71b842b2]:first-child{margin-left:78%!important}.col-offset-9[data-v-71b842b2]:not(first-child){margin-left:82%!important}.col-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-71b842b2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-71b842b2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-71b842b2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-71b842b2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-s-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-s-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-s-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-s-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-71b842b2]{display:none!important}.s-visible[data-v-71b842b2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-m-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-m-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-m-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-m-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-71b842b2]{display:none!important}.m-visible[data-v-71b842b2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-l-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-l-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-l-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-l-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-71b842b2]{display:none!important}.l-visible[data-v-71b842b2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-xl-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-xl-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-xl-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xl-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-71b842b2]{display:none!important}.xl-visible[data-v-71b842b2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-71b842b2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-71b842b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-71b842b2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-71b842b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-71b842b2]{margin-left:26%}.col-no-margin-xxl-3[data-v-71b842b2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-71b842b2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-71b842b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-71b842b2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-71b842b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-71b842b2]{margin-left:52%}.col-no-margin-xxl-6[data-v-71b842b2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-71b842b2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-71b842b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-71b842b2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-71b842b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-71b842b2]{margin-left:78%}.col-no-margin-xxl-9[data-v-71b842b2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-71b842b2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-71b842b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-71b842b2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-71b842b2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-71b842b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-71b842b2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-71b842b2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-71b842b2]{display:none!important}.xxl-visible[data-v-71b842b2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-71b842b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-71b842b2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-71b842b2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-71b842b2]{display:none!important}}.vertical-center[data-v-71b842b2]{display:flex;align-items:center}.horizontal-center[data-v-71b842b2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-71b842b2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-71b842b2]{display:none!important}.no-content[data-v-71b842b2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-71b842b2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-71b842b2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-71b842b2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-71b842b2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-71b842b2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-71b842b2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-71b842b2],.btn[data-v-71b842b2],button[data-v-71b842b2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-71b842b2],.btn-default[type=submit][data-v-71b842b2],.btn.btn-primary[data-v-71b842b2],.btn[type=submit][data-v-71b842b2],button.btn-primary[data-v-71b842b2],button[type=submit][data-v-71b842b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-71b842b2]:hover,.btn[data-v-71b842b2]:hover,button[data-v-71b842b2]:hover{color:#35b870}.btn .icon[data-v-71b842b2],.btn-default .icon[data-v-71b842b2],button .icon[data-v-71b842b2]{margin-right:.5em}.btn-default[data-v-71b842b2]:disabled,.btn-default[disabled][data-v-71b842b2],.btn[data-v-71b842b2]:disabled,.btn[disabled][data-v-71b842b2],button[data-v-71b842b2]:disabled,button[disabled][data-v-71b842b2]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-71b842b2]{cursor:grab!important}.dragged[data-v-71b842b2]{opacity:.5!important}input[type=password][data-v-71b842b2],input[type=text][data-v-71b842b2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-71b842b2]:focus,input[type=text][data-v-71b842b2]:focus{border:1px solid #35b870}button[data-v-71b842b2],input[data-v-71b842b2]{outline:none}input[type=text][data-v-71b842b2]:hover,textarea[data-v-71b842b2]:hover{border:1px solid #9cdfb0}ul[data-v-71b842b2]{margin:0;padding:0;list-style:none}a[data-v-71b842b2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-71b842b2]:hover{color:#35b870}[data-v-71b842b2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-71b842b2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-71b842b2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-71b842b2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-71b842b2]{color:#ad1717}body[data-v-71b842b2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-71b842b2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-71b842b2] .nav .path{cursor:pointer}.browser[data-v-71b842b2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-71b842b2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-71b842b2]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-71b842b2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-71b842b2],input[type=number][data-v-71b842b2],input[type=password][data-v-71b842b2],input[type=search][data-v-71b842b2],input[type=text][data-v-71b842b2],input[type=time][data-v-71b842b2]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-71b842b2]:hover,input[type=number][data-v-71b842b2]:hover,input[type=password][data-v-71b842b2]:hover,input[type=search][data-v-71b842b2]:hover,input[type=text][data-v-71b842b2]:hover,input[type=time][data-v-71b842b2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-71b842b2]:focus,input[type=number][data-v-71b842b2]:focus,input[type=password][data-v-71b842b2]:focus,input[type=search][data-v-71b842b2]:focus,input[type=text][data-v-71b842b2]:focus,input[type=time][data-v-71b842b2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-71b842b2],input[type=number].with-icon[data-v-71b842b2],input[type=password].with-icon[data-v-71b842b2],input[type=search].with-icon[data-v-71b842b2],input[type=text].with-icon[data-v-71b842b2],input[type=time].with-icon[data-v-71b842b2]{padding-left:.3em}input[type=search][data-v-71b842b2],input[type=text][data-v-71b842b2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-71b842b2]{animation-fill-mode:both;animation-name:fadeIn-71b842b2;-webkit-animation-name:fadeIn-71b842b2}.fade-in[data-v-71b842b2],.fade-out[data-v-71b842b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-71b842b2]{animation-fill-mode:both;animation-name:fadeOut-71b842b2;-webkit-animation-name:fadeOut-71b842b2}.expand[data-v-71b842b2]{animation-fill-mode:both;animation-name:expand-71b842b2;-webkit-animation-name:expand-71b842b2}.expand[data-v-71b842b2],.shrink[data-v-71b842b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-71b842b2]{animation-fill-mode:both;animation-name:shrink-71b842b2;-webkit-animation-name:shrink-71b842b2}.fold[data-v-71b842b2]{animation-fill-mode:both;animation-name:fold-71b842b2;-webkit-animation-name:fold-71b842b2}.fold[data-v-71b842b2],.unfold[data-v-71b842b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-71b842b2]{animation-fill-mode:both;animation-name:unfold-71b842b2;-webkit-animation-name:unfold-71b842b2}.dim[data-v-71b842b2]{animation-fill-mode:both;animation-name:dim-71b842b2;-webkit-animation-name:dim-71b842b2}.brighten[data-v-71b842b2],.dim[data-v-71b842b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-71b842b2]{animation-fill-mode:both;animation-name:brighten-71b842b2;-webkit-animation-name:brighten-71b842b2}@keyframes fadeIn-71b842b2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-71b842b2{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-71b842b2{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-71b842b2{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-71b842b2{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-71b842b2{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-71b842b2{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-71b842b2{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-71b842b2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-71b842b2;-webkit-animation-name:glow-71b842b2}.loop[data-v-71b842b2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-71b842b2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-71b842b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-71b842b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-71b842b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-71b842b2]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-71b842b2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.slider-root .slider-container[data-v-71b842b2]{position:relative}.slider-root .slider-container .slider[data-v-71b842b2]{position:absolute;right:0}.col-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-97d3a936]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-97d3a936]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-97d3a936]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-97d3a936]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-97d3a936]:first-child{margin-left:26%!important}.col-offset-3[data-v-97d3a936]:not(first-child){margin-left:30%!important}.col-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-97d3a936]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-97d3a936]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-97d3a936]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-97d3a936]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-97d3a936]:first-child{margin-left:52%!important}.col-offset-6[data-v-97d3a936]:not(first-child){margin-left:56%!important}.col-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-97d3a936]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-97d3a936]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-97d3a936]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-97d3a936]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-97d3a936]:first-child{margin-left:78%!important}.col-offset-9[data-v-97d3a936]:not(first-child){margin-left:82%!important}.col-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-97d3a936]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-97d3a936]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-97d3a936]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-97d3a936]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-s-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-s-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-s-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-s-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-s-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-97d3a936]{display:none!important}.s-visible[data-v-97d3a936]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-m-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-m-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-m-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-m-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-m-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-97d3a936]{display:none!important}.m-visible[data-v-97d3a936]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-l-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-l-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-l-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-l-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-l-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-97d3a936]{display:none!important}.l-visible[data-v-97d3a936]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-xl-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-xl-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-xl-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xl-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-97d3a936]{display:none!important}.xl-visible[data-v-97d3a936]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-1[data-v-97d3a936]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-97d3a936]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-2[data-v-97d3a936]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-97d3a936]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-3[data-v-97d3a936]{margin-left:26%}.col-no-margin-xxl-3[data-v-97d3a936]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-4[data-v-97d3a936]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-97d3a936]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-5[data-v-97d3a936]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-97d3a936]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-6[data-v-97d3a936]{margin-left:52%}.col-no-margin-xxl-6[data-v-97d3a936]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-7[data-v-97d3a936]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-97d3a936]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-8[data-v-97d3a936]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-97d3a936]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-9[data-v-97d3a936]{margin-left:78%}.col-no-margin-xxl-9[data-v-97d3a936]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-10[data-v-97d3a936]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-97d3a936]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-97d3a936]:first-child{margin-left:0}.col-offset-xxl-11[data-v-97d3a936]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-97d3a936]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-97d3a936]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-97d3a936]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-97d3a936]{display:none!important}.xxl-visible[data-v-97d3a936]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-97d3a936]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-97d3a936]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-97d3a936]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-97d3a936]{display:none!important}}.vertical-center[data-v-97d3a936]{display:flex;align-items:center}.horizontal-center[data-v-97d3a936]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-97d3a936]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-97d3a936]{display:none!important}.no-content[data-v-97d3a936]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-97d3a936]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-97d3a936]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-97d3a936]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-97d3a936]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-97d3a936]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-97d3a936]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-97d3a936],.btn[data-v-97d3a936],button[data-v-97d3a936]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-97d3a936],.btn-default[type=submit][data-v-97d3a936],.btn.btn-primary[data-v-97d3a936],.btn[type=submit][data-v-97d3a936],button.btn-primary[data-v-97d3a936],button[type=submit][data-v-97d3a936]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-97d3a936]:hover,.btn[data-v-97d3a936]:hover,button[data-v-97d3a936]:hover{color:#35b870}.btn .icon[data-v-97d3a936],.btn-default .icon[data-v-97d3a936],button .icon[data-v-97d3a936]{margin-right:.5em}.btn-default[data-v-97d3a936]:disabled,.btn-default[disabled][data-v-97d3a936],.btn[data-v-97d3a936]:disabled,.btn[disabled][data-v-97d3a936],button[data-v-97d3a936]:disabled,button[disabled][data-v-97d3a936]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-97d3a936]{cursor:grab!important}.dragged[data-v-97d3a936]{opacity:.5!important}input[type=password][data-v-97d3a936],input[type=text][data-v-97d3a936]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-97d3a936]:focus,input[type=text][data-v-97d3a936]:focus{border:1px solid #35b870}button[data-v-97d3a936],input[data-v-97d3a936]{outline:none}input[type=text][data-v-97d3a936]:hover,textarea[data-v-97d3a936]:hover{border:1px solid #9cdfb0}ul[data-v-97d3a936]{margin:0;padding:0;list-style:none}a[data-v-97d3a936]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-97d3a936]:hover{color:#35b870}[data-v-97d3a936]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-97d3a936]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-97d3a936]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-97d3a936]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-97d3a936]{color:#ad1717}body[data-v-97d3a936]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-97d3a936] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-97d3a936] .nav .path{cursor:pointer}.browser[data-v-97d3a936] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-97d3a936] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-97d3a936]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-97d3a936]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-97d3a936],input[type=number][data-v-97d3a936],input[type=password][data-v-97d3a936],input[type=search][data-v-97d3a936],input[type=text][data-v-97d3a936],input[type=time][data-v-97d3a936]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-97d3a936]:hover,input[type=number][data-v-97d3a936]:hover,input[type=password][data-v-97d3a936]:hover,input[type=search][data-v-97d3a936]:hover,input[type=text][data-v-97d3a936]:hover,input[type=time][data-v-97d3a936]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-97d3a936]:focus,input[type=number][data-v-97d3a936]:focus,input[type=password][data-v-97d3a936]:focus,input[type=search][data-v-97d3a936]:focus,input[type=text][data-v-97d3a936]:focus,input[type=time][data-v-97d3a936]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-97d3a936],input[type=number].with-icon[data-v-97d3a936],input[type=password].with-icon[data-v-97d3a936],input[type=search].with-icon[data-v-97d3a936],input[type=text].with-icon[data-v-97d3a936],input[type=time].with-icon[data-v-97d3a936]{padding-left:.3em}input[type=search][data-v-97d3a936],input[type=text][data-v-97d3a936]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-97d3a936]{animation-fill-mode:both;animation-name:fadeIn-97d3a936;-webkit-animation-name:fadeIn-97d3a936}.fade-in[data-v-97d3a936],.fade-out[data-v-97d3a936]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-97d3a936]{animation-fill-mode:both;animation-name:fadeOut-97d3a936;-webkit-animation-name:fadeOut-97d3a936}.expand[data-v-97d3a936]{animation-fill-mode:both;animation-name:expand-97d3a936;-webkit-animation-name:expand-97d3a936}.expand[data-v-97d3a936],.shrink[data-v-97d3a936]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-97d3a936]{animation-fill-mode:both;animation-name:shrink-97d3a936;-webkit-animation-name:shrink-97d3a936}.fold[data-v-97d3a936]{animation-fill-mode:both;animation-name:fold-97d3a936;-webkit-animation-name:fold-97d3a936}.fold[data-v-97d3a936],.unfold[data-v-97d3a936]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-97d3a936]{animation-fill-mode:both;animation-name:unfold-97d3a936;-webkit-animation-name:unfold-97d3a936}.dim[data-v-97d3a936]{animation-fill-mode:both;animation-name:dim-97d3a936;-webkit-animation-name:dim-97d3a936}.brighten[data-v-97d3a936],.dim[data-v-97d3a936]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-97d3a936]{animation-fill-mode:both;animation-name:brighten-97d3a936;-webkit-animation-name:brighten-97d3a936}@keyframes fadeIn-97d3a936{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-97d3a936{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-97d3a936{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-97d3a936{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-97d3a936{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-97d3a936{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-97d3a936{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-97d3a936{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-97d3a936]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-97d3a936;-webkit-animation-name:glow-97d3a936}.loop[data-v-97d3a936]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-97d3a936{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-97d3a936]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-97d3a936]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-97d3a936]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-97d3a936]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-97d3a936]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.switch .toggle-container[data-v-97d3a936]{position:relative}.switch .toggle-container .toggle[data-v-97d3a936]{position:absolute;right:0}.col-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-450fcab1]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-450fcab1]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-450fcab1]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-450fcab1]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-450fcab1]:first-child{margin-left:26%!important}.col-offset-3[data-v-450fcab1]:not(first-child){margin-left:30%!important}.col-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-450fcab1]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-450fcab1]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-450fcab1]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-450fcab1]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-450fcab1]:first-child{margin-left:52%!important}.col-offset-6[data-v-450fcab1]:not(first-child){margin-left:56%!important}.col-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-450fcab1]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-450fcab1]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-450fcab1]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-450fcab1]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-450fcab1]:first-child{margin-left:78%!important}.col-offset-9[data-v-450fcab1]:not(first-child){margin-left:82%!important}.col-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-450fcab1]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-450fcab1]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-450fcab1]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-450fcab1]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-s-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-s-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-s-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-s-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-s-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-450fcab1]{display:none!important}.s-visible[data-v-450fcab1]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-m-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-m-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-m-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-m-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-m-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-450fcab1]{display:none!important}.m-visible[data-v-450fcab1]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-l-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-l-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-l-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-l-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-l-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-450fcab1]{display:none!important}.l-visible[data-v-450fcab1]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-xl-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-xl-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-xl-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xl-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-450fcab1]{display:none!important}.xl-visible[data-v-450fcab1]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-1[data-v-450fcab1]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-450fcab1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-2[data-v-450fcab1]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-450fcab1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-3[data-v-450fcab1]{margin-left:26%}.col-no-margin-xxl-3[data-v-450fcab1]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-4[data-v-450fcab1]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-450fcab1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-5[data-v-450fcab1]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-450fcab1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-6[data-v-450fcab1]{margin-left:52%}.col-no-margin-xxl-6[data-v-450fcab1]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-7[data-v-450fcab1]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-450fcab1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-8[data-v-450fcab1]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-450fcab1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-9[data-v-450fcab1]{margin-left:78%}.col-no-margin-xxl-9[data-v-450fcab1]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-10[data-v-450fcab1]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-450fcab1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-450fcab1]:first-child{margin-left:0}.col-offset-xxl-11[data-v-450fcab1]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-450fcab1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-450fcab1]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-450fcab1]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-450fcab1]{display:none!important}.xxl-visible[data-v-450fcab1]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-450fcab1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-450fcab1]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-450fcab1]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-450fcab1]{display:none!important}}.vertical-center[data-v-450fcab1]{display:flex;align-items:center}.horizontal-center[data-v-450fcab1]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-450fcab1]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-450fcab1]{display:none!important}.no-content[data-v-450fcab1]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-450fcab1]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-450fcab1]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-450fcab1]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-450fcab1]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-450fcab1]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-450fcab1]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-450fcab1],.btn[data-v-450fcab1],button[data-v-450fcab1]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-450fcab1],.btn-default[type=submit][data-v-450fcab1],.btn.btn-primary[data-v-450fcab1],.btn[type=submit][data-v-450fcab1],button.btn-primary[data-v-450fcab1],button[type=submit][data-v-450fcab1]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-450fcab1]:hover,.btn[data-v-450fcab1]:hover,button[data-v-450fcab1]:hover{color:#35b870}.btn .icon[data-v-450fcab1],.btn-default .icon[data-v-450fcab1],button .icon[data-v-450fcab1]{margin-right:.5em}.btn-default[data-v-450fcab1]:disabled,.btn-default[disabled][data-v-450fcab1],.btn[data-v-450fcab1]:disabled,.btn[disabled][data-v-450fcab1],button[data-v-450fcab1]:disabled,button[disabled][data-v-450fcab1]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-450fcab1]{cursor:grab!important}.dragged[data-v-450fcab1]{opacity:.5!important}input[type=password][data-v-450fcab1],input[type=text][data-v-450fcab1]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-450fcab1]:focus,input[type=text][data-v-450fcab1]:focus{border:1px solid #35b870}button[data-v-450fcab1],input[data-v-450fcab1]{outline:none}input[type=text][data-v-450fcab1]:hover,textarea[data-v-450fcab1]:hover{border:1px solid #9cdfb0}ul[data-v-450fcab1]{margin:0;padding:0;list-style:none}a[data-v-450fcab1]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-450fcab1]:hover{color:#35b870}[data-v-450fcab1]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-450fcab1]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-450fcab1]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-450fcab1]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-450fcab1]{color:#ad1717}body[data-v-450fcab1]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-450fcab1] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-450fcab1] .nav .path{cursor:pointer}.browser[data-v-450fcab1] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-450fcab1] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-450fcab1]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-450fcab1]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-450fcab1],input[type=number][data-v-450fcab1],input[type=password][data-v-450fcab1],input[type=search][data-v-450fcab1],input[type=text][data-v-450fcab1],input[type=time][data-v-450fcab1]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-450fcab1]:hover,input[type=number][data-v-450fcab1]:hover,input[type=password][data-v-450fcab1]:hover,input[type=search][data-v-450fcab1]:hover,input[type=text][data-v-450fcab1]:hover,input[type=time][data-v-450fcab1]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-450fcab1]:focus,input[type=number][data-v-450fcab1]:focus,input[type=password][data-v-450fcab1]:focus,input[type=search][data-v-450fcab1]:focus,input[type=text][data-v-450fcab1]:focus,input[type=time][data-v-450fcab1]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-450fcab1],input[type=number].with-icon[data-v-450fcab1],input[type=password].with-icon[data-v-450fcab1],input[type=search].with-icon[data-v-450fcab1],input[type=text].with-icon[data-v-450fcab1],input[type=time].with-icon[data-v-450fcab1]{padding-left:.3em}input[type=search][data-v-450fcab1],input[type=text][data-v-450fcab1]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-450fcab1]{animation-fill-mode:both;animation-name:fadeIn-450fcab1;-webkit-animation-name:fadeIn-450fcab1}.fade-in[data-v-450fcab1],.fade-out[data-v-450fcab1]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-450fcab1]{animation-fill-mode:both;animation-name:fadeOut-450fcab1;-webkit-animation-name:fadeOut-450fcab1}.expand[data-v-450fcab1]{animation-fill-mode:both;animation-name:expand-450fcab1;-webkit-animation-name:expand-450fcab1}.expand[data-v-450fcab1],.shrink[data-v-450fcab1]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-450fcab1]{animation-fill-mode:both;animation-name:shrink-450fcab1;-webkit-animation-name:shrink-450fcab1}.fold[data-v-450fcab1]{animation-fill-mode:both;animation-name:fold-450fcab1;-webkit-animation-name:fold-450fcab1}.fold[data-v-450fcab1],.unfold[data-v-450fcab1]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-450fcab1]{animation-fill-mode:both;animation-name:unfold-450fcab1;-webkit-animation-name:unfold-450fcab1}.dim[data-v-450fcab1]{animation-fill-mode:both;animation-name:dim-450fcab1;-webkit-animation-name:dim-450fcab1}.brighten[data-v-450fcab1],.dim[data-v-450fcab1]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-450fcab1]{animation-fill-mode:both;animation-name:brighten-450fcab1;-webkit-animation-name:brighten-450fcab1}@keyframes fadeIn-450fcab1{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-450fcab1{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-450fcab1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-450fcab1{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-450fcab1{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-450fcab1{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-450fcab1{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-450fcab1{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-450fcab1]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-450fcab1;-webkit-animation-name:glow-450fcab1}.loop[data-v-450fcab1]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-450fcab1{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-450fcab1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-450fcab1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-450fcab1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-widget[data-v-450fcab1]{margin:-.75em 0 0 -.75em!important;padding:0;width:calc(100% + 1.5em);height:calc(100% + 1.5em)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1485.ec7d392e.css b/platypush/backend/http/webapp/dist/static/css/1485.ec7d392e.css deleted file mode 100644 index 5cdb6a86d9..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/1485.ec7d392e.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1b7de001]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1b7de001]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1b7de001]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1b7de001]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1b7de001]:first-child{margin-left:26%!important}.col-offset-3[data-v-1b7de001]:not(first-child){margin-left:30%!important}.col-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1b7de001]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1b7de001]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1b7de001]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1b7de001]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1b7de001]:first-child{margin-left:52%!important}.col-offset-6[data-v-1b7de001]:not(first-child){margin-left:56%!important}.col-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1b7de001]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1b7de001]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1b7de001]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1b7de001]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1b7de001]:first-child{margin-left:78%!important}.col-offset-9[data-v-1b7de001]:not(first-child){margin-left:82%!important}.col-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1b7de001]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1b7de001]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1b7de001]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1b7de001]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-1[data-v-1b7de001]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-2[data-v-1b7de001]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-3[data-v-1b7de001]{margin-left:26%}.col-no-margin-s-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-4[data-v-1b7de001]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-5[data-v-1b7de001]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-6[data-v-1b7de001]{margin-left:52%}.col-no-margin-s-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-7[data-v-1b7de001]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-8[data-v-1b7de001]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-9[data-v-1b7de001]{margin-left:78%}.col-no-margin-s-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-10[data-v-1b7de001]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1b7de001]:first-child{margin-left:0}.col-offset-s-11[data-v-1b7de001]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1b7de001]{display:none!important}.s-visible[data-v-1b7de001]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-1[data-v-1b7de001]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-2[data-v-1b7de001]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-3[data-v-1b7de001]{margin-left:26%}.col-no-margin-m-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-4[data-v-1b7de001]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-5[data-v-1b7de001]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-6[data-v-1b7de001]{margin-left:52%}.col-no-margin-m-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-7[data-v-1b7de001]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-8[data-v-1b7de001]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-9[data-v-1b7de001]{margin-left:78%}.col-no-margin-m-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-10[data-v-1b7de001]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1b7de001]:first-child{margin-left:0}.col-offset-m-11[data-v-1b7de001]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1b7de001]{display:none!important}.m-visible[data-v-1b7de001]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-1[data-v-1b7de001]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-2[data-v-1b7de001]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-3[data-v-1b7de001]{margin-left:26%}.col-no-margin-l-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-4[data-v-1b7de001]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-5[data-v-1b7de001]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-6[data-v-1b7de001]{margin-left:52%}.col-no-margin-l-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-7[data-v-1b7de001]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-8[data-v-1b7de001]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-9[data-v-1b7de001]{margin-left:78%}.col-no-margin-l-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-10[data-v-1b7de001]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1b7de001]:first-child{margin-left:0}.col-offset-l-11[data-v-1b7de001]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1b7de001]{display:none!important}.l-visible[data-v-1b7de001]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-1[data-v-1b7de001]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-2[data-v-1b7de001]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-3[data-v-1b7de001]{margin-left:26%}.col-no-margin-xl-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-4[data-v-1b7de001]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-5[data-v-1b7de001]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-6[data-v-1b7de001]{margin-left:52%}.col-no-margin-xl-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-7[data-v-1b7de001]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-8[data-v-1b7de001]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-9[data-v-1b7de001]{margin-left:78%}.col-no-margin-xl-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-10[data-v-1b7de001]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xl-11[data-v-1b7de001]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1b7de001]{display:none!important}.xl-visible[data-v-1b7de001]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1b7de001]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1b7de001]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1b7de001]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1b7de001]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1b7de001]{margin-left:26%}.col-no-margin-xxl-3[data-v-1b7de001]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1b7de001]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1b7de001]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1b7de001]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1b7de001]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1b7de001]{margin-left:52%}.col-no-margin-xxl-6[data-v-1b7de001]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1b7de001]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1b7de001]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1b7de001]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1b7de001]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1b7de001]{margin-left:78%}.col-no-margin-xxl-9[data-v-1b7de001]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1b7de001]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1b7de001]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1b7de001]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1b7de001]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1b7de001]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1b7de001]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1b7de001]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1b7de001]{display:none!important}.xxl-visible[data-v-1b7de001]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1b7de001]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1b7de001]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1b7de001]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1b7de001]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1b7de001]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1b7de001]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b7de001]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1b7de001]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b7de001]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1b7de001]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b7de001]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1b7de001]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b7de001]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b7de001]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b7de001]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b7de001]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1b7de001]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b7de001]{display:none!important}}.vertical-center[data-v-1b7de001]{display:flex;align-items:center}.horizontal-center[data-v-1b7de001]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1b7de001]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1b7de001]{display:none!important}.no-content[data-v-1b7de001]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1b7de001]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1b7de001]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1b7de001]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1b7de001]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1b7de001]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1b7de001]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1b7de001],.btn[data-v-1b7de001],button[data-v-1b7de001]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1b7de001],.btn-default[type=submit][data-v-1b7de001],.btn.btn-primary[data-v-1b7de001],.btn[type=submit][data-v-1b7de001],button.btn-primary[data-v-1b7de001],button[type=submit][data-v-1b7de001]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1b7de001],.btn-default .icon[data-v-1b7de001],button .icon[data-v-1b7de001]{margin-right:.5em}input[type=password][data-v-1b7de001],input[type=text][data-v-1b7de001]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1b7de001]:focus,input[type=text][data-v-1b7de001]:focus{border:1px solid #35b870}button[data-v-1b7de001],input[data-v-1b7de001]{outline:none}input[type=text][data-v-1b7de001]:hover,textarea[data-v-1b7de001]:hover{border:1px solid #9cdfb0}ul[data-v-1b7de001]{margin:0;padding:0;list-style:none}a[data-v-1b7de001]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1b7de001]:hover{color:#35b870}[data-v-1b7de001]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1b7de001]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1b7de001]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1b7de001]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1b7de001]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1b7de001] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1b7de001] .nav .path{cursor:pointer}.browser[data-v-1b7de001] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1b7de001] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1b7de001]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1b7de001],input[type=number][data-v-1b7de001],input[type=password][data-v-1b7de001],input[type=search][data-v-1b7de001],input[type=text][data-v-1b7de001],input[type=time][data-v-1b7de001]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1b7de001]:hover,input[type=number][data-v-1b7de001]:hover,input[type=password][data-v-1b7de001]:hover,input[type=search][data-v-1b7de001]:hover,input[type=text][data-v-1b7de001]:hover,input[type=time][data-v-1b7de001]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1b7de001]:focus,input[type=number][data-v-1b7de001]:focus,input[type=password][data-v-1b7de001]:focus,input[type=search][data-v-1b7de001]:focus,input[type=text][data-v-1b7de001]:focus,input[type=time][data-v-1b7de001]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1b7de001],input[type=number].with-icon[data-v-1b7de001],input[type=password].with-icon[data-v-1b7de001],input[type=search].with-icon[data-v-1b7de001],input[type=text].with-icon[data-v-1b7de001],input[type=time].with-icon[data-v-1b7de001]{padding-left:.3em}input[type=search][data-v-1b7de001],input[type=text][data-v-1b7de001]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1b7de001]{animation-fill-mode:both;animation-name:fadeIn-1b7de001;-webkit-animation-name:fadeIn-1b7de001}.fade-in[data-v-1b7de001],.fade-out[data-v-1b7de001]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1b7de001]{animation-fill-mode:both;animation-name:fadeOut-1b7de001;-webkit-animation-name:fadeOut-1b7de001}@keyframes fadeIn-1b7de001{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1b7de001{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1b7de001]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1b7de001;-webkit-animation-name:glow-1b7de001}.loop[data-v-1b7de001]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1b7de001{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1b7de001]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1b7de001]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1b7de001]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-1b7de001] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-1b7de001] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-1b7de001] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-1b7de001] .item .icon i{font-size:40px}[data-v-1b7de001] .nav{height:2.5em}.media-youtube-browser .browser[data-v-1b7de001],.media-youtube-browser[data-v-1b7de001]{height:100%}.media-youtube-browser .body[data-v-1b7de001]{height:calc(100% - 2.5em - 2px);margin-top:2px;overflow-y:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1558.e4c74cc7.css b/platypush/backend/http/webapp/dist/static/css/1558.e4c74cc7.css deleted file mode 100644 index 2ffe0c4bdf..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/1558.e4c74cc7.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-16e4f293]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-16e4f293]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-16e4f293]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-16e4f293]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-16e4f293]:first-child{margin-left:26%!important}.col-offset-3[data-v-16e4f293]:not(first-child){margin-left:30%!important}.col-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-16e4f293]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-16e4f293]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-16e4f293]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-16e4f293]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-16e4f293]:first-child{margin-left:52%!important}.col-offset-6[data-v-16e4f293]:not(first-child){margin-left:56%!important}.col-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-16e4f293]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-16e4f293]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-16e4f293]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-16e4f293]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-16e4f293]:first-child{margin-left:78%!important}.col-offset-9[data-v-16e4f293]:not(first-child){margin-left:82%!important}.col-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-16e4f293]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-16e4f293]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-16e4f293]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-16e4f293]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-1[data-v-16e4f293]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-2[data-v-16e4f293]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-3[data-v-16e4f293]{margin-left:26%}.col-no-margin-s-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-4[data-v-16e4f293]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-5[data-v-16e4f293]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-6[data-v-16e4f293]{margin-left:52%}.col-no-margin-s-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-7[data-v-16e4f293]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-8[data-v-16e4f293]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-9[data-v-16e4f293]{margin-left:78%}.col-no-margin-s-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-10[data-v-16e4f293]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-16e4f293]:first-child{margin-left:0}.col-offset-s-11[data-v-16e4f293]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-s-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-16e4f293]{display:none!important}.s-visible[data-v-16e4f293]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-1[data-v-16e4f293]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-2[data-v-16e4f293]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-3[data-v-16e4f293]{margin-left:26%}.col-no-margin-m-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-4[data-v-16e4f293]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-5[data-v-16e4f293]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-6[data-v-16e4f293]{margin-left:52%}.col-no-margin-m-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-7[data-v-16e4f293]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-8[data-v-16e4f293]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-9[data-v-16e4f293]{margin-left:78%}.col-no-margin-m-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-10[data-v-16e4f293]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-16e4f293]:first-child{margin-left:0}.col-offset-m-11[data-v-16e4f293]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-m-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-16e4f293]{display:none!important}.m-visible[data-v-16e4f293]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-1[data-v-16e4f293]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-2[data-v-16e4f293]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-3[data-v-16e4f293]{margin-left:26%}.col-no-margin-l-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-4[data-v-16e4f293]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-5[data-v-16e4f293]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-6[data-v-16e4f293]{margin-left:52%}.col-no-margin-l-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-7[data-v-16e4f293]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-8[data-v-16e4f293]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-9[data-v-16e4f293]{margin-left:78%}.col-no-margin-l-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-10[data-v-16e4f293]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-16e4f293]:first-child{margin-left:0}.col-offset-l-11[data-v-16e4f293]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-l-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-16e4f293]{display:none!important}.l-visible[data-v-16e4f293]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-1[data-v-16e4f293]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-2[data-v-16e4f293]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-3[data-v-16e4f293]{margin-left:26%}.col-no-margin-xl-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-4[data-v-16e4f293]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-5[data-v-16e4f293]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-6[data-v-16e4f293]{margin-left:52%}.col-no-margin-xl-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-7[data-v-16e4f293]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-8[data-v-16e4f293]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-9[data-v-16e4f293]{margin-left:78%}.col-no-margin-xl-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-10[data-v-16e4f293]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xl-11[data-v-16e4f293]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-16e4f293]{display:none!important}.xl-visible[data-v-16e4f293]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-1[data-v-16e4f293]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-16e4f293]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-2[data-v-16e4f293]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-16e4f293]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-3[data-v-16e4f293]{margin-left:26%}.col-no-margin-xxl-3[data-v-16e4f293]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-4[data-v-16e4f293]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-16e4f293]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-5[data-v-16e4f293]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-16e4f293]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-6[data-v-16e4f293]{margin-left:52%}.col-no-margin-xxl-6[data-v-16e4f293]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-7[data-v-16e4f293]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-16e4f293]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-8[data-v-16e4f293]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-16e4f293]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-9[data-v-16e4f293]{margin-left:78%}.col-no-margin-xxl-9[data-v-16e4f293]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-10[data-v-16e4f293]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-16e4f293]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-16e4f293]:first-child{margin-left:0}.col-offset-xxl-11[data-v-16e4f293]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-16e4f293]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-16e4f293]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-16e4f293]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-16e4f293]{display:none!important}.xxl-visible[data-v-16e4f293]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-16e4f293]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-16e4f293]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-16e4f293]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-16e4f293]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-16e4f293]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-16e4f293]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-16e4f293]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-16e4f293]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-16e4f293]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-16e4f293]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-16e4f293]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-16e4f293]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-16e4f293]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-16e4f293]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-16e4f293]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-16e4f293]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-16e4f293]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-16e4f293]{display:none!important}}.vertical-center[data-v-16e4f293]{display:flex;align-items:center}.horizontal-center[data-v-16e4f293]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-16e4f293]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-16e4f293]{display:none!important}.no-content[data-v-16e4f293]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-16e4f293]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-16e4f293]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-16e4f293]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-16e4f293]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-16e4f293]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-16e4f293]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-16e4f293],.btn[data-v-16e4f293],button[data-v-16e4f293]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-16e4f293],.btn-default[type=submit][data-v-16e4f293],.btn.btn-primary[data-v-16e4f293],.btn[type=submit][data-v-16e4f293],button.btn-primary[data-v-16e4f293],button[type=submit][data-v-16e4f293]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-16e4f293],.btn-default .icon[data-v-16e4f293],button .icon[data-v-16e4f293]{margin-right:.5em}input[type=password][data-v-16e4f293],input[type=text][data-v-16e4f293]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-16e4f293]:focus,input[type=text][data-v-16e4f293]:focus{border:1px solid #35b870}button[data-v-16e4f293],input[data-v-16e4f293]{outline:none}input[type=text][data-v-16e4f293]:hover,textarea[data-v-16e4f293]:hover{border:1px solid #9cdfb0}ul[data-v-16e4f293]{margin:0;padding:0;list-style:none}a[data-v-16e4f293]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-16e4f293]:hover{color:#35b870}[data-v-16e4f293]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-16e4f293]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-16e4f293]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-16e4f293]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-16e4f293]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-16e4f293] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-16e4f293] .nav .path{cursor:pointer}.browser[data-v-16e4f293] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-16e4f293] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-16e4f293]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-16e4f293],input[type=number][data-v-16e4f293],input[type=password][data-v-16e4f293],input[type=search][data-v-16e4f293],input[type=text][data-v-16e4f293],input[type=time][data-v-16e4f293]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-16e4f293]:hover,input[type=number][data-v-16e4f293]:hover,input[type=password][data-v-16e4f293]:hover,input[type=search][data-v-16e4f293]:hover,input[type=text][data-v-16e4f293]:hover,input[type=time][data-v-16e4f293]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-16e4f293]:focus,input[type=number][data-v-16e4f293]:focus,input[type=password][data-v-16e4f293]:focus,input[type=search][data-v-16e4f293]:focus,input[type=text][data-v-16e4f293]:focus,input[type=time][data-v-16e4f293]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-16e4f293],input[type=number].with-icon[data-v-16e4f293],input[type=password].with-icon[data-v-16e4f293],input[type=search].with-icon[data-v-16e4f293],input[type=text].with-icon[data-v-16e4f293],input[type=time].with-icon[data-v-16e4f293]{padding-left:.3em}input[type=search][data-v-16e4f293],input[type=text][data-v-16e4f293]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-16e4f293]{animation-fill-mode:both;animation-name:fadeIn-16e4f293;-webkit-animation-name:fadeIn-16e4f293}.fade-in[data-v-16e4f293],.fade-out[data-v-16e4f293]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-16e4f293]{animation-fill-mode:both;animation-name:fadeOut-16e4f293;-webkit-animation-name:fadeOut-16e4f293}@keyframes fadeIn-16e4f293{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-16e4f293{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-16e4f293]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-16e4f293;-webkit-animation-name:glow-16e4f293}.loop[data-v-16e4f293]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-16e4f293{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-16e4f293]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-16e4f293]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-16e4f293]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-subscriptions[data-v-16e4f293]{height:100%}.media-youtube-subscriptions .channel.item[data-v-16e4f293]{display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;box-shadow:0 3px 2px -1px silver;border-radius:.5em;cursor:pointer}.media-youtube-subscriptions .channel.item .image[data-v-16e4f293]{width:100%;height:10em;display:flex;align-items:center;justify-content:center}.media-youtube-subscriptions .channel.item .image img[data-v-16e4f293]{width:5em;height:5em;border-radius:.5em;transition:filter .2s ease-in-out}.media-youtube-subscriptions .channel.item .title[data-v-16e4f293]{font-size:1.1em;margin-top:.5em}.media-youtube-subscriptions .channel.item[data-v-16e4f293]:hover{text-decoration:underline}.media-youtube-subscriptions .channel.item:hover img[data-v-16e4f293]{filter:contrast(70%)}.media-youtube-subscriptions .subscription-body[data-v-16e4f293]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/169.4e61bddf.css b/platypush/backend/http/webapp/dist/static/css/169.e6cc03dc.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/169.4e61bddf.css rename to platypush/backend/http/webapp/dist/static/css/169.e6cc03dc.css index fcb60f9a11..26de771e25 100644 --- a/platypush/backend/http/webapp/dist/static/css/169.4e61bddf.css +++ b/platypush/backend/http/webapp/dist/static/css/169.e6cc03dc.css @@ -1 +1 @@ -.col-1[data-v-1b6c81c2],.entity .head .icon[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1b6c81c2]:first-child,.entity .head .icon[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1b6c81c2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1b6c81c2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1b6c81c2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1b6c81c2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1b6c81c2],.entity .head .value-and-toggler[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1b6c81c2]:first-child,.entity .head .value-and-toggler[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1b6c81c2]:first-child{margin-left:26%!important}.col-offset-3[data-v-1b6c81c2]:not(first-child){margin-left:30%!important}.col-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1b6c81c2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1b6c81c2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1b6c81c2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1b6c81c2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1b6c81c2]:first-child{margin-left:52%!important}.col-offset-6[data-v-1b6c81c2]:not(first-child){margin-left:56%!important}.col-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1b6c81c2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1b6c81c2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1b6c81c2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1b6c81c2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1b6c81c2]:first-child{margin-left:78%!important}.col-offset-9[data-v-1b6c81c2]:not(first-child){margin-left:82%!important}.col-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1b6c81c2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1b6c81c2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1b6c81c2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1b6c81c2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1b6c81c2],.entity .head .value-container[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1b6c81c2]:first-child,.entity .head .value-container[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-s-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-s-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1b6c81c2],.entity .head .label[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1b6c81c2]:first-child,.entity .head .label[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-s-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-1b6c81c2],.attributes .child .value[data-v-1b6c81c2],.col-s-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-1b6c81c2]:first-child,.attributes .child .value[data-v-1b6c81c2]:first-child,.col-s-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1b6c81c2]{display:none!important}.s-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1b6c81c2],.entity .head .value-container[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1b6c81c2]:first-child,.entity .head .value-container[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-m-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-1b6c81c2],.attributes .child .value[data-v-1b6c81c2],.col-m-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-1b6c81c2]:first-child,.attributes .child .value[data-v-1b6c81c2]:first-child,.col-m-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-m-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1b6c81c2],.entity .head .label[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1b6c81c2]:first-child,.entity .head .label[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-m-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1b6c81c2]{display:none!important}.m-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-l-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-l-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-l-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1b6c81c2]{display:none!important}.l-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-xl-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-xl-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-xl-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1b6c81c2]{display:none!important}.xl-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-xxl-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-xxl-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-xxl-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1b6c81c2]{display:none!important}.xxl-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b6c81c2]{display:none!important}}.vertical-center[data-v-1b6c81c2]{display:flex;align-items:center}.horizontal-center[data-v-1b6c81c2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-1b6c81c2],.pull-right[data-v-1b6c81c2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1b6c81c2]{display:none!important}.no-content[data-v-1b6c81c2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1b6c81c2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1b6c81c2],.btn[data-v-1b6c81c2],button[data-v-1b6c81c2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1b6c81c2],.btn-default[type=submit][data-v-1b6c81c2],.btn.btn-primary[data-v-1b6c81c2],.btn[type=submit][data-v-1b6c81c2],button.btn-primary[data-v-1b6c81c2],button[type=submit][data-v-1b6c81c2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1b6c81c2],.btn-default .icon[data-v-1b6c81c2],button .icon[data-v-1b6c81c2]{margin-right:.5em}input[type=password][data-v-1b6c81c2],input[type=text][data-v-1b6c81c2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1b6c81c2]:focus,input[type=text][data-v-1b6c81c2]:focus{border:1px solid #35b870}button[data-v-1b6c81c2],input[data-v-1b6c81c2]{outline:none}input[type=text][data-v-1b6c81c2]:hover,textarea[data-v-1b6c81c2]:hover{border:1px solid #9cdfb0}ul[data-v-1b6c81c2]{margin:0;padding:0;list-style:none}a[data-v-1b6c81c2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1b6c81c2]:hover{color:#35b870}[data-v-1b6c81c2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1b6c81c2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1b6c81c2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1b6c81c2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1b6c81c2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1b6c81c2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1b6c81c2] .nav .path{cursor:pointer}.browser[data-v-1b6c81c2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1b6c81c2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1b6c81c2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1b6c81c2],input[type=number][data-v-1b6c81c2],input[type=password][data-v-1b6c81c2],input[type=search][data-v-1b6c81c2],input[type=text][data-v-1b6c81c2],input[type=time][data-v-1b6c81c2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1b6c81c2]:hover,input[type=number][data-v-1b6c81c2]:hover,input[type=password][data-v-1b6c81c2]:hover,input[type=search][data-v-1b6c81c2]:hover,input[type=text][data-v-1b6c81c2]:hover,input[type=time][data-v-1b6c81c2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1b6c81c2]:focus,input[type=number][data-v-1b6c81c2]:focus,input[type=password][data-v-1b6c81c2]:focus,input[type=search][data-v-1b6c81c2]:focus,input[type=text][data-v-1b6c81c2]:focus,input[type=time][data-v-1b6c81c2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1b6c81c2],input[type=number].with-icon[data-v-1b6c81c2],input[type=password].with-icon[data-v-1b6c81c2],input[type=search].with-icon[data-v-1b6c81c2],input[type=text].with-icon[data-v-1b6c81c2],input[type=time].with-icon[data-v-1b6c81c2]{padding-left:.3em}input[type=search][data-v-1b6c81c2],input[type=text][data-v-1b6c81c2]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-1b6c81c2],.fade-in[data-v-1b6c81c2]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-1b6c81c2;-webkit-animation-name:fadeIn-1b6c81c2}.fade-out[data-v-1b6c81c2]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-1b6c81c2;-webkit-animation-name:fadeOut-1b6c81c2}@keyframes fadeIn-1b6c81c2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1b6c81c2{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1b6c81c2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1b6c81c2;-webkit-animation-name:glow-1b6c81c2}.loop[data-v-1b6c81c2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1b6c81c2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1b6c81c2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1b6c81c2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1b6c81c2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-1b6c81c2]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-1b6c81c2]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-1b6c81c2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-1b6c81c2]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-1b6c81c2]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-1b6c81c2]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-1b6c81c2]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-1b6c81c2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-1b6c81c2]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-1b6c81c2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-1b6c81c2]{margin-right:.5em}.entity .head .icon[data-v-1b6c81c2]:hover{color:#35b870}.entity .head .label[data-v-1b6c81c2]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-1b6c81c2]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-1b6c81c2]:hover{color:#35b870}.entity .head .value[data-v-1b6c81c2]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-1b6c81c2]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-1b6c81c2]{margin-right:2.5em}.entity .head .value-container[data-v-1b6c81c2]{min-width:7em}.entity .head .unit[data-v-1b6c81c2]{margin-left:.2em}.entity .head .pull-right[data-v-1b6c81c2],.entity .head .value-container[data-v-1b6c81c2]{padding-right:.5em}.entity .head .pull-right[data-v-1b6c81c2] .power-switch,.entity .head .value-container[data-v-1b6c81c2] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-1b6c81c2]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-1b6c81c2]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-1b6c81c2]:hover{color:#35b870}.collapse-toggler[data-v-1b6c81c2]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-1b6c81c2]:hover{color:#35b870}.attributes .child[data-v-1b6c81c2]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-1b6c81c2]{flex-direction:column}}.attributes .child[data-v-1b6c81c2]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-1b6c81c2]:hover{cursor:auto}.attributes .child.head[data-v-1b6c81c2]{cursor:pointer}.attributes .child.head[data-v-1b6c81c2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-1b6c81c2]{font-weight:700}.attributes .child .value[data-v-1b6c81c2]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-1b6c81c2]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-1b6c81c2]:last-child,.entity-container-wrapper.with-children[data-v-1b6c81c2]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-1b6c81c2]{animation:blink-animation-1b6c81c2 1s steps(20,start)}@keyframes blink-animation-1b6c81c2{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-1b6c81c2],.entity .head .icon[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1b6c81c2]:first-child,.entity .head .icon[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1b6c81c2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1b6c81c2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1b6c81c2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1b6c81c2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1b6c81c2],.entity .head .value-and-toggler[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1b6c81c2]:first-child,.entity .head .value-and-toggler[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1b6c81c2]:first-child{margin-left:26%!important}.col-offset-3[data-v-1b6c81c2]:not(first-child){margin-left:30%!important}.col-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1b6c81c2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1b6c81c2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1b6c81c2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1b6c81c2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1b6c81c2]:first-child{margin-left:52%!important}.col-offset-6[data-v-1b6c81c2]:not(first-child){margin-left:56%!important}.col-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1b6c81c2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1b6c81c2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1b6c81c2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1b6c81c2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1b6c81c2]:first-child{margin-left:78%!important}.col-offset-9[data-v-1b6c81c2]:not(first-child){margin-left:82%!important}.col-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1b6c81c2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1b6c81c2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1b6c81c2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1b6c81c2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1b6c81c2],.entity .head .value-container[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1b6c81c2]:first-child,.entity .head .value-container[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-s-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-s-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1b6c81c2],.entity .head .label[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1b6c81c2]:first-child,.entity .head .label[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-s-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-s-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-1b6c81c2],.attributes .child .value[data-v-1b6c81c2],.col-s-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-1b6c81c2]:first-child,.attributes .child .value[data-v-1b6c81c2]:first-child,.col-s-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1b6c81c2]{display:none!important}.s-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1b6c81c2],.entity .head .value-container[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1b6c81c2]:first-child,.entity .head .value-container[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-m-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-1b6c81c2],.attributes .child .value[data-v-1b6c81c2],.col-m-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-1b6c81c2]:first-child,.attributes .child .value[data-v-1b6c81c2]:first-child,.col-m-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-m-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1b6c81c2],.entity .head .label[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1b6c81c2]:first-child,.entity .head .label[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-m-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-m-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1b6c81c2]{display:none!important}.m-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-l-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-l-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-l-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-l-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1b6c81c2]{display:none!important}.l-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-xl-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-xl-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-xl-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xl-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1b6c81c2]{display:none!important}.xl-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1b6c81c2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1b6c81c2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1b6c81c2]{margin-left:26%}.col-no-margin-xxl-3[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1b6c81c2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1b6c81c2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1b6c81c2]{margin-left:52%}.col-no-margin-xxl-6[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1b6c81c2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1b6c81c2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1b6c81c2]{margin-left:78%}.col-no-margin-xxl-9[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1b6c81c2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1b6c81c2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1b6c81c2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1b6c81c2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1b6c81c2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1b6c81c2]{display:none!important}.xxl-visible[data-v-1b6c81c2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b6c81c2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1b6c81c2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b6c81c2]{display:none!important}}.vertical-center[data-v-1b6c81c2]{display:flex;align-items:center}.horizontal-center[data-v-1b6c81c2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-1b6c81c2],.pull-right[data-v-1b6c81c2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1b6c81c2]{display:none!important}.no-content[data-v-1b6c81c2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1b6c81c2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1b6c81c2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1b6c81c2],.btn[data-v-1b6c81c2],button[data-v-1b6c81c2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1b6c81c2],.btn-default[type=submit][data-v-1b6c81c2],.btn.btn-primary[data-v-1b6c81c2],.btn[type=submit][data-v-1b6c81c2],button.btn-primary[data-v-1b6c81c2],button[type=submit][data-v-1b6c81c2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1b6c81c2]:hover,.btn[data-v-1b6c81c2]:hover,button[data-v-1b6c81c2]:hover{color:#35b870}.btn .icon[data-v-1b6c81c2],.btn-default .icon[data-v-1b6c81c2],button .icon[data-v-1b6c81c2]{margin-right:.5em}.btn-default[data-v-1b6c81c2]:disabled,.btn-default[disabled][data-v-1b6c81c2],.btn[data-v-1b6c81c2]:disabled,.btn[disabled][data-v-1b6c81c2],button[data-v-1b6c81c2]:disabled,button[disabled][data-v-1b6c81c2]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1b6c81c2]{cursor:grab!important}.dragged[data-v-1b6c81c2]{opacity:.5!important}input[type=password][data-v-1b6c81c2],input[type=text][data-v-1b6c81c2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1b6c81c2]:focus,input[type=text][data-v-1b6c81c2]:focus{border:1px solid #35b870}button[data-v-1b6c81c2],input[data-v-1b6c81c2]{outline:none}input[type=text][data-v-1b6c81c2]:hover,textarea[data-v-1b6c81c2]:hover{border:1px solid #9cdfb0}ul[data-v-1b6c81c2]{margin:0;padding:0;list-style:none}a[data-v-1b6c81c2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1b6c81c2]:hover{color:#35b870}[data-v-1b6c81c2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1b6c81c2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1b6c81c2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1b6c81c2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1b6c81c2]{color:#ad1717}body[data-v-1b6c81c2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1b6c81c2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1b6c81c2] .nav .path{cursor:pointer}.browser[data-v-1b6c81c2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1b6c81c2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1b6c81c2]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1b6c81c2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1b6c81c2],input[type=number][data-v-1b6c81c2],input[type=password][data-v-1b6c81c2],input[type=search][data-v-1b6c81c2],input[type=text][data-v-1b6c81c2],input[type=time][data-v-1b6c81c2]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1b6c81c2]:hover,input[type=number][data-v-1b6c81c2]:hover,input[type=password][data-v-1b6c81c2]:hover,input[type=search][data-v-1b6c81c2]:hover,input[type=text][data-v-1b6c81c2]:hover,input[type=time][data-v-1b6c81c2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1b6c81c2]:focus,input[type=number][data-v-1b6c81c2]:focus,input[type=password][data-v-1b6c81c2]:focus,input[type=search][data-v-1b6c81c2]:focus,input[type=text][data-v-1b6c81c2]:focus,input[type=time][data-v-1b6c81c2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1b6c81c2],input[type=number].with-icon[data-v-1b6c81c2],input[type=password].with-icon[data-v-1b6c81c2],input[type=search].with-icon[data-v-1b6c81c2],input[type=text].with-icon[data-v-1b6c81c2],input[type=time].with-icon[data-v-1b6c81c2]{padding-left:.3em}input[type=search][data-v-1b6c81c2],input[type=text][data-v-1b6c81c2]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-1b6c81c2],.fade-in[data-v-1b6c81c2]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-1b6c81c2;-webkit-animation-name:fadeIn-1b6c81c2}.fade-out[data-v-1b6c81c2]{animation-fill-mode:both;animation-name:fadeOut-1b6c81c2;-webkit-animation-name:fadeOut-1b6c81c2}.expand[data-v-1b6c81c2],.fade-out[data-v-1b6c81c2]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-1b6c81c2]{animation-fill-mode:both;animation-name:expand-1b6c81c2;-webkit-animation-name:expand-1b6c81c2}.shrink[data-v-1b6c81c2]{animation-fill-mode:both;animation-name:shrink-1b6c81c2;-webkit-animation-name:shrink-1b6c81c2}.fold[data-v-1b6c81c2],.shrink[data-v-1b6c81c2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-1b6c81c2]{animation-fill-mode:both;animation-name:fold-1b6c81c2;-webkit-animation-name:fold-1b6c81c2}.unfold[data-v-1b6c81c2]{animation-fill-mode:both;animation-name:unfold-1b6c81c2;-webkit-animation-name:unfold-1b6c81c2}.dim[data-v-1b6c81c2],.unfold[data-v-1b6c81c2]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-1b6c81c2]{animation-fill-mode:both;animation-name:dim-1b6c81c2;-webkit-animation-name:dim-1b6c81c2}.brighten[data-v-1b6c81c2]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-1b6c81c2;-webkit-animation-name:brighten-1b6c81c2}@keyframes fadeIn-1b6c81c2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1b6c81c2{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1b6c81c2{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1b6c81c2{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1b6c81c2{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1b6c81c2{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1b6c81c2{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1b6c81c2{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1b6c81c2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1b6c81c2;-webkit-animation-name:glow-1b6c81c2}.loop[data-v-1b6c81c2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1b6c81c2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1b6c81c2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1b6c81c2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1b6c81c2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-1b6c81c2]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-1b6c81c2]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-1b6c81c2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-1b6c81c2]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-1b6c81c2]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-1b6c81c2]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-1b6c81c2]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-1b6c81c2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-1b6c81c2]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-1b6c81c2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-1b6c81c2]{margin-right:.5em}.entity .head .icon[data-v-1b6c81c2]:hover{color:#35b870}.entity .head .label[data-v-1b6c81c2]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-1b6c81c2]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-1b6c81c2]:hover{color:#35b870}.entity .head .value[data-v-1b6c81c2]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-1b6c81c2]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-1b6c81c2]{margin-right:2.5em}.entity .head .value-container[data-v-1b6c81c2]{min-width:7em}.entity .head .unit[data-v-1b6c81c2]{margin-left:.2em}.entity .head .pull-right[data-v-1b6c81c2],.entity .head .value-container[data-v-1b6c81c2]{padding-right:.5em}.entity .head .pull-right[data-v-1b6c81c2] .power-switch,.entity .head .value-container[data-v-1b6c81c2] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-1b6c81c2]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-1b6c81c2]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-1b6c81c2]:hover{color:#35b870}.collapse-toggler[data-v-1b6c81c2]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-1b6c81c2]:hover{color:#35b870}.attributes .child[data-v-1b6c81c2]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-1b6c81c2]{flex-direction:column}}.attributes .child[data-v-1b6c81c2]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-1b6c81c2]:hover{cursor:auto}.attributes .child.head[data-v-1b6c81c2]{cursor:pointer}.attributes .child.head[data-v-1b6c81c2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-1b6c81c2]{font-weight:700}.attributes .child .value[data-v-1b6c81c2]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-1b6c81c2]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-1b6c81c2]:last-child,.entity-container-wrapper.with-children[data-v-1b6c81c2]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-1b6c81c2]{animation:blink-animation-1b6c81c2 1s steps(20,start)}@keyframes blink-animation-1b6c81c2{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1706.0cce53c8.css b/platypush/backend/http/webapp/dist/static/css/1706.bb05100a.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/1706.0cce53c8.css rename to platypush/backend/http/webapp/dist/static/css/1706.bb05100a.css index d79be1f8ee..d35ed6f9a1 100644 --- a/platypush/backend/http/webapp/dist/static/css/1706.0cce53c8.css +++ b/platypush/backend/http/webapp/dist/static/css/1706.bb05100a.css @@ -1 +1 @@ -.col-1[data-v-75353a60],.entity .head .icon[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-75353a60]:first-child,.entity .head .icon[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-75353a60]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-75353a60]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-75353a60]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-75353a60]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-75353a60],.entity .head .value-and-toggler[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-75353a60]:first-child,.entity .head .value-and-toggler[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-75353a60]:first-child{margin-left:26%!important}.col-offset-3[data-v-75353a60]:not(first-child){margin-left:30%!important}.col-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-75353a60]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-75353a60]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-75353a60]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-75353a60]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-75353a60]:first-child{margin-left:52%!important}.col-offset-6[data-v-75353a60]:not(first-child){margin-left:56%!important}.col-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-75353a60]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-75353a60]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-75353a60]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-75353a60]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-75353a60]:first-child{margin-left:78%!important}.col-offset-9[data-v-75353a60]:not(first-child){margin-left:82%!important}.col-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-75353a60]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-75353a60]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-75353a60]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-75353a60]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-75353a60],.entity .head .value-container[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-75353a60]:first-child,.entity .head .value-container[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-3[data-v-75353a60]{margin-left:26%}.col-no-margin-s-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-6[data-v-75353a60]{margin-left:52%}.col-no-margin-s-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-75353a60],.entity .head .label[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-75353a60]:first-child,.entity .head .label[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-9[data-v-75353a60]{margin-left:78%}.col-no-margin-s-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-75353a60],.attributes .child .value[data-v-75353a60],.col-s-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-75353a60]:first-child,.attributes .child .value[data-v-75353a60]:first-child,.col-s-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-s-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-75353a60]{display:none!important}.s-visible[data-v-75353a60]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-75353a60],.entity .head .value-container[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-75353a60]:first-child,.entity .head .value-container[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-3[data-v-75353a60]{margin-left:26%}.col-no-margin-m-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-75353a60],.attributes .child .value[data-v-75353a60],.col-m-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-75353a60]:first-child,.attributes .child .value[data-v-75353a60]:first-child,.col-m-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-6[data-v-75353a60]{margin-left:52%}.col-no-margin-m-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-75353a60],.entity .head .label[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-75353a60]:first-child,.entity .head .label[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-9[data-v-75353a60]{margin-left:78%}.col-no-margin-m-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-m-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-75353a60]{display:none!important}.m-visible[data-v-75353a60]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-3[data-v-75353a60]{margin-left:26%}.col-no-margin-l-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-6[data-v-75353a60]{margin-left:52%}.col-no-margin-l-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-9[data-v-75353a60]{margin-left:78%}.col-no-margin-l-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-l-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-75353a60]{display:none!important}.l-visible[data-v-75353a60]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-3[data-v-75353a60]{margin-left:26%}.col-no-margin-xl-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-6[data-v-75353a60]{margin-left:52%}.col-no-margin-xl-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-9[data-v-75353a60]{margin-left:78%}.col-no-margin-xl-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-75353a60]{display:none!important}.xl-visible[data-v-75353a60]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-3[data-v-75353a60]{margin-left:26%}.col-no-margin-xxl-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-6[data-v-75353a60]{margin-left:52%}.col-no-margin-xxl-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-9[data-v-75353a60]{margin-left:78%}.col-no-margin-xxl-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-75353a60]{display:none!important}.xxl-visible[data-v-75353a60]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-75353a60]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-75353a60]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-75353a60]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-75353a60]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-75353a60]{display:none!important}}.vertical-center[data-v-75353a60]{display:flex;align-items:center}.horizontal-center[data-v-75353a60]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-75353a60],.pull-right[data-v-75353a60]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-75353a60]{display:none!important}.no-content[data-v-75353a60]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-75353a60]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-75353a60]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-75353a60]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-75353a60]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-75353a60]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-75353a60]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-75353a60],.btn[data-v-75353a60],button[data-v-75353a60]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-75353a60],.btn-default[type=submit][data-v-75353a60],.btn.btn-primary[data-v-75353a60],.btn[type=submit][data-v-75353a60],button.btn-primary[data-v-75353a60],button[type=submit][data-v-75353a60]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-75353a60],.btn-default .icon[data-v-75353a60],button .icon[data-v-75353a60]{margin-right:.5em}input[type=password][data-v-75353a60],input[type=text][data-v-75353a60]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-75353a60]:focus,input[type=text][data-v-75353a60]:focus{border:1px solid #35b870}button[data-v-75353a60],input[data-v-75353a60]{outline:none}input[type=text][data-v-75353a60]:hover,textarea[data-v-75353a60]:hover{border:1px solid #9cdfb0}ul[data-v-75353a60]{margin:0;padding:0;list-style:none}a[data-v-75353a60]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-75353a60]:hover{color:#35b870}[data-v-75353a60]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-75353a60]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-75353a60]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-75353a60]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-75353a60]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-75353a60] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-75353a60] .nav .path{cursor:pointer}.browser[data-v-75353a60] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-75353a60] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-75353a60]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-75353a60],input[type=number][data-v-75353a60],input[type=password][data-v-75353a60],input[type=search][data-v-75353a60],input[type=text][data-v-75353a60],input[type=time][data-v-75353a60]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-75353a60]:hover,input[type=number][data-v-75353a60]:hover,input[type=password][data-v-75353a60]:hover,input[type=search][data-v-75353a60]:hover,input[type=text][data-v-75353a60]:hover,input[type=time][data-v-75353a60]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-75353a60]:focus,input[type=number][data-v-75353a60]:focus,input[type=password][data-v-75353a60]:focus,input[type=search][data-v-75353a60]:focus,input[type=text][data-v-75353a60]:focus,input[type=time][data-v-75353a60]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-75353a60],input[type=number].with-icon[data-v-75353a60],input[type=password].with-icon[data-v-75353a60],input[type=search].with-icon[data-v-75353a60],input[type=text].with-icon[data-v-75353a60],input[type=time].with-icon[data-v-75353a60]{padding-left:.3em}input[type=search][data-v-75353a60],input[type=text][data-v-75353a60]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-75353a60],.fade-in[data-v-75353a60]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-75353a60;-webkit-animation-name:fadeIn-75353a60}.fade-out[data-v-75353a60]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-75353a60;-webkit-animation-name:fadeOut-75353a60}@keyframes fadeIn-75353a60{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-75353a60{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-75353a60]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-75353a60;-webkit-animation-name:glow-75353a60}.loop[data-v-75353a60]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-75353a60{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-75353a60]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-75353a60]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-75353a60]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-75353a60]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-75353a60]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-75353a60]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-75353a60]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-75353a60]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-75353a60]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-75353a60]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-75353a60]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-75353a60]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-75353a60]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-75353a60]{margin-right:.5em}.entity .head .icon[data-v-75353a60]:hover{color:#35b870}.entity .head .label[data-v-75353a60]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-75353a60]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-75353a60]:hover{color:#35b870}.entity .head .value[data-v-75353a60]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-75353a60]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-75353a60]{margin-right:2.5em}.entity .head .value-container[data-v-75353a60]{min-width:7em}.entity .head .unit[data-v-75353a60]{margin-left:.2em}.entity .head .pull-right[data-v-75353a60],.entity .head .value-container[data-v-75353a60]{padding-right:.5em}.entity .head .pull-right[data-v-75353a60] .power-switch,.entity .head .value-container[data-v-75353a60] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-75353a60]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-75353a60]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-75353a60]:hover{color:#35b870}.collapse-toggler[data-v-75353a60]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-75353a60]:hover{color:#35b870}.attributes .child[data-v-75353a60]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-75353a60]{flex-direction:column}}.attributes .child[data-v-75353a60]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-75353a60]:hover{cursor:auto}.attributes .child.head[data-v-75353a60]{cursor:pointer}.attributes .child.head[data-v-75353a60]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-75353a60]{font-weight:700}.attributes .child .value[data-v-75353a60]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-75353a60]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-75353a60]:last-child,.entity-container-wrapper.with-children[data-v-75353a60]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-75353a60]{animation:blink-animation-75353a60 1s steps(20,start)}@keyframes blink-animation-75353a60{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.ping-host-container .head .icon-container[data-v-75353a60]{display:inline-flex;align-items:center;justify-content:center;min-width:2em;margin-right:.5em;padding-right:0}.ping-host-container .head .icon-container .icon[data-v-75353a60]{width:1.25em;height:1.25em;border-radius:50%}.ping-host-container .head .icon-container .icon.reachable[data-v-75353a60]{background-color:#17ad17}.ping-host-container .head .icon-container .icon.unreachable[data-v-75353a60]{background-color:#ad1717} \ No newline at end of file +.col-1[data-v-75353a60],.entity .head .icon[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-75353a60]:first-child,.entity .head .icon[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-75353a60]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-75353a60]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-75353a60]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-75353a60]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-75353a60],.entity .head .value-and-toggler[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-75353a60]:first-child,.entity .head .value-and-toggler[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-75353a60]:first-child{margin-left:26%!important}.col-offset-3[data-v-75353a60]:not(first-child){margin-left:30%!important}.col-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-75353a60]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-75353a60]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-75353a60]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-75353a60]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-75353a60]:first-child{margin-left:52%!important}.col-offset-6[data-v-75353a60]:not(first-child){margin-left:56%!important}.col-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-75353a60]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-75353a60]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-75353a60]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-75353a60]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-75353a60]:first-child{margin-left:78%!important}.col-offset-9[data-v-75353a60]:not(first-child){margin-left:82%!important}.col-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-75353a60]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-75353a60]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-75353a60]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-75353a60]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-75353a60],.entity .head .value-container[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-75353a60]:first-child,.entity .head .value-container[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-3[data-v-75353a60]{margin-left:26%}.col-no-margin-s-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-6[data-v-75353a60]{margin-left:52%}.col-no-margin-s-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-75353a60],.entity .head .label[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-75353a60]:first-child,.entity .head .label[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-9[data-v-75353a60]{margin-left:78%}.col-no-margin-s-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-s-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-75353a60],.attributes .child .value[data-v-75353a60],.col-s-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-75353a60]:first-child,.attributes .child .value[data-v-75353a60]:first-child,.col-s-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-s-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-75353a60]{display:none!important}.s-visible[data-v-75353a60]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-75353a60],.entity .head .value-container[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-75353a60]:first-child,.entity .head .value-container[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-3[data-v-75353a60]{margin-left:26%}.col-no-margin-m-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-75353a60],.attributes .child .value[data-v-75353a60],.col-m-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-75353a60]:first-child,.attributes .child .value[data-v-75353a60]:first-child,.col-m-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-6[data-v-75353a60]{margin-left:52%}.col-no-margin-m-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-75353a60],.entity .head .label[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-75353a60]:first-child,.entity .head .label[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-9[data-v-75353a60]{margin-left:78%}.col-no-margin-m-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-m-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-m-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-75353a60]{display:none!important}.m-visible[data-v-75353a60]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-3[data-v-75353a60]{margin-left:26%}.col-no-margin-l-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-6[data-v-75353a60]{margin-left:52%}.col-no-margin-l-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-9[data-v-75353a60]{margin-left:78%}.col-no-margin-l-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-l-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-l-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-75353a60]{display:none!important}.l-visible[data-v-75353a60]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-3[data-v-75353a60]{margin-left:26%}.col-no-margin-xl-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-6[data-v-75353a60]{margin-left:52%}.col-no-margin-xl-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-9[data-v-75353a60]{margin-left:78%}.col-no-margin-xl-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-xl-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-75353a60]{display:none!important}.xl-visible[data-v-75353a60]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-75353a60]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-1[data-v-75353a60]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-75353a60]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-75353a60]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-2[data-v-75353a60]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-75353a60]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-75353a60]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-3[data-v-75353a60]{margin-left:26%}.col-no-margin-xxl-3[data-v-75353a60]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-75353a60]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-4[data-v-75353a60]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-75353a60]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-75353a60]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-5[data-v-75353a60]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-75353a60]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-75353a60]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-6[data-v-75353a60]{margin-left:52%}.col-no-margin-xxl-6[data-v-75353a60]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-75353a60]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-7[data-v-75353a60]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-75353a60]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-75353a60]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-8[data-v-75353a60]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-75353a60]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-75353a60]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-9[data-v-75353a60]{margin-left:78%}.col-no-margin-xxl-9[data-v-75353a60]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-75353a60]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-10[data-v-75353a60]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-75353a60]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-75353a60]:first-child{margin-left:0}.col-offset-xxl-11[data-v-75353a60]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-75353a60]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-75353a60]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-75353a60]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-75353a60]{display:none!important}.xxl-visible[data-v-75353a60]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-75353a60]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-75353a60]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-75353a60]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-75353a60]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-75353a60]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-75353a60]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-75353a60]{display:none!important}}.vertical-center[data-v-75353a60]{display:flex;align-items:center}.horizontal-center[data-v-75353a60]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-75353a60],.pull-right[data-v-75353a60]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-75353a60]{display:none!important}.no-content[data-v-75353a60]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-75353a60]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-75353a60]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-75353a60]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-75353a60]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-75353a60]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-75353a60]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-75353a60],.btn[data-v-75353a60],button[data-v-75353a60]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-75353a60],.btn-default[type=submit][data-v-75353a60],.btn.btn-primary[data-v-75353a60],.btn[type=submit][data-v-75353a60],button.btn-primary[data-v-75353a60],button[type=submit][data-v-75353a60]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-75353a60]:hover,.btn[data-v-75353a60]:hover,button[data-v-75353a60]:hover{color:#35b870}.btn .icon[data-v-75353a60],.btn-default .icon[data-v-75353a60],button .icon[data-v-75353a60]{margin-right:.5em}.btn-default[data-v-75353a60]:disabled,.btn-default[disabled][data-v-75353a60],.btn[data-v-75353a60]:disabled,.btn[disabled][data-v-75353a60],button[data-v-75353a60]:disabled,button[disabled][data-v-75353a60]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-75353a60]{cursor:grab!important}.dragged[data-v-75353a60]{opacity:.5!important}input[type=password][data-v-75353a60],input[type=text][data-v-75353a60]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-75353a60]:focus,input[type=text][data-v-75353a60]:focus{border:1px solid #35b870}button[data-v-75353a60],input[data-v-75353a60]{outline:none}input[type=text][data-v-75353a60]:hover,textarea[data-v-75353a60]:hover{border:1px solid #9cdfb0}ul[data-v-75353a60]{margin:0;padding:0;list-style:none}a[data-v-75353a60]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-75353a60]:hover{color:#35b870}[data-v-75353a60]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-75353a60]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-75353a60]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-75353a60]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-75353a60]{color:#ad1717}body[data-v-75353a60]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-75353a60] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-75353a60] .nav .path{cursor:pointer}.browser[data-v-75353a60] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-75353a60] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-75353a60]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-75353a60]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-75353a60],input[type=number][data-v-75353a60],input[type=password][data-v-75353a60],input[type=search][data-v-75353a60],input[type=text][data-v-75353a60],input[type=time][data-v-75353a60]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-75353a60]:hover,input[type=number][data-v-75353a60]:hover,input[type=password][data-v-75353a60]:hover,input[type=search][data-v-75353a60]:hover,input[type=text][data-v-75353a60]:hover,input[type=time][data-v-75353a60]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-75353a60]:focus,input[type=number][data-v-75353a60]:focus,input[type=password][data-v-75353a60]:focus,input[type=search][data-v-75353a60]:focus,input[type=text][data-v-75353a60]:focus,input[type=time][data-v-75353a60]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-75353a60],input[type=number].with-icon[data-v-75353a60],input[type=password].with-icon[data-v-75353a60],input[type=search].with-icon[data-v-75353a60],input[type=text].with-icon[data-v-75353a60],input[type=time].with-icon[data-v-75353a60]{padding-left:.3em}input[type=search][data-v-75353a60],input[type=text][data-v-75353a60]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-75353a60],.fade-in[data-v-75353a60]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-75353a60;-webkit-animation-name:fadeIn-75353a60}.fade-out[data-v-75353a60]{animation-fill-mode:both;animation-name:fadeOut-75353a60;-webkit-animation-name:fadeOut-75353a60}.expand[data-v-75353a60],.fade-out[data-v-75353a60]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-75353a60]{animation-fill-mode:both;animation-name:expand-75353a60;-webkit-animation-name:expand-75353a60}.shrink[data-v-75353a60]{animation-fill-mode:both;animation-name:shrink-75353a60;-webkit-animation-name:shrink-75353a60}.fold[data-v-75353a60],.shrink[data-v-75353a60]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-75353a60]{animation-fill-mode:both;animation-name:fold-75353a60;-webkit-animation-name:fold-75353a60}.unfold[data-v-75353a60]{animation-fill-mode:both;animation-name:unfold-75353a60;-webkit-animation-name:unfold-75353a60}.dim[data-v-75353a60],.unfold[data-v-75353a60]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-75353a60]{animation-fill-mode:both;animation-name:dim-75353a60;-webkit-animation-name:dim-75353a60}.brighten[data-v-75353a60]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-75353a60;-webkit-animation-name:brighten-75353a60}@keyframes fadeIn-75353a60{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-75353a60{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-75353a60{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-75353a60{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-75353a60{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-75353a60{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-75353a60{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-75353a60{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-75353a60]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-75353a60;-webkit-animation-name:glow-75353a60}.loop[data-v-75353a60]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-75353a60{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-75353a60]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-75353a60]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-75353a60]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-75353a60]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-75353a60]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-75353a60]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-75353a60]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-75353a60]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-75353a60]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-75353a60]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-75353a60]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-75353a60]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-75353a60]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-75353a60]{margin-right:.5em}.entity .head .icon[data-v-75353a60]:hover{color:#35b870}.entity .head .label[data-v-75353a60]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-75353a60]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-75353a60]:hover{color:#35b870}.entity .head .value[data-v-75353a60]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-75353a60]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-75353a60]{margin-right:2.5em}.entity .head .value-container[data-v-75353a60]{min-width:7em}.entity .head .unit[data-v-75353a60]{margin-left:.2em}.entity .head .pull-right[data-v-75353a60],.entity .head .value-container[data-v-75353a60]{padding-right:.5em}.entity .head .pull-right[data-v-75353a60] .power-switch,.entity .head .value-container[data-v-75353a60] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-75353a60]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-75353a60]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-75353a60]:hover{color:#35b870}.collapse-toggler[data-v-75353a60]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-75353a60]:hover{color:#35b870}.attributes .child[data-v-75353a60]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-75353a60]{flex-direction:column}}.attributes .child[data-v-75353a60]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-75353a60]:hover{cursor:auto}.attributes .child.head[data-v-75353a60]{cursor:pointer}.attributes .child.head[data-v-75353a60]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-75353a60]{font-weight:700}.attributes .child .value[data-v-75353a60]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-75353a60]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-75353a60]:last-child,.entity-container-wrapper.with-children[data-v-75353a60]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-75353a60]{animation:blink-animation-75353a60 1s steps(20,start)}@keyframes blink-animation-75353a60{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.ping-host-container .head .icon-container[data-v-75353a60]{display:inline-flex;align-items:center;justify-content:center;min-width:2em;margin-right:.5em;padding-right:0}.ping-host-container .head .icon-container .icon[data-v-75353a60]{width:1.25em;height:1.25em;border-radius:50%}.ping-host-container .head .icon-container .icon.reachable[data-v-75353a60]{background-color:#17ad17}.ping-host-container .head .icon-container .icon.unreachable[data-v-75353a60]{background-color:#ad1717} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1807.414ba229.css b/platypush/backend/http/webapp/dist/static/css/1807.414ba229.css deleted file mode 100644 index 16a1399ef8..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/1807.414ba229.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2df98b7b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2df98b7b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2df98b7b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2df98b7b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2df98b7b]:first-child{margin-left:26%!important}.col-offset-3[data-v-2df98b7b]:not(first-child){margin-left:30%!important}.col-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2df98b7b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2df98b7b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2df98b7b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2df98b7b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2df98b7b]:first-child{margin-left:52%!important}.col-offset-6[data-v-2df98b7b]:not(first-child){margin-left:56%!important}.col-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2df98b7b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2df98b7b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2df98b7b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2df98b7b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2df98b7b]:first-child{margin-left:78%!important}.col-offset-9[data-v-2df98b7b]:not(first-child){margin-left:82%!important}.col-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2df98b7b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2df98b7b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2df98b7b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2df98b7b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-s-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-s-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-s-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2df98b7b]{display:none!important}.s-visible[data-v-2df98b7b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-m-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-m-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-m-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2df98b7b]{display:none!important}.m-visible[data-v-2df98b7b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-l-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-l-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-l-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2df98b7b]{display:none!important}.l-visible[data-v-2df98b7b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-xl-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-xl-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-xl-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2df98b7b]{display:none!important}.xl-visible[data-v-2df98b7b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-xxl-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-xxl-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-xxl-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2df98b7b]{display:none!important}.xxl-visible[data-v-2df98b7b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2df98b7b]{display:none!important}}.vertical-center[data-v-2df98b7b]{display:flex;align-items:center}.horizontal-center[data-v-2df98b7b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2df98b7b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2df98b7b]{display:none!important}.no-content[data-v-2df98b7b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2df98b7b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2df98b7b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2df98b7b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2df98b7b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2df98b7b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2df98b7b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2df98b7b],.btn[data-v-2df98b7b],button[data-v-2df98b7b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2df98b7b],.btn-default[type=submit][data-v-2df98b7b],.btn.btn-primary[data-v-2df98b7b],.btn[type=submit][data-v-2df98b7b],button.btn-primary[data-v-2df98b7b],button[type=submit][data-v-2df98b7b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-2df98b7b],.btn-default .icon[data-v-2df98b7b],button .icon[data-v-2df98b7b]{margin-right:.5em}input[type=password][data-v-2df98b7b],input[type=text][data-v-2df98b7b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2df98b7b]:focus,input[type=text][data-v-2df98b7b]:focus{border:1px solid #35b870}button[data-v-2df98b7b],input[data-v-2df98b7b]{outline:none}input[type=text][data-v-2df98b7b]:hover,textarea[data-v-2df98b7b]:hover{border:1px solid #9cdfb0}ul[data-v-2df98b7b]{margin:0;padding:0;list-style:none}a[data-v-2df98b7b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2df98b7b]:hover{color:#35b870}[data-v-2df98b7b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2df98b7b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2df98b7b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2df98b7b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-2df98b7b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2df98b7b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2df98b7b] .nav .path{cursor:pointer}.browser[data-v-2df98b7b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2df98b7b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-2df98b7b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2df98b7b],input[type=number][data-v-2df98b7b],input[type=password][data-v-2df98b7b],input[type=search][data-v-2df98b7b],input[type=text][data-v-2df98b7b],input[type=time][data-v-2df98b7b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-2df98b7b]:hover,input[type=number][data-v-2df98b7b]:hover,input[type=password][data-v-2df98b7b]:hover,input[type=search][data-v-2df98b7b]:hover,input[type=text][data-v-2df98b7b]:hover,input[type=time][data-v-2df98b7b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2df98b7b]:focus,input[type=number][data-v-2df98b7b]:focus,input[type=password][data-v-2df98b7b]:focus,input[type=search][data-v-2df98b7b]:focus,input[type=text][data-v-2df98b7b]:focus,input[type=time][data-v-2df98b7b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2df98b7b],input[type=number].with-icon[data-v-2df98b7b],input[type=password].with-icon[data-v-2df98b7b],input[type=search].with-icon[data-v-2df98b7b],input[type=text].with-icon[data-v-2df98b7b],input[type=time].with-icon[data-v-2df98b7b]{padding-left:.3em}input[type=search][data-v-2df98b7b],input[type=text][data-v-2df98b7b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2df98b7b]{animation-fill-mode:both;animation-name:fadeIn-2df98b7b;-webkit-animation-name:fadeIn-2df98b7b}.fade-in[data-v-2df98b7b],.fade-out[data-v-2df98b7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2df98b7b]{animation-fill-mode:both;animation-name:fadeOut-2df98b7b;-webkit-animation-name:fadeOut-2df98b7b}@keyframes fadeIn-2df98b7b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2df98b7b{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-2df98b7b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2df98b7b;-webkit-animation-name:glow-2df98b7b}.loop[data-v-2df98b7b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2df98b7b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2df98b7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2df98b7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2df98b7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-2df98b7b]{min-height:calc(100vh - 2em)}button[data-v-2df98b7b]{background:none;border:none;box-shadow:none}button[data-v-2df98b7b]:hover{color:#35b870}hgroup[data-v-2df98b7b]{flex-grow:1}h1[data-v-2df98b7b]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-2df98b7b]{border-radius:.5em .5em 0 0}}h2[data-v-2df98b7b]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-2df98b7b]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-2df98b7b]{margin-top:.5em;padding-top:.5em}section.response[data-v-2df98b7b]{flex-grow:1;max-height:40em}section.response .output[data-v-2df98b7b]{overflow:auto}.buttons[data-v-2df98b7b]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-2df98b7b]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-2df98b7b]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-2df98b7b]{background:#fff}header .buttons[data-v-2df98b7b]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-2df98b7b]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-2df98b7b] .doc blockquote{margin-left:0}textarea[data-v-2df98b7b]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-2df98b7b]:hover{border:1px solid #38cf80}textarea[data-v-2df98b7b]:focus{border:1px solid #32b646}form[data-v-2df98b7b]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-2df98b7b]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-2df98b7b]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-2df98b7b]{width:80%;max-width:60em}}.raw .first-row button[data-v-2df98b7b]{margin-left:0}.args-list[data-v-2df98b7b]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-2df98b7b]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-2df98b7b]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-2df98b7b]{width:30em}}.args-list .arg[data-v-2df98b7b]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-2df98b7b]{width:100%}}.args-list .arg .required-flag[data-v-2df98b7b]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-2df98b7b]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-2df98b7b]{width:100%}.args-body[data-v-2df98b7b]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-2df98b7b]{flex-direction:column}}.add-arg[data-v-2df98b7b]{width:100%}.add-arg button[data-v-2df98b7b]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-2df98b7b]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-2df98b7b]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-2df98b7b]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-2df98b7b]{width:100%}.doc-container[data-v-2df98b7b],.response[data-v-2df98b7b]{flex-grow:1}.doc-container h2[data-v-2df98b7b],.response h2[data-v-2df98b7b]{display:inline-flex}.doc-container h2 .title[data-v-2df98b7b],.response h2 .title[data-v-2df98b7b]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-2df98b7b],.response h2 .buttons[data-v-2df98b7b]{width:2em}.doc-container h2 .buttons button[data-v-2df98b7b],.response h2 .buttons button[data-v-2df98b7b]{padding:0}.output[data-v-2df98b7b]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-2df98b7b]{color:red}textarea.curl-snippet[data-v-2df98b7b]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.argdoc-container[data-v-2df98b7b]{max-height:50vh;display:flex;flex-direction:column}@media screen and (min-width:769px){.argdoc-container[data-v-2df98b7b]{width:calc(100% - 22em)}}@media screen and (min-width:1024px){.argdoc-container[data-v-2df98b7b]{width:calc(100% - 32em)}}.argdoc-container .argname[data-v-2df98b7b]{font-weight:700;margin-left:.25em}.argdoc-container .doc[data-v-2df98b7b]{width:100%;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.argdoc-container.widescreen[data-v-2df98b7b]{display:none}}.argdoc-container.mobile[data-v-2df98b7b]{width:100%}@media screen and (min-width:769px){.argdoc-container.mobile[data-v-2df98b7b]{display:none}}.argdoc-container .flag[data-v-2df98b7b]{font-size:.9em;margin-left:.5em;margin-bottom:.2em}.argdoc-container .flag.required[data-v-2df98b7b]{color:red}.argdoc-container .flag.optional[data-v-2df98b7b]{color:#32b646}.col-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1edf7bde]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1edf7bde]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1edf7bde]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1edf7bde]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1edf7bde]:first-child{margin-left:26%!important}.col-offset-3[data-v-1edf7bde]:not(first-child){margin-left:30%!important}.col-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1edf7bde]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1edf7bde]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1edf7bde]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1edf7bde]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1edf7bde]:first-child{margin-left:52%!important}.col-offset-6[data-v-1edf7bde]:not(first-child){margin-left:56%!important}.col-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1edf7bde]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1edf7bde]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1edf7bde]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1edf7bde]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1edf7bde]:first-child{margin-left:78%!important}.col-offset-9[data-v-1edf7bde]:not(first-child){margin-left:82%!important}.col-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1edf7bde]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1edf7bde]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1edf7bde]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1edf7bde]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-1[data-v-1edf7bde]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-2[data-v-1edf7bde]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-3[data-v-1edf7bde]{margin-left:26%}.col-no-margin-s-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-4[data-v-1edf7bde]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-5[data-v-1edf7bde]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-6[data-v-1edf7bde]{margin-left:52%}.col-no-margin-s-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-7[data-v-1edf7bde]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-8[data-v-1edf7bde]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-9[data-v-1edf7bde]{margin-left:78%}.col-no-margin-s-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-10[data-v-1edf7bde]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-s-11[data-v-1edf7bde]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1edf7bde]{display:none!important}.s-visible[data-v-1edf7bde]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-1[data-v-1edf7bde]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-2[data-v-1edf7bde]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-3[data-v-1edf7bde]{margin-left:26%}.col-no-margin-m-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-4[data-v-1edf7bde]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-5[data-v-1edf7bde]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-6[data-v-1edf7bde]{margin-left:52%}.col-no-margin-m-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-7[data-v-1edf7bde]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-8[data-v-1edf7bde]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-9[data-v-1edf7bde]{margin-left:78%}.col-no-margin-m-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-10[data-v-1edf7bde]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-m-11[data-v-1edf7bde]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1edf7bde]{display:none!important}.m-visible[data-v-1edf7bde]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-1[data-v-1edf7bde]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-2[data-v-1edf7bde]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-3[data-v-1edf7bde]{margin-left:26%}.col-no-margin-l-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-4[data-v-1edf7bde]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-5[data-v-1edf7bde]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-6[data-v-1edf7bde]{margin-left:52%}.col-no-margin-l-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-7[data-v-1edf7bde]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-8[data-v-1edf7bde]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-9[data-v-1edf7bde]{margin-left:78%}.col-no-margin-l-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-10[data-v-1edf7bde]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-l-11[data-v-1edf7bde]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1edf7bde]{display:none!important}.l-visible[data-v-1edf7bde]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-1[data-v-1edf7bde]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-2[data-v-1edf7bde]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-3[data-v-1edf7bde]{margin-left:26%}.col-no-margin-xl-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-4[data-v-1edf7bde]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-5[data-v-1edf7bde]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-6[data-v-1edf7bde]{margin-left:52%}.col-no-margin-xl-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-7[data-v-1edf7bde]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-8[data-v-1edf7bde]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-9[data-v-1edf7bde]{margin-left:78%}.col-no-margin-xl-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-10[data-v-1edf7bde]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xl-11[data-v-1edf7bde]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1edf7bde]{display:none!important}.xl-visible[data-v-1edf7bde]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1edf7bde]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1edf7bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1edf7bde]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1edf7bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1edf7bde]{margin-left:26%}.col-no-margin-xxl-3[data-v-1edf7bde]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1edf7bde]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1edf7bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1edf7bde]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1edf7bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1edf7bde]{margin-left:52%}.col-no-margin-xxl-6[data-v-1edf7bde]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1edf7bde]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1edf7bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1edf7bde]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1edf7bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1edf7bde]{margin-left:78%}.col-no-margin-xxl-9[data-v-1edf7bde]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1edf7bde]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1edf7bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1edf7bde]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1edf7bde]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1edf7bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1edf7bde]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1edf7bde]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1edf7bde]{display:none!important}.xxl-visible[data-v-1edf7bde]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1edf7bde]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1edf7bde]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1edf7bde]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1edf7bde]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1edf7bde]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1edf7bde]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1edf7bde]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1edf7bde]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1edf7bde]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1edf7bde]{display:none!important}}.vertical-center[data-v-1edf7bde]{display:flex;align-items:center}.horizontal-center[data-v-1edf7bde]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1edf7bde]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1edf7bde]{display:none!important}.no-content[data-v-1edf7bde]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1edf7bde]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1edf7bde]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1edf7bde]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1edf7bde]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1edf7bde]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1edf7bde]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1edf7bde],.btn[data-v-1edf7bde],button[data-v-1edf7bde]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1edf7bde],.btn-default[type=submit][data-v-1edf7bde],.btn.btn-primary[data-v-1edf7bde],.btn[type=submit][data-v-1edf7bde],button.btn-primary[data-v-1edf7bde],button[type=submit][data-v-1edf7bde]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1edf7bde],.btn-default .icon[data-v-1edf7bde],button .icon[data-v-1edf7bde]{margin-right:.5em}input[type=password][data-v-1edf7bde],input[type=text][data-v-1edf7bde]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1edf7bde]:focus,input[type=text][data-v-1edf7bde]:focus{border:1px solid #35b870}button[data-v-1edf7bde],input[data-v-1edf7bde]{outline:none}input[type=text][data-v-1edf7bde]:hover,textarea[data-v-1edf7bde]:hover{border:1px solid #9cdfb0}ul[data-v-1edf7bde]{margin:0;padding:0;list-style:none}a[data-v-1edf7bde]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1edf7bde]:hover{color:#35b870}[data-v-1edf7bde]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1edf7bde]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1edf7bde]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1edf7bde]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1edf7bde]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1edf7bde] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1edf7bde] .nav .path{cursor:pointer}.browser[data-v-1edf7bde] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1edf7bde] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1edf7bde]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1edf7bde],input[type=number][data-v-1edf7bde],input[type=password][data-v-1edf7bde],input[type=search][data-v-1edf7bde],input[type=text][data-v-1edf7bde],input[type=time][data-v-1edf7bde]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1edf7bde]:hover,input[type=number][data-v-1edf7bde]:hover,input[type=password][data-v-1edf7bde]:hover,input[type=search][data-v-1edf7bde]:hover,input[type=text][data-v-1edf7bde]:hover,input[type=time][data-v-1edf7bde]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1edf7bde]:focus,input[type=number][data-v-1edf7bde]:focus,input[type=password][data-v-1edf7bde]:focus,input[type=search][data-v-1edf7bde]:focus,input[type=text][data-v-1edf7bde]:focus,input[type=time][data-v-1edf7bde]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1edf7bde],input[type=number].with-icon[data-v-1edf7bde],input[type=password].with-icon[data-v-1edf7bde],input[type=search].with-icon[data-v-1edf7bde],input[type=text].with-icon[data-v-1edf7bde],input[type=time].with-icon[data-v-1edf7bde]{padding-left:.3em}input[type=search][data-v-1edf7bde],input[type=text][data-v-1edf7bde]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1edf7bde]{animation-fill-mode:both;animation-name:fadeIn-1edf7bde;-webkit-animation-name:fadeIn-1edf7bde}.fade-in[data-v-1edf7bde],.fade-out[data-v-1edf7bde]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1edf7bde]{animation-fill-mode:both;animation-name:fadeOut-1edf7bde;-webkit-animation-name:fadeOut-1edf7bde}@keyframes fadeIn-1edf7bde{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1edf7bde{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1edf7bde]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1edf7bde;-webkit-animation-name:glow-1edf7bde}.loop[data-v-1edf7bde]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1edf7bde{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1edf7bde]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1edf7bde]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1edf7bde]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-1edf7bde]{min-height:calc(100vh - 2em)}button[data-v-1edf7bde]{background:none;border:none;box-shadow:none}button[data-v-1edf7bde]:hover{color:#35b870}hgroup[data-v-1edf7bde]{flex-grow:1}h1[data-v-1edf7bde]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-1edf7bde]{border-radius:.5em .5em 0 0}}h2[data-v-1edf7bde]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-1edf7bde]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-1edf7bde]{margin-top:.5em;padding-top:.5em}section.response[data-v-1edf7bde]{flex-grow:1;max-height:40em}section.response .output[data-v-1edf7bde]{overflow:auto}.buttons[data-v-1edf7bde]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-1edf7bde]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-1edf7bde]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-1edf7bde]{background:#fff}header .buttons[data-v-1edf7bde]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-1edf7bde]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-1edf7bde] .doc blockquote{margin-left:0}textarea[data-v-1edf7bde]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-1edf7bde]:hover{border:1px solid #38cf80}textarea[data-v-1edf7bde]:focus{border:1px solid #32b646}form[data-v-1edf7bde]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-1edf7bde]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-1edf7bde]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-1edf7bde]{width:80%;max-width:60em}}.raw .first-row button[data-v-1edf7bde]{margin-left:0}.args-list[data-v-1edf7bde]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-1edf7bde]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-1edf7bde]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-1edf7bde]{width:30em}}.args-list .arg[data-v-1edf7bde]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-1edf7bde]{width:100%}}.args-list .arg .required-flag[data-v-1edf7bde]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-1edf7bde]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-1edf7bde]{width:100%}.args-body[data-v-1edf7bde]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-1edf7bde]{flex-direction:column}}.add-arg[data-v-1edf7bde]{width:100%}.add-arg button[data-v-1edf7bde]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-1edf7bde]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-1edf7bde]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-1edf7bde]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-1edf7bde]{width:100%}.doc-container[data-v-1edf7bde],.response[data-v-1edf7bde]{flex-grow:1}.doc-container h2[data-v-1edf7bde],.response h2[data-v-1edf7bde]{display:inline-flex}.doc-container h2 .title[data-v-1edf7bde],.response h2 .title[data-v-1edf7bde]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-1edf7bde],.response h2 .buttons[data-v-1edf7bde]{width:2em}.doc-container h2 .buttons button[data-v-1edf7bde],.response h2 .buttons button[data-v-1edf7bde]{padding:0}.output[data-v-1edf7bde]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-1edf7bde]{color:red}textarea.curl-snippet[data-v-1edf7bde]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.col-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-105c186a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-105c186a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-105c186a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-105c186a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-105c186a]:first-child{margin-left:26%!important}.col-offset-3[data-v-105c186a]:not(first-child){margin-left:30%!important}.col-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-105c186a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-105c186a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-105c186a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-105c186a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-105c186a]:first-child{margin-left:52%!important}.col-offset-6[data-v-105c186a]:not(first-child){margin-left:56%!important}.col-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-105c186a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-105c186a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-105c186a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-105c186a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-105c186a]:first-child{margin-left:78%!important}.col-offset-9[data-v-105c186a]:not(first-child){margin-left:82%!important}.col-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-105c186a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-105c186a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-105c186a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-105c186a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-3[data-v-105c186a]{margin-left:26%}.col-no-margin-s-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-6[data-v-105c186a]{margin-left:52%}.col-no-margin-s-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-9[data-v-105c186a]{margin-left:78%}.col-no-margin-s-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-105c186a]{display:none!important}.s-visible[data-v-105c186a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-3[data-v-105c186a]{margin-left:26%}.col-no-margin-m-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-6[data-v-105c186a]{margin-left:52%}.col-no-margin-m-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-9[data-v-105c186a]{margin-left:78%}.col-no-margin-m-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-105c186a]{display:none!important}.m-visible[data-v-105c186a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-3[data-v-105c186a]{margin-left:26%}.col-no-margin-l-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-6[data-v-105c186a]{margin-left:52%}.col-no-margin-l-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-9[data-v-105c186a]{margin-left:78%}.col-no-margin-l-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-105c186a]{display:none!important}.l-visible[data-v-105c186a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-3[data-v-105c186a]{margin-left:26%}.col-no-margin-xl-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-6[data-v-105c186a]{margin-left:52%}.col-no-margin-xl-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-9[data-v-105c186a]{margin-left:78%}.col-no-margin-xl-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-105c186a]{display:none!important}.xl-visible[data-v-105c186a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-105c186a]{margin-left:26%}.col-no-margin-xxl-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-105c186a]{margin-left:52%}.col-no-margin-xxl-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-105c186a]{margin-left:78%}.col-no-margin-xxl-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-105c186a]{display:none!important}.xxl-visible[data-v-105c186a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-105c186a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-105c186a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-105c186a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-105c186a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-105c186a]{display:none!important}}.vertical-center[data-v-105c186a]{display:flex;align-items:center}.horizontal-center[data-v-105c186a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-105c186a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-105c186a]{display:none!important}.no-content[data-v-105c186a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-105c186a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-105c186a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-105c186a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-105c186a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-105c186a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-105c186a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-105c186a],.btn[data-v-105c186a],button[data-v-105c186a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-105c186a],.btn-default[type=submit][data-v-105c186a],.btn.btn-primary[data-v-105c186a],.btn[type=submit][data-v-105c186a],button.btn-primary[data-v-105c186a],button[type=submit][data-v-105c186a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-105c186a],.btn-default .icon[data-v-105c186a],button .icon[data-v-105c186a]{margin-right:.5em}input[type=password][data-v-105c186a],input[type=text][data-v-105c186a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-105c186a]:focus,input[type=text][data-v-105c186a]:focus{border:1px solid #35b870}button[data-v-105c186a],input[data-v-105c186a]{outline:none}input[type=text][data-v-105c186a]:hover,textarea[data-v-105c186a]:hover{border:1px solid #9cdfb0}ul[data-v-105c186a]{margin:0;padding:0;list-style:none}a[data-v-105c186a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-105c186a]:hover{color:#35b870}[data-v-105c186a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-105c186a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-105c186a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-105c186a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-105c186a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-105c186a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-105c186a] .nav .path{cursor:pointer}.browser[data-v-105c186a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-105c186a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-105c186a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-105c186a],input[type=number][data-v-105c186a],input[type=password][data-v-105c186a],input[type=search][data-v-105c186a],input[type=text][data-v-105c186a],input[type=time][data-v-105c186a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-105c186a]:hover,input[type=number][data-v-105c186a]:hover,input[type=password][data-v-105c186a]:hover,input[type=search][data-v-105c186a]:hover,input[type=text][data-v-105c186a]:hover,input[type=time][data-v-105c186a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-105c186a]:focus,input[type=number][data-v-105c186a]:focus,input[type=password][data-v-105c186a]:focus,input[type=search][data-v-105c186a]:focus,input[type=text][data-v-105c186a]:focus,input[type=time][data-v-105c186a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-105c186a],input[type=number].with-icon[data-v-105c186a],input[type=password].with-icon[data-v-105c186a],input[type=search].with-icon[data-v-105c186a],input[type=text].with-icon[data-v-105c186a],input[type=time].with-icon[data-v-105c186a]{padding-left:.3em}input[type=search][data-v-105c186a],input[type=text][data-v-105c186a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-105c186a]{animation-fill-mode:both;animation-name:fadeIn-105c186a;-webkit-animation-name:fadeIn-105c186a}.fade-in[data-v-105c186a],.fade-out[data-v-105c186a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-105c186a]{animation-fill-mode:both;animation-name:fadeOut-105c186a;-webkit-animation-name:fadeOut-105c186a}@keyframes fadeIn-105c186a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-105c186a{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-105c186a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-105c186a;-webkit-animation-name:glow-105c186a}.loop[data-v-105c186a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-105c186a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-105c186a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-105c186a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-105c186a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-105c186a]{min-height:calc(100vh - 2em)}button[data-v-105c186a]{background:none;border:none;box-shadow:none}button[data-v-105c186a]:hover{color:#35b870}hgroup[data-v-105c186a]{flex-grow:1}h1[data-v-105c186a]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-105c186a]{border-radius:.5em .5em 0 0}}h2[data-v-105c186a]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-105c186a]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-105c186a]{margin-top:.5em;padding-top:.5em}section.response[data-v-105c186a]{flex-grow:1;max-height:40em}section.response .output[data-v-105c186a]{overflow:auto}.buttons[data-v-105c186a]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-105c186a]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-105c186a]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-105c186a]{background:#fff}header .buttons[data-v-105c186a]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-105c186a]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-105c186a] .doc blockquote{margin-left:0}textarea[data-v-105c186a]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-105c186a]:hover{border:1px solid #38cf80}textarea[data-v-105c186a]:focus{border:1px solid #32b646}form[data-v-105c186a]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-105c186a]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-105c186a]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-105c186a]{width:80%;max-width:60em}}.raw .first-row button[data-v-105c186a]{margin-left:0}.args-list[data-v-105c186a]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-105c186a]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-105c186a]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-105c186a]{width:30em}}.args-list .arg[data-v-105c186a]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-105c186a]{width:100%}}.args-list .arg .required-flag[data-v-105c186a]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-105c186a]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-105c186a]{width:100%}.args-body[data-v-105c186a]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-105c186a]{flex-direction:column}}.add-arg[data-v-105c186a]{width:100%}.add-arg button[data-v-105c186a]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-105c186a]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-105c186a]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-105c186a]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-105c186a]{width:100%}.doc-container[data-v-105c186a],.response[data-v-105c186a]{flex-grow:1}.doc-container h2[data-v-105c186a],.response h2[data-v-105c186a]{display:inline-flex}.doc-container h2 .title[data-v-105c186a],.response h2 .title[data-v-105c186a]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-105c186a],.response h2 .buttons[data-v-105c186a]{width:2em}.doc-container h2 .buttons button[data-v-105c186a],.response h2 .buttons button[data-v-105c186a]{padding:0}.output[data-v-105c186a]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-105c186a]{color:red}textarea.curl-snippet[data-v-105c186a]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.doc-container .buttons[data-v-105c186a]{margin-right:1.25em}.doc-container .buttons button i[data-v-105c186a]{padding:0 .75em}.doc-container .buttons button[data-v-105c186a]:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1f70dd66]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1f70dd66]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1f70dd66]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1f70dd66]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1f70dd66]:first-child{margin-left:26%!important}.col-offset-3[data-v-1f70dd66]:not(first-child){margin-left:30%!important}.col-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1f70dd66]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1f70dd66]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1f70dd66]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1f70dd66]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1f70dd66]:first-child{margin-left:52%!important}.col-offset-6[data-v-1f70dd66]:not(first-child){margin-left:56%!important}.col-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1f70dd66]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1f70dd66]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1f70dd66]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1f70dd66]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1f70dd66]:first-child{margin-left:78%!important}.col-offset-9[data-v-1f70dd66]:not(first-child){margin-left:82%!important}.col-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1f70dd66]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1f70dd66]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1f70dd66]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1f70dd66]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-1[data-v-1f70dd66]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-2[data-v-1f70dd66]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-3[data-v-1f70dd66]{margin-left:26%}.col-no-margin-s-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-4[data-v-1f70dd66]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-5[data-v-1f70dd66]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-6[data-v-1f70dd66]{margin-left:52%}.col-no-margin-s-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-7[data-v-1f70dd66]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-8[data-v-1f70dd66]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-9[data-v-1f70dd66]{margin-left:78%}.col-no-margin-s-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-10[data-v-1f70dd66]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-s-11[data-v-1f70dd66]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1f70dd66]{display:none!important}.s-visible[data-v-1f70dd66]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-1[data-v-1f70dd66]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-2[data-v-1f70dd66]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-3[data-v-1f70dd66]{margin-left:26%}.col-no-margin-m-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-4[data-v-1f70dd66]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-5[data-v-1f70dd66]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-6[data-v-1f70dd66]{margin-left:52%}.col-no-margin-m-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-7[data-v-1f70dd66]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-8[data-v-1f70dd66]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-9[data-v-1f70dd66]{margin-left:78%}.col-no-margin-m-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-10[data-v-1f70dd66]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-m-11[data-v-1f70dd66]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1f70dd66]{display:none!important}.m-visible[data-v-1f70dd66]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-1[data-v-1f70dd66]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-2[data-v-1f70dd66]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-3[data-v-1f70dd66]{margin-left:26%}.col-no-margin-l-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-4[data-v-1f70dd66]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-5[data-v-1f70dd66]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-6[data-v-1f70dd66]{margin-left:52%}.col-no-margin-l-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-7[data-v-1f70dd66]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-8[data-v-1f70dd66]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-9[data-v-1f70dd66]{margin-left:78%}.col-no-margin-l-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-10[data-v-1f70dd66]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-l-11[data-v-1f70dd66]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1f70dd66]{display:none!important}.l-visible[data-v-1f70dd66]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-1[data-v-1f70dd66]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-2[data-v-1f70dd66]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-3[data-v-1f70dd66]{margin-left:26%}.col-no-margin-xl-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-4[data-v-1f70dd66]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-5[data-v-1f70dd66]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-6[data-v-1f70dd66]{margin-left:52%}.col-no-margin-xl-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-7[data-v-1f70dd66]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-8[data-v-1f70dd66]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-9[data-v-1f70dd66]{margin-left:78%}.col-no-margin-xl-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-10[data-v-1f70dd66]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xl-11[data-v-1f70dd66]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1f70dd66]{display:none!important}.xl-visible[data-v-1f70dd66]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1f70dd66]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1f70dd66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1f70dd66]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1f70dd66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1f70dd66]{margin-left:26%}.col-no-margin-xxl-3[data-v-1f70dd66]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1f70dd66]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1f70dd66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1f70dd66]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1f70dd66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1f70dd66]{margin-left:52%}.col-no-margin-xxl-6[data-v-1f70dd66]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1f70dd66]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1f70dd66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1f70dd66]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1f70dd66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1f70dd66]{margin-left:78%}.col-no-margin-xxl-9[data-v-1f70dd66]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1f70dd66]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1f70dd66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1f70dd66]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1f70dd66]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1f70dd66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1f70dd66]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1f70dd66]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1f70dd66]{display:none!important}.xxl-visible[data-v-1f70dd66]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1f70dd66]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1f70dd66]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1f70dd66]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1f70dd66]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1f70dd66]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1f70dd66]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1f70dd66]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1f70dd66]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1f70dd66]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1f70dd66]{display:none!important}}.vertical-center[data-v-1f70dd66]{display:flex;align-items:center}.horizontal-center[data-v-1f70dd66]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1f70dd66]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1f70dd66]{display:none!important}.no-content[data-v-1f70dd66]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1f70dd66]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1f70dd66]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1f70dd66]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1f70dd66]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1f70dd66]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1f70dd66]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1f70dd66],.btn[data-v-1f70dd66],button[data-v-1f70dd66]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1f70dd66],.btn-default[type=submit][data-v-1f70dd66],.btn.btn-primary[data-v-1f70dd66],.btn[type=submit][data-v-1f70dd66],button.btn-primary[data-v-1f70dd66],button[type=submit][data-v-1f70dd66]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1f70dd66],.btn-default .icon[data-v-1f70dd66],button .icon[data-v-1f70dd66]{margin-right:.5em}input[type=password][data-v-1f70dd66],input[type=text][data-v-1f70dd66]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1f70dd66]:focus,input[type=text][data-v-1f70dd66]:focus{border:1px solid #35b870}button[data-v-1f70dd66],input[data-v-1f70dd66]{outline:none}input[type=text][data-v-1f70dd66]:hover,textarea[data-v-1f70dd66]:hover{border:1px solid #9cdfb0}ul[data-v-1f70dd66]{margin:0;padding:0;list-style:none}a[data-v-1f70dd66]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1f70dd66]:hover{color:#35b870}[data-v-1f70dd66]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1f70dd66]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1f70dd66]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1f70dd66]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1f70dd66]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1f70dd66] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1f70dd66] .nav .path{cursor:pointer}.browser[data-v-1f70dd66] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1f70dd66] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1f70dd66]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1f70dd66],input[type=number][data-v-1f70dd66],input[type=password][data-v-1f70dd66],input[type=search][data-v-1f70dd66],input[type=text][data-v-1f70dd66],input[type=time][data-v-1f70dd66]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1f70dd66]:hover,input[type=number][data-v-1f70dd66]:hover,input[type=password][data-v-1f70dd66]:hover,input[type=search][data-v-1f70dd66]:hover,input[type=text][data-v-1f70dd66]:hover,input[type=time][data-v-1f70dd66]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1f70dd66]:focus,input[type=number][data-v-1f70dd66]:focus,input[type=password][data-v-1f70dd66]:focus,input[type=search][data-v-1f70dd66]:focus,input[type=text][data-v-1f70dd66]:focus,input[type=time][data-v-1f70dd66]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1f70dd66],input[type=number].with-icon[data-v-1f70dd66],input[type=password].with-icon[data-v-1f70dd66],input[type=search].with-icon[data-v-1f70dd66],input[type=text].with-icon[data-v-1f70dd66],input[type=time].with-icon[data-v-1f70dd66]{padding-left:.3em}input[type=search][data-v-1f70dd66],input[type=text][data-v-1f70dd66]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1f70dd66]{animation-fill-mode:both;animation-name:fadeIn-1f70dd66;-webkit-animation-name:fadeIn-1f70dd66}.fade-in[data-v-1f70dd66],.fade-out[data-v-1f70dd66]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1f70dd66]{animation-fill-mode:both;animation-name:fadeOut-1f70dd66;-webkit-animation-name:fadeOut-1f70dd66}@keyframes fadeIn-1f70dd66{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1f70dd66{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1f70dd66]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1f70dd66;-webkit-animation-name:glow-1f70dd66}.loop[data-v-1f70dd66]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1f70dd66{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1f70dd66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1f70dd66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1f70dd66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.autocomplete[data-v-1f70dd66]{width:100%;position:relative;display:inline-block}.autocomplete .input[data-v-1f70dd66],.autocomplete .items[data-v-1f70dd66]{width:100%;box-shadow:1px 1px 1px 1px #ddd}.autocomplete .items[data-v-1f70dd66]{max-height:50vh;position:absolute;overflow:auto;border:1px solid #ddd;border-bottom:none;border-top:none;border-radius:1em;z-index:99;top:100%;left:0;right:0}.autocomplete .items .item[data-v-1f70dd66]{padding:1em;cursor:pointer;border-bottom:1px solid #ddd;background-color:#fff}.autocomplete .items .item[data-v-1f70dd66]:hover{background-color:#bef6da}.autocomplete .items .item .matching[data-v-1f70dd66]{font-weight:700}.autocomplete .active[data-v-1f70dd66]{background-color:#bef6da!important}.col-1[data-v-801045b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-1[data-v-801045b2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-801045b2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-801045b2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-801045b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-2[data-v-801045b2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-801045b2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-801045b2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-801045b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-3[data-v-801045b2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-801045b2]:first-child{margin-left:26%!important}.col-offset-3[data-v-801045b2]:not(first-child){margin-left:30%!important}.col-4[data-v-801045b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-4[data-v-801045b2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-801045b2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-801045b2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-801045b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-5[data-v-801045b2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-801045b2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-801045b2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-801045b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-6[data-v-801045b2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-801045b2]:first-child{margin-left:52%!important}.col-offset-6[data-v-801045b2]:not(first-child){margin-left:56%!important}.col-7[data-v-801045b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-7[data-v-801045b2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-801045b2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-801045b2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-801045b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-8[data-v-801045b2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-801045b2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-801045b2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-801045b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-9[data-v-801045b2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-801045b2]:first-child{margin-left:78%!important}.col-offset-9[data-v-801045b2]:not(first-child){margin-left:82%!important}.col-10[data-v-801045b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-10[data-v-801045b2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-801045b2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-801045b2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-801045b2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-801045b2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-801045b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-1[data-v-801045b2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-801045b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-801045b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-2[data-v-801045b2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-801045b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-801045b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-3[data-v-801045b2]{margin-left:26%}.col-no-margin-s-3[data-v-801045b2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-801045b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-4[data-v-801045b2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-801045b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-801045b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-5[data-v-801045b2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-801045b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-801045b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-6[data-v-801045b2]{margin-left:52%}.col-no-margin-s-6[data-v-801045b2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-801045b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-7[data-v-801045b2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-801045b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-801045b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-8[data-v-801045b2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-801045b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-801045b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-9[data-v-801045b2]{margin-left:78%}.col-no-margin-s-9[data-v-801045b2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-801045b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-10[data-v-801045b2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-801045b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-801045b2]:first-child{margin-left:0}.col-offset-s-11[data-v-801045b2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-801045b2]{display:none!important}.s-visible[data-v-801045b2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-801045b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-1[data-v-801045b2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-801045b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-801045b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-2[data-v-801045b2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-801045b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-801045b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-3[data-v-801045b2]{margin-left:26%}.col-no-margin-m-3[data-v-801045b2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-801045b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-4[data-v-801045b2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-801045b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-801045b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-5[data-v-801045b2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-801045b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-801045b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-6[data-v-801045b2]{margin-left:52%}.col-no-margin-m-6[data-v-801045b2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-801045b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-7[data-v-801045b2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-801045b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-801045b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-8[data-v-801045b2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-801045b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-801045b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-9[data-v-801045b2]{margin-left:78%}.col-no-margin-m-9[data-v-801045b2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-801045b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-10[data-v-801045b2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-801045b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-801045b2]:first-child{margin-left:0}.col-offset-m-11[data-v-801045b2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-801045b2]{display:none!important}.m-visible[data-v-801045b2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-801045b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-1[data-v-801045b2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-801045b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-801045b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-2[data-v-801045b2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-801045b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-801045b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-3[data-v-801045b2]{margin-left:26%}.col-no-margin-l-3[data-v-801045b2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-801045b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-4[data-v-801045b2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-801045b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-801045b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-5[data-v-801045b2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-801045b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-801045b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-6[data-v-801045b2]{margin-left:52%}.col-no-margin-l-6[data-v-801045b2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-801045b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-7[data-v-801045b2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-801045b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-801045b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-8[data-v-801045b2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-801045b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-801045b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-9[data-v-801045b2]{margin-left:78%}.col-no-margin-l-9[data-v-801045b2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-801045b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-10[data-v-801045b2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-801045b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-801045b2]:first-child{margin-left:0}.col-offset-l-11[data-v-801045b2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-801045b2]{display:none!important}.l-visible[data-v-801045b2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-801045b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-1[data-v-801045b2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-801045b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-801045b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-2[data-v-801045b2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-801045b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-801045b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-3[data-v-801045b2]{margin-left:26%}.col-no-margin-xl-3[data-v-801045b2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-801045b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-4[data-v-801045b2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-801045b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-801045b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-5[data-v-801045b2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-801045b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-801045b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-6[data-v-801045b2]{margin-left:52%}.col-no-margin-xl-6[data-v-801045b2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-801045b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-7[data-v-801045b2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-801045b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-801045b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-8[data-v-801045b2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-801045b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-801045b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-9[data-v-801045b2]{margin-left:78%}.col-no-margin-xl-9[data-v-801045b2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-801045b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-10[data-v-801045b2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-801045b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-801045b2]:first-child{margin-left:0}.col-offset-xl-11[data-v-801045b2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-801045b2]{display:none!important}.xl-visible[data-v-801045b2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-801045b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-801045b2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-801045b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-801045b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-801045b2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-801045b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-801045b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-801045b2]{margin-left:26%}.col-no-margin-xxl-3[data-v-801045b2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-801045b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-801045b2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-801045b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-801045b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-801045b2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-801045b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-801045b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-801045b2]{margin-left:52%}.col-no-margin-xxl-6[data-v-801045b2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-801045b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-801045b2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-801045b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-801045b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-801045b2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-801045b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-801045b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-801045b2]{margin-left:78%}.col-no-margin-xxl-9[data-v-801045b2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-801045b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-801045b2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-801045b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-801045b2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-801045b2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-801045b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-801045b2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-801045b2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-801045b2]{display:none!important}.xxl-visible[data-v-801045b2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-801045b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-801045b2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-801045b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-801045b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-801045b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-801045b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-801045b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-801045b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-801045b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-801045b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-801045b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-801045b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-801045b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-801045b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-801045b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-801045b2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-801045b2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-801045b2]{display:none!important}}.vertical-center[data-v-801045b2]{display:flex;align-items:center}.horizontal-center[data-v-801045b2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-801045b2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-801045b2]{display:none!important}.no-content[data-v-801045b2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-801045b2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-801045b2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-801045b2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-801045b2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-801045b2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-801045b2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-801045b2],.btn[data-v-801045b2],button[data-v-801045b2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-801045b2],.btn-default[type=submit][data-v-801045b2],.btn.btn-primary[data-v-801045b2],.btn[type=submit][data-v-801045b2],button.btn-primary[data-v-801045b2],button[type=submit][data-v-801045b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-801045b2],.btn-default .icon[data-v-801045b2],button .icon[data-v-801045b2]{margin-right:.5em}input[type=password][data-v-801045b2],input[type=text][data-v-801045b2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-801045b2]:focus,input[type=text][data-v-801045b2]:focus{border:1px solid #35b870}button[data-v-801045b2],input[data-v-801045b2]{outline:none}input[type=text][data-v-801045b2]:hover,textarea[data-v-801045b2]:hover{border:1px solid #9cdfb0}ul[data-v-801045b2]{margin:0;padding:0;list-style:none}a[data-v-801045b2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-801045b2]:hover{color:#35b870}[data-v-801045b2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-801045b2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-801045b2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-801045b2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-801045b2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-801045b2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-801045b2] .nav .path{cursor:pointer}.browser[data-v-801045b2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-801045b2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-801045b2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-801045b2],input[type=number][data-v-801045b2],input[type=password][data-v-801045b2],input[type=search][data-v-801045b2],input[type=text][data-v-801045b2],input[type=time][data-v-801045b2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-801045b2]:hover,input[type=number][data-v-801045b2]:hover,input[type=password][data-v-801045b2]:hover,input[type=search][data-v-801045b2]:hover,input[type=text][data-v-801045b2]:hover,input[type=time][data-v-801045b2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-801045b2]:focus,input[type=number][data-v-801045b2]:focus,input[type=password][data-v-801045b2]:focus,input[type=search][data-v-801045b2]:focus,input[type=text][data-v-801045b2]:focus,input[type=time][data-v-801045b2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-801045b2],input[type=number].with-icon[data-v-801045b2],input[type=password].with-icon[data-v-801045b2],input[type=search].with-icon[data-v-801045b2],input[type=text].with-icon[data-v-801045b2],input[type=time].with-icon[data-v-801045b2]{padding-left:.3em}input[type=search][data-v-801045b2],input[type=text][data-v-801045b2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-801045b2]{animation-fill-mode:both;animation-name:fadeIn-801045b2;-webkit-animation-name:fadeIn-801045b2}.fade-in[data-v-801045b2],.fade-out[data-v-801045b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-801045b2]{animation-fill-mode:both;animation-name:fadeOut-801045b2;-webkit-animation-name:fadeOut-801045b2}@keyframes fadeIn-801045b2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-801045b2{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-801045b2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-801045b2;-webkit-animation-name:glow-801045b2}.loop[data-v-801045b2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-801045b2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-801045b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-801045b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-801045b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-801045b2]{min-height:calc(100vh - 2em)}button[data-v-801045b2]{background:none;border:none;box-shadow:none}button[data-v-801045b2]:hover{color:#35b870}hgroup[data-v-801045b2]{flex-grow:1}h1[data-v-801045b2]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-801045b2]{border-radius:.5em .5em 0 0}}h2[data-v-801045b2]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-801045b2]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-801045b2]{margin-top:.5em;padding-top:.5em}section.response[data-v-801045b2]{flex-grow:1;max-height:40em}section.response .output[data-v-801045b2]{overflow:auto}.buttons[data-v-801045b2]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-801045b2]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-801045b2]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-801045b2]{background:#fff}header .buttons[data-v-801045b2]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-801045b2]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-801045b2] .doc blockquote{margin-left:0}textarea[data-v-801045b2]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-801045b2]:hover{border:1px solid #38cf80}textarea[data-v-801045b2]:focus{border:1px solid #32b646}form[data-v-801045b2]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-801045b2]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-801045b2]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-801045b2]{width:80%;max-width:60em}}.raw .first-row button[data-v-801045b2]{margin-left:0}.args-list[data-v-801045b2]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-801045b2]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-801045b2]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-801045b2]{width:30em}}.args-list .arg[data-v-801045b2]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-801045b2]{width:100%}}.args-list .arg .required-flag[data-v-801045b2]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-801045b2]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-801045b2]{width:100%}.args-body[data-v-801045b2]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-801045b2]{flex-direction:column}}.add-arg[data-v-801045b2]{width:100%}.add-arg button[data-v-801045b2]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-801045b2]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-801045b2]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-801045b2]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-801045b2]{width:100%}.doc-container[data-v-801045b2],.response[data-v-801045b2]{flex-grow:1}.doc-container h2[data-v-801045b2],.response h2[data-v-801045b2]{display:inline-flex}.doc-container h2 .title[data-v-801045b2],.response h2 .title[data-v-801045b2]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-801045b2],.response h2 .buttons[data-v-801045b2]{width:2em}.doc-container h2 .buttons button[data-v-801045b2],.response h2 .buttons button[data-v-801045b2]{padding:0}.output[data-v-801045b2]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-801045b2]{color:red}textarea.curl-snippet[data-v-801045b2]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.col-1[data-v-48afe350]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-1[data-v-48afe350]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-48afe350]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-48afe350]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-48afe350]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-2[data-v-48afe350]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-48afe350]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-48afe350]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-48afe350]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-3[data-v-48afe350]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-48afe350]:first-child{margin-left:26%!important}.col-offset-3[data-v-48afe350]:not(first-child){margin-left:30%!important}.col-4[data-v-48afe350]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-4[data-v-48afe350]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-48afe350]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-48afe350]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-48afe350]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-5[data-v-48afe350]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-48afe350]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-48afe350]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-48afe350]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-6[data-v-48afe350]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-48afe350]:first-child{margin-left:52%!important}.col-offset-6[data-v-48afe350]:not(first-child){margin-left:56%!important}.col-7[data-v-48afe350]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-7[data-v-48afe350]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-48afe350]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-48afe350]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-48afe350]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-8[data-v-48afe350]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-48afe350]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-48afe350]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-48afe350]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-9[data-v-48afe350]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-48afe350]:first-child{margin-left:78%!important}.col-offset-9[data-v-48afe350]:not(first-child){margin-left:82%!important}.col-10[data-v-48afe350]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-10[data-v-48afe350]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-48afe350]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-48afe350]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-48afe350]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-48afe350]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-48afe350]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-1[data-v-48afe350]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-48afe350]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-48afe350]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-2[data-v-48afe350]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-48afe350]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-48afe350]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-3[data-v-48afe350]{margin-left:26%}.col-no-margin-s-3[data-v-48afe350]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-48afe350]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-4[data-v-48afe350]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-48afe350]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-48afe350]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-5[data-v-48afe350]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-48afe350]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-48afe350]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-6[data-v-48afe350]{margin-left:52%}.col-no-margin-s-6[data-v-48afe350]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-48afe350]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-7[data-v-48afe350]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-48afe350]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-48afe350]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-8[data-v-48afe350]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-48afe350]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-48afe350]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-9[data-v-48afe350]{margin-left:78%}.col-no-margin-s-9[data-v-48afe350]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-48afe350]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-10[data-v-48afe350]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-48afe350]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-48afe350]:first-child{margin-left:0}.col-offset-s-11[data-v-48afe350]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-s-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-48afe350]{display:none!important}.s-visible[data-v-48afe350]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-48afe350]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-1[data-v-48afe350]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-48afe350]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-48afe350]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-2[data-v-48afe350]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-48afe350]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-48afe350]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-3[data-v-48afe350]{margin-left:26%}.col-no-margin-m-3[data-v-48afe350]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-48afe350]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-4[data-v-48afe350]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-48afe350]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-48afe350]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-5[data-v-48afe350]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-48afe350]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-48afe350]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-6[data-v-48afe350]{margin-left:52%}.col-no-margin-m-6[data-v-48afe350]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-48afe350]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-7[data-v-48afe350]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-48afe350]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-48afe350]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-8[data-v-48afe350]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-48afe350]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-48afe350]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-9[data-v-48afe350]{margin-left:78%}.col-no-margin-m-9[data-v-48afe350]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-48afe350]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-10[data-v-48afe350]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-48afe350]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-48afe350]:first-child{margin-left:0}.col-offset-m-11[data-v-48afe350]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-m-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-48afe350]{display:none!important}.m-visible[data-v-48afe350]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-48afe350]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-1[data-v-48afe350]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-48afe350]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-48afe350]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-2[data-v-48afe350]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-48afe350]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-48afe350]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-3[data-v-48afe350]{margin-left:26%}.col-no-margin-l-3[data-v-48afe350]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-48afe350]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-4[data-v-48afe350]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-48afe350]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-48afe350]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-5[data-v-48afe350]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-48afe350]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-48afe350]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-6[data-v-48afe350]{margin-left:52%}.col-no-margin-l-6[data-v-48afe350]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-48afe350]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-7[data-v-48afe350]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-48afe350]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-48afe350]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-8[data-v-48afe350]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-48afe350]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-48afe350]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-9[data-v-48afe350]{margin-left:78%}.col-no-margin-l-9[data-v-48afe350]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-48afe350]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-10[data-v-48afe350]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-48afe350]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-48afe350]:first-child{margin-left:0}.col-offset-l-11[data-v-48afe350]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-l-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-48afe350]{display:none!important}.l-visible[data-v-48afe350]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-48afe350]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-1[data-v-48afe350]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-48afe350]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-48afe350]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-2[data-v-48afe350]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-48afe350]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-48afe350]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-3[data-v-48afe350]{margin-left:26%}.col-no-margin-xl-3[data-v-48afe350]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-48afe350]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-4[data-v-48afe350]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-48afe350]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-48afe350]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-5[data-v-48afe350]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-48afe350]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-48afe350]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-6[data-v-48afe350]{margin-left:52%}.col-no-margin-xl-6[data-v-48afe350]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-48afe350]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-7[data-v-48afe350]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-48afe350]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-48afe350]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-8[data-v-48afe350]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-48afe350]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-48afe350]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-9[data-v-48afe350]{margin-left:78%}.col-no-margin-xl-9[data-v-48afe350]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-48afe350]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-10[data-v-48afe350]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-48afe350]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-48afe350]:first-child{margin-left:0}.col-offset-xl-11[data-v-48afe350]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-48afe350]{display:none!important}.xl-visible[data-v-48afe350]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-48afe350]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-1[data-v-48afe350]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-48afe350]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-48afe350]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-2[data-v-48afe350]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-48afe350]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-48afe350]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-3[data-v-48afe350]{margin-left:26%}.col-no-margin-xxl-3[data-v-48afe350]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-48afe350]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-4[data-v-48afe350]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-48afe350]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-48afe350]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-5[data-v-48afe350]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-48afe350]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-48afe350]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-6[data-v-48afe350]{margin-left:52%}.col-no-margin-xxl-6[data-v-48afe350]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-48afe350]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-7[data-v-48afe350]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-48afe350]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-48afe350]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-8[data-v-48afe350]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-48afe350]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-48afe350]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-9[data-v-48afe350]{margin-left:78%}.col-no-margin-xxl-9[data-v-48afe350]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-48afe350]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-10[data-v-48afe350]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-48afe350]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-48afe350]:first-child{margin-left:0}.col-offset-xxl-11[data-v-48afe350]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-48afe350]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-48afe350]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-48afe350]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-48afe350]{display:none!important}.xxl-visible[data-v-48afe350]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-48afe350]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-48afe350]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-48afe350]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-48afe350]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-48afe350]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-48afe350]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-48afe350]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-48afe350]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-48afe350]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-48afe350]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-48afe350]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-48afe350]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-48afe350]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-48afe350]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-48afe350]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-48afe350]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-48afe350]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-48afe350]{display:none!important}}.vertical-center[data-v-48afe350]{display:flex;align-items:center}.horizontal-center[data-v-48afe350]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-48afe350]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-48afe350]{display:none!important}.no-content[data-v-48afe350]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-48afe350]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-48afe350]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-48afe350]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-48afe350]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-48afe350]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-48afe350]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-48afe350],.btn[data-v-48afe350],button[data-v-48afe350]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-48afe350],.btn-default[type=submit][data-v-48afe350],.btn.btn-primary[data-v-48afe350],.btn[type=submit][data-v-48afe350],button.btn-primary[data-v-48afe350],button[type=submit][data-v-48afe350]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-48afe350],.btn-default .icon[data-v-48afe350],button .icon[data-v-48afe350]{margin-right:.5em}input[type=password][data-v-48afe350],input[type=text][data-v-48afe350]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-48afe350]:focus,input[type=text][data-v-48afe350]:focus{border:1px solid #35b870}button[data-v-48afe350],input[data-v-48afe350]{outline:none}input[type=text][data-v-48afe350]:hover,textarea[data-v-48afe350]:hover{border:1px solid #9cdfb0}ul[data-v-48afe350]{margin:0;padding:0;list-style:none}a[data-v-48afe350]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-48afe350]:hover{color:#35b870}[data-v-48afe350]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-48afe350]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-48afe350]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-48afe350]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-48afe350]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-48afe350] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-48afe350] .nav .path{cursor:pointer}.browser[data-v-48afe350] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-48afe350] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-48afe350]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-48afe350],input[type=number][data-v-48afe350],input[type=password][data-v-48afe350],input[type=search][data-v-48afe350],input[type=text][data-v-48afe350],input[type=time][data-v-48afe350]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-48afe350]:hover,input[type=number][data-v-48afe350]:hover,input[type=password][data-v-48afe350]:hover,input[type=search][data-v-48afe350]:hover,input[type=text][data-v-48afe350]:hover,input[type=time][data-v-48afe350]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-48afe350]:focus,input[type=number][data-v-48afe350]:focus,input[type=password][data-v-48afe350]:focus,input[type=search][data-v-48afe350]:focus,input[type=text][data-v-48afe350]:focus,input[type=time][data-v-48afe350]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-48afe350],input[type=number].with-icon[data-v-48afe350],input[type=password].with-icon[data-v-48afe350],input[type=search].with-icon[data-v-48afe350],input[type=text].with-icon[data-v-48afe350],input[type=time].with-icon[data-v-48afe350]{padding-left:.3em}input[type=search][data-v-48afe350],input[type=text][data-v-48afe350]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-48afe350]{animation-fill-mode:both;animation-name:fadeIn-48afe350;-webkit-animation-name:fadeIn-48afe350}.fade-in[data-v-48afe350],.fade-out[data-v-48afe350]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-48afe350]{animation-fill-mode:both;animation-name:fadeOut-48afe350;-webkit-animation-name:fadeOut-48afe350}@keyframes fadeIn-48afe350{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-48afe350{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-48afe350]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-48afe350;-webkit-animation-name:glow-48afe350}.loop[data-v-48afe350]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-48afe350{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-48afe350]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-48afe350]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-48afe350]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-48afe350]{min-height:calc(100vh - 2em)}button[data-v-48afe350]{background:none;border:none;box-shadow:none}button[data-v-48afe350]:hover{color:#35b870}hgroup[data-v-48afe350]{flex-grow:1}h1[data-v-48afe350]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-48afe350]{border-radius:.5em .5em 0 0}}h2[data-v-48afe350]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-48afe350]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-48afe350]{margin-top:.5em;padding-top:.5em}section.response[data-v-48afe350]{flex-grow:1;max-height:40em}section.response .output[data-v-48afe350]{overflow:auto}.buttons[data-v-48afe350]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-48afe350]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-48afe350]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-48afe350]{background:#fff}header .buttons[data-v-48afe350]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-48afe350]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-48afe350] .doc blockquote{margin-left:0}textarea[data-v-48afe350]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-48afe350]:hover{border:1px solid #38cf80}textarea[data-v-48afe350]:focus{border:1px solid #32b646}form[data-v-48afe350]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-48afe350]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-48afe350]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-48afe350]{width:80%;max-width:60em}}.raw .first-row button[data-v-48afe350]{margin-left:0}.args-list[data-v-48afe350]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-48afe350]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-48afe350]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-48afe350]{width:30em}}.args-list .arg[data-v-48afe350]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-48afe350]{width:100%}}.args-list .arg .required-flag[data-v-48afe350]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-48afe350]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-48afe350]{width:100%}.args-body[data-v-48afe350]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-48afe350]{flex-direction:column}}.add-arg[data-v-48afe350]{width:100%}.add-arg button[data-v-48afe350]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-48afe350]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-48afe350]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-48afe350]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-48afe350]{width:100%}.doc-container[data-v-48afe350],.response[data-v-48afe350]{flex-grow:1}.doc-container h2[data-v-48afe350],.response h2[data-v-48afe350]{display:inline-flex}.doc-container h2 .title[data-v-48afe350],.response h2 .title[data-v-48afe350]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-48afe350],.response h2 .buttons[data-v-48afe350]{width:2em}.doc-container h2 .buttons button[data-v-48afe350],.response h2 .buttons button[data-v-48afe350]{padding:0}.output[data-v-48afe350]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-48afe350]{color:red}textarea.curl-snippet[data-v-48afe350]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.action-editor-container[data-v-48afe350]{width:100%;height:100%;display:flex;flex-direction:column;align-items:center}.action-editor-container .action-editor[data-v-48afe350]{width:100%;max-width:1000px;display:flex;flex-direction:column;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75),0 3px 3px 0 hsla(0,0%,73%,.75)}.action-editor-container .request[data-v-48afe350]{display:flex;flex-direction:column;margin:0 .5em}.action-editor-container .run-btn[data-v-48afe350]{width:3.5em;height:2.5em;background:#fff;border-color:#ccc;border-left:none;border-radius:0 1em 1em 0;padding:.5em 1em;box-shadow:none;cursor:pointer}.action-editor-container .run-btn[data-v-48afe350]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);border-color:#9cdfb0;box-shadow:none}.action-editor-container .run-btn[data-v-48afe350]:disabled{opacity:.7;color:#23513a;cursor:auto;box-shadow:none}.action-editor-container .run-btn[data-v-48afe350]:disabled:hover{background:#fff;box-shadow:none}.action-editor-container .raw-run-btn[data-v-48afe350]{padding:.5em 1.5em;border-radius:1em}.action-editor-container .curl-modal-container[data-v-48afe350] .modal .content{width:100%}.action-editor-container .curl-modal-container[data-v-48afe350] .modal .content .body{height:auto}.action-editor-container .curl-modal-container[data-v-48afe350] .modal .output{border-radius:0}.action-editor-container .autocomplete-container[data-v-48afe350]{display:flex;flex-direction:row;align-items:center}.action-editor-container .autocomplete-container[data-v-48afe350] .autocomplete{width:calc(100% - 3.5em)}.action-editor-container .autocomplete-container[data-v-48afe350] .autocomplete input[type=text]{height:2.5em;border-radius:1em 0 0 1em;box-shadow:none}.action-editor-container .raw-request[data-v-48afe350]{height:100%;overflow:auto}.action-editor-container .raw-request textarea[data-v-48afe350]{width:100%;min-height:15em;border:1px solid #ddd;box-shadow:0 3px 2px -1px silver;padding:1em;font-family:monospace;font-size:.9em}.action-editor-container.with-save .header-container[data-v-48afe350]{width:100%;height:3.5em;display:flex;flex-direction:row;background:#f6f6f6;border-bottom:1px solid #ccc;box-shadow:0 3px 2px -1px silver}.action-editor-container.with-save .header-container .buttons[data-v-48afe350]{width:3.5em;height:calc(3.5em - 1px);background:linear-gradient(0deg,#ececec,#f6f6f6)}.action-editor-container.with-save .header-container .buttons button[data-v-48afe350]{width:3.5em;height:3.5em}.action-editor-container.with-save .header-container .buttons button[data-v-48afe350]:disabled{opacity:.7;background:#e4eae8;cursor:auto;box-shadow:none}.action-editor-container.with-save .header-container .buttons button[data-v-48afe350]:disabled:hover{background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:none}.action-editor-container.with-save .header-container .tabs-container[data-v-48afe350]{width:calc(100% - 3.5em)}.action-editor-container.with-save .header-container .tabs-container[data-v-48afe350] .tabs{width:100%;height:calc(3.5em - 1px);box-shadow:none}@media screen and (max-width:calc(769px - 1px)){.action-editor-container.with-save .header-container .tabs-container[data-v-48afe350] .tabs .tab{width:50%;flex-grow:0}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/182.76b6eb09.css b/platypush/backend/http/webapp/dist/static/css/182.76b6eb09.css deleted file mode 100644 index 52d13769fd..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/182.76b6eb09.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d5048f18]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d5048f18]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d5048f18]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d5048f18]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d5048f18]:first-child{margin-left:26%!important}.col-offset-3[data-v-d5048f18]:not(first-child){margin-left:30%!important}.col-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d5048f18]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d5048f18]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d5048f18]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d5048f18]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d5048f18]:first-child{margin-left:52%!important}.col-offset-6[data-v-d5048f18]:not(first-child){margin-left:56%!important}.col-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d5048f18]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d5048f18]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d5048f18]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d5048f18]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d5048f18]:first-child{margin-left:78%!important}.col-offset-9[data-v-d5048f18]:not(first-child){margin-left:82%!important}.col-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d5048f18]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d5048f18]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d5048f18]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d5048f18]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-1[data-v-d5048f18]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-2[data-v-d5048f18]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-3[data-v-d5048f18]{margin-left:26%}.col-no-margin-s-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-4[data-v-d5048f18]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-5[data-v-d5048f18]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-6[data-v-d5048f18]{margin-left:52%}.col-no-margin-s-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-7[data-v-d5048f18]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-8[data-v-d5048f18]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-9[data-v-d5048f18]{margin-left:78%}.col-no-margin-s-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-10[data-v-d5048f18]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d5048f18]:first-child{margin-left:0}.col-offset-s-11[data-v-d5048f18]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d5048f18]{display:none!important}.s-visible[data-v-d5048f18]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-1[data-v-d5048f18]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-2[data-v-d5048f18]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-3[data-v-d5048f18]{margin-left:26%}.col-no-margin-m-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-4[data-v-d5048f18]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-5[data-v-d5048f18]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-6[data-v-d5048f18]{margin-left:52%}.col-no-margin-m-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-7[data-v-d5048f18]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-8[data-v-d5048f18]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-9[data-v-d5048f18]{margin-left:78%}.col-no-margin-m-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-10[data-v-d5048f18]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d5048f18]:first-child{margin-left:0}.col-offset-m-11[data-v-d5048f18]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d5048f18]{display:none!important}.m-visible[data-v-d5048f18]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-1[data-v-d5048f18]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-2[data-v-d5048f18]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-3[data-v-d5048f18]{margin-left:26%}.col-no-margin-l-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-4[data-v-d5048f18]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-5[data-v-d5048f18]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-6[data-v-d5048f18]{margin-left:52%}.col-no-margin-l-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-7[data-v-d5048f18]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-8[data-v-d5048f18]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-9[data-v-d5048f18]{margin-left:78%}.col-no-margin-l-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-10[data-v-d5048f18]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d5048f18]:first-child{margin-left:0}.col-offset-l-11[data-v-d5048f18]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d5048f18]{display:none!important}.l-visible[data-v-d5048f18]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-1[data-v-d5048f18]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-2[data-v-d5048f18]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-3[data-v-d5048f18]{margin-left:26%}.col-no-margin-xl-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-4[data-v-d5048f18]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-5[data-v-d5048f18]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-6[data-v-d5048f18]{margin-left:52%}.col-no-margin-xl-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-7[data-v-d5048f18]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-8[data-v-d5048f18]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-9[data-v-d5048f18]{margin-left:78%}.col-no-margin-xl-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-10[data-v-d5048f18]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xl-11[data-v-d5048f18]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d5048f18]{display:none!important}.xl-visible[data-v-d5048f18]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d5048f18]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d5048f18]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d5048f18]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d5048f18]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d5048f18]{margin-left:26%}.col-no-margin-xxl-3[data-v-d5048f18]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d5048f18]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d5048f18]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d5048f18]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d5048f18]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d5048f18]{margin-left:52%}.col-no-margin-xxl-6[data-v-d5048f18]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d5048f18]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d5048f18]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d5048f18]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d5048f18]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d5048f18]{margin-left:78%}.col-no-margin-xxl-9[data-v-d5048f18]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d5048f18]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d5048f18]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d5048f18]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d5048f18]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d5048f18]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d5048f18]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d5048f18]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d5048f18]{display:none!important}.xxl-visible[data-v-d5048f18]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d5048f18]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d5048f18]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d5048f18]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d5048f18]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d5048f18]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d5048f18]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d5048f18]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d5048f18]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d5048f18]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d5048f18]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d5048f18]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d5048f18]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d5048f18]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d5048f18]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d5048f18]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d5048f18]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d5048f18]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d5048f18]{display:none!important}}.vertical-center[data-v-d5048f18]{display:flex;align-items:center}.horizontal-center[data-v-d5048f18]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-d5048f18]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d5048f18]{display:none!important}.no-content[data-v-d5048f18]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d5048f18]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d5048f18]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d5048f18]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d5048f18]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d5048f18]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d5048f18]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d5048f18],.btn[data-v-d5048f18],button[data-v-d5048f18]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d5048f18],.btn-default[type=submit][data-v-d5048f18],.btn.btn-primary[data-v-d5048f18],.btn[type=submit][data-v-d5048f18],button.btn-primary[data-v-d5048f18],button[type=submit][data-v-d5048f18]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-d5048f18],.btn-default .icon[data-v-d5048f18],button .icon[data-v-d5048f18]{margin-right:.5em}input[type=password][data-v-d5048f18],input[type=text][data-v-d5048f18]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d5048f18]:focus,input[type=text][data-v-d5048f18]:focus{border:1px solid #35b870}button[data-v-d5048f18],input[data-v-d5048f18]{outline:none}input[type=text][data-v-d5048f18]:hover,textarea[data-v-d5048f18]:hover{border:1px solid #9cdfb0}ul[data-v-d5048f18]{margin:0;padding:0;list-style:none}a[data-v-d5048f18]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d5048f18]:hover{color:#35b870}[data-v-d5048f18]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d5048f18]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d5048f18]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d5048f18]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-d5048f18]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d5048f18] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d5048f18] .nav .path{cursor:pointer}.browser[data-v-d5048f18] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d5048f18] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-d5048f18]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d5048f18],input[type=number][data-v-d5048f18],input[type=password][data-v-d5048f18],input[type=search][data-v-d5048f18],input[type=text][data-v-d5048f18],input[type=time][data-v-d5048f18]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-d5048f18]:hover,input[type=number][data-v-d5048f18]:hover,input[type=password][data-v-d5048f18]:hover,input[type=search][data-v-d5048f18]:hover,input[type=text][data-v-d5048f18]:hover,input[type=time][data-v-d5048f18]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d5048f18]:focus,input[type=number][data-v-d5048f18]:focus,input[type=password][data-v-d5048f18]:focus,input[type=search][data-v-d5048f18]:focus,input[type=text][data-v-d5048f18]:focus,input[type=time][data-v-d5048f18]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d5048f18],input[type=number].with-icon[data-v-d5048f18],input[type=password].with-icon[data-v-d5048f18],input[type=search].with-icon[data-v-d5048f18],input[type=text].with-icon[data-v-d5048f18],input[type=time].with-icon[data-v-d5048f18]{padding-left:.3em}input[type=search][data-v-d5048f18],input[type=text][data-v-d5048f18]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-d5048f18]{animation-fill-mode:both;animation-name:fadeIn-d5048f18;-webkit-animation-name:fadeIn-d5048f18}.fade-in[data-v-d5048f18],.fade-out[data-v-d5048f18]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-d5048f18]{animation-fill-mode:both;animation-name:fadeOut-d5048f18;-webkit-animation-name:fadeOut-d5048f18}@keyframes fadeIn-d5048f18{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d5048f18{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-d5048f18]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d5048f18;-webkit-animation-name:glow-d5048f18}.loop[data-v-d5048f18]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d5048f18{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d5048f18]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d5048f18]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d5048f18]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-d5048f18] .modal .dialog-content{display:flex;flex-direction:column;padding:1em}[data-v-d5048f18] .modal .body{padding:1.5em}[data-v-d5048f18] .modal .buttons{display:flex;flex-direction:row;justify-content:right;margin-bottom:1em;border:0;border-radius:0}[data-v-d5048f18] .modal .buttons button{margin-right:1em;padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-d5048f18] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}form[data-v-d5048f18]{display:flex;flex-direction:column!important}form .buttons[data-v-d5048f18]{flex-direction:row!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1931.576454a1.css b/platypush/backend/http/webapp/dist/static/css/1931.576454a1.css deleted file mode 100644 index f5ccfd1dc4..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/1931.576454a1.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-66204518]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-66204518]:first-child{margin-left:0}.col-no-margin-1[data-v-66204518]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-66204518]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-66204518]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-66204518]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-66204518]:first-child{margin-left:0}.col-no-margin-2[data-v-66204518]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-66204518]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-66204518]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-66204518]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-66204518]:first-child{margin-left:0}.col-no-margin-3[data-v-66204518]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-66204518]:first-child{margin-left:26%!important}.col-offset-3[data-v-66204518]:not(first-child){margin-left:30%!important}.col-4[data-v-66204518]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-66204518]:first-child{margin-left:0}.col-no-margin-4[data-v-66204518]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-66204518]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-66204518]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-66204518]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-66204518]:first-child{margin-left:0}.col-no-margin-5[data-v-66204518]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-66204518]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-66204518]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-66204518]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-66204518]:first-child{margin-left:0}.col-no-margin-6[data-v-66204518]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-66204518]:first-child{margin-left:52%!important}.col-offset-6[data-v-66204518]:not(first-child){margin-left:56%!important}.col-7[data-v-66204518]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-66204518]:first-child{margin-left:0}.col-no-margin-7[data-v-66204518]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-66204518]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-66204518]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-66204518]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-66204518]:first-child{margin-left:0}.col-no-margin-8[data-v-66204518]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-66204518]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-66204518]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-66204518]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-66204518]:first-child{margin-left:0}.col-no-margin-9[data-v-66204518]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-66204518]:first-child{margin-left:78%!important}.col-offset-9[data-v-66204518]:not(first-child){margin-left:82%!important}.col-10[data-v-66204518]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-66204518]:first-child{margin-left:0}.col-no-margin-10[data-v-66204518]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-66204518]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-66204518]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-66204518]:first-child{margin-left:0}.col-no-margin-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-66204518]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-66204518]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-66204518]:first-child{margin-left:0}.col-no-margin-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-66204518]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-66204518]:first-child{margin-left:0}.col-offset-s-1[data-v-66204518]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-66204518]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-66204518]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-66204518]:first-child{margin-left:0}.col-offset-s-2[data-v-66204518]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-66204518]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-66204518]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-66204518]:first-child{margin-left:0}.col-offset-s-3[data-v-66204518]{margin-left:26%}.col-no-margin-s-3[data-v-66204518]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-66204518]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-66204518]:first-child{margin-left:0}.col-offset-s-4[data-v-66204518]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-66204518]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-66204518]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-66204518]:first-child{margin-left:0}.col-offset-s-5[data-v-66204518]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-66204518]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-66204518]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-66204518]:first-child{margin-left:0}.col-offset-s-6[data-v-66204518]{margin-left:52%}.col-no-margin-s-6[data-v-66204518]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-66204518]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-66204518]:first-child{margin-left:0}.col-offset-s-7[data-v-66204518]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-66204518]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-66204518]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-66204518]:first-child{margin-left:0}.col-offset-s-8[data-v-66204518]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-66204518]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-66204518]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-66204518]:first-child{margin-left:0}.col-offset-s-9[data-v-66204518]{margin-left:78%}.col-no-margin-s-9[data-v-66204518]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-66204518]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-66204518]:first-child{margin-left:0}.col-offset-s-10[data-v-66204518]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-66204518]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-66204518]:first-child{margin-left:0}.col-offset-s-11[data-v-66204518]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-66204518]:first-child{margin-left:0}.col-no-margin-s-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-66204518]{display:none!important}.s-visible[data-v-66204518]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-66204518]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-66204518]:first-child{margin-left:0}.col-offset-m-1[data-v-66204518]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-66204518]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-66204518]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-66204518]:first-child{margin-left:0}.col-offset-m-2[data-v-66204518]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-66204518]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-66204518]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-66204518]:first-child{margin-left:0}.col-offset-m-3[data-v-66204518]{margin-left:26%}.col-no-margin-m-3[data-v-66204518]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-66204518]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-66204518]:first-child{margin-left:0}.col-offset-m-4[data-v-66204518]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-66204518]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-66204518]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-66204518]:first-child{margin-left:0}.col-offset-m-5[data-v-66204518]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-66204518]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-66204518]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-66204518]:first-child{margin-left:0}.col-offset-m-6[data-v-66204518]{margin-left:52%}.col-no-margin-m-6[data-v-66204518]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-66204518]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-66204518]:first-child{margin-left:0}.col-offset-m-7[data-v-66204518]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-66204518]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-66204518]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-66204518]:first-child{margin-left:0}.col-offset-m-8[data-v-66204518]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-66204518]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-66204518]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-66204518]:first-child{margin-left:0}.col-offset-m-9[data-v-66204518]{margin-left:78%}.col-no-margin-m-9[data-v-66204518]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-66204518]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-66204518]:first-child{margin-left:0}.col-offset-m-10[data-v-66204518]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-66204518]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-66204518]:first-child{margin-left:0}.col-offset-m-11[data-v-66204518]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-66204518]:first-child{margin-left:0}.col-no-margin-m-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-66204518]{display:none!important}.m-visible[data-v-66204518]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-66204518]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-66204518]:first-child{margin-left:0}.col-offset-l-1[data-v-66204518]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-66204518]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-66204518]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-66204518]:first-child{margin-left:0}.col-offset-l-2[data-v-66204518]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-66204518]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-66204518]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-66204518]:first-child{margin-left:0}.col-offset-l-3[data-v-66204518]{margin-left:26%}.col-no-margin-l-3[data-v-66204518]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-66204518]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-66204518]:first-child{margin-left:0}.col-offset-l-4[data-v-66204518]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-66204518]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-66204518]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-66204518]:first-child{margin-left:0}.col-offset-l-5[data-v-66204518]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-66204518]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-66204518]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-66204518]:first-child{margin-left:0}.col-offset-l-6[data-v-66204518]{margin-left:52%}.col-no-margin-l-6[data-v-66204518]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-66204518]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-66204518]:first-child{margin-left:0}.col-offset-l-7[data-v-66204518]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-66204518]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-66204518]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-66204518]:first-child{margin-left:0}.col-offset-l-8[data-v-66204518]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-66204518]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-66204518]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-66204518]:first-child{margin-left:0}.col-offset-l-9[data-v-66204518]{margin-left:78%}.col-no-margin-l-9[data-v-66204518]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-66204518]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-66204518]:first-child{margin-left:0}.col-offset-l-10[data-v-66204518]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-66204518]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-66204518]:first-child{margin-left:0}.col-offset-l-11[data-v-66204518]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-66204518]:first-child{margin-left:0}.col-no-margin-l-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-66204518]{display:none!important}.l-visible[data-v-66204518]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-66204518]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-1[data-v-66204518]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-66204518]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-66204518]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-2[data-v-66204518]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-66204518]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-66204518]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-3[data-v-66204518]{margin-left:26%}.col-no-margin-xl-3[data-v-66204518]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-66204518]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-4[data-v-66204518]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-66204518]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-66204518]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-5[data-v-66204518]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-66204518]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-66204518]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-6[data-v-66204518]{margin-left:52%}.col-no-margin-xl-6[data-v-66204518]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-66204518]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-7[data-v-66204518]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-66204518]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-66204518]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-8[data-v-66204518]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-66204518]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-66204518]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-9[data-v-66204518]{margin-left:78%}.col-no-margin-xl-9[data-v-66204518]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-66204518]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-10[data-v-66204518]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-66204518]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-66204518]:first-child{margin-left:0}.col-offset-xl-11[data-v-66204518]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-66204518]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-66204518]{display:none!important}.xl-visible[data-v-66204518]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-66204518]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-1[data-v-66204518]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-66204518]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-66204518]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-2[data-v-66204518]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-66204518]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-66204518]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-3[data-v-66204518]{margin-left:26%}.col-no-margin-xxl-3[data-v-66204518]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-66204518]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-4[data-v-66204518]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-66204518]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-66204518]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-5[data-v-66204518]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-66204518]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-66204518]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-6[data-v-66204518]{margin-left:52%}.col-no-margin-xxl-6[data-v-66204518]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-66204518]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-7[data-v-66204518]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-66204518]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-66204518]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-8[data-v-66204518]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-66204518]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-66204518]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-9[data-v-66204518]{margin-left:78%}.col-no-margin-xxl-9[data-v-66204518]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-66204518]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-10[data-v-66204518]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-66204518]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-66204518]:first-child{margin-left:0}.col-offset-xxl-11[data-v-66204518]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-66204518]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-66204518]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-66204518]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-66204518]{display:none!important}.xxl-visible[data-v-66204518]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-66204518]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-66204518]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-66204518]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-66204518]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-66204518]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-66204518]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-66204518]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-66204518]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-66204518]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-66204518]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-66204518]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-66204518]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-66204518]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-66204518]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-66204518]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-66204518]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-66204518]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-66204518]{display:none!important}}.vertical-center[data-v-66204518]{display:flex;align-items:center}.horizontal-center[data-v-66204518]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-66204518]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-66204518]{display:none!important}.no-content[data-v-66204518]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-66204518]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-66204518]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-66204518]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-66204518]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-66204518]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-66204518]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-66204518],.btn[data-v-66204518],button[data-v-66204518]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-66204518],.btn-default[type=submit][data-v-66204518],.btn.btn-primary[data-v-66204518],.btn[type=submit][data-v-66204518],button.btn-primary[data-v-66204518],button[type=submit][data-v-66204518]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-66204518],.btn-default .icon[data-v-66204518],button .icon[data-v-66204518]{margin-right:.5em}input[type=password][data-v-66204518],input[type=text][data-v-66204518]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-66204518]:focus,input[type=text][data-v-66204518]:focus{border:1px solid #35b870}button[data-v-66204518],input[data-v-66204518]{outline:none}input[type=text][data-v-66204518]:hover,textarea[data-v-66204518]:hover{border:1px solid #9cdfb0}ul[data-v-66204518]{margin:0;padding:0;list-style:none}a[data-v-66204518]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-66204518]:hover{color:#35b870}[data-v-66204518]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-66204518]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-66204518]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-66204518]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-66204518]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-66204518] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-66204518] .nav .path{cursor:pointer}.browser[data-v-66204518] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-66204518] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-66204518]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-66204518],input[type=number][data-v-66204518],input[type=password][data-v-66204518],input[type=search][data-v-66204518],input[type=text][data-v-66204518],input[type=time][data-v-66204518]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-66204518]:hover,input[type=number][data-v-66204518]:hover,input[type=password][data-v-66204518]:hover,input[type=search][data-v-66204518]:hover,input[type=text][data-v-66204518]:hover,input[type=time][data-v-66204518]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-66204518]:focus,input[type=number][data-v-66204518]:focus,input[type=password][data-v-66204518]:focus,input[type=search][data-v-66204518]:focus,input[type=text][data-v-66204518]:focus,input[type=time][data-v-66204518]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-66204518],input[type=number].with-icon[data-v-66204518],input[type=password].with-icon[data-v-66204518],input[type=search].with-icon[data-v-66204518],input[type=text].with-icon[data-v-66204518],input[type=time].with-icon[data-v-66204518]{padding-left:.3em}input[type=search][data-v-66204518],input[type=text][data-v-66204518]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-66204518]{animation-fill-mode:both;animation-name:fadeIn-66204518;-webkit-animation-name:fadeIn-66204518}.fade-in[data-v-66204518],.fade-out[data-v-66204518]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-66204518]{animation-fill-mode:both;animation-name:fadeOut-66204518;-webkit-animation-name:fadeOut-66204518}@keyframes fadeIn-66204518{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-66204518{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-66204518]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-66204518;-webkit-animation-name:glow-66204518}.loop[data-v-66204518]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-66204518{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-66204518]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-66204518]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-66204518]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-66204518] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-66204518] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-66204518] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-66204518] .item .icon i{font-size:40px}[data-v-66204518] .nav{height:2.5em}.nav[data-v-66204518]{overflow-x:auto!important;overflow-y:hidden!important}.nav .path .token .icon[data-v-66204518]{margin-right:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1949.09946541.css b/platypush/backend/http/webapp/dist/static/css/1949.77f77742.css similarity index 77% rename from platypush/backend/http/webapp/dist/static/css/1949.09946541.css rename to platypush/backend/http/webapp/dist/static/css/1949.77f77742.css index 1c4b556784..82b2abdc9d 100644 --- a/platypush/backend/http/webapp/dist/static/css/1949.09946541.css +++ b/platypush/backend/http/webapp/dist/static/css/1949.77f77742.css @@ -1 +1 @@ -.col-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-52431f4a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-52431f4a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-52431f4a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-52431f4a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-52431f4a]:first-child{margin-left:26%!important}.col-offset-3[data-v-52431f4a]:not(first-child){margin-left:30%!important}.col-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-52431f4a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-52431f4a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-52431f4a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-52431f4a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-52431f4a]:first-child{margin-left:52%!important}.col-offset-6[data-v-52431f4a]:not(first-child){margin-left:56%!important}.col-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-52431f4a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-52431f4a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-52431f4a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-52431f4a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-52431f4a]:first-child{margin-left:78%!important}.col-offset-9[data-v-52431f4a]:not(first-child){margin-left:82%!important}.col-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-52431f4a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-52431f4a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-52431f4a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-52431f4a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-s-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-s-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-s-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-52431f4a]{display:none!important}.s-visible[data-v-52431f4a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-m-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-m-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-m-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-52431f4a]{display:none!important}.m-visible[data-v-52431f4a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-l-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-l-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-l-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-52431f4a]{display:none!important}.l-visible[data-v-52431f4a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-xl-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-xl-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-xl-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-52431f4a]{display:none!important}.xl-visible[data-v-52431f4a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-xxl-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-xxl-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-xxl-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-52431f4a]{display:none!important}.xxl-visible[data-v-52431f4a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-52431f4a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-52431f4a]{display:none!important}}.vertical-center[data-v-52431f4a]{display:flex;align-items:center}.horizontal-center[data-v-52431f4a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-52431f4a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-52431f4a]{display:none!important}.no-content[data-v-52431f4a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-52431f4a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-52431f4a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-52431f4a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-52431f4a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-52431f4a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-52431f4a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-52431f4a],.btn[data-v-52431f4a],button[data-v-52431f4a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-52431f4a],.btn-default[type=submit][data-v-52431f4a],.btn.btn-primary[data-v-52431f4a],.btn[type=submit][data-v-52431f4a],button.btn-primary[data-v-52431f4a],button[type=submit][data-v-52431f4a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-52431f4a],.btn-default .icon[data-v-52431f4a],button .icon[data-v-52431f4a]{margin-right:.5em}input[type=password][data-v-52431f4a],input[type=text][data-v-52431f4a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-52431f4a]:focus,input[type=text][data-v-52431f4a]:focus{border:1px solid #35b870}button[data-v-52431f4a],input[data-v-52431f4a]{outline:none}input[type=text][data-v-52431f4a]:hover,textarea[data-v-52431f4a]:hover{border:1px solid #9cdfb0}ul[data-v-52431f4a]{margin:0;padding:0;list-style:none}a[data-v-52431f4a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-52431f4a]:hover{color:#35b870}[data-v-52431f4a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-52431f4a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-52431f4a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-52431f4a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-52431f4a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-52431f4a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-52431f4a] .nav .path{cursor:pointer}.browser[data-v-52431f4a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-52431f4a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-52431f4a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-52431f4a],input[type=number][data-v-52431f4a],input[type=password][data-v-52431f4a],input[type=search][data-v-52431f4a],input[type=text][data-v-52431f4a],input[type=time][data-v-52431f4a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-52431f4a]:hover,input[type=number][data-v-52431f4a]:hover,input[type=password][data-v-52431f4a]:hover,input[type=search][data-v-52431f4a]:hover,input[type=text][data-v-52431f4a]:hover,input[type=time][data-v-52431f4a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-52431f4a]:focus,input[type=number][data-v-52431f4a]:focus,input[type=password][data-v-52431f4a]:focus,input[type=search][data-v-52431f4a]:focus,input[type=text][data-v-52431f4a]:focus,input[type=time][data-v-52431f4a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-52431f4a],input[type=number].with-icon[data-v-52431f4a],input[type=password].with-icon[data-v-52431f4a],input[type=search].with-icon[data-v-52431f4a],input[type=text].with-icon[data-v-52431f4a],input[type=time].with-icon[data-v-52431f4a]{padding-left:.3em}input[type=search][data-v-52431f4a],input[type=text][data-v-52431f4a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-52431f4a]{animation-fill-mode:both;animation-name:fadeIn-52431f4a;-webkit-animation-name:fadeIn-52431f4a}.fade-in[data-v-52431f4a],.fade-out[data-v-52431f4a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-52431f4a]{animation-fill-mode:both;animation-name:fadeOut-52431f4a;-webkit-animation-name:fadeOut-52431f4a}@keyframes fadeIn-52431f4a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-52431f4a{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-52431f4a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-52431f4a;-webkit-animation-name:glow-52431f4a}.loop[data-v-52431f4a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-52431f4a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-52431f4a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-52431f4a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-52431f4a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.alarms-container[data-v-52431f4a]{display:flex;height:100%;background:#e4eae8;flex-grow:1;overflow-y:auto;justify-content:center}.alarms-container .alarms[data-v-52431f4a]{max-width:800px;background:#f8f8f8;display:flex;flex-direction:column;margin-bottom:auto;box-shadow:2.5px 2.5px 3px 0 silver}@media screen and (max-width:calc(769px - 1px)){.alarms-container .alarms[data-v-52431f4a]{width:100%}}@media screen and (min-width:769px){.alarms-container .alarms[data-v-52431f4a]{width:calc(100% - 2em);margin-top:1em;border-radius:1em}}.alarms-container .alarms[data-v-52431f4a] .item .entity-container:first-child{border-top-left-radius:1em;border-top-right-radius:1em}.alarms-container .alarms[data-v-52431f4a] .item .entity-container:last-child{border-bottom-left-radius:1em;border-bottom-right-radius:1em}[data-v-52431f4a] .modal .content .body{padding:0} \ No newline at end of file +.col-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-52431f4a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-52431f4a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-52431f4a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-52431f4a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-52431f4a]:first-child{margin-left:26%!important}.col-offset-3[data-v-52431f4a]:not(first-child){margin-left:30%!important}.col-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-52431f4a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-52431f4a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-52431f4a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-52431f4a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-52431f4a]:first-child{margin-left:52%!important}.col-offset-6[data-v-52431f4a]:not(first-child){margin-left:56%!important}.col-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-52431f4a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-52431f4a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-52431f4a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-52431f4a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-52431f4a]:first-child{margin-left:78%!important}.col-offset-9[data-v-52431f4a]:not(first-child){margin-left:82%!important}.col-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-52431f4a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-52431f4a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-52431f4a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-52431f4a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-s-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-s-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-s-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-s-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-52431f4a]{display:none!important}.s-visible[data-v-52431f4a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-m-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-m-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-m-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-m-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-52431f4a]{display:none!important}.m-visible[data-v-52431f4a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-l-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-l-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-l-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-l-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-52431f4a]{display:none!important}.l-visible[data-v-52431f4a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-xl-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-xl-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-xl-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xl-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-52431f4a]{display:none!important}.xl-visible[data-v-52431f4a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-52431f4a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-52431f4a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-52431f4a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-52431f4a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-52431f4a]{margin-left:26%}.col-no-margin-xxl-3[data-v-52431f4a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-52431f4a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-52431f4a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-52431f4a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-52431f4a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-52431f4a]{margin-left:52%}.col-no-margin-xxl-6[data-v-52431f4a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-52431f4a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-52431f4a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-52431f4a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-52431f4a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-52431f4a]{margin-left:78%}.col-no-margin-xxl-9[data-v-52431f4a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-52431f4a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-52431f4a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-52431f4a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-52431f4a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-52431f4a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-52431f4a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-52431f4a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-52431f4a]{display:none!important}.xxl-visible[data-v-52431f4a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-52431f4a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-52431f4a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-52431f4a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-52431f4a]{display:none!important}}.vertical-center[data-v-52431f4a]{display:flex;align-items:center}.horizontal-center[data-v-52431f4a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-52431f4a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-52431f4a]{display:none!important}.no-content[data-v-52431f4a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-52431f4a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-52431f4a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-52431f4a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-52431f4a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-52431f4a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-52431f4a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-52431f4a],.btn[data-v-52431f4a],button[data-v-52431f4a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-52431f4a],.btn-default[type=submit][data-v-52431f4a],.btn.btn-primary[data-v-52431f4a],.btn[type=submit][data-v-52431f4a],button.btn-primary[data-v-52431f4a],button[type=submit][data-v-52431f4a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-52431f4a]:hover,.btn[data-v-52431f4a]:hover,button[data-v-52431f4a]:hover{color:#35b870}.btn .icon[data-v-52431f4a],.btn-default .icon[data-v-52431f4a],button .icon[data-v-52431f4a]{margin-right:.5em}.btn-default[data-v-52431f4a]:disabled,.btn-default[disabled][data-v-52431f4a],.btn[data-v-52431f4a]:disabled,.btn[disabled][data-v-52431f4a],button[data-v-52431f4a]:disabled,button[disabled][data-v-52431f4a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-52431f4a]{cursor:grab!important}.dragged[data-v-52431f4a]{opacity:.5!important}input[type=password][data-v-52431f4a],input[type=text][data-v-52431f4a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-52431f4a]:focus,input[type=text][data-v-52431f4a]:focus{border:1px solid #35b870}button[data-v-52431f4a],input[data-v-52431f4a]{outline:none}input[type=text][data-v-52431f4a]:hover,textarea[data-v-52431f4a]:hover{border:1px solid #9cdfb0}ul[data-v-52431f4a]{margin:0;padding:0;list-style:none}a[data-v-52431f4a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-52431f4a]:hover{color:#35b870}[data-v-52431f4a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-52431f4a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-52431f4a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-52431f4a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-52431f4a]{color:#ad1717}body[data-v-52431f4a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-52431f4a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-52431f4a] .nav .path{cursor:pointer}.browser[data-v-52431f4a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-52431f4a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-52431f4a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-52431f4a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-52431f4a],input[type=number][data-v-52431f4a],input[type=password][data-v-52431f4a],input[type=search][data-v-52431f4a],input[type=text][data-v-52431f4a],input[type=time][data-v-52431f4a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-52431f4a]:hover,input[type=number][data-v-52431f4a]:hover,input[type=password][data-v-52431f4a]:hover,input[type=search][data-v-52431f4a]:hover,input[type=text][data-v-52431f4a]:hover,input[type=time][data-v-52431f4a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-52431f4a]:focus,input[type=number][data-v-52431f4a]:focus,input[type=password][data-v-52431f4a]:focus,input[type=search][data-v-52431f4a]:focus,input[type=text][data-v-52431f4a]:focus,input[type=time][data-v-52431f4a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-52431f4a],input[type=number].with-icon[data-v-52431f4a],input[type=password].with-icon[data-v-52431f4a],input[type=search].with-icon[data-v-52431f4a],input[type=text].with-icon[data-v-52431f4a],input[type=time].with-icon[data-v-52431f4a]{padding-left:.3em}input[type=search][data-v-52431f4a],input[type=text][data-v-52431f4a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-52431f4a]{animation-fill-mode:both;animation-name:fadeIn-52431f4a;-webkit-animation-name:fadeIn-52431f4a}.fade-in[data-v-52431f4a],.fade-out[data-v-52431f4a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-52431f4a]{animation-fill-mode:both;animation-name:fadeOut-52431f4a;-webkit-animation-name:fadeOut-52431f4a}.expand[data-v-52431f4a]{animation-fill-mode:both;animation-name:expand-52431f4a;-webkit-animation-name:expand-52431f4a}.expand[data-v-52431f4a],.shrink[data-v-52431f4a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-52431f4a]{animation-fill-mode:both;animation-name:shrink-52431f4a;-webkit-animation-name:shrink-52431f4a}.fold[data-v-52431f4a]{animation-fill-mode:both;animation-name:fold-52431f4a;-webkit-animation-name:fold-52431f4a}.fold[data-v-52431f4a],.unfold[data-v-52431f4a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-52431f4a]{animation-fill-mode:both;animation-name:unfold-52431f4a;-webkit-animation-name:unfold-52431f4a}.dim[data-v-52431f4a]{animation-fill-mode:both;animation-name:dim-52431f4a;-webkit-animation-name:dim-52431f4a}.brighten[data-v-52431f4a],.dim[data-v-52431f4a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-52431f4a]{animation-fill-mode:both;animation-name:brighten-52431f4a;-webkit-animation-name:brighten-52431f4a}@keyframes fadeIn-52431f4a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-52431f4a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-52431f4a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-52431f4a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-52431f4a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-52431f4a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-52431f4a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-52431f4a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-52431f4a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-52431f4a;-webkit-animation-name:glow-52431f4a}.loop[data-v-52431f4a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-52431f4a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-52431f4a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-52431f4a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-52431f4a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.alarms-container[data-v-52431f4a]{display:flex;height:100%;background:#e4eae8;flex-grow:1;overflow-y:auto;justify-content:center}.alarms-container .alarms[data-v-52431f4a]{max-width:800px;background:#f8f8f8;display:flex;flex-direction:column;margin-bottom:auto;box-shadow:2.5px 2.5px 3px 0 silver}@media screen and (max-width:calc(769px - 1px)){.alarms-container .alarms[data-v-52431f4a]{width:100%}}@media screen and (min-width:769px){.alarms-container .alarms[data-v-52431f4a]{width:calc(100% - 2em);margin-top:1em;border-radius:1em}}.alarms-container .alarms[data-v-52431f4a] .item .entity-container:first-child{border-top-left-radius:1em;border-top-right-radius:1em}.alarms-container .alarms[data-v-52431f4a] .item .entity-container:last-child{border-bottom-left-radius:1em;border-bottom-right-radius:1em}[data-v-52431f4a] .modal .content .body{padding:0} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2018.8146b7c4.css b/platypush/backend/http/webapp/dist/static/css/2018.8146b7c4.css deleted file mode 100644 index 77fd488114..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/2018.8146b7c4.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4634d8cb]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4634d8cb]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4634d8cb]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4634d8cb]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4634d8cb]:first-child{margin-left:26%!important}.col-offset-3[data-v-4634d8cb]:not(first-child){margin-left:30%!important}.col-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4634d8cb]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4634d8cb]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4634d8cb]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4634d8cb]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4634d8cb]:first-child{margin-left:52%!important}.col-offset-6[data-v-4634d8cb]:not(first-child){margin-left:56%!important}.col-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4634d8cb]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4634d8cb]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4634d8cb]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4634d8cb]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4634d8cb]:first-child{margin-left:78%!important}.col-offset-9[data-v-4634d8cb]:not(first-child){margin-left:82%!important}.col-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4634d8cb]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4634d8cb]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4634d8cb]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4634d8cb]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-1[data-v-4634d8cb]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-2[data-v-4634d8cb]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-3[data-v-4634d8cb]{margin-left:26%}.col-no-margin-s-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-4[data-v-4634d8cb]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-5[data-v-4634d8cb]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-6[data-v-4634d8cb]{margin-left:52%}.col-no-margin-s-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-7[data-v-4634d8cb]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-8[data-v-4634d8cb]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-9[data-v-4634d8cb]{margin-left:78%}.col-no-margin-s-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-10[data-v-4634d8cb]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-s-11[data-v-4634d8cb]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4634d8cb]{display:none!important}.s-visible[data-v-4634d8cb]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-1[data-v-4634d8cb]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-2[data-v-4634d8cb]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-3[data-v-4634d8cb]{margin-left:26%}.col-no-margin-m-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-4[data-v-4634d8cb]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-5[data-v-4634d8cb]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-6[data-v-4634d8cb]{margin-left:52%}.col-no-margin-m-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-7[data-v-4634d8cb]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-8[data-v-4634d8cb]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-9[data-v-4634d8cb]{margin-left:78%}.col-no-margin-m-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-10[data-v-4634d8cb]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-m-11[data-v-4634d8cb]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4634d8cb]{display:none!important}.m-visible[data-v-4634d8cb]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-1[data-v-4634d8cb]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-2[data-v-4634d8cb]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-3[data-v-4634d8cb]{margin-left:26%}.col-no-margin-l-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-4[data-v-4634d8cb]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-5[data-v-4634d8cb]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-6[data-v-4634d8cb]{margin-left:52%}.col-no-margin-l-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-7[data-v-4634d8cb]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-8[data-v-4634d8cb]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-9[data-v-4634d8cb]{margin-left:78%}.col-no-margin-l-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-10[data-v-4634d8cb]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-l-11[data-v-4634d8cb]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4634d8cb]{display:none!important}.l-visible[data-v-4634d8cb]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-1[data-v-4634d8cb]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-2[data-v-4634d8cb]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-3[data-v-4634d8cb]{margin-left:26%}.col-no-margin-xl-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-4[data-v-4634d8cb]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-5[data-v-4634d8cb]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-6[data-v-4634d8cb]{margin-left:52%}.col-no-margin-xl-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-7[data-v-4634d8cb]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-8[data-v-4634d8cb]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-9[data-v-4634d8cb]{margin-left:78%}.col-no-margin-xl-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-10[data-v-4634d8cb]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xl-11[data-v-4634d8cb]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4634d8cb]{display:none!important}.xl-visible[data-v-4634d8cb]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4634d8cb]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4634d8cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4634d8cb]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4634d8cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4634d8cb]{margin-left:26%}.col-no-margin-xxl-3[data-v-4634d8cb]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4634d8cb]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4634d8cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4634d8cb]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4634d8cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4634d8cb]{margin-left:52%}.col-no-margin-xxl-6[data-v-4634d8cb]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4634d8cb]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4634d8cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4634d8cb]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4634d8cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4634d8cb]{margin-left:78%}.col-no-margin-xxl-9[data-v-4634d8cb]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4634d8cb]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4634d8cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4634d8cb]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4634d8cb]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4634d8cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4634d8cb]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4634d8cb]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4634d8cb]{display:none!important}.xxl-visible[data-v-4634d8cb]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4634d8cb]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4634d8cb]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4634d8cb]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4634d8cb]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4634d8cb]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4634d8cb]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4634d8cb]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4634d8cb]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4634d8cb]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4634d8cb]{display:none!important}}.vertical-center[data-v-4634d8cb]{display:flex;align-items:center}.horizontal-center[data-v-4634d8cb]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4634d8cb]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4634d8cb]{display:none!important}.no-content[data-v-4634d8cb]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4634d8cb]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4634d8cb]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4634d8cb]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4634d8cb]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4634d8cb]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4634d8cb]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4634d8cb],.btn[data-v-4634d8cb],button[data-v-4634d8cb]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4634d8cb],.btn-default[type=submit][data-v-4634d8cb],.btn.btn-primary[data-v-4634d8cb],.btn[type=submit][data-v-4634d8cb],button.btn-primary[data-v-4634d8cb],button[type=submit][data-v-4634d8cb]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4634d8cb],.btn-default .icon[data-v-4634d8cb],button .icon[data-v-4634d8cb]{margin-right:.5em}input[type=password][data-v-4634d8cb],input[type=text][data-v-4634d8cb]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4634d8cb]:focus,input[type=text][data-v-4634d8cb]:focus{border:1px solid #35b870}button[data-v-4634d8cb],input[data-v-4634d8cb]{outline:none}input[type=text][data-v-4634d8cb]:hover,textarea[data-v-4634d8cb]:hover{border:1px solid #9cdfb0}ul[data-v-4634d8cb]{margin:0;padding:0;list-style:none}a[data-v-4634d8cb]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4634d8cb]:hover{color:#35b870}[data-v-4634d8cb]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4634d8cb]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4634d8cb]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4634d8cb]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4634d8cb]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4634d8cb] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4634d8cb] .nav .path{cursor:pointer}.browser[data-v-4634d8cb] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4634d8cb] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4634d8cb]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4634d8cb],input[type=number][data-v-4634d8cb],input[type=password][data-v-4634d8cb],input[type=search][data-v-4634d8cb],input[type=text][data-v-4634d8cb],input[type=time][data-v-4634d8cb]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4634d8cb]:hover,input[type=number][data-v-4634d8cb]:hover,input[type=password][data-v-4634d8cb]:hover,input[type=search][data-v-4634d8cb]:hover,input[type=text][data-v-4634d8cb]:hover,input[type=time][data-v-4634d8cb]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4634d8cb]:focus,input[type=number][data-v-4634d8cb]:focus,input[type=password][data-v-4634d8cb]:focus,input[type=search][data-v-4634d8cb]:focus,input[type=text][data-v-4634d8cb]:focus,input[type=time][data-v-4634d8cb]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4634d8cb],input[type=number].with-icon[data-v-4634d8cb],input[type=password].with-icon[data-v-4634d8cb],input[type=search].with-icon[data-v-4634d8cb],input[type=text].with-icon[data-v-4634d8cb],input[type=time].with-icon[data-v-4634d8cb]{padding-left:.3em}input[type=search][data-v-4634d8cb],input[type=text][data-v-4634d8cb]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4634d8cb]{animation-fill-mode:both;animation-name:fadeIn-4634d8cb;-webkit-animation-name:fadeIn-4634d8cb}.fade-in[data-v-4634d8cb],.fade-out[data-v-4634d8cb]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4634d8cb]{animation-fill-mode:both;animation-name:fadeOut-4634d8cb;-webkit-animation-name:fadeOut-4634d8cb}@keyframes fadeIn-4634d8cb{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4634d8cb{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-4634d8cb]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4634d8cb;-webkit-animation-name:glow-4634d8cb}.loop[data-v-4634d8cb]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4634d8cb{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4634d8cb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4634d8cb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4634d8cb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}pre[data-v-4634d8cb]{width:100%;margin:0;background:#0b0b0d;color:#f3f3fa;font-size:.9em;padding:.5em;overflow:auto}.config-container[data-v-4634d8cb]{width:100%;max-height:100%;position:relative;display:flex;flex-grow:1;overflow:auto}.config-container pre[data-v-4634d8cb]{border-radius:1em}.config-container.current[data-v-4634d8cb]{height:34%;margin-bottom:1.5em}.config-container.snippet[data-v-4634d8cb]{height:66%}.config-container.fullscreen[data-v-4634d8cb]{height:100%}.config-container.fullscreen pre[data-v-4634d8cb]{border-radius:0}.col-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-49986d05]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-49986d05]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-49986d05]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-49986d05]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-49986d05]:first-child{margin-left:26%!important}.col-offset-3[data-v-49986d05]:not(first-child){margin-left:30%!important}.col-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-49986d05]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-49986d05]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-49986d05]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-49986d05]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-49986d05]:first-child{margin-left:52%!important}.col-offset-6[data-v-49986d05]:not(first-child){margin-left:56%!important}.col-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-49986d05]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-49986d05]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-49986d05]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-49986d05]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-49986d05]:first-child{margin-left:78%!important}.col-offset-9[data-v-49986d05]:not(first-child){margin-left:82%!important}.col-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-49986d05]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-49986d05]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-49986d05]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-49986d05]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-3[data-v-49986d05]{margin-left:26%}.col-no-margin-s-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-6[data-v-49986d05]{margin-left:52%}.col-no-margin-s-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-9[data-v-49986d05]{margin-left:78%}.col-no-margin-s-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-s-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-49986d05]{display:none!important}.s-visible[data-v-49986d05]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-3[data-v-49986d05]{margin-left:26%}.col-no-margin-m-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-6[data-v-49986d05]{margin-left:52%}.col-no-margin-m-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-9[data-v-49986d05]{margin-left:78%}.col-no-margin-m-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-m-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-49986d05]{display:none!important}.m-visible[data-v-49986d05]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-3[data-v-49986d05]{margin-left:26%}.col-no-margin-l-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-6[data-v-49986d05]{margin-left:52%}.col-no-margin-l-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-9[data-v-49986d05]{margin-left:78%}.col-no-margin-l-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-l-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-49986d05]{display:none!important}.l-visible[data-v-49986d05]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-3[data-v-49986d05]{margin-left:26%}.col-no-margin-xl-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-6[data-v-49986d05]{margin-left:52%}.col-no-margin-xl-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-9[data-v-49986d05]{margin-left:78%}.col-no-margin-xl-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-49986d05]{display:none!important}.xl-visible[data-v-49986d05]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-3[data-v-49986d05]{margin-left:26%}.col-no-margin-xxl-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-6[data-v-49986d05]{margin-left:52%}.col-no-margin-xxl-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-9[data-v-49986d05]{margin-left:78%}.col-no-margin-xxl-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-49986d05]{display:none!important}.xxl-visible[data-v-49986d05]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-49986d05]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-49986d05]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-49986d05]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-49986d05]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-49986d05]{display:none!important}}.vertical-center[data-v-49986d05]{display:flex;align-items:center}.horizontal-center[data-v-49986d05]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-49986d05]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-49986d05]{display:none!important}.no-content[data-v-49986d05]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-49986d05]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-49986d05]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-49986d05]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-49986d05]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-49986d05]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-49986d05]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-49986d05],.btn[data-v-49986d05],button[data-v-49986d05]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-49986d05],.btn-default[type=submit][data-v-49986d05],.btn.btn-primary[data-v-49986d05],.btn[type=submit][data-v-49986d05],button.btn-primary[data-v-49986d05],button[type=submit][data-v-49986d05]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-49986d05],.btn-default .icon[data-v-49986d05],button .icon[data-v-49986d05]{margin-right:.5em}input[type=password][data-v-49986d05],input[type=text][data-v-49986d05]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-49986d05]:focus,input[type=text][data-v-49986d05]:focus{border:1px solid #35b870}button[data-v-49986d05],input[data-v-49986d05]{outline:none}input[type=text][data-v-49986d05]:hover,textarea[data-v-49986d05]:hover{border:1px solid #9cdfb0}ul[data-v-49986d05]{margin:0;padding:0;list-style:none}a[data-v-49986d05]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-49986d05]:hover{color:#35b870}[data-v-49986d05]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-49986d05]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-49986d05]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-49986d05]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-49986d05]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-49986d05] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-49986d05] .nav .path{cursor:pointer}.browser[data-v-49986d05] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-49986d05] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-49986d05]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-49986d05],input[type=number][data-v-49986d05],input[type=password][data-v-49986d05],input[type=search][data-v-49986d05],input[type=text][data-v-49986d05],input[type=time][data-v-49986d05]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-49986d05]:hover,input[type=number][data-v-49986d05]:hover,input[type=password][data-v-49986d05]:hover,input[type=search][data-v-49986d05]:hover,input[type=text][data-v-49986d05]:hover,input[type=time][data-v-49986d05]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-49986d05]:focus,input[type=number][data-v-49986d05]:focus,input[type=password][data-v-49986d05]:focus,input[type=search][data-v-49986d05]:focus,input[type=text][data-v-49986d05]:focus,input[type=time][data-v-49986d05]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-49986d05],input[type=number].with-icon[data-v-49986d05],input[type=password].with-icon[data-v-49986d05],input[type=search].with-icon[data-v-49986d05],input[type=text].with-icon[data-v-49986d05],input[type=time].with-icon[data-v-49986d05]{padding-left:.3em}input[type=search][data-v-49986d05],input[type=text][data-v-49986d05]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-49986d05]{animation-fill-mode:both;animation-name:fadeIn-49986d05;-webkit-animation-name:fadeIn-49986d05}.fade-in[data-v-49986d05],.fade-out[data-v-49986d05]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-49986d05]{animation-fill-mode:both;animation-name:fadeOut-49986d05;-webkit-animation-name:fadeOut-49986d05}@keyframes fadeIn-49986d05{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-49986d05{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-49986d05]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-49986d05;-webkit-animation-name:glow-49986d05}.loop[data-v-49986d05]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-49986d05{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-49986d05]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-49986d05]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-49986d05]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}section[data-v-49986d05]{height:100%}section header[data-v-49986d05]{height:3.5em;padding:.5em;border-bottom:1px solid #ddd}section header h2[data-v-49986d05]{margin:0;padding:0;font-size:1.25em}section header .title[data-v-49986d05]{display:flex;align-items:center}section header .title .name[data-v-49986d05]{margin-left:.5em}section article[data-v-49986d05]{height:calc(100% - 3.5em);padding:.5em;overflow:auto}section article[data-v-49986d05] ul{margin-left:1em}section article[data-v-49986d05] ul li{list-style:disc}section .actions[data-v-49986d05],section .events[data-v-49986d05]{padding:.5em;overflow:auto}section .actions h3[data-v-49986d05],section .events h3[data-v-49986d05]{width:calc(100% - 1em);margin:0 -.5em;padding:0 .5em;font-size:1.25em;opacity:.85;border-bottom:1px solid #e1e4e8}section .actions ul[data-v-49986d05],section .events ul[data-v-49986d05]{display:flex;flex-direction:column;margin:0}section .actions ul li[data-v-49986d05],section .events ul li[data-v-49986d05]{width:100%;display:block;margin:.5em 0;list-style:none}section .actions ul li a[data-v-49986d05],section .events ul li a[data-v-49986d05]{width:100%;display:block}section .actions pre[data-v-49986d05],section .events pre[data-v-49986d05]{margin:0}.col-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5e00060c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5e00060c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5e00060c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5e00060c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5e00060c]:first-child{margin-left:26%!important}.col-offset-3[data-v-5e00060c]:not(first-child){margin-left:30%!important}.col-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5e00060c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5e00060c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5e00060c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5e00060c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5e00060c]:first-child{margin-left:52%!important}.col-offset-6[data-v-5e00060c]:not(first-child){margin-left:56%!important}.col-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5e00060c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5e00060c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5e00060c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5e00060c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5e00060c]:first-child{margin-left:78%!important}.col-offset-9[data-v-5e00060c]:not(first-child){margin-left:82%!important}.col-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5e00060c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5e00060c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5e00060c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5e00060c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-1[data-v-5e00060c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-2[data-v-5e00060c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-3[data-v-5e00060c]{margin-left:26%}.col-no-margin-s-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-4[data-v-5e00060c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-5[data-v-5e00060c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-6[data-v-5e00060c]{margin-left:52%}.col-no-margin-s-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-7[data-v-5e00060c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-8[data-v-5e00060c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-9[data-v-5e00060c]{margin-left:78%}.col-no-margin-s-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-10[data-v-5e00060c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5e00060c]:first-child{margin-left:0}.col-offset-s-11[data-v-5e00060c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5e00060c]{display:none!important}.s-visible[data-v-5e00060c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-1[data-v-5e00060c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-2[data-v-5e00060c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-3[data-v-5e00060c]{margin-left:26%}.col-no-margin-m-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-4[data-v-5e00060c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-5[data-v-5e00060c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-6[data-v-5e00060c]{margin-left:52%}.col-no-margin-m-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-7[data-v-5e00060c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-8[data-v-5e00060c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-9[data-v-5e00060c]{margin-left:78%}.col-no-margin-m-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-10[data-v-5e00060c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5e00060c]:first-child{margin-left:0}.col-offset-m-11[data-v-5e00060c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5e00060c]{display:none!important}.m-visible[data-v-5e00060c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-1[data-v-5e00060c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-2[data-v-5e00060c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-3[data-v-5e00060c]{margin-left:26%}.col-no-margin-l-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-4[data-v-5e00060c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-5[data-v-5e00060c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-6[data-v-5e00060c]{margin-left:52%}.col-no-margin-l-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-7[data-v-5e00060c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-8[data-v-5e00060c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-9[data-v-5e00060c]{margin-left:78%}.col-no-margin-l-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-10[data-v-5e00060c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5e00060c]:first-child{margin-left:0}.col-offset-l-11[data-v-5e00060c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5e00060c]{display:none!important}.l-visible[data-v-5e00060c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-1[data-v-5e00060c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-2[data-v-5e00060c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-3[data-v-5e00060c]{margin-left:26%}.col-no-margin-xl-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-4[data-v-5e00060c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-5[data-v-5e00060c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-6[data-v-5e00060c]{margin-left:52%}.col-no-margin-xl-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-7[data-v-5e00060c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-8[data-v-5e00060c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-9[data-v-5e00060c]{margin-left:78%}.col-no-margin-xl-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-10[data-v-5e00060c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xl-11[data-v-5e00060c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5e00060c]{display:none!important}.xl-visible[data-v-5e00060c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5e00060c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5e00060c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5e00060c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5e00060c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5e00060c]{margin-left:26%}.col-no-margin-xxl-3[data-v-5e00060c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5e00060c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5e00060c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5e00060c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5e00060c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5e00060c]{margin-left:52%}.col-no-margin-xxl-6[data-v-5e00060c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5e00060c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5e00060c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5e00060c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5e00060c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5e00060c]{margin-left:78%}.col-no-margin-xxl-9[data-v-5e00060c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5e00060c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5e00060c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5e00060c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5e00060c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5e00060c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5e00060c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5e00060c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5e00060c]{display:none!important}.xxl-visible[data-v-5e00060c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5e00060c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5e00060c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5e00060c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5e00060c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5e00060c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5e00060c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5e00060c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5e00060c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5e00060c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5e00060c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5e00060c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5e00060c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5e00060c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5e00060c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5e00060c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5e00060c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5e00060c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5e00060c]{display:none!important}}.vertical-center[data-v-5e00060c]{display:flex;align-items:center}.horizontal-center[data-v-5e00060c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5e00060c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5e00060c]{display:none!important}.no-content[data-v-5e00060c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5e00060c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5e00060c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5e00060c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5e00060c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5e00060c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5e00060c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5e00060c],.btn[data-v-5e00060c],button[data-v-5e00060c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5e00060c],.btn-default[type=submit][data-v-5e00060c],.btn.btn-primary[data-v-5e00060c],.btn[type=submit][data-v-5e00060c],button.btn-primary[data-v-5e00060c],button[type=submit][data-v-5e00060c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5e00060c],.btn-default .icon[data-v-5e00060c],button .icon[data-v-5e00060c]{margin-right:.5em}input[type=password][data-v-5e00060c],input[type=text][data-v-5e00060c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5e00060c]:focus,input[type=text][data-v-5e00060c]:focus{border:1px solid #35b870}button[data-v-5e00060c],input[data-v-5e00060c]{outline:none}input[type=text][data-v-5e00060c]:hover,textarea[data-v-5e00060c]:hover{border:1px solid #9cdfb0}ul[data-v-5e00060c]{margin:0;padding:0;list-style:none}a[data-v-5e00060c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5e00060c]:hover{color:#35b870}[data-v-5e00060c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5e00060c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5e00060c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5e00060c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5e00060c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5e00060c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5e00060c] .nav .path{cursor:pointer}.browser[data-v-5e00060c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5e00060c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-5e00060c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5e00060c],input[type=number][data-v-5e00060c],input[type=password][data-v-5e00060c],input[type=search][data-v-5e00060c],input[type=text][data-v-5e00060c],input[type=time][data-v-5e00060c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-5e00060c]:hover,input[type=number][data-v-5e00060c]:hover,input[type=password][data-v-5e00060c]:hover,input[type=search][data-v-5e00060c]:hover,input[type=text][data-v-5e00060c]:hover,input[type=time][data-v-5e00060c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5e00060c]:focus,input[type=number][data-v-5e00060c]:focus,input[type=password][data-v-5e00060c]:focus,input[type=search][data-v-5e00060c]:focus,input[type=text][data-v-5e00060c]:focus,input[type=time][data-v-5e00060c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5e00060c],input[type=number].with-icon[data-v-5e00060c],input[type=password].with-icon[data-v-5e00060c],input[type=search].with-icon[data-v-5e00060c],input[type=text].with-icon[data-v-5e00060c],input[type=time].with-icon[data-v-5e00060c]{padding-left:.3em}input[type=search][data-v-5e00060c],input[type=text][data-v-5e00060c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5e00060c]{animation-fill-mode:both;animation-name:fadeIn-5e00060c;-webkit-animation-name:fadeIn-5e00060c}.fade-in[data-v-5e00060c],.fade-out[data-v-5e00060c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5e00060c]{animation-fill-mode:both;animation-name:fadeOut-5e00060c;-webkit-animation-name:fadeOut-5e00060c}@keyframes fadeIn-5e00060c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5e00060c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-5e00060c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5e00060c;-webkit-animation-name:glow-5e00060c}.loop[data-v-5e00060c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5e00060c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5e00060c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5e00060c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5e00060c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}pre[data-v-5e00060c]{width:100%;margin:0;background:#0b0b0d;color:#f3f3fa;font-size:.9em;padding:.5em;overflow:auto}.install-container[data-v-5e00060c]{width:100%;height:100%;display:flex;flex-direction:column}.install-container section.top[data-v-5e00060c]{height:33.3333%!important}.install-container section.bottom[data-v-5e00060c]{height:66.6666%!important}.install-container section header[data-v-5e00060c]{height:3.5em;padding-left:.5em;border-top:1px solid #e1e4e8;border-bottom:1px solid #e1e4e8}.install-container section .body[data-v-5e00060c]{height:calc(100% - 3.5em);display:flex;flex-direction:column;padding:1em}.install-container section h2[data-v-5e00060c]{font-size:1.3em;opacity:.9}.install-container .container[data-v-5e00060c]{width:100%;height:100%;position:relative;display:flex;flex-direction:column}.install-container pre[data-v-5e00060c]{height:100%;position:relative;border-radius:1em}.install-container[data-v-5e00060c] .install-btn{width:100%;margin-top:1em;display:flex;justify-content:right}.install-container[data-v-5e00060c] .install-btn button{border-radius:.5em;margin-right:.5em}.install-container .loading-container[data-v-5e00060c]{width:100%;position:relative}.install-container .loading-container[data-v-5e00060c] .loading{background:none}.col-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3fa6b036]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3fa6b036]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3fa6b036]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3fa6b036]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3fa6b036]:first-child{margin-left:26%!important}.col-offset-3[data-v-3fa6b036]:not(first-child){margin-left:30%!important}.col-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3fa6b036]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3fa6b036]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3fa6b036]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3fa6b036]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3fa6b036]:first-child{margin-left:52%!important}.col-offset-6[data-v-3fa6b036]:not(first-child){margin-left:56%!important}.col-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3fa6b036]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3fa6b036]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3fa6b036]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3fa6b036]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3fa6b036]:first-child{margin-left:78%!important}.col-offset-9[data-v-3fa6b036]:not(first-child){margin-left:82%!important}.col-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3fa6b036]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3fa6b036]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3fa6b036]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3fa6b036]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-s-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-s-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-s-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3fa6b036]{display:none!important}.s-visible[data-v-3fa6b036]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-m-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-m-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-m-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3fa6b036]{display:none!important}.m-visible[data-v-3fa6b036]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-l-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-l-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-l-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3fa6b036]{display:none!important}.l-visible[data-v-3fa6b036]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-xl-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-xl-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-xl-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3fa6b036]{display:none!important}.xl-visible[data-v-3fa6b036]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-xxl-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-xxl-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-xxl-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3fa6b036]{display:none!important}.xxl-visible[data-v-3fa6b036]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3fa6b036]{display:none!important}}.vertical-center[data-v-3fa6b036]{display:flex;align-items:center}.horizontal-center[data-v-3fa6b036]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3fa6b036]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3fa6b036]{display:none!important}.no-content[data-v-3fa6b036]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3fa6b036]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3fa6b036]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3fa6b036]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3fa6b036]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3fa6b036]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3fa6b036]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3fa6b036],.btn[data-v-3fa6b036],button[data-v-3fa6b036]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3fa6b036],.btn-default[type=submit][data-v-3fa6b036],.btn.btn-primary[data-v-3fa6b036],.btn[type=submit][data-v-3fa6b036],button.btn-primary[data-v-3fa6b036],button[type=submit][data-v-3fa6b036]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3fa6b036],.btn-default .icon[data-v-3fa6b036],button .icon[data-v-3fa6b036]{margin-right:.5em}input[type=password][data-v-3fa6b036],input[type=text][data-v-3fa6b036]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3fa6b036]:focus,input[type=text][data-v-3fa6b036]:focus{border:1px solid #35b870}button[data-v-3fa6b036],input[data-v-3fa6b036]{outline:none}input[type=text][data-v-3fa6b036]:hover,textarea[data-v-3fa6b036]:hover{border:1px solid #9cdfb0}ul[data-v-3fa6b036]{margin:0;padding:0;list-style:none}a[data-v-3fa6b036]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3fa6b036]:hover{color:#35b870}[data-v-3fa6b036]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3fa6b036]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3fa6b036]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3fa6b036]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3fa6b036]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3fa6b036] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3fa6b036] .nav .path{cursor:pointer}.browser[data-v-3fa6b036] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3fa6b036] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3fa6b036]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3fa6b036],input[type=number][data-v-3fa6b036],input[type=password][data-v-3fa6b036],input[type=search][data-v-3fa6b036],input[type=text][data-v-3fa6b036],input[type=time][data-v-3fa6b036]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3fa6b036]:hover,input[type=number][data-v-3fa6b036]:hover,input[type=password][data-v-3fa6b036]:hover,input[type=search][data-v-3fa6b036]:hover,input[type=text][data-v-3fa6b036]:hover,input[type=time][data-v-3fa6b036]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3fa6b036]:focus,input[type=number][data-v-3fa6b036]:focus,input[type=password][data-v-3fa6b036]:focus,input[type=search][data-v-3fa6b036]:focus,input[type=text][data-v-3fa6b036]:focus,input[type=time][data-v-3fa6b036]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3fa6b036],input[type=number].with-icon[data-v-3fa6b036],input[type=password].with-icon[data-v-3fa6b036],input[type=search].with-icon[data-v-3fa6b036],input[type=text].with-icon[data-v-3fa6b036],input[type=time].with-icon[data-v-3fa6b036]{padding-left:.3em}input[type=search][data-v-3fa6b036],input[type=text][data-v-3fa6b036]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3fa6b036]{animation-fill-mode:both;animation-name:fadeIn-3fa6b036;-webkit-animation-name:fadeIn-3fa6b036}.fade-in[data-v-3fa6b036],.fade-out[data-v-3fa6b036]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3fa6b036]{animation-fill-mode:both;animation-name:fadeOut-3fa6b036;-webkit-animation-name:fadeOut-3fa6b036}@keyframes fadeIn-3fa6b036{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3fa6b036{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3fa6b036]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3fa6b036;-webkit-animation-name:glow-3fa6b036}.loop[data-v-3fa6b036]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3fa6b036{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3fa6b036]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3fa6b036]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3fa6b036]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-3fa6b036]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-3fa6b036]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-3fa6b036]{background:#8fefb7}.item.selected[data-v-3fa6b036]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-3fa6b036]{border-top:2px solid #35b870}.item[data-v-3fa6b036]::-moz-selection{background:transparent!important}.item[data-v-3fa6b036]::selection{background:transparent!important}.item .title[data-v-3fa6b036]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-3fa6b036]{display:inline-flex;align-items:center}.item .side.right[data-v-3fa6b036]{display:inline-flex;justify-content:right}.item .actions[data-v-3fa6b036],.item .duration[data-v-3fa6b036]{display:inline-flex;align-items:center}.item .duration[data-v-3fa6b036]{font-size:.85em;opacity:.7}.item .actions[data-v-3fa6b036] button{opacity:.65}.item .icon[data-v-3fa6b036]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-3fa6b036] .dropdown-container .item{box-shadow:none}.item[data-v-3fa6b036] .dropdown-container button{background:none;border:none}.item[data-v-3fa6b036] .dropdown-container button:hover{color:#35b870}[data-v-3fa6b036] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-3fa6b036] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-3fa6b036] .table-row{flex-direction:row;align-items:center}}[data-v-3fa6b036] .table-row .title,[data-v-3fa6b036] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-3fa6b036] .table-row .title,[data-v-3fa6b036] .table-row .value{display:inline-flex}}[data-v-3fa6b036] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-3fa6b036] .table-row .title{width:30%}[data-v-3fa6b036] .table-row .value{justify-content:right}}.extension[data-v-3fa6b036]{width:100%;height:100%;background:#fff;display:flex;flex-direction:column;border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver}.extension header[data-v-3fa6b036]{height:3.6em}.extension header[data-v-3fa6b036] .tabs{margin:0}.extension .extension-body[data-v-3fa6b036]{height:calc(100% - 3.6em);display:flex;flex-direction:column;overflow:auto}.extension .extension-body[data-v-3fa6b036] section{height:calc(100% - 3.6em)}.col-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-74d75ec7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-74d75ec7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-74d75ec7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-74d75ec7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-74d75ec7]:first-child{margin-left:26%!important}.col-offset-3[data-v-74d75ec7]:not(first-child){margin-left:30%!important}.col-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-74d75ec7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-74d75ec7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-74d75ec7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-74d75ec7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-74d75ec7]:first-child{margin-left:52%!important}.col-offset-6[data-v-74d75ec7]:not(first-child){margin-left:56%!important}.col-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-74d75ec7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-74d75ec7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-74d75ec7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-74d75ec7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-74d75ec7]:first-child{margin-left:78%!important}.col-offset-9[data-v-74d75ec7]:not(first-child){margin-left:82%!important}.col-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-74d75ec7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-74d75ec7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-74d75ec7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-74d75ec7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-s-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-s-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-s-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-74d75ec7]{display:none!important}.s-visible[data-v-74d75ec7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-m-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-m-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-m-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-74d75ec7]{display:none!important}.m-visible[data-v-74d75ec7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-l-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-l-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-l-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-74d75ec7]{display:none!important}.l-visible[data-v-74d75ec7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-xl-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-xl-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-xl-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-74d75ec7]{display:none!important}.xl-visible[data-v-74d75ec7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-xxl-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-xxl-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-xxl-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-74d75ec7]{display:none!important}.xxl-visible[data-v-74d75ec7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-74d75ec7]{display:none!important}}.vertical-center[data-v-74d75ec7]{display:flex;align-items:center}.horizontal-center[data-v-74d75ec7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-74d75ec7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-74d75ec7]{display:none!important}.no-content[data-v-74d75ec7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-74d75ec7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-74d75ec7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-74d75ec7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-74d75ec7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-74d75ec7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-74d75ec7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-74d75ec7],.btn[data-v-74d75ec7],button[data-v-74d75ec7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-74d75ec7],.btn-default[type=submit][data-v-74d75ec7],.btn.btn-primary[data-v-74d75ec7],.btn[type=submit][data-v-74d75ec7],button.btn-primary[data-v-74d75ec7],button[type=submit][data-v-74d75ec7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-74d75ec7],.btn-default .icon[data-v-74d75ec7],button .icon[data-v-74d75ec7]{margin-right:.5em}input[type=password][data-v-74d75ec7],input[type=text][data-v-74d75ec7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-74d75ec7]:focus,input[type=text][data-v-74d75ec7]:focus{border:1px solid #35b870}button[data-v-74d75ec7],input[data-v-74d75ec7]{outline:none}input[type=text][data-v-74d75ec7]:hover,textarea[data-v-74d75ec7]:hover{border:1px solid #9cdfb0}ul[data-v-74d75ec7]{margin:0;padding:0;list-style:none}a[data-v-74d75ec7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-74d75ec7]:hover{color:#35b870}[data-v-74d75ec7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-74d75ec7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-74d75ec7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-74d75ec7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-74d75ec7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-74d75ec7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-74d75ec7] .nav .path{cursor:pointer}.browser[data-v-74d75ec7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-74d75ec7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-74d75ec7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-74d75ec7],input[type=number][data-v-74d75ec7],input[type=password][data-v-74d75ec7],input[type=search][data-v-74d75ec7],input[type=text][data-v-74d75ec7],input[type=time][data-v-74d75ec7]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-74d75ec7]:hover,input[type=number][data-v-74d75ec7]:hover,input[type=password][data-v-74d75ec7]:hover,input[type=search][data-v-74d75ec7]:hover,input[type=text][data-v-74d75ec7]:hover,input[type=time][data-v-74d75ec7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-74d75ec7]:focus,input[type=number][data-v-74d75ec7]:focus,input[type=password][data-v-74d75ec7]:focus,input[type=search][data-v-74d75ec7]:focus,input[type=text][data-v-74d75ec7]:focus,input[type=time][data-v-74d75ec7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-74d75ec7],input[type=number].with-icon[data-v-74d75ec7],input[type=password].with-icon[data-v-74d75ec7],input[type=search].with-icon[data-v-74d75ec7],input[type=text].with-icon[data-v-74d75ec7],input[type=time].with-icon[data-v-74d75ec7]{padding-left:.3em}input[type=search][data-v-74d75ec7],input[type=text][data-v-74d75ec7]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-74d75ec7]{animation-fill-mode:both;animation-name:fadeIn-74d75ec7;-webkit-animation-name:fadeIn-74d75ec7}.fade-in[data-v-74d75ec7],.fade-out[data-v-74d75ec7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-74d75ec7]{animation-fill-mode:both;animation-name:fadeOut-74d75ec7;-webkit-animation-name:fadeOut-74d75ec7}@keyframes fadeIn-74d75ec7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-74d75ec7{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-74d75ec7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-74d75ec7;-webkit-animation-name:glow-74d75ec7}.loop[data-v-74d75ec7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-74d75ec7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-74d75ec7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-74d75ec7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-74d75ec7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-74d75ec7]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-74d75ec7]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-74d75ec7]{background:#8fefb7}.item.selected[data-v-74d75ec7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-74d75ec7]{border-top:2px solid #35b870}.item[data-v-74d75ec7]::-moz-selection{background:transparent!important}.item[data-v-74d75ec7]::selection{background:transparent!important}.item .title[data-v-74d75ec7]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-74d75ec7]{display:inline-flex;align-items:center}.item .side.right[data-v-74d75ec7]{display:inline-flex;justify-content:right}.item .actions[data-v-74d75ec7],.item .duration[data-v-74d75ec7]{display:inline-flex;align-items:center}.item .duration[data-v-74d75ec7]{font-size:.85em;opacity:.7}.item .actions[data-v-74d75ec7] button{opacity:.65}.item .icon[data-v-74d75ec7]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-74d75ec7] .dropdown-container .item{box-shadow:none}.item[data-v-74d75ec7] .dropdown-container button{background:none;border:none}.item[data-v-74d75ec7] .dropdown-container button:hover{color:#35b870}[data-v-74d75ec7] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-74d75ec7] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-74d75ec7] .table-row{flex-direction:row;align-items:center}}[data-v-74d75ec7] .table-row .title,[data-v-74d75ec7] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-74d75ec7] .table-row .title,[data-v-74d75ec7] .table-row .value{display:inline-flex}}[data-v-74d75ec7] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-74d75ec7] .table-row .title{width:30%}[data-v-74d75ec7] .table-row .value{justify-content:right}}main[data-v-74d75ec7]{min-height:calc(100vh - 2em)}button[data-v-74d75ec7]{background:none;border:none;box-shadow:none}button[data-v-74d75ec7]:hover{color:#35b870}hgroup[data-v-74d75ec7]{flex-grow:1}h1[data-v-74d75ec7]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-74d75ec7]{border-radius:.5em .5em 0 0}}h2[data-v-74d75ec7]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-74d75ec7]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-74d75ec7]{margin-top:.5em;padding-top:.5em}section.response[data-v-74d75ec7]{flex-grow:1;max-height:40em}section.response .output[data-v-74d75ec7]{overflow:auto}.buttons[data-v-74d75ec7]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-74d75ec7]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-74d75ec7]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-74d75ec7]{background:#fff}header .buttons[data-v-74d75ec7]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-74d75ec7]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-74d75ec7] .doc blockquote{margin-left:0}textarea[data-v-74d75ec7]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-74d75ec7]:hover{border:1px solid #38cf80}textarea[data-v-74d75ec7]:focus{border:1px solid #32b646}form[data-v-74d75ec7]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-74d75ec7]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-74d75ec7]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-74d75ec7]{width:80%;max-width:60em}}.raw .first-row button[data-v-74d75ec7]{margin-left:0}.args-list[data-v-74d75ec7]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-74d75ec7]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-74d75ec7]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-74d75ec7]{width:30em}}.args-list .arg[data-v-74d75ec7]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-74d75ec7]{width:100%}}.args-list .arg .required-flag[data-v-74d75ec7]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-74d75ec7]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-74d75ec7]{width:100%}.args-body[data-v-74d75ec7]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-74d75ec7]{flex-direction:column}}.add-arg[data-v-74d75ec7]{width:100%}.add-arg button[data-v-74d75ec7]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-74d75ec7]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-74d75ec7]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-74d75ec7]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-74d75ec7]{width:100%}.doc-container[data-v-74d75ec7],.response[data-v-74d75ec7]{flex-grow:1}.doc-container h2[data-v-74d75ec7],.response h2[data-v-74d75ec7]{display:inline-flex}.doc-container h2 .title[data-v-74d75ec7],.response h2 .title[data-v-74d75ec7]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-74d75ec7],.response h2 .buttons[data-v-74d75ec7]{width:2em}.doc-container h2 .buttons button[data-v-74d75ec7],.response h2 .buttons button[data-v-74d75ec7]{padding:0}.output[data-v-74d75ec7]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-74d75ec7]{color:red}textarea.curl-snippet[data-v-74d75ec7]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.extensions-container[data-v-74d75ec7]{width:100%;display:flex;flex-direction:column;margin-top:.15em}.extensions-container header[data-v-74d75ec7]{height:3.25em;padding:.5em;margin-bottom:2px;box-shadow:0 3px 2px -1px silver}.extensions-container header .filter-container input[data-v-74d75ec7],.extensions-container header .filter-container[data-v-74d75ec7]{width:100%}.extensions-container main[data-v-74d75ec7]{height:calc(100% - 3.5em);min-height:calc(100% - 3.5em);background:#fff;display:flex;flex-direction:row}.extensions-container .items[data-v-74d75ec7]{height:100%;flex-grow:1;overflow:auto;border-bottom:1px solid #ddd}.extensions-container .extension-container .extension[data-v-74d75ec7]{display:flex;flex-direction:column}.extensions-container .extension-container .extension[data-v-74d75ec7] .item .extension-icon{margin-right:.5em}.extensions-container .extension-container .extension .item[data-v-74d75ec7]{width:100%;display:flex;padding:1em;position:relative}.extensions-container .extension-container .extension .item .icon[data-v-74d75ec7]{width:2.5em;position:absolute;right:-1em;top:.65em}.extensions-container .extension-container .extension .item.selected[data-v-74d75ec7]{font-weight:700}.extensions-container .extension-body-container.desktop[data-v-74d75ec7]{width:70%;height:100%;min-height:100%;border-left:1px solid #ddd;border-bottom:1px solid #ddd}.extensions-container .extension-body-container.desktop[data-v-74d75ec7] article{height:100%;overflow:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2029.66acebb6.css b/platypush/backend/http/webapp/dist/static/css/2029.66acebb6.css new file mode 100644 index 0000000000..f3a2a3401a --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2029.66acebb6.css @@ -0,0 +1 @@ +.col-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c55ac602]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c55ac602]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c55ac602]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c55ac602]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c55ac602]:first-child{margin-left:26%!important}.col-offset-3[data-v-c55ac602]:not(first-child){margin-left:30%!important}.col-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c55ac602]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c55ac602]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c55ac602]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c55ac602]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c55ac602]:first-child{margin-left:52%!important}.col-offset-6[data-v-c55ac602]:not(first-child){margin-left:56%!important}.col-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c55ac602]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c55ac602]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c55ac602]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c55ac602]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c55ac602]:first-child{margin-left:78%!important}.col-offset-9[data-v-c55ac602]:not(first-child){margin-left:82%!important}.col-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c55ac602]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c55ac602]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c55ac602]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c55ac602]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-s-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-s-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-s-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c55ac602]{display:none!important}.s-visible[data-v-c55ac602]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-m-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-m-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-m-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c55ac602]{display:none!important}.m-visible[data-v-c55ac602]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-l-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-l-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-l-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c55ac602]{display:none!important}.l-visible[data-v-c55ac602]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-xl-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-xl-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-xl-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c55ac602]{display:none!important}.xl-visible[data-v-c55ac602]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-xxl-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-xxl-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-xxl-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c55ac602]{display:none!important}.xxl-visible[data-v-c55ac602]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-c55ac602]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c55ac602]{display:none!important}}.vertical-center[data-v-c55ac602]{display:flex;align-items:center}.horizontal-center[data-v-c55ac602]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c55ac602]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c55ac602]{display:none!important}.no-content[data-v-c55ac602]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-c55ac602]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-c55ac602]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-c55ac602]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-c55ac602]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-c55ac602]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-c55ac602]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-c55ac602],.btn[data-v-c55ac602],button[data-v-c55ac602]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c55ac602],.btn-default[type=submit][data-v-c55ac602],.btn.btn-primary[data-v-c55ac602],.btn[type=submit][data-v-c55ac602],button.btn-primary[data-v-c55ac602],button[type=submit][data-v-c55ac602]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-c55ac602]:hover,.btn[data-v-c55ac602]:hover,button[data-v-c55ac602]:hover{color:#35b870}.btn .icon[data-v-c55ac602],.btn-default .icon[data-v-c55ac602],button .icon[data-v-c55ac602]{margin-right:.5em}.btn-default[data-v-c55ac602]:disabled,.btn-default[disabled][data-v-c55ac602],.btn[data-v-c55ac602]:disabled,.btn[disabled][data-v-c55ac602],button[data-v-c55ac602]:disabled,button[disabled][data-v-c55ac602]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-c55ac602]{cursor:grab!important}.dragged[data-v-c55ac602]{opacity:.5!important}input[type=password][data-v-c55ac602],input[type=text][data-v-c55ac602]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c55ac602]:focus,input[type=text][data-v-c55ac602]:focus{border:1px solid #35b870}button[data-v-c55ac602],input[data-v-c55ac602]{outline:none}input[type=text][data-v-c55ac602]:hover,textarea[data-v-c55ac602]:hover{border:1px solid #9cdfb0}ul[data-v-c55ac602]{margin:0;padding:0;list-style:none}a[data-v-c55ac602]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c55ac602]:hover{color:#35b870}[data-v-c55ac602]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-c55ac602]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-c55ac602]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c55ac602]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-c55ac602]{color:#ad1717}body[data-v-c55ac602]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-c55ac602] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-c55ac602] .nav .path{cursor:pointer}.browser[data-v-c55ac602] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-c55ac602] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-c55ac602]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-c55ac602]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-c55ac602],input[type=number][data-v-c55ac602],input[type=password][data-v-c55ac602],input[type=search][data-v-c55ac602],input[type=text][data-v-c55ac602],input[type=time][data-v-c55ac602]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-c55ac602]:hover,input[type=number][data-v-c55ac602]:hover,input[type=password][data-v-c55ac602]:hover,input[type=search][data-v-c55ac602]:hover,input[type=text][data-v-c55ac602]:hover,input[type=time][data-v-c55ac602]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-c55ac602]:focus,input[type=number][data-v-c55ac602]:focus,input[type=password][data-v-c55ac602]:focus,input[type=search][data-v-c55ac602]:focus,input[type=text][data-v-c55ac602]:focus,input[type=time][data-v-c55ac602]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-c55ac602],input[type=number].with-icon[data-v-c55ac602],input[type=password].with-icon[data-v-c55ac602],input[type=search].with-icon[data-v-c55ac602],input[type=text].with-icon[data-v-c55ac602],input[type=time].with-icon[data-v-c55ac602]{padding-left:.3em}input[type=search][data-v-c55ac602],input[type=text][data-v-c55ac602]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c55ac602]{animation-fill-mode:both;animation-name:fadeIn-c55ac602;-webkit-animation-name:fadeIn-c55ac602}.fade-in[data-v-c55ac602],.fade-out[data-v-c55ac602]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c55ac602]{animation-fill-mode:both;animation-name:fadeOut-c55ac602;-webkit-animation-name:fadeOut-c55ac602}.expand[data-v-c55ac602]{animation-fill-mode:both;animation-name:expand-c55ac602;-webkit-animation-name:expand-c55ac602}.expand[data-v-c55ac602],.shrink[data-v-c55ac602]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-c55ac602]{animation-fill-mode:both;animation-name:shrink-c55ac602;-webkit-animation-name:shrink-c55ac602}.fold[data-v-c55ac602]{animation-fill-mode:both;animation-name:fold-c55ac602;-webkit-animation-name:fold-c55ac602}.fold[data-v-c55ac602],.unfold[data-v-c55ac602]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-c55ac602]{animation-fill-mode:both;animation-name:unfold-c55ac602;-webkit-animation-name:unfold-c55ac602}.dim[data-v-c55ac602]{animation-fill-mode:both;animation-name:dim-c55ac602;-webkit-animation-name:dim-c55ac602}.brighten[data-v-c55ac602],.dim[data-v-c55ac602]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-c55ac602]{animation-fill-mode:both;animation-name:brighten-c55ac602;-webkit-animation-name:brighten-c55ac602}@keyframes fadeIn-c55ac602{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c55ac602{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-c55ac602{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-c55ac602{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-c55ac602{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-c55ac602{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-c55ac602{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-c55ac602{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-c55ac602]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-c55ac602;-webkit-animation-name:glow-c55ac602}.loop[data-v-c55ac602]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-c55ac602{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-c55ac602]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c55ac602]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c55ac602]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.cron-editor-container[data-v-c55ac602]{display:flex;flex-direction:column}.cron-editor-container .input-grid label[data-v-c55ac602]{display:flex;align-items:center;font-weight:700;border:1px solid transparent;border-radius:1em;padding:.25em}.cron-editor-container .input-grid label.selected[data-v-c55ac602]{border:1px solid #32b646}.cron-editor-container .input-grid input[type=text][data-v-c55ac602]{width:100%}.cron-editor-container .error[data-v-c55ac602]{color:#ad1717}.cron-editor-container .error label input[type=text][data-v-c55ac602]{border-color:#ad1717}.cron-editor-container .cron-description-container[data-v-c55ac602]{margin-top:.5em;padding:.5em;font-size:.9em;font-weight:700;background:#0b0b0d;color:#f3f3fa;border-radius:1em;border:1px solid #ccc}.cron-editor-container .cron-description-container .cron-description[data-v-c55ac602]{display:flex;flex-direction:column;justify-content:center;position:relative}.cron-editor-container .cron-description-container .cron-string[data-v-c55ac602]{font-family:monospace;font-size:1.1em}.cron-editor-container .cron-description-container .cron-text[data-v-c55ac602]{font-weight:400;font-style:italic}.col-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3daea642]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3daea642]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3daea642]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3daea642]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3daea642]:first-child{margin-left:26%!important}.col-offset-3[data-v-3daea642]:not(first-child){margin-left:30%!important}.col-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3daea642]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3daea642]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3daea642]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3daea642]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3daea642]:first-child{margin-left:52%!important}.col-offset-6[data-v-3daea642]:not(first-child){margin-left:56%!important}.col-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3daea642]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3daea642]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3daea642]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3daea642]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3daea642]:first-child{margin-left:78%!important}.col-offset-9[data-v-3daea642]:not(first-child){margin-left:82%!important}.col-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3daea642]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3daea642]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3daea642]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3daea642]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-3[data-v-3daea642]{margin-left:26%}.col-no-margin-s-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-6[data-v-3daea642]{margin-left:52%}.col-no-margin-s-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-9[data-v-3daea642]{margin-left:78%}.col-no-margin-s-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3daea642]{display:none!important}.s-visible[data-v-3daea642]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-3[data-v-3daea642]{margin-left:26%}.col-no-margin-m-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-6[data-v-3daea642]{margin-left:52%}.col-no-margin-m-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-9[data-v-3daea642]{margin-left:78%}.col-no-margin-m-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3daea642]{display:none!important}.m-visible[data-v-3daea642]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-3[data-v-3daea642]{margin-left:26%}.col-no-margin-l-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-6[data-v-3daea642]{margin-left:52%}.col-no-margin-l-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-9[data-v-3daea642]{margin-left:78%}.col-no-margin-l-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3daea642]{display:none!important}.l-visible[data-v-3daea642]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-3[data-v-3daea642]{margin-left:26%}.col-no-margin-xl-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-6[data-v-3daea642]{margin-left:52%}.col-no-margin-xl-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-9[data-v-3daea642]{margin-left:78%}.col-no-margin-xl-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3daea642]{display:none!important}.xl-visible[data-v-3daea642]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3daea642]{margin-left:26%}.col-no-margin-xxl-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3daea642]{margin-left:52%}.col-no-margin-xxl-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3daea642]{margin-left:78%}.col-no-margin-xxl-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3daea642]{display:none!important}.xxl-visible[data-v-3daea642]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3daea642]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3daea642]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3daea642]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3daea642]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3daea642]{display:none!important}}.vertical-center[data-v-3daea642]{display:flex;align-items:center}.horizontal-center[data-v-3daea642]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3daea642]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3daea642]{display:none!important}.no-content[data-v-3daea642]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3daea642]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3daea642]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3daea642]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3daea642]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3daea642]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3daea642]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3daea642],.btn[data-v-3daea642],button[data-v-3daea642]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3daea642],.btn-default[type=submit][data-v-3daea642],.btn.btn-primary[data-v-3daea642],.btn[type=submit][data-v-3daea642],button.btn-primary[data-v-3daea642],button[type=submit][data-v-3daea642]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3daea642]:hover,.btn[data-v-3daea642]:hover,button[data-v-3daea642]:hover{color:#35b870}.btn .icon[data-v-3daea642],.btn-default .icon[data-v-3daea642],button .icon[data-v-3daea642]{margin-right:.5em}.btn-default[data-v-3daea642]:disabled,.btn-default[disabled][data-v-3daea642],.btn[data-v-3daea642]:disabled,.btn[disabled][data-v-3daea642],button[data-v-3daea642]:disabled,button[disabled][data-v-3daea642]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3daea642]{cursor:grab!important}.dragged[data-v-3daea642]{opacity:.5!important}input[type=password][data-v-3daea642],input[type=text][data-v-3daea642]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3daea642]:focus,input[type=text][data-v-3daea642]:focus{border:1px solid #35b870}button[data-v-3daea642],input[data-v-3daea642]{outline:none}input[type=text][data-v-3daea642]:hover,textarea[data-v-3daea642]:hover{border:1px solid #9cdfb0}ul[data-v-3daea642]{margin:0;padding:0;list-style:none}a[data-v-3daea642]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3daea642]:hover{color:#35b870}[data-v-3daea642]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3daea642]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3daea642]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3daea642]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3daea642]{color:#ad1717}body[data-v-3daea642]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3daea642] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3daea642] .nav .path{cursor:pointer}.browser[data-v-3daea642] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3daea642] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3daea642]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3daea642]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3daea642],input[type=number][data-v-3daea642],input[type=password][data-v-3daea642],input[type=search][data-v-3daea642],input[type=text][data-v-3daea642],input[type=time][data-v-3daea642]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3daea642]:hover,input[type=number][data-v-3daea642]:hover,input[type=password][data-v-3daea642]:hover,input[type=search][data-v-3daea642]:hover,input[type=text][data-v-3daea642]:hover,input[type=time][data-v-3daea642]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3daea642]:focus,input[type=number][data-v-3daea642]:focus,input[type=password][data-v-3daea642]:focus,input[type=search][data-v-3daea642]:focus,input[type=text][data-v-3daea642]:focus,input[type=time][data-v-3daea642]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3daea642],input[type=number].with-icon[data-v-3daea642],input[type=password].with-icon[data-v-3daea642],input[type=search].with-icon[data-v-3daea642],input[type=text].with-icon[data-v-3daea642],input[type=time].with-icon[data-v-3daea642]{padding-left:.3em}input[type=search][data-v-3daea642],input[type=text][data-v-3daea642]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3daea642]{animation-fill-mode:both;animation-name:fadeIn-3daea642;-webkit-animation-name:fadeIn-3daea642}.fade-in[data-v-3daea642],.fade-out[data-v-3daea642]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3daea642]{animation-fill-mode:both;animation-name:fadeOut-3daea642;-webkit-animation-name:fadeOut-3daea642}.expand[data-v-3daea642]{animation-fill-mode:both;animation-name:expand-3daea642;-webkit-animation-name:expand-3daea642}.expand[data-v-3daea642],.shrink[data-v-3daea642]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-3daea642]{animation-fill-mode:both;animation-name:shrink-3daea642;-webkit-animation-name:shrink-3daea642}.fold[data-v-3daea642]{animation-fill-mode:both;animation-name:fold-3daea642;-webkit-animation-name:fold-3daea642}.fold[data-v-3daea642],.unfold[data-v-3daea642]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-3daea642]{animation-fill-mode:both;animation-name:unfold-3daea642;-webkit-animation-name:unfold-3daea642}.dim[data-v-3daea642]{animation-fill-mode:both;animation-name:dim-3daea642;-webkit-animation-name:dim-3daea642}.brighten[data-v-3daea642],.dim[data-v-3daea642]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-3daea642]{animation-fill-mode:both;animation-name:brighten-3daea642;-webkit-animation-name:brighten-3daea642}@keyframes fadeIn-3daea642{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3daea642{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3daea642{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3daea642{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3daea642{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3daea642{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3daea642{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3daea642{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3daea642]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3daea642;-webkit-animation-name:glow-3daea642}.loop[data-v-3daea642]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3daea642{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3daea642]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3daea642]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3daea642]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.file-selector-container[data-v-3daea642]{display:flex;flex-direction:column}.file-selector-container .input[data-v-3daea642]{display:flex;flex-direction:row;align-items:stretch}.file-selector-container .input input[data-v-3daea642]{flex-grow:1;border-radius:1em 0 0 1em;border-right:none}.file-selector-container .input button[data-v-3daea642]{border-radius:0 1em 1em 0;border-left:none}.file-selector-container[data-v-3daea642] .modal .body{width:80vw;height:80vh;max-width:800px;padding:0}.file-selector-container[data-v-3daea642] .modal .body .items .item{padding:1em .5em}.col-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d1cb0878]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d1cb0878]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d1cb0878]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d1cb0878]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d1cb0878]:first-child{margin-left:26%!important}.col-offset-3[data-v-d1cb0878]:not(first-child){margin-left:30%!important}.col-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d1cb0878]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d1cb0878]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d1cb0878]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d1cb0878]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d1cb0878]:first-child{margin-left:52%!important}.col-offset-6[data-v-d1cb0878]:not(first-child){margin-left:56%!important}.col-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d1cb0878]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d1cb0878]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d1cb0878]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d1cb0878]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d1cb0878]:first-child{margin-left:78%!important}.col-offset-9[data-v-d1cb0878]:not(first-child){margin-left:82%!important}.col-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d1cb0878]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d1cb0878]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d1cb0878]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d1cb0878]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-s-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-s-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-s-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d1cb0878]{display:none!important}.s-visible[data-v-d1cb0878]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-m-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-m-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-m-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d1cb0878]{display:none!important}.m-visible[data-v-d1cb0878]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-l-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-l-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-l-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d1cb0878]{display:none!important}.l-visible[data-v-d1cb0878]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-xl-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-xl-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-xl-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d1cb0878]{display:none!important}.xl-visible[data-v-d1cb0878]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-xxl-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-xxl-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-xxl-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d1cb0878]{display:none!important}.xxl-visible[data-v-d1cb0878]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d1cb0878]{display:none!important}}.vertical-center[data-v-d1cb0878]{display:flex;align-items:center}.horizontal-center[data-v-d1cb0878]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-d1cb0878]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d1cb0878]{display:none!important}.no-content[data-v-d1cb0878]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d1cb0878]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d1cb0878]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d1cb0878]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d1cb0878]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d1cb0878]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d1cb0878]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d1cb0878],.btn[data-v-d1cb0878],button[data-v-d1cb0878]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d1cb0878],.btn-default[type=submit][data-v-d1cb0878],.btn.btn-primary[data-v-d1cb0878],.btn[type=submit][data-v-d1cb0878],button.btn-primary[data-v-d1cb0878],button[type=submit][data-v-d1cb0878]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-d1cb0878]:hover,.btn[data-v-d1cb0878]:hover,button[data-v-d1cb0878]:hover{color:#35b870}.btn .icon[data-v-d1cb0878],.btn-default .icon[data-v-d1cb0878],button .icon[data-v-d1cb0878]{margin-right:.5em}.btn-default[data-v-d1cb0878]:disabled,.btn-default[disabled][data-v-d1cb0878],.btn[data-v-d1cb0878]:disabled,.btn[disabled][data-v-d1cb0878],button[data-v-d1cb0878]:disabled,button[disabled][data-v-d1cb0878]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-d1cb0878]{cursor:grab!important}.dragged[data-v-d1cb0878]{opacity:.5!important}input[type=password][data-v-d1cb0878],input[type=text][data-v-d1cb0878]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d1cb0878]:focus,input[type=text][data-v-d1cb0878]:focus{border:1px solid #35b870}button[data-v-d1cb0878],input[data-v-d1cb0878]{outline:none}input[type=text][data-v-d1cb0878]:hover,textarea[data-v-d1cb0878]:hover{border:1px solid #9cdfb0}ul[data-v-d1cb0878]{margin:0;padding:0;list-style:none}a[data-v-d1cb0878]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d1cb0878]:hover{color:#35b870}[data-v-d1cb0878]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d1cb0878]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d1cb0878]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d1cb0878]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-d1cb0878]{color:#ad1717}body[data-v-d1cb0878]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d1cb0878] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d1cb0878] .nav .path{cursor:pointer}.browser[data-v-d1cb0878] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d1cb0878] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-d1cb0878]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-d1cb0878]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d1cb0878],input[type=number][data-v-d1cb0878],input[type=password][data-v-d1cb0878],input[type=search][data-v-d1cb0878],input[type=text][data-v-d1cb0878],input[type=time][data-v-d1cb0878]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-d1cb0878]:hover,input[type=number][data-v-d1cb0878]:hover,input[type=password][data-v-d1cb0878]:hover,input[type=search][data-v-d1cb0878]:hover,input[type=text][data-v-d1cb0878]:hover,input[type=time][data-v-d1cb0878]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d1cb0878]:focus,input[type=number][data-v-d1cb0878]:focus,input[type=password][data-v-d1cb0878]:focus,input[type=search][data-v-d1cb0878]:focus,input[type=text][data-v-d1cb0878]:focus,input[type=time][data-v-d1cb0878]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d1cb0878],input[type=number].with-icon[data-v-d1cb0878],input[type=password].with-icon[data-v-d1cb0878],input[type=search].with-icon[data-v-d1cb0878],input[type=text].with-icon[data-v-d1cb0878],input[type=time].with-icon[data-v-d1cb0878]{padding-left:.3em}input[type=search][data-v-d1cb0878],input[type=text][data-v-d1cb0878]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-d1cb0878]{animation-fill-mode:both;animation-name:fadeIn-d1cb0878;-webkit-animation-name:fadeIn-d1cb0878}.fade-in[data-v-d1cb0878],.fade-out[data-v-d1cb0878]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-d1cb0878]{animation-fill-mode:both;animation-name:fadeOut-d1cb0878;-webkit-animation-name:fadeOut-d1cb0878}.expand[data-v-d1cb0878]{animation-fill-mode:both;animation-name:expand-d1cb0878;-webkit-animation-name:expand-d1cb0878}.expand[data-v-d1cb0878],.shrink[data-v-d1cb0878]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-d1cb0878]{animation-fill-mode:both;animation-name:shrink-d1cb0878;-webkit-animation-name:shrink-d1cb0878}.fold[data-v-d1cb0878]{animation-fill-mode:both;animation-name:fold-d1cb0878;-webkit-animation-name:fold-d1cb0878}.fold[data-v-d1cb0878],.unfold[data-v-d1cb0878]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-d1cb0878]{animation-fill-mode:both;animation-name:unfold-d1cb0878;-webkit-animation-name:unfold-d1cb0878}.dim[data-v-d1cb0878]{animation-fill-mode:both;animation-name:dim-d1cb0878;-webkit-animation-name:dim-d1cb0878}.brighten[data-v-d1cb0878],.dim[data-v-d1cb0878]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-d1cb0878]{animation-fill-mode:both;animation-name:brighten-d1cb0878;-webkit-animation-name:brighten-d1cb0878}@keyframes fadeIn-d1cb0878{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d1cb0878{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-d1cb0878{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-d1cb0878{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-d1cb0878{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-d1cb0878{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-d1cb0878{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-d1cb0878{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-d1cb0878]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d1cb0878;-webkit-animation-name:glow-d1cb0878}.loop[data-v-d1cb0878]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d1cb0878{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d1cb0878]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d1cb0878]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d1cb0878]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.time-interval-container[data-v-d1cb0878]{display:flex;flex-direction:column}.time-interval-container .row[data-v-d1cb0878]{display:flex;flex-direction:row;align-items:center}.time-interval-container .value-container input[data-v-d1cb0878]{width:7.5em}.time-interval-container .unit-container[data-v-d1cb0878]{margin-left:.5em}.col-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5f15d80f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5f15d80f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5f15d80f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5f15d80f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5f15d80f]:first-child{margin-left:26%!important}.col-offset-3[data-v-5f15d80f]:not(first-child){margin-left:30%!important}.col-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5f15d80f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5f15d80f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5f15d80f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5f15d80f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5f15d80f]:first-child{margin-left:52%!important}.col-offset-6[data-v-5f15d80f]:not(first-child){margin-left:56%!important}.col-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5f15d80f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5f15d80f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5f15d80f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5f15d80f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5f15d80f]:first-child{margin-left:78%!important}.col-offset-9[data-v-5f15d80f]:not(first-child){margin-left:82%!important}.col-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5f15d80f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5f15d80f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5f15d80f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5f15d80f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-1[data-v-5f15d80f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-2[data-v-5f15d80f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-3[data-v-5f15d80f]{margin-left:26%}.col-no-margin-s-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-4[data-v-5f15d80f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-5[data-v-5f15d80f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-6[data-v-5f15d80f]{margin-left:52%}.col-no-margin-s-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-7[data-v-5f15d80f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-8[data-v-5f15d80f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-9[data-v-5f15d80f]{margin-left:78%}.col-no-margin-s-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-10[data-v-5f15d80f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-s-11[data-v-5f15d80f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5f15d80f]{display:none!important}.s-visible[data-v-5f15d80f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-1[data-v-5f15d80f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-2[data-v-5f15d80f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-3[data-v-5f15d80f]{margin-left:26%}.col-no-margin-m-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-4[data-v-5f15d80f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-5[data-v-5f15d80f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-6[data-v-5f15d80f]{margin-left:52%}.col-no-margin-m-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-7[data-v-5f15d80f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-8[data-v-5f15d80f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-9[data-v-5f15d80f]{margin-left:78%}.col-no-margin-m-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-10[data-v-5f15d80f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-m-11[data-v-5f15d80f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5f15d80f]{display:none!important}.m-visible[data-v-5f15d80f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-1[data-v-5f15d80f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-2[data-v-5f15d80f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-3[data-v-5f15d80f]{margin-left:26%}.col-no-margin-l-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-4[data-v-5f15d80f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-5[data-v-5f15d80f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-6[data-v-5f15d80f]{margin-left:52%}.col-no-margin-l-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-7[data-v-5f15d80f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-8[data-v-5f15d80f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-9[data-v-5f15d80f]{margin-left:78%}.col-no-margin-l-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-10[data-v-5f15d80f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-l-11[data-v-5f15d80f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5f15d80f]{display:none!important}.l-visible[data-v-5f15d80f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-1[data-v-5f15d80f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-2[data-v-5f15d80f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-3[data-v-5f15d80f]{margin-left:26%}.col-no-margin-xl-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-4[data-v-5f15d80f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-5[data-v-5f15d80f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-6[data-v-5f15d80f]{margin-left:52%}.col-no-margin-xl-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-7[data-v-5f15d80f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-8[data-v-5f15d80f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-9[data-v-5f15d80f]{margin-left:78%}.col-no-margin-xl-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-10[data-v-5f15d80f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xl-11[data-v-5f15d80f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5f15d80f]{display:none!important}.xl-visible[data-v-5f15d80f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5f15d80f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5f15d80f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5f15d80f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5f15d80f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5f15d80f]{margin-left:26%}.col-no-margin-xxl-3[data-v-5f15d80f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5f15d80f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5f15d80f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5f15d80f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5f15d80f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5f15d80f]{margin-left:52%}.col-no-margin-xxl-6[data-v-5f15d80f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5f15d80f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5f15d80f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5f15d80f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5f15d80f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5f15d80f]{margin-left:78%}.col-no-margin-xxl-9[data-v-5f15d80f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5f15d80f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5f15d80f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5f15d80f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5f15d80f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5f15d80f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5f15d80f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5f15d80f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5f15d80f]{display:none!important}.xxl-visible[data-v-5f15d80f]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5f15d80f]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5f15d80f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5f15d80f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5f15d80f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5f15d80f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5f15d80f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5f15d80f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5f15d80f]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5f15d80f]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5f15d80f]{display:none!important}}.vertical-center[data-v-5f15d80f]{display:flex;align-items:center}.horizontal-center[data-v-5f15d80f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5f15d80f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5f15d80f]{display:none!important}.no-content[data-v-5f15d80f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5f15d80f]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5f15d80f]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5f15d80f]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5f15d80f]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5f15d80f]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5f15d80f]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5f15d80f],.btn[data-v-5f15d80f],button[data-v-5f15d80f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5f15d80f],.btn-default[type=submit][data-v-5f15d80f],.btn.btn-primary[data-v-5f15d80f],.btn[type=submit][data-v-5f15d80f],button.btn-primary[data-v-5f15d80f],button[type=submit][data-v-5f15d80f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5f15d80f]:hover,.btn[data-v-5f15d80f]:hover,button[data-v-5f15d80f]:hover{color:#35b870}.btn .icon[data-v-5f15d80f],.btn-default .icon[data-v-5f15d80f],button .icon[data-v-5f15d80f]{margin-right:.5em}.btn-default[data-v-5f15d80f]:disabled,.btn-default[disabled][data-v-5f15d80f],.btn[data-v-5f15d80f]:disabled,.btn[disabled][data-v-5f15d80f],button[data-v-5f15d80f]:disabled,button[disabled][data-v-5f15d80f]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5f15d80f]{cursor:grab!important}.dragged[data-v-5f15d80f]{opacity:.5!important}input[type=password][data-v-5f15d80f],input[type=text][data-v-5f15d80f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5f15d80f]:focus,input[type=text][data-v-5f15d80f]:focus{border:1px solid #35b870}button[data-v-5f15d80f],input[data-v-5f15d80f]{outline:none}input[type=text][data-v-5f15d80f]:hover,textarea[data-v-5f15d80f]:hover{border:1px solid #9cdfb0}ul[data-v-5f15d80f]{margin:0;padding:0;list-style:none}a[data-v-5f15d80f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5f15d80f]:hover{color:#35b870}[data-v-5f15d80f]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5f15d80f]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5f15d80f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5f15d80f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5f15d80f]{color:#ad1717}body[data-v-5f15d80f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5f15d80f] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5f15d80f] .nav .path{cursor:pointer}.browser[data-v-5f15d80f] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5f15d80f] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5f15d80f]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5f15d80f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5f15d80f],input[type=number][data-v-5f15d80f],input[type=password][data-v-5f15d80f],input[type=search][data-v-5f15d80f],input[type=text][data-v-5f15d80f],input[type=time][data-v-5f15d80f]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5f15d80f]:hover,input[type=number][data-v-5f15d80f]:hover,input[type=password][data-v-5f15d80f]:hover,input[type=search][data-v-5f15d80f]:hover,input[type=text][data-v-5f15d80f]:hover,input[type=time][data-v-5f15d80f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5f15d80f]:focus,input[type=number][data-v-5f15d80f]:focus,input[type=password][data-v-5f15d80f]:focus,input[type=search][data-v-5f15d80f]:focus,input[type=text][data-v-5f15d80f]:focus,input[type=time][data-v-5f15d80f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5f15d80f],input[type=number].with-icon[data-v-5f15d80f],input[type=password].with-icon[data-v-5f15d80f],input[type=search].with-icon[data-v-5f15d80f],input[type=text].with-icon[data-v-5f15d80f],input[type=time].with-icon[data-v-5f15d80f]{padding-left:.3em}input[type=search][data-v-5f15d80f],input[type=text][data-v-5f15d80f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5f15d80f]{animation-fill-mode:both;animation-name:fadeIn-5f15d80f;-webkit-animation-name:fadeIn-5f15d80f}.fade-in[data-v-5f15d80f],.fade-out[data-v-5f15d80f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5f15d80f]{animation-fill-mode:both;animation-name:fadeOut-5f15d80f;-webkit-animation-name:fadeOut-5f15d80f}.expand[data-v-5f15d80f]{animation-fill-mode:both;animation-name:expand-5f15d80f;-webkit-animation-name:expand-5f15d80f}.expand[data-v-5f15d80f],.shrink[data-v-5f15d80f]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-5f15d80f]{animation-fill-mode:both;animation-name:shrink-5f15d80f;-webkit-animation-name:shrink-5f15d80f}.fold[data-v-5f15d80f]{animation-fill-mode:both;animation-name:fold-5f15d80f;-webkit-animation-name:fold-5f15d80f}.fold[data-v-5f15d80f],.unfold[data-v-5f15d80f]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-5f15d80f]{animation-fill-mode:both;animation-name:unfold-5f15d80f;-webkit-animation-name:unfold-5f15d80f}.dim[data-v-5f15d80f]{animation-fill-mode:both;animation-name:dim-5f15d80f;-webkit-animation-name:dim-5f15d80f}.brighten[data-v-5f15d80f],.dim[data-v-5f15d80f]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-5f15d80f]{animation-fill-mode:both;animation-name:brighten-5f15d80f;-webkit-animation-name:brighten-5f15d80f}@keyframes fadeIn-5f15d80f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5f15d80f{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5f15d80f{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5f15d80f{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5f15d80f{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5f15d80f{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5f15d80f{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5f15d80f{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5f15d80f]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5f15d80f;-webkit-animation-name:glow-5f15d80f}.loop[data-v-5f15d80f]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5f15d80f{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5f15d80f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5f15d80f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5f15d80f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.alarm-editor-container[data-v-5f15d80f]{width:100%;height:50em;max-height:65vh;background:#f8f8f8;cursor:default}.alarm-editor-container .head[data-v-5f15d80f]{width:100%;height:3.5em}.alarm-editor-container .head .row[data-v-5f15d80f]{width:100%;height:100%;box-shadow:0 3px 2px -1px silver;display:flex;align-items:center}.alarm-editor-container .head input[type=text][data-v-5f15d80f]{width:100%;max-width:30em}.alarm-editor-container .head .buttons[data-v-5f15d80f]{height:100%;display:flex;justify-content:right;align-items:center;padding:0}.alarm-editor-container .head .buttons button[data-v-5f15d80f]{margin:.25em 0 .25em .5em}.alarm-editor-container .head .buttons button.save-btn[data-v-5f15d80f]:hover{background:#fff}.alarm-editor-container .body[data-v-5f15d80f]{height:calc(100% - 3.5em);overflow:auto}.alarm-editor-container .alarm-editor[data-v-5f15d80f]{width:100%;height:100%;padding:0}.alarm-editor-container .alarm-editor .item[data-v-5f15d80f]{padding:.5em 1em;border-bottom:1px solid #ddd}.alarm-editor-container .alarm-editor .item .name label[data-v-5f15d80f]{margin:0;font-weight:700}.alarm-editor-container .alarm-editor .item .name label .icon[data-v-5f15d80f]{opacity:.75;margin-right:.5em}.alarm-editor-container .alarm-editor .item .name .condition-type[data-v-5f15d80f]{margin:.25em 0}.alarm-editor-container .alarm-editor .item .name .condition-type label.selected[data-v-5f15d80f]{font-weight:700}.alarm-editor-container .alarm-editor .item .name .condition-type label[data-v-5f15d80f]:not(.selected){font-weight:400}.alarm-editor-container .alarm-editor .item .value input[data-v-5f15d80f]{width:100%}.alarm-editor-container .subtext[data-v-5f15d80f]{display:block;font-size:.9em;opacity:.8;margin-bottom:.5em}.alarm-editor-container input[type=text][data-v-5f15d80f]{min-height:2em}.alarm-editor-container[data-v-5f15d80f] .file-selector .modal .body{min-width:95vw}@media screen and (min-width:769px){.alarm-editor-container[data-v-5f15d80f] .file-selector .modal .body{min-width:40em}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2140.57230853.css b/platypush/backend/http/webapp/dist/static/css/2140.57230853.css new file mode 100644 index 0000000000..86cf546d6e --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2140.57230853.css @@ -0,0 +1 @@ +.col-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7b09a273]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7b09a273]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7b09a273]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7b09a273]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7b09a273]:first-child{margin-left:26%!important}.col-offset-3[data-v-7b09a273]:not(first-child){margin-left:30%!important}.col-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7b09a273]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7b09a273]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7b09a273]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7b09a273]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7b09a273]:first-child{margin-left:52%!important}.col-offset-6[data-v-7b09a273]:not(first-child){margin-left:56%!important}.col-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7b09a273]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7b09a273]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7b09a273]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7b09a273]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7b09a273]:first-child{margin-left:78%!important}.col-offset-9[data-v-7b09a273]:not(first-child){margin-left:82%!important}.col-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7b09a273]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7b09a273]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7b09a273]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7b09a273]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-s-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-s-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-s-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7b09a273]{display:none!important}.s-visible[data-v-7b09a273]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-m-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-m-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-m-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7b09a273]{display:none!important}.m-visible[data-v-7b09a273]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-l-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-l-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-l-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7b09a273]{display:none!important}.l-visible[data-v-7b09a273]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-xl-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-xl-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-xl-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7b09a273]{display:none!important}.xl-visible[data-v-7b09a273]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-xxl-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-xxl-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-xxl-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7b09a273]{display:none!important}.xxl-visible[data-v-7b09a273]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7b09a273]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7b09a273]{display:none!important}}.vertical-center[data-v-7b09a273]{display:flex;align-items:center}.horizontal-center[data-v-7b09a273]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7b09a273]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7b09a273]{display:none!important}.no-content[data-v-7b09a273]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7b09a273]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7b09a273]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7b09a273]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7b09a273]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7b09a273]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7b09a273]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7b09a273],.btn[data-v-7b09a273],button[data-v-7b09a273]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7b09a273],.btn-default[type=submit][data-v-7b09a273],.btn.btn-primary[data-v-7b09a273],.btn[type=submit][data-v-7b09a273],button.btn-primary[data-v-7b09a273],button[type=submit][data-v-7b09a273]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7b09a273]:hover,.btn[data-v-7b09a273]:hover,button[data-v-7b09a273]:hover{color:#35b870}.btn .icon[data-v-7b09a273],.btn-default .icon[data-v-7b09a273],button .icon[data-v-7b09a273]{margin-right:.5em}.btn-default[data-v-7b09a273]:disabled,.btn-default[disabled][data-v-7b09a273],.btn[data-v-7b09a273]:disabled,.btn[disabled][data-v-7b09a273],button[data-v-7b09a273]:disabled,button[disabled][data-v-7b09a273]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7b09a273]{cursor:grab!important}.dragged[data-v-7b09a273]{opacity:.5!important}input[type=password][data-v-7b09a273],input[type=text][data-v-7b09a273]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7b09a273]:focus,input[type=text][data-v-7b09a273]:focus{border:1px solid #35b870}button[data-v-7b09a273],input[data-v-7b09a273]{outline:none}input[type=text][data-v-7b09a273]:hover,textarea[data-v-7b09a273]:hover{border:1px solid #9cdfb0}ul[data-v-7b09a273]{margin:0;padding:0;list-style:none}a[data-v-7b09a273]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7b09a273]:hover{color:#35b870}[data-v-7b09a273]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7b09a273]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7b09a273]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7b09a273]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7b09a273]{color:#ad1717}body[data-v-7b09a273]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7b09a273] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7b09a273] .nav .path{cursor:pointer}.browser[data-v-7b09a273] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7b09a273] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7b09a273]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7b09a273]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7b09a273],input[type=number][data-v-7b09a273],input[type=password][data-v-7b09a273],input[type=search][data-v-7b09a273],input[type=text][data-v-7b09a273],input[type=time][data-v-7b09a273]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7b09a273]:hover,input[type=number][data-v-7b09a273]:hover,input[type=password][data-v-7b09a273]:hover,input[type=search][data-v-7b09a273]:hover,input[type=text][data-v-7b09a273]:hover,input[type=time][data-v-7b09a273]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7b09a273]:focus,input[type=number][data-v-7b09a273]:focus,input[type=password][data-v-7b09a273]:focus,input[type=search][data-v-7b09a273]:focus,input[type=text][data-v-7b09a273]:focus,input[type=time][data-v-7b09a273]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7b09a273],input[type=number].with-icon[data-v-7b09a273],input[type=password].with-icon[data-v-7b09a273],input[type=search].with-icon[data-v-7b09a273],input[type=text].with-icon[data-v-7b09a273],input[type=time].with-icon[data-v-7b09a273]{padding-left:.3em}input[type=search][data-v-7b09a273],input[type=text][data-v-7b09a273]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7b09a273]{animation-fill-mode:both;animation-name:fadeIn-7b09a273;-webkit-animation-name:fadeIn-7b09a273}.fade-in[data-v-7b09a273],.fade-out[data-v-7b09a273]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7b09a273]{animation-fill-mode:both;animation-name:fadeOut-7b09a273;-webkit-animation-name:fadeOut-7b09a273}.expand[data-v-7b09a273]{animation-fill-mode:both;animation-name:expand-7b09a273;-webkit-animation-name:expand-7b09a273}.expand[data-v-7b09a273],.shrink[data-v-7b09a273]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7b09a273]{animation-fill-mode:both;animation-name:shrink-7b09a273;-webkit-animation-name:shrink-7b09a273}.fold[data-v-7b09a273]{animation-fill-mode:both;animation-name:fold-7b09a273;-webkit-animation-name:fold-7b09a273}.fold[data-v-7b09a273],.unfold[data-v-7b09a273]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7b09a273]{animation-fill-mode:both;animation-name:unfold-7b09a273;-webkit-animation-name:unfold-7b09a273}.dim[data-v-7b09a273]{animation-fill-mode:both;animation-name:dim-7b09a273;-webkit-animation-name:dim-7b09a273}.brighten[data-v-7b09a273],.dim[data-v-7b09a273]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7b09a273]{animation-fill-mode:both;animation-name:brighten-7b09a273;-webkit-animation-name:brighten-7b09a273}@keyframes fadeIn-7b09a273{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7b09a273{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7b09a273{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7b09a273{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7b09a273{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7b09a273{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7b09a273{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7b09a273{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7b09a273]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7b09a273;-webkit-animation-name:glow-7b09a273}.loop[data-v-7b09a273]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7b09a273{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7b09a273]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7b09a273]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7b09a273]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.image-carousel[data-v-7b09a273]{width:calc(100% + 1.5em);height:calc(100% + 1.5em);position:relative;display:flex;align-items:center;justify-content:center;background-color:#000;margin:0}.image-carousel .background[data-v-7b09a273]{position:absolute;top:0;width:100%;height:100vh;background-color:#000;background-position:50%;background-size:cover;background-repeat:no-repeat;filter:brightness(15%);-webkit-filter:brightness(15%)}.image-carousel img[data-v-7b09a273]{position:absolute;max-height:100%;z-index:2}.info-container[data-v-7b09a273]{width:100%;position:absolute;bottom:0;display:flex;align-items:flex-end;z-index:10;color:#fff;text-shadow:3px 3px 4px #000;font-size:1.25em;margin:.5em;padding:0 1em}.info-container .date-time[data-v-7b09a273]{text-align:right}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.image-carousel .info-container .weather-container{margin-bottom:.5em}.image-carousel .info-container .weather-container .weather{font-size:1.5em}.image-carousel .info-container .weather-container h1{justify-content:left;margin-bottom:-.5em;font-size:.8em}.image-carousel .info-container .date-time{margin-right:1em}.image-carousel .info-container .date-time .date{font-size:2em}.image-carousel .info-container .date-time .time{font-size:4em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2140.ccb2903f.css b/platypush/backend/http/webapp/dist/static/css/2140.ccb2903f.css deleted file mode 100644 index a0aedd0c35..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/2140.ccb2903f.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7b09a273]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7b09a273]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7b09a273]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7b09a273]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7b09a273]:first-child{margin-left:26%!important}.col-offset-3[data-v-7b09a273]:not(first-child){margin-left:30%!important}.col-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7b09a273]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7b09a273]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7b09a273]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7b09a273]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7b09a273]:first-child{margin-left:52%!important}.col-offset-6[data-v-7b09a273]:not(first-child){margin-left:56%!important}.col-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7b09a273]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7b09a273]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7b09a273]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7b09a273]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7b09a273]:first-child{margin-left:78%!important}.col-offset-9[data-v-7b09a273]:not(first-child){margin-left:82%!important}.col-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7b09a273]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7b09a273]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7b09a273]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7b09a273]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-s-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-s-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-s-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-s-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7b09a273]{display:none!important}.s-visible[data-v-7b09a273]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-m-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-m-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-m-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-m-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7b09a273]{display:none!important}.m-visible[data-v-7b09a273]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-l-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-l-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-l-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-l-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7b09a273]{display:none!important}.l-visible[data-v-7b09a273]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-xl-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-xl-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-xl-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xl-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7b09a273]{display:none!important}.xl-visible[data-v-7b09a273]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7b09a273]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7b09a273]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7b09a273]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7b09a273]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7b09a273]{margin-left:26%}.col-no-margin-xxl-3[data-v-7b09a273]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7b09a273]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7b09a273]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7b09a273]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7b09a273]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7b09a273]{margin-left:52%}.col-no-margin-xxl-6[data-v-7b09a273]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7b09a273]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7b09a273]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7b09a273]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7b09a273]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7b09a273]{margin-left:78%}.col-no-margin-xxl-9[data-v-7b09a273]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7b09a273]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7b09a273]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7b09a273]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7b09a273]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7b09a273]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7b09a273]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7b09a273]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7b09a273]{display:none!important}.xxl-visible[data-v-7b09a273]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7b09a273]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7b09a273]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7b09a273]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7b09a273]{display:none!important}}.vertical-center[data-v-7b09a273]{display:flex;align-items:center}.horizontal-center[data-v-7b09a273]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7b09a273]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7b09a273]{display:none!important}.no-content[data-v-7b09a273]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7b09a273]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7b09a273]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7b09a273]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7b09a273]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7b09a273]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7b09a273]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7b09a273],.btn[data-v-7b09a273],button[data-v-7b09a273]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7b09a273],.btn-default[type=submit][data-v-7b09a273],.btn.btn-primary[data-v-7b09a273],.btn[type=submit][data-v-7b09a273],button.btn-primary[data-v-7b09a273],button[type=submit][data-v-7b09a273]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7b09a273],.btn-default .icon[data-v-7b09a273],button .icon[data-v-7b09a273]{margin-right:.5em}input[type=password][data-v-7b09a273],input[type=text][data-v-7b09a273]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7b09a273]:focus,input[type=text][data-v-7b09a273]:focus{border:1px solid #35b870}button[data-v-7b09a273],input[data-v-7b09a273]{outline:none}input[type=text][data-v-7b09a273]:hover,textarea[data-v-7b09a273]:hover{border:1px solid #9cdfb0}ul[data-v-7b09a273]{margin:0;padding:0;list-style:none}a[data-v-7b09a273]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7b09a273]:hover{color:#35b870}[data-v-7b09a273]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7b09a273]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7b09a273]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7b09a273]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7b09a273]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7b09a273] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7b09a273] .nav .path{cursor:pointer}.browser[data-v-7b09a273] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7b09a273] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7b09a273]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7b09a273],input[type=number][data-v-7b09a273],input[type=password][data-v-7b09a273],input[type=search][data-v-7b09a273],input[type=text][data-v-7b09a273],input[type=time][data-v-7b09a273]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7b09a273]:hover,input[type=number][data-v-7b09a273]:hover,input[type=password][data-v-7b09a273]:hover,input[type=search][data-v-7b09a273]:hover,input[type=text][data-v-7b09a273]:hover,input[type=time][data-v-7b09a273]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7b09a273]:focus,input[type=number][data-v-7b09a273]:focus,input[type=password][data-v-7b09a273]:focus,input[type=search][data-v-7b09a273]:focus,input[type=text][data-v-7b09a273]:focus,input[type=time][data-v-7b09a273]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7b09a273],input[type=number].with-icon[data-v-7b09a273],input[type=password].with-icon[data-v-7b09a273],input[type=search].with-icon[data-v-7b09a273],input[type=text].with-icon[data-v-7b09a273],input[type=time].with-icon[data-v-7b09a273]{padding-left:.3em}input[type=search][data-v-7b09a273],input[type=text][data-v-7b09a273]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7b09a273]{animation-fill-mode:both;animation-name:fadeIn-7b09a273;-webkit-animation-name:fadeIn-7b09a273}.fade-in[data-v-7b09a273],.fade-out[data-v-7b09a273]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7b09a273]{animation-fill-mode:both;animation-name:fadeOut-7b09a273;-webkit-animation-name:fadeOut-7b09a273}@keyframes fadeIn-7b09a273{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7b09a273{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7b09a273]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7b09a273;-webkit-animation-name:glow-7b09a273}.loop[data-v-7b09a273]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7b09a273{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7b09a273]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7b09a273]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7b09a273]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.image-carousel[data-v-7b09a273]{width:calc(100% + 1.5em);height:calc(100% + 1.5em);position:relative;display:flex;align-items:center;justify-content:center;background-color:#000;margin:0}.image-carousel .background[data-v-7b09a273]{position:absolute;top:0;width:100%;height:100vh;background-color:#000;background-position:50%;background-size:cover;background-repeat:no-repeat;filter:brightness(15%);-webkit-filter:brightness(15%)}.image-carousel img[data-v-7b09a273]{position:absolute;max-height:100%;z-index:2}.info-container[data-v-7b09a273]{width:100%;position:absolute;bottom:0;display:flex;align-items:flex-end;z-index:10;color:#fff;text-shadow:3px 3px 4px #000;font-size:1.25em;margin:.5em;padding:0 1em}.info-container .date-time[data-v-7b09a273]{text-align:right}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.image-carousel .info-container .weather-container{margin-bottom:.5em}.image-carousel .info-container .weather-container .weather{font-size:1.5em}.image-carousel .info-container .weather-container h1{justify-content:left;margin-bottom:-.5em;font-size:.8em}.image-carousel .info-container .date-time{margin-right:1em}.image-carousel .info-container .date-time .date{font-size:2em}.image-carousel .info-container .date-time .time{font-size:4em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/215.91074688.css b/platypush/backend/http/webapp/dist/static/css/215.91074688.css new file mode 100644 index 0000000000..79d9d29a73 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/215.91074688.css @@ -0,0 +1 @@ +.tokens-list-container{position:relative}.tokens-list-container .tokens-list{width:30em;max-width:calc(100% + 4em);margin:-2em}.tokens-list-container .tokens-list .token{width:100%;display:flex;align-items:center;padding:.5em 1em;box-shadow:0 3px 2px -1px silver;cursor:pointer}.tokens-list-container .tokens-list .token:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.tokens-list-container .tokens-list .token .info{flex:1}.tokens-list-container .tokens-list .token .created-at,.tokens-list-container .tokens-list .token .expires-at{font-size:.8em;opacity:.8}.buttons{width:100%;display:flex;align-items:center;justify-content:space-between}.buttons label{width:50%;display:flex;justify-content:center;cursor:pointer}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.token-container{width:100%;display:flex;flex-direction:column;margin-top:.15em}.token-container label{width:100%}.token-container .body{background:#fff;display:flex;flex-direction:column;padding:2em;text-align:left}.token-container ul{margin:1em .5em}.token-container ul li{list-style:initial}.token-container .form-container{display:flex;flex-direction:column;align-items:center}.token-container .form-container label{height:-moz-fit-content;height:fit-content;display:flex;flex-direction:column;margin-bottom:1em}.token-container form{max-width:30em}.token-container form .note{display:block;font-size:.75em;margin:-.75em 0 2em 0}.token-container form span input{width:100%}.token-container .generate-btn-container{width:100%;display:flex;justify-content:center;cursor:pointer}.token-container input[type=password]{border-radius:1em}.token-container .modal .content{width:90%}.token-container .modal .body{margin-top:0}.token-container .token-container label{display:flex;flex-direction:column}.token-container .token-container label span{display:block;width:100%}.token-container .token-container textarea{width:100%;height:10em;margin-top:1em;border-radius:1em;border:none;background:#d4ffe3;padding:1em}.token-container .btn{border-radius:1em}@media screen and (max-width:calc(1024px - 1px)){.form-container{justify-content:center;box-shadow:0 -2.5px 4px 0 silver}}@media screen and (min-width:1024px){.token-container{justify-content:center;align-items:center}.token-container .body{max-width:650pt;justify-content:left;margin-top:1.5em;border-radius:1em;border:1px solid #ddd}}.col-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-8b92029c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-8b92029c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-8b92029c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-8b92029c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-8b92029c]:first-child{margin-left:26%!important}.col-offset-3[data-v-8b92029c]:not(first-child){margin-left:30%!important}.col-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-8b92029c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-8b92029c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-8b92029c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-8b92029c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-8b92029c]:first-child{margin-left:52%!important}.col-offset-6[data-v-8b92029c]:not(first-child){margin-left:56%!important}.col-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-8b92029c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-8b92029c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-8b92029c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-8b92029c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-8b92029c]:first-child{margin-left:78%!important}.col-offset-9[data-v-8b92029c]:not(first-child){margin-left:82%!important}.col-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-8b92029c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-8b92029c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-8b92029c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-8b92029c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-1[data-v-8b92029c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-2[data-v-8b92029c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-3[data-v-8b92029c]{margin-left:26%}.col-no-margin-s-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-4[data-v-8b92029c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-5[data-v-8b92029c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-6[data-v-8b92029c]{margin-left:52%}.col-no-margin-s-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-7[data-v-8b92029c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-8[data-v-8b92029c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-9[data-v-8b92029c]{margin-left:78%}.col-no-margin-s-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-10[data-v-8b92029c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-8b92029c]:first-child{margin-left:0}.col-offset-s-11[data-v-8b92029c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-8b92029c]{display:none!important}.s-visible[data-v-8b92029c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-1[data-v-8b92029c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-2[data-v-8b92029c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-3[data-v-8b92029c]{margin-left:26%}.col-no-margin-m-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-4[data-v-8b92029c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-5[data-v-8b92029c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-6[data-v-8b92029c]{margin-left:52%}.col-no-margin-m-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-7[data-v-8b92029c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-8[data-v-8b92029c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-9[data-v-8b92029c]{margin-left:78%}.col-no-margin-m-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-10[data-v-8b92029c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-8b92029c]:first-child{margin-left:0}.col-offset-m-11[data-v-8b92029c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-8b92029c]{display:none!important}.m-visible[data-v-8b92029c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-1[data-v-8b92029c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-2[data-v-8b92029c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-3[data-v-8b92029c]{margin-left:26%}.col-no-margin-l-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-4[data-v-8b92029c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-5[data-v-8b92029c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-6[data-v-8b92029c]{margin-left:52%}.col-no-margin-l-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-7[data-v-8b92029c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-8[data-v-8b92029c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-9[data-v-8b92029c]{margin-left:78%}.col-no-margin-l-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-10[data-v-8b92029c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-8b92029c]:first-child{margin-left:0}.col-offset-l-11[data-v-8b92029c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-8b92029c]{display:none!important}.l-visible[data-v-8b92029c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-1[data-v-8b92029c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-2[data-v-8b92029c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-3[data-v-8b92029c]{margin-left:26%}.col-no-margin-xl-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-4[data-v-8b92029c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-5[data-v-8b92029c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-6[data-v-8b92029c]{margin-left:52%}.col-no-margin-xl-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-7[data-v-8b92029c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-8[data-v-8b92029c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-9[data-v-8b92029c]{margin-left:78%}.col-no-margin-xl-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-10[data-v-8b92029c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xl-11[data-v-8b92029c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-8b92029c]{display:none!important}.xl-visible[data-v-8b92029c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-8b92029c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-8b92029c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-8b92029c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-8b92029c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-8b92029c]{margin-left:26%}.col-no-margin-xxl-3[data-v-8b92029c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-8b92029c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-8b92029c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-8b92029c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-8b92029c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-8b92029c]{margin-left:52%}.col-no-margin-xxl-6[data-v-8b92029c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-8b92029c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-8b92029c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-8b92029c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-8b92029c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-8b92029c]{margin-left:78%}.col-no-margin-xxl-9[data-v-8b92029c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-8b92029c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-8b92029c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-8b92029c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-8b92029c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-8b92029c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-8b92029c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-8b92029c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-8b92029c]{display:none!important}.xxl-visible[data-v-8b92029c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-8b92029c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-8b92029c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-8b92029c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-8b92029c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-8b92029c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-8b92029c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-8b92029c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-8b92029c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-8b92029c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-8b92029c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-8b92029c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-8b92029c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-8b92029c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-8b92029c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-8b92029c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-8b92029c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-8b92029c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-8b92029c]{display:none!important}}.vertical-center[data-v-8b92029c]{display:flex;align-items:center}.horizontal-center[data-v-8b92029c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-8b92029c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-8b92029c]{display:none!important}.no-content[data-v-8b92029c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-8b92029c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-8b92029c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-8b92029c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-8b92029c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-8b92029c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-8b92029c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-8b92029c],.btn[data-v-8b92029c],button[data-v-8b92029c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-8b92029c],.btn-default[type=submit][data-v-8b92029c],.btn.btn-primary[data-v-8b92029c],.btn[type=submit][data-v-8b92029c],button.btn-primary[data-v-8b92029c],button[type=submit][data-v-8b92029c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-8b92029c]:hover,.btn[data-v-8b92029c]:hover,button[data-v-8b92029c]:hover{color:#35b870}.btn .icon[data-v-8b92029c],.btn-default .icon[data-v-8b92029c],button .icon[data-v-8b92029c]{margin-right:.5em}.btn-default[data-v-8b92029c]:disabled,.btn-default[disabled][data-v-8b92029c],.btn[data-v-8b92029c]:disabled,.btn[disabled][data-v-8b92029c],button[data-v-8b92029c]:disabled,button[disabled][data-v-8b92029c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-8b92029c]{cursor:grab!important}.dragged[data-v-8b92029c]{opacity:.5!important}input[type=password][data-v-8b92029c],input[type=text][data-v-8b92029c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-8b92029c]:focus,input[type=text][data-v-8b92029c]:focus{border:1px solid #35b870}button[data-v-8b92029c],input[data-v-8b92029c]{outline:none}input[type=text][data-v-8b92029c]:hover,textarea[data-v-8b92029c]:hover{border:1px solid #9cdfb0}ul[data-v-8b92029c]{margin:0;padding:0;list-style:none}a[data-v-8b92029c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-8b92029c]:hover{color:#35b870}[data-v-8b92029c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-8b92029c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-8b92029c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-8b92029c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-8b92029c]{color:#ad1717}body[data-v-8b92029c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-8b92029c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-8b92029c] .nav .path{cursor:pointer}.browser[data-v-8b92029c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-8b92029c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-8b92029c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-8b92029c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-8b92029c],input[type=number][data-v-8b92029c],input[type=password][data-v-8b92029c],input[type=search][data-v-8b92029c],input[type=text][data-v-8b92029c],input[type=time][data-v-8b92029c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-8b92029c]:hover,input[type=number][data-v-8b92029c]:hover,input[type=password][data-v-8b92029c]:hover,input[type=search][data-v-8b92029c]:hover,input[type=text][data-v-8b92029c]:hover,input[type=time][data-v-8b92029c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-8b92029c]:focus,input[type=number][data-v-8b92029c]:focus,input[type=password][data-v-8b92029c]:focus,input[type=search][data-v-8b92029c]:focus,input[type=text][data-v-8b92029c]:focus,input[type=time][data-v-8b92029c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-8b92029c],input[type=number].with-icon[data-v-8b92029c],input[type=password].with-icon[data-v-8b92029c],input[type=search].with-icon[data-v-8b92029c],input[type=text].with-icon[data-v-8b92029c],input[type=time].with-icon[data-v-8b92029c]{padding-left:.3em}input[type=search][data-v-8b92029c],input[type=text][data-v-8b92029c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-8b92029c]{animation-fill-mode:both;animation-name:fadeIn-8b92029c;-webkit-animation-name:fadeIn-8b92029c}.fade-in[data-v-8b92029c],.fade-out[data-v-8b92029c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-8b92029c]{animation-fill-mode:both;animation-name:fadeOut-8b92029c;-webkit-animation-name:fadeOut-8b92029c}.expand[data-v-8b92029c]{animation-fill-mode:both;animation-name:expand-8b92029c;-webkit-animation-name:expand-8b92029c}.expand[data-v-8b92029c],.shrink[data-v-8b92029c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-8b92029c]{animation-fill-mode:both;animation-name:shrink-8b92029c;-webkit-animation-name:shrink-8b92029c}.fold[data-v-8b92029c]{animation-fill-mode:both;animation-name:fold-8b92029c;-webkit-animation-name:fold-8b92029c}.fold[data-v-8b92029c],.unfold[data-v-8b92029c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-8b92029c]{animation-fill-mode:both;animation-name:unfold-8b92029c;-webkit-animation-name:unfold-8b92029c}.dim[data-v-8b92029c]{animation-fill-mode:both;animation-name:dim-8b92029c;-webkit-animation-name:dim-8b92029c}.brighten[data-v-8b92029c],.dim[data-v-8b92029c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-8b92029c]{animation-fill-mode:both;animation-name:brighten-8b92029c;-webkit-animation-name:brighten-8b92029c}@keyframes fadeIn-8b92029c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-8b92029c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-8b92029c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-8b92029c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-8b92029c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-8b92029c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-8b92029c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-8b92029c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-8b92029c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-8b92029c;-webkit-animation-name:glow-8b92029c}.loop[data-v-8b92029c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-8b92029c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-8b92029c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-8b92029c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-8b92029c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tokens-container[data-v-8b92029c]{width:100%;height:100%;display:flex;flex-direction:column;overflow:hidden}.tokens-container .header[data-v-8b92029c]{width:100%;align-items:center}.tokens-container .main[data-v-8b92029c]{height:100%;display:flex;flex-direction:column;overflow:hidden}.tokens-container .header[data-v-8b92029c]{height:4em;margin-top:-.2em}.tokens-container .body[data-v-8b92029c]{height:calc(100% - 4.2em);overflow:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2154.9e4d2b2d.css b/platypush/backend/http/webapp/dist/static/css/2154.9e4d2b2d.css deleted file mode 100644 index 54e2604dd4..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/2154.9e4d2b2d.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-334516c0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-1[data-v-334516c0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-334516c0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-334516c0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-334516c0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-2[data-v-334516c0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-334516c0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-334516c0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-334516c0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-3[data-v-334516c0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-334516c0]:first-child{margin-left:26%!important}.col-offset-3[data-v-334516c0]:not(first-child){margin-left:30%!important}.col-4[data-v-334516c0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-4[data-v-334516c0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-334516c0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-334516c0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-334516c0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-5[data-v-334516c0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-334516c0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-334516c0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-334516c0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-6[data-v-334516c0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-334516c0]:first-child{margin-left:52%!important}.col-offset-6[data-v-334516c0]:not(first-child){margin-left:56%!important}.col-7[data-v-334516c0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-7[data-v-334516c0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-334516c0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-334516c0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-334516c0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-8[data-v-334516c0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-334516c0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-334516c0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-334516c0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-9[data-v-334516c0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-334516c0]:first-child{margin-left:78%!important}.col-offset-9[data-v-334516c0]:not(first-child){margin-left:82%!important}.col-10[data-v-334516c0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-10[data-v-334516c0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-334516c0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-334516c0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-334516c0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-334516c0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-334516c0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-1[data-v-334516c0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-334516c0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-334516c0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-2[data-v-334516c0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-334516c0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-334516c0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-3[data-v-334516c0]{margin-left:26%}.col-no-margin-s-3[data-v-334516c0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-334516c0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-4[data-v-334516c0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-334516c0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-334516c0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-5[data-v-334516c0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-334516c0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-334516c0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-6[data-v-334516c0]{margin-left:52%}.col-no-margin-s-6[data-v-334516c0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-334516c0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-7[data-v-334516c0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-334516c0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-334516c0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-8[data-v-334516c0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-334516c0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-334516c0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-9[data-v-334516c0]{margin-left:78%}.col-no-margin-s-9[data-v-334516c0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-334516c0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-10[data-v-334516c0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-334516c0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-334516c0]:first-child{margin-left:0}.col-offset-s-11[data-v-334516c0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-334516c0]{display:none!important}.s-visible[data-v-334516c0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-334516c0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-1[data-v-334516c0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-334516c0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-334516c0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-2[data-v-334516c0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-334516c0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-334516c0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-3[data-v-334516c0]{margin-left:26%}.col-no-margin-m-3[data-v-334516c0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-334516c0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-4[data-v-334516c0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-334516c0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-334516c0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-5[data-v-334516c0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-334516c0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-334516c0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-6[data-v-334516c0]{margin-left:52%}.col-no-margin-m-6[data-v-334516c0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-334516c0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-7[data-v-334516c0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-334516c0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-334516c0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-8[data-v-334516c0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-334516c0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-334516c0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-9[data-v-334516c0]{margin-left:78%}.col-no-margin-m-9[data-v-334516c0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-334516c0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-10[data-v-334516c0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-334516c0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-334516c0]:first-child{margin-left:0}.col-offset-m-11[data-v-334516c0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-334516c0]{display:none!important}.m-visible[data-v-334516c0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-334516c0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-1[data-v-334516c0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-334516c0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-334516c0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-2[data-v-334516c0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-334516c0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-334516c0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-3[data-v-334516c0]{margin-left:26%}.col-no-margin-l-3[data-v-334516c0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-334516c0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-4[data-v-334516c0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-334516c0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-334516c0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-5[data-v-334516c0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-334516c0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-334516c0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-6[data-v-334516c0]{margin-left:52%}.col-no-margin-l-6[data-v-334516c0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-334516c0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-7[data-v-334516c0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-334516c0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-334516c0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-8[data-v-334516c0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-334516c0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-334516c0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-9[data-v-334516c0]{margin-left:78%}.col-no-margin-l-9[data-v-334516c0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-334516c0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-10[data-v-334516c0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-334516c0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-334516c0]:first-child{margin-left:0}.col-offset-l-11[data-v-334516c0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-334516c0]{display:none!important}.l-visible[data-v-334516c0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-334516c0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-1[data-v-334516c0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-334516c0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-334516c0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-2[data-v-334516c0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-334516c0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-334516c0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-3[data-v-334516c0]{margin-left:26%}.col-no-margin-xl-3[data-v-334516c0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-334516c0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-4[data-v-334516c0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-334516c0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-334516c0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-5[data-v-334516c0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-334516c0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-334516c0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-6[data-v-334516c0]{margin-left:52%}.col-no-margin-xl-6[data-v-334516c0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-334516c0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-7[data-v-334516c0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-334516c0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-334516c0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-8[data-v-334516c0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-334516c0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-334516c0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-9[data-v-334516c0]{margin-left:78%}.col-no-margin-xl-9[data-v-334516c0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-334516c0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-10[data-v-334516c0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-334516c0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-334516c0]:first-child{margin-left:0}.col-offset-xl-11[data-v-334516c0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-334516c0]{display:none!important}.xl-visible[data-v-334516c0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-334516c0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-334516c0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-334516c0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-334516c0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-334516c0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-334516c0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-334516c0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-334516c0]{margin-left:26%}.col-no-margin-xxl-3[data-v-334516c0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-334516c0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-334516c0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-334516c0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-334516c0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-334516c0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-334516c0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-334516c0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-334516c0]{margin-left:52%}.col-no-margin-xxl-6[data-v-334516c0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-334516c0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-334516c0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-334516c0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-334516c0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-334516c0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-334516c0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-334516c0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-334516c0]{margin-left:78%}.col-no-margin-xxl-9[data-v-334516c0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-334516c0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-334516c0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-334516c0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-334516c0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-334516c0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-334516c0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-334516c0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-334516c0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-334516c0]{display:none!important}.xxl-visible[data-v-334516c0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-334516c0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-334516c0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-334516c0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-334516c0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-334516c0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-334516c0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-334516c0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-334516c0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-334516c0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-334516c0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-334516c0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-334516c0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-334516c0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-334516c0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-334516c0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-334516c0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-334516c0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-334516c0]{display:none!important}}.vertical-center[data-v-334516c0]{display:flex;align-items:center}.horizontal-center[data-v-334516c0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-334516c0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-334516c0]{display:none!important}.no-content[data-v-334516c0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-334516c0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-334516c0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-334516c0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-334516c0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-334516c0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-334516c0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-334516c0],.btn[data-v-334516c0],button[data-v-334516c0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-334516c0],.btn-default[type=submit][data-v-334516c0],.btn.btn-primary[data-v-334516c0],.btn[type=submit][data-v-334516c0],button.btn-primary[data-v-334516c0],button[type=submit][data-v-334516c0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-334516c0],.btn-default .icon[data-v-334516c0],button .icon[data-v-334516c0]{margin-right:.5em}input[type=password][data-v-334516c0],input[type=text][data-v-334516c0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-334516c0]:focus,input[type=text][data-v-334516c0]:focus{border:1px solid #35b870}button[data-v-334516c0],input[data-v-334516c0]{outline:none}input[type=text][data-v-334516c0]:hover,textarea[data-v-334516c0]:hover{border:1px solid #9cdfb0}ul[data-v-334516c0]{margin:0;padding:0;list-style:none}a[data-v-334516c0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-334516c0]:hover{color:#35b870}[data-v-334516c0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-334516c0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-334516c0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-334516c0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-334516c0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-334516c0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-334516c0] .nav .path{cursor:pointer}.browser[data-v-334516c0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-334516c0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-334516c0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-334516c0],input[type=number][data-v-334516c0],input[type=password][data-v-334516c0],input[type=search][data-v-334516c0],input[type=text][data-v-334516c0],input[type=time][data-v-334516c0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-334516c0]:hover,input[type=number][data-v-334516c0]:hover,input[type=password][data-v-334516c0]:hover,input[type=search][data-v-334516c0]:hover,input[type=text][data-v-334516c0]:hover,input[type=time][data-v-334516c0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-334516c0]:focus,input[type=number][data-v-334516c0]:focus,input[type=password][data-v-334516c0]:focus,input[type=search][data-v-334516c0]:focus,input[type=text][data-v-334516c0]:focus,input[type=time][data-v-334516c0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-334516c0],input[type=number].with-icon[data-v-334516c0],input[type=password].with-icon[data-v-334516c0],input[type=search].with-icon[data-v-334516c0],input[type=text].with-icon[data-v-334516c0],input[type=time].with-icon[data-v-334516c0]{padding-left:.3em}input[type=search][data-v-334516c0],input[type=text][data-v-334516c0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-334516c0]{animation-fill-mode:both;animation-name:fadeIn-334516c0;-webkit-animation-name:fadeIn-334516c0}.fade-in[data-v-334516c0],.fade-out[data-v-334516c0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-334516c0]{animation-fill-mode:both;animation-name:fadeOut-334516c0;-webkit-animation-name:fadeOut-334516c0}@keyframes fadeIn-334516c0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-334516c0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-334516c0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-334516c0;-webkit-animation-name:glow-334516c0}.loop[data-v-334516c0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-334516c0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-334516c0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-334516c0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-334516c0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entities-selectors-container[data-v-334516c0]{width:100%;display:flex;align-items:center}.entities-selectors-container .selector[data-v-334516c0]{height:100%;display:inline-flex}@media(max-width:330px){.entities-selectors-container .search-bar[data-v-334516c0]{display:none}}.entities-selectors-container .search-bar[data-v-334516c0]{margin:.25em 0}@media screen and (max-width:calc(768px - 1px)){.entities-selectors-container .search-bar[data-v-334516c0]{width:100%;margin-right:2em}}@media screen and (min-width:769px){.entities-selectors-container .search-bar[data-v-334516c0]{min-width:400px;margin-left:.5em}}.entities-selectors-container[data-v-334516c0] .dropdown-container{height:100%;display:flex}.entities-selectors-container[data-v-334516c0] .dropdown-container .dropdown{min-width:11em}.entities-selectors-container[data-v-334516c0] .dropdown-container .icon.active{color:#32b646}.entities-selectors-container[data-v-334516c0] .dropdown-container button{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2217.3d5833a8.css b/platypush/backend/http/webapp/dist/static/css/2217.4daed832.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/2217.3d5833a8.css rename to platypush/backend/http/webapp/dist/static/css/2217.4daed832.css index 5bcd7d1a31..dde7e058d0 100644 --- a/platypush/backend/http/webapp/dist/static/css/2217.3d5833a8.css +++ b/platypush/backend/http/webapp/dist/static/css/2217.4daed832.css @@ -1 +1 @@ -.col-1[data-v-4667e342],.entity .head .icon[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4667e342]:first-child,.entity .head .icon[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4667e342]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4667e342]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4667e342]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4667e342]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4667e342],.entity .head .value-and-toggler[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4667e342]:first-child,.entity .head .value-and-toggler[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4667e342]:first-child{margin-left:26%!important}.col-offset-3[data-v-4667e342]:not(first-child){margin-left:30%!important}.col-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4667e342]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4667e342]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4667e342]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4667e342]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4667e342]:first-child{margin-left:52%!important}.col-offset-6[data-v-4667e342]:not(first-child){margin-left:56%!important}.col-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4667e342]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4667e342]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4667e342]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4667e342]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4667e342]:first-child{margin-left:78%!important}.col-offset-9[data-v-4667e342]:not(first-child){margin-left:82%!important}.col-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4667e342]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4667e342]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4667e342]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4667e342]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4667e342],.entity .head .value-container[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4667e342]:first-child,.entity .head .value-container[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-3[data-v-4667e342]{margin-left:26%}.col-no-margin-s-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-6[data-v-4667e342]{margin-left:52%}.col-no-margin-s-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4667e342],.entity .head .label[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4667e342]:first-child,.entity .head .label[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-9[data-v-4667e342]{margin-left:78%}.col-no-margin-s-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-4667e342],.attributes .child .value[data-v-4667e342],.col-s-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-4667e342]:first-child,.attributes .child .value[data-v-4667e342]:first-child,.col-s-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4667e342]{display:none!important}.s-visible[data-v-4667e342]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4667e342],.entity .head .value-container[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4667e342]:first-child,.entity .head .value-container[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-3[data-v-4667e342]{margin-left:26%}.col-no-margin-m-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-4667e342],.attributes .child .value[data-v-4667e342],.col-m-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-4667e342]:first-child,.attributes .child .value[data-v-4667e342]:first-child,.col-m-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-6[data-v-4667e342]{margin-left:52%}.col-no-margin-m-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4667e342],.entity .head .label[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4667e342]:first-child,.entity .head .label[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-9[data-v-4667e342]{margin-left:78%}.col-no-margin-m-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4667e342]{display:none!important}.m-visible[data-v-4667e342]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-3[data-v-4667e342]{margin-left:26%}.col-no-margin-l-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-6[data-v-4667e342]{margin-left:52%}.col-no-margin-l-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-9[data-v-4667e342]{margin-left:78%}.col-no-margin-l-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4667e342]{display:none!important}.l-visible[data-v-4667e342]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-3[data-v-4667e342]{margin-left:26%}.col-no-margin-xl-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-6[data-v-4667e342]{margin-left:52%}.col-no-margin-xl-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-9[data-v-4667e342]{margin-left:78%}.col-no-margin-xl-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4667e342]{display:none!important}.xl-visible[data-v-4667e342]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4667e342]{margin-left:26%}.col-no-margin-xxl-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4667e342]{margin-left:52%}.col-no-margin-xxl-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4667e342]{margin-left:78%}.col-no-margin-xxl-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4667e342]{display:none!important}.xxl-visible[data-v-4667e342]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4667e342]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4667e342]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4667e342]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4667e342]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4667e342]{display:none!important}}.vertical-center[data-v-4667e342]{display:flex;align-items:center}.horizontal-center[data-v-4667e342]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-4667e342],.pull-right[data-v-4667e342]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4667e342]{display:none!important}.no-content[data-v-4667e342]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4667e342]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4667e342]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4667e342]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4667e342]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4667e342]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4667e342]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4667e342],.btn[data-v-4667e342],button[data-v-4667e342]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4667e342],.btn-default[type=submit][data-v-4667e342],.btn.btn-primary[data-v-4667e342],.btn[type=submit][data-v-4667e342],button.btn-primary[data-v-4667e342],button[type=submit][data-v-4667e342]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4667e342],.btn-default .icon[data-v-4667e342],button .icon[data-v-4667e342]{margin-right:.5em}input[type=password][data-v-4667e342],input[type=text][data-v-4667e342]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4667e342]:focus,input[type=text][data-v-4667e342]:focus{border:1px solid #35b870}button[data-v-4667e342],input[data-v-4667e342]{outline:none}input[type=text][data-v-4667e342]:hover,textarea[data-v-4667e342]:hover{border:1px solid #9cdfb0}ul[data-v-4667e342]{margin:0;padding:0;list-style:none}a[data-v-4667e342]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4667e342]:hover{color:#35b870}[data-v-4667e342]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4667e342]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4667e342]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4667e342]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4667e342]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4667e342] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4667e342] .nav .path{cursor:pointer}.browser[data-v-4667e342] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4667e342] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4667e342]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4667e342],input[type=number][data-v-4667e342],input[type=password][data-v-4667e342],input[type=search][data-v-4667e342],input[type=text][data-v-4667e342],input[type=time][data-v-4667e342]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4667e342]:hover,input[type=number][data-v-4667e342]:hover,input[type=password][data-v-4667e342]:hover,input[type=search][data-v-4667e342]:hover,input[type=text][data-v-4667e342]:hover,input[type=time][data-v-4667e342]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4667e342]:focus,input[type=number][data-v-4667e342]:focus,input[type=password][data-v-4667e342]:focus,input[type=search][data-v-4667e342]:focus,input[type=text][data-v-4667e342]:focus,input[type=time][data-v-4667e342]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4667e342],input[type=number].with-icon[data-v-4667e342],input[type=password].with-icon[data-v-4667e342],input[type=search].with-icon[data-v-4667e342],input[type=text].with-icon[data-v-4667e342],input[type=time].with-icon[data-v-4667e342]{padding-left:.3em}input[type=search][data-v-4667e342],input[type=text][data-v-4667e342]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-4667e342],.fade-in[data-v-4667e342]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-4667e342;-webkit-animation-name:fadeIn-4667e342}.fade-out[data-v-4667e342]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-4667e342;-webkit-animation-name:fadeOut-4667e342}@keyframes fadeIn-4667e342{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4667e342{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-4667e342]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4667e342;-webkit-animation-name:glow-4667e342}.loop[data-v-4667e342]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4667e342{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4667e342]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4667e342]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4667e342]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-4667e342]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-4667e342]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-4667e342]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-4667e342]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-4667e342]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-4667e342]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-4667e342]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-4667e342]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-4667e342]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-4667e342]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-4667e342]{margin-right:.5em}.entity .head .icon[data-v-4667e342]:hover{color:#35b870}.entity .head .label[data-v-4667e342]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-4667e342]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-4667e342]:hover{color:#35b870}.entity .head .value[data-v-4667e342]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-4667e342]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-4667e342]{margin-right:2.5em}.entity .head .value-container[data-v-4667e342]{min-width:7em}.entity .head .unit[data-v-4667e342]{margin-left:.2em}.entity .head .pull-right[data-v-4667e342],.entity .head .value-container[data-v-4667e342]{padding-right:.5em}.entity .head .pull-right[data-v-4667e342] .power-switch,.entity .head .value-container[data-v-4667e342] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-4667e342]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-4667e342]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-4667e342]:hover{color:#35b870}.collapse-toggler[data-v-4667e342]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-4667e342]:hover{color:#35b870}.attributes .child[data-v-4667e342]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-4667e342]{flex-direction:column}}.attributes .child[data-v-4667e342]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-4667e342]:hover{cursor:auto}.attributes .child.head[data-v-4667e342]{cursor:pointer}.attributes .child.head[data-v-4667e342]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-4667e342]{font-weight:700}.attributes .child .value[data-v-4667e342]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-4667e342]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-4667e342]:last-child,.entity-container-wrapper.with-children[data-v-4667e342]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-4667e342]{animation:blink-animation-4667e342 1s steps(20,start)}@keyframes blink-animation-4667e342{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-4667e342],.entity .head .icon[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4667e342]:first-child,.entity .head .icon[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4667e342]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4667e342]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4667e342]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4667e342]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4667e342],.entity .head .value-and-toggler[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4667e342]:first-child,.entity .head .value-and-toggler[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4667e342]:first-child{margin-left:26%!important}.col-offset-3[data-v-4667e342]:not(first-child){margin-left:30%!important}.col-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4667e342]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4667e342]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4667e342]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4667e342]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4667e342]:first-child{margin-left:52%!important}.col-offset-6[data-v-4667e342]:not(first-child){margin-left:56%!important}.col-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4667e342]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4667e342]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4667e342]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4667e342]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4667e342]:first-child{margin-left:78%!important}.col-offset-9[data-v-4667e342]:not(first-child){margin-left:82%!important}.col-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4667e342]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4667e342]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4667e342]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4667e342]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4667e342],.entity .head .value-container[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4667e342]:first-child,.entity .head .value-container[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-3[data-v-4667e342]{margin-left:26%}.col-no-margin-s-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-6[data-v-4667e342]{margin-left:52%}.col-no-margin-s-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4667e342],.entity .head .label[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4667e342]:first-child,.entity .head .label[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-9[data-v-4667e342]{margin-left:78%}.col-no-margin-s-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-s-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-4667e342],.attributes .child .value[data-v-4667e342],.col-s-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-4667e342]:first-child,.attributes .child .value[data-v-4667e342]:first-child,.col-s-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4667e342]{display:none!important}.s-visible[data-v-4667e342]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4667e342],.entity .head .value-container[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4667e342]:first-child,.entity .head .value-container[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-3[data-v-4667e342]{margin-left:26%}.col-no-margin-m-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-4667e342],.attributes .child .value[data-v-4667e342],.col-m-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-4667e342]:first-child,.attributes .child .value[data-v-4667e342]:first-child,.col-m-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-6[data-v-4667e342]{margin-left:52%}.col-no-margin-m-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4667e342],.entity .head .label[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4667e342]:first-child,.entity .head .label[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-9[data-v-4667e342]{margin-left:78%}.col-no-margin-m-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-m-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4667e342]{display:none!important}.m-visible[data-v-4667e342]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-3[data-v-4667e342]{margin-left:26%}.col-no-margin-l-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-6[data-v-4667e342]{margin-left:52%}.col-no-margin-l-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-9[data-v-4667e342]{margin-left:78%}.col-no-margin-l-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-l-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4667e342]{display:none!important}.l-visible[data-v-4667e342]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-3[data-v-4667e342]{margin-left:26%}.col-no-margin-xl-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-6[data-v-4667e342]{margin-left:52%}.col-no-margin-xl-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-9[data-v-4667e342]{margin-left:78%}.col-no-margin-xl-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-xl-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4667e342]{display:none!important}.xl-visible[data-v-4667e342]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4667e342]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4667e342]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4667e342]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4667e342]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4667e342]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4667e342]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4667e342]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4667e342]{margin-left:26%}.col-no-margin-xxl-3[data-v-4667e342]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4667e342]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4667e342]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4667e342]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4667e342]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4667e342]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4667e342]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4667e342]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4667e342]{margin-left:52%}.col-no-margin-xxl-6[data-v-4667e342]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4667e342]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4667e342]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4667e342]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4667e342]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4667e342]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4667e342]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4667e342]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4667e342]{margin-left:78%}.col-no-margin-xxl-9[data-v-4667e342]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4667e342]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4667e342]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4667e342]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4667e342]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4667e342]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4667e342]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4667e342]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4667e342]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4667e342]{display:none!important}.xxl-visible[data-v-4667e342]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4667e342]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4667e342]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4667e342]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4667e342]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4667e342]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4667e342]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4667e342]{display:none!important}}.vertical-center[data-v-4667e342]{display:flex;align-items:center}.horizontal-center[data-v-4667e342]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-4667e342],.pull-right[data-v-4667e342]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4667e342]{display:none!important}.no-content[data-v-4667e342]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4667e342]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4667e342]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4667e342]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4667e342]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4667e342]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4667e342]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4667e342],.btn[data-v-4667e342],button[data-v-4667e342]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4667e342],.btn-default[type=submit][data-v-4667e342],.btn.btn-primary[data-v-4667e342],.btn[type=submit][data-v-4667e342],button.btn-primary[data-v-4667e342],button[type=submit][data-v-4667e342]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-4667e342]:hover,.btn[data-v-4667e342]:hover,button[data-v-4667e342]:hover{color:#35b870}.btn .icon[data-v-4667e342],.btn-default .icon[data-v-4667e342],button .icon[data-v-4667e342]{margin-right:.5em}.btn-default[data-v-4667e342]:disabled,.btn-default[disabled][data-v-4667e342],.btn[data-v-4667e342]:disabled,.btn[disabled][data-v-4667e342],button[data-v-4667e342]:disabled,button[disabled][data-v-4667e342]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-4667e342]{cursor:grab!important}.dragged[data-v-4667e342]{opacity:.5!important}input[type=password][data-v-4667e342],input[type=text][data-v-4667e342]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4667e342]:focus,input[type=text][data-v-4667e342]:focus{border:1px solid #35b870}button[data-v-4667e342],input[data-v-4667e342]{outline:none}input[type=text][data-v-4667e342]:hover,textarea[data-v-4667e342]:hover{border:1px solid #9cdfb0}ul[data-v-4667e342]{margin:0;padding:0;list-style:none}a[data-v-4667e342]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4667e342]:hover{color:#35b870}[data-v-4667e342]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4667e342]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4667e342]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4667e342]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-4667e342]{color:#ad1717}body[data-v-4667e342]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4667e342] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4667e342] .nav .path{cursor:pointer}.browser[data-v-4667e342] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4667e342] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-4667e342]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-4667e342]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4667e342],input[type=number][data-v-4667e342],input[type=password][data-v-4667e342],input[type=search][data-v-4667e342],input[type=text][data-v-4667e342],input[type=time][data-v-4667e342]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-4667e342]:hover,input[type=number][data-v-4667e342]:hover,input[type=password][data-v-4667e342]:hover,input[type=search][data-v-4667e342]:hover,input[type=text][data-v-4667e342]:hover,input[type=time][data-v-4667e342]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4667e342]:focus,input[type=number][data-v-4667e342]:focus,input[type=password][data-v-4667e342]:focus,input[type=search][data-v-4667e342]:focus,input[type=text][data-v-4667e342]:focus,input[type=time][data-v-4667e342]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4667e342],input[type=number].with-icon[data-v-4667e342],input[type=password].with-icon[data-v-4667e342],input[type=search].with-icon[data-v-4667e342],input[type=text].with-icon[data-v-4667e342],input[type=time].with-icon[data-v-4667e342]{padding-left:.3em}input[type=search][data-v-4667e342],input[type=text][data-v-4667e342]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-4667e342],.fade-in[data-v-4667e342]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-4667e342;-webkit-animation-name:fadeIn-4667e342}.fade-out[data-v-4667e342]{animation-fill-mode:both;animation-name:fadeOut-4667e342;-webkit-animation-name:fadeOut-4667e342}.expand[data-v-4667e342],.fade-out[data-v-4667e342]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-4667e342]{animation-fill-mode:both;animation-name:expand-4667e342;-webkit-animation-name:expand-4667e342}.shrink[data-v-4667e342]{animation-fill-mode:both;animation-name:shrink-4667e342;-webkit-animation-name:shrink-4667e342}.fold[data-v-4667e342],.shrink[data-v-4667e342]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-4667e342]{animation-fill-mode:both;animation-name:fold-4667e342;-webkit-animation-name:fold-4667e342}.unfold[data-v-4667e342]{animation-fill-mode:both;animation-name:unfold-4667e342;-webkit-animation-name:unfold-4667e342}.dim[data-v-4667e342],.unfold[data-v-4667e342]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-4667e342]{animation-fill-mode:both;animation-name:dim-4667e342;-webkit-animation-name:dim-4667e342}.brighten[data-v-4667e342]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-4667e342;-webkit-animation-name:brighten-4667e342}@keyframes fadeIn-4667e342{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4667e342{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-4667e342{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-4667e342{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-4667e342{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-4667e342{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-4667e342{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-4667e342{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-4667e342]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4667e342;-webkit-animation-name:glow-4667e342}.loop[data-v-4667e342]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4667e342{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4667e342]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4667e342]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4667e342]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-4667e342]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-4667e342]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-4667e342]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-4667e342]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-4667e342]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-4667e342]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-4667e342]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-4667e342]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-4667e342]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-4667e342]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-4667e342]{margin-right:.5em}.entity .head .icon[data-v-4667e342]:hover{color:#35b870}.entity .head .label[data-v-4667e342]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-4667e342]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-4667e342]:hover{color:#35b870}.entity .head .value[data-v-4667e342]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-4667e342]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-4667e342]{margin-right:2.5em}.entity .head .value-container[data-v-4667e342]{min-width:7em}.entity .head .unit[data-v-4667e342]{margin-left:.2em}.entity .head .pull-right[data-v-4667e342],.entity .head .value-container[data-v-4667e342]{padding-right:.5em}.entity .head .pull-right[data-v-4667e342] .power-switch,.entity .head .value-container[data-v-4667e342] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-4667e342]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-4667e342]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-4667e342]:hover{color:#35b870}.collapse-toggler[data-v-4667e342]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-4667e342]:hover{color:#35b870}.attributes .child[data-v-4667e342]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-4667e342]{flex-direction:column}}.attributes .child[data-v-4667e342]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-4667e342]:hover{cursor:auto}.attributes .child.head[data-v-4667e342]{cursor:pointer}.attributes .child.head[data-v-4667e342]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-4667e342]{font-weight:700}.attributes .child .value[data-v-4667e342]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-4667e342]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-4667e342]:last-child,.entity-container-wrapper.with-children[data-v-4667e342]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-4667e342]{animation:blink-animation-4667e342 1s steps(20,start)}@keyframes blink-animation-4667e342{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2460.c47d3d8a.css b/platypush/backend/http/webapp/dist/static/css/2460.352e2032.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/2460.c47d3d8a.css rename to platypush/backend/http/webapp/dist/static/css/2460.352e2032.css index 640d357ae3..868d480651 100644 --- a/platypush/backend/http/webapp/dist/static/css/2460.c47d3d8a.css +++ b/platypush/backend/http/webapp/dist/static/css/2460.352e2032.css @@ -1 +1 @@ -.col-1[data-v-d3cf6cca],.entity .head .icon[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d3cf6cca]:first-child,.entity .head .icon[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d3cf6cca]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d3cf6cca]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d3cf6cca]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d3cf6cca]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d3cf6cca],.entity .head .value-and-toggler[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d3cf6cca]:first-child,.entity .head .value-and-toggler[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d3cf6cca]:first-child{margin-left:26%!important}.col-offset-3[data-v-d3cf6cca]:not(first-child){margin-left:30%!important}.col-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d3cf6cca]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d3cf6cca]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d3cf6cca]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d3cf6cca]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d3cf6cca]:first-child{margin-left:52%!important}.col-offset-6[data-v-d3cf6cca]:not(first-child){margin-left:56%!important}.col-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d3cf6cca]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d3cf6cca]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d3cf6cca]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d3cf6cca]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d3cf6cca]:first-child{margin-left:78%!important}.col-offset-9[data-v-d3cf6cca]:not(first-child){margin-left:82%!important}.col-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d3cf6cca]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d3cf6cca]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d3cf6cca]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d3cf6cca]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d3cf6cca],.entity .head .value-container[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d3cf6cca]:first-child,.entity .head .value-container[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-s-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-s-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d3cf6cca],.entity .head .label[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d3cf6cca]:first-child,.entity .head .label[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-s-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-d3cf6cca],.attributes .child .value[data-v-d3cf6cca],.col-s-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-d3cf6cca]:first-child,.attributes .child .value[data-v-d3cf6cca]:first-child,.col-s-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d3cf6cca]{display:none!important}.s-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d3cf6cca],.entity .head .value-container[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d3cf6cca]:first-child,.entity .head .value-container[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-m-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-d3cf6cca],.attributes .child .value[data-v-d3cf6cca],.col-m-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-d3cf6cca]:first-child,.attributes .child .value[data-v-d3cf6cca]:first-child,.col-m-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-m-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d3cf6cca],.entity .head .label[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d3cf6cca]:first-child,.entity .head .label[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-m-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d3cf6cca]{display:none!important}.m-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-l-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-l-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-l-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d3cf6cca]{display:none!important}.l-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-xl-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-xl-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-xl-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d3cf6cca]{display:none!important}.xl-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-xxl-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-xxl-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-xxl-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d3cf6cca]{display:none!important}.xxl-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d3cf6cca]{display:none!important}}.vertical-center[data-v-d3cf6cca]{display:flex;align-items:center}.horizontal-center[data-v-d3cf6cca]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-d3cf6cca],.pull-right[data-v-d3cf6cca]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d3cf6cca]{display:none!important}.no-content[data-v-d3cf6cca]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d3cf6cca]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d3cf6cca],.btn[data-v-d3cf6cca],button[data-v-d3cf6cca]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d3cf6cca],.btn-default[type=submit][data-v-d3cf6cca],.btn.btn-primary[data-v-d3cf6cca],.btn[type=submit][data-v-d3cf6cca],button.btn-primary[data-v-d3cf6cca],button[type=submit][data-v-d3cf6cca]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-d3cf6cca],.btn-default .icon[data-v-d3cf6cca],button .icon[data-v-d3cf6cca]{margin-right:.5em}input[type=password][data-v-d3cf6cca],input[type=text][data-v-d3cf6cca]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d3cf6cca]:focus,input[type=text][data-v-d3cf6cca]:focus{border:1px solid #35b870}button[data-v-d3cf6cca],input[data-v-d3cf6cca]{outline:none}input[type=text][data-v-d3cf6cca]:hover,textarea[data-v-d3cf6cca]:hover{border:1px solid #9cdfb0}ul[data-v-d3cf6cca]{margin:0;padding:0;list-style:none}a[data-v-d3cf6cca]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d3cf6cca]:hover{color:#35b870}[data-v-d3cf6cca]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d3cf6cca]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d3cf6cca]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d3cf6cca]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-d3cf6cca]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d3cf6cca] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d3cf6cca] .nav .path{cursor:pointer}.browser[data-v-d3cf6cca] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d3cf6cca] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-d3cf6cca]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d3cf6cca],input[type=number][data-v-d3cf6cca],input[type=password][data-v-d3cf6cca],input[type=search][data-v-d3cf6cca],input[type=text][data-v-d3cf6cca],input[type=time][data-v-d3cf6cca]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-d3cf6cca]:hover,input[type=number][data-v-d3cf6cca]:hover,input[type=password][data-v-d3cf6cca]:hover,input[type=search][data-v-d3cf6cca]:hover,input[type=text][data-v-d3cf6cca]:hover,input[type=time][data-v-d3cf6cca]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d3cf6cca]:focus,input[type=number][data-v-d3cf6cca]:focus,input[type=password][data-v-d3cf6cca]:focus,input[type=search][data-v-d3cf6cca]:focus,input[type=text][data-v-d3cf6cca]:focus,input[type=time][data-v-d3cf6cca]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d3cf6cca],input[type=number].with-icon[data-v-d3cf6cca],input[type=password].with-icon[data-v-d3cf6cca],input[type=search].with-icon[data-v-d3cf6cca],input[type=text].with-icon[data-v-d3cf6cca],input[type=time].with-icon[data-v-d3cf6cca]{padding-left:.3em}input[type=search][data-v-d3cf6cca],input[type=text][data-v-d3cf6cca]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-d3cf6cca],.fade-in[data-v-d3cf6cca]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-d3cf6cca;-webkit-animation-name:fadeIn-d3cf6cca}.fade-out[data-v-d3cf6cca]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-d3cf6cca;-webkit-animation-name:fadeOut-d3cf6cca}@keyframes fadeIn-d3cf6cca{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d3cf6cca{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-d3cf6cca]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d3cf6cca;-webkit-animation-name:glow-d3cf6cca}.loop[data-v-d3cf6cca]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d3cf6cca{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d3cf6cca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d3cf6cca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d3cf6cca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-d3cf6cca]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-d3cf6cca]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-d3cf6cca]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-d3cf6cca]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-d3cf6cca]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-d3cf6cca]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-d3cf6cca]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-d3cf6cca]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-d3cf6cca]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-d3cf6cca]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-d3cf6cca]{margin-right:.5em}.entity .head .icon[data-v-d3cf6cca]:hover{color:#35b870}.entity .head .label[data-v-d3cf6cca]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-d3cf6cca]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-d3cf6cca]:hover{color:#35b870}.entity .head .value[data-v-d3cf6cca]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-d3cf6cca]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-d3cf6cca]{margin-right:2.5em}.entity .head .value-container[data-v-d3cf6cca]{min-width:7em}.entity .head .unit[data-v-d3cf6cca]{margin-left:.2em}.entity .head .pull-right[data-v-d3cf6cca],.entity .head .value-container[data-v-d3cf6cca]{padding-right:.5em}.entity .head .pull-right[data-v-d3cf6cca] .power-switch,.entity .head .value-container[data-v-d3cf6cca] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-d3cf6cca]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-d3cf6cca]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-d3cf6cca]:hover{color:#35b870}.collapse-toggler[data-v-d3cf6cca]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-d3cf6cca]:hover{color:#35b870}.attributes .child[data-v-d3cf6cca]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-d3cf6cca]{flex-direction:column}}.attributes .child[data-v-d3cf6cca]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-d3cf6cca]:hover{cursor:auto}.attributes .child.head[data-v-d3cf6cca]{cursor:pointer}.attributes .child.head[data-v-d3cf6cca]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-d3cf6cca]{font-weight:700}.attributes .child .value[data-v-d3cf6cca]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-d3cf6cca]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-d3cf6cca]:last-child,.entity-container-wrapper.with-children[data-v-d3cf6cca]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-d3cf6cca]{animation:blink-animation-d3cf6cca 1s steps(20,start)}@keyframes blink-animation-d3cf6cca{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-d3cf6cca],.entity .head .icon[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d3cf6cca]:first-child,.entity .head .icon[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d3cf6cca]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d3cf6cca]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d3cf6cca]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d3cf6cca]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d3cf6cca],.entity .head .value-and-toggler[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d3cf6cca]:first-child,.entity .head .value-and-toggler[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d3cf6cca]:first-child{margin-left:26%!important}.col-offset-3[data-v-d3cf6cca]:not(first-child){margin-left:30%!important}.col-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d3cf6cca]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d3cf6cca]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d3cf6cca]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d3cf6cca]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d3cf6cca]:first-child{margin-left:52%!important}.col-offset-6[data-v-d3cf6cca]:not(first-child){margin-left:56%!important}.col-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d3cf6cca]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d3cf6cca]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d3cf6cca]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d3cf6cca]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d3cf6cca]:first-child{margin-left:78%!important}.col-offset-9[data-v-d3cf6cca]:not(first-child){margin-left:82%!important}.col-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d3cf6cca]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d3cf6cca]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d3cf6cca]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d3cf6cca]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d3cf6cca],.entity .head .value-container[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d3cf6cca]:first-child,.entity .head .value-container[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-s-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-s-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d3cf6cca],.entity .head .label[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d3cf6cca]:first-child,.entity .head .label[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-s-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-s-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-d3cf6cca],.attributes .child .value[data-v-d3cf6cca],.col-s-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-d3cf6cca]:first-child,.attributes .child .value[data-v-d3cf6cca]:first-child,.col-s-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d3cf6cca]{display:none!important}.s-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d3cf6cca],.entity .head .value-container[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d3cf6cca]:first-child,.entity .head .value-container[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-m-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-d3cf6cca],.attributes .child .value[data-v-d3cf6cca],.col-m-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-d3cf6cca]:first-child,.attributes .child .value[data-v-d3cf6cca]:first-child,.col-m-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-m-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d3cf6cca],.entity .head .label[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d3cf6cca]:first-child,.entity .head .label[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-m-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-m-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d3cf6cca]{display:none!important}.m-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-l-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-l-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-l-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-l-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d3cf6cca]{display:none!important}.l-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-xl-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-xl-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-xl-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xl-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d3cf6cca]{display:none!important}.xl-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d3cf6cca]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d3cf6cca]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d3cf6cca]{margin-left:26%}.col-no-margin-xxl-3[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d3cf6cca]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d3cf6cca]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d3cf6cca]{margin-left:52%}.col-no-margin-xxl-6[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d3cf6cca]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d3cf6cca]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d3cf6cca]{margin-left:78%}.col-no-margin-xxl-9[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d3cf6cca]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d3cf6cca]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d3cf6cca]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d3cf6cca]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d3cf6cca]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d3cf6cca]{display:none!important}.xxl-visible[data-v-d3cf6cca]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d3cf6cca]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d3cf6cca]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d3cf6cca]{display:none!important}}.vertical-center[data-v-d3cf6cca]{display:flex;align-items:center}.horizontal-center[data-v-d3cf6cca]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-d3cf6cca],.pull-right[data-v-d3cf6cca]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d3cf6cca]{display:none!important}.no-content[data-v-d3cf6cca]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d3cf6cca]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d3cf6cca]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d3cf6cca],.btn[data-v-d3cf6cca],button[data-v-d3cf6cca]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d3cf6cca],.btn-default[type=submit][data-v-d3cf6cca],.btn.btn-primary[data-v-d3cf6cca],.btn[type=submit][data-v-d3cf6cca],button.btn-primary[data-v-d3cf6cca],button[type=submit][data-v-d3cf6cca]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-d3cf6cca]:hover,.btn[data-v-d3cf6cca]:hover,button[data-v-d3cf6cca]:hover{color:#35b870}.btn .icon[data-v-d3cf6cca],.btn-default .icon[data-v-d3cf6cca],button .icon[data-v-d3cf6cca]{margin-right:.5em}.btn-default[data-v-d3cf6cca]:disabled,.btn-default[disabled][data-v-d3cf6cca],.btn[data-v-d3cf6cca]:disabled,.btn[disabled][data-v-d3cf6cca],button[data-v-d3cf6cca]:disabled,button[disabled][data-v-d3cf6cca]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-d3cf6cca]{cursor:grab!important}.dragged[data-v-d3cf6cca]{opacity:.5!important}input[type=password][data-v-d3cf6cca],input[type=text][data-v-d3cf6cca]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d3cf6cca]:focus,input[type=text][data-v-d3cf6cca]:focus{border:1px solid #35b870}button[data-v-d3cf6cca],input[data-v-d3cf6cca]{outline:none}input[type=text][data-v-d3cf6cca]:hover,textarea[data-v-d3cf6cca]:hover{border:1px solid #9cdfb0}ul[data-v-d3cf6cca]{margin:0;padding:0;list-style:none}a[data-v-d3cf6cca]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d3cf6cca]:hover{color:#35b870}[data-v-d3cf6cca]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d3cf6cca]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d3cf6cca]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d3cf6cca]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-d3cf6cca]{color:#ad1717}body[data-v-d3cf6cca]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d3cf6cca] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d3cf6cca] .nav .path{cursor:pointer}.browser[data-v-d3cf6cca] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d3cf6cca] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-d3cf6cca]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-d3cf6cca]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d3cf6cca],input[type=number][data-v-d3cf6cca],input[type=password][data-v-d3cf6cca],input[type=search][data-v-d3cf6cca],input[type=text][data-v-d3cf6cca],input[type=time][data-v-d3cf6cca]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-d3cf6cca]:hover,input[type=number][data-v-d3cf6cca]:hover,input[type=password][data-v-d3cf6cca]:hover,input[type=search][data-v-d3cf6cca]:hover,input[type=text][data-v-d3cf6cca]:hover,input[type=time][data-v-d3cf6cca]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d3cf6cca]:focus,input[type=number][data-v-d3cf6cca]:focus,input[type=password][data-v-d3cf6cca]:focus,input[type=search][data-v-d3cf6cca]:focus,input[type=text][data-v-d3cf6cca]:focus,input[type=time][data-v-d3cf6cca]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d3cf6cca],input[type=number].with-icon[data-v-d3cf6cca],input[type=password].with-icon[data-v-d3cf6cca],input[type=search].with-icon[data-v-d3cf6cca],input[type=text].with-icon[data-v-d3cf6cca],input[type=time].with-icon[data-v-d3cf6cca]{padding-left:.3em}input[type=search][data-v-d3cf6cca],input[type=text][data-v-d3cf6cca]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-d3cf6cca],.fade-in[data-v-d3cf6cca]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-d3cf6cca;-webkit-animation-name:fadeIn-d3cf6cca}.fade-out[data-v-d3cf6cca]{animation-fill-mode:both;animation-name:fadeOut-d3cf6cca;-webkit-animation-name:fadeOut-d3cf6cca}.expand[data-v-d3cf6cca],.fade-out[data-v-d3cf6cca]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-d3cf6cca]{animation-fill-mode:both;animation-name:expand-d3cf6cca;-webkit-animation-name:expand-d3cf6cca}.shrink[data-v-d3cf6cca]{animation-fill-mode:both;animation-name:shrink-d3cf6cca;-webkit-animation-name:shrink-d3cf6cca}.fold[data-v-d3cf6cca],.shrink[data-v-d3cf6cca]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-d3cf6cca]{animation-fill-mode:both;animation-name:fold-d3cf6cca;-webkit-animation-name:fold-d3cf6cca}.unfold[data-v-d3cf6cca]{animation-fill-mode:both;animation-name:unfold-d3cf6cca;-webkit-animation-name:unfold-d3cf6cca}.dim[data-v-d3cf6cca],.unfold[data-v-d3cf6cca]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-d3cf6cca]{animation-fill-mode:both;animation-name:dim-d3cf6cca;-webkit-animation-name:dim-d3cf6cca}.brighten[data-v-d3cf6cca]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-d3cf6cca;-webkit-animation-name:brighten-d3cf6cca}@keyframes fadeIn-d3cf6cca{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d3cf6cca{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-d3cf6cca{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-d3cf6cca{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-d3cf6cca{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-d3cf6cca{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-d3cf6cca{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-d3cf6cca{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-d3cf6cca]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d3cf6cca;-webkit-animation-name:glow-d3cf6cca}.loop[data-v-d3cf6cca]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d3cf6cca{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d3cf6cca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d3cf6cca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d3cf6cca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-d3cf6cca]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-d3cf6cca]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-d3cf6cca]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-d3cf6cca]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-d3cf6cca]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-d3cf6cca]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-d3cf6cca]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-d3cf6cca]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-d3cf6cca]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-d3cf6cca]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-d3cf6cca]{margin-right:.5em}.entity .head .icon[data-v-d3cf6cca]:hover{color:#35b870}.entity .head .label[data-v-d3cf6cca]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-d3cf6cca]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-d3cf6cca]:hover{color:#35b870}.entity .head .value[data-v-d3cf6cca]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-d3cf6cca]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-d3cf6cca]{margin-right:2.5em}.entity .head .value-container[data-v-d3cf6cca]{min-width:7em}.entity .head .unit[data-v-d3cf6cca]{margin-left:.2em}.entity .head .pull-right[data-v-d3cf6cca],.entity .head .value-container[data-v-d3cf6cca]{padding-right:.5em}.entity .head .pull-right[data-v-d3cf6cca] .power-switch,.entity .head .value-container[data-v-d3cf6cca] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-d3cf6cca]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-d3cf6cca]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-d3cf6cca]:hover{color:#35b870}.collapse-toggler[data-v-d3cf6cca]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-d3cf6cca]:hover{color:#35b870}.attributes .child[data-v-d3cf6cca]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-d3cf6cca]{flex-direction:column}}.attributes .child[data-v-d3cf6cca]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-d3cf6cca]:hover{cursor:auto}.attributes .child.head[data-v-d3cf6cca]{cursor:pointer}.attributes .child.head[data-v-d3cf6cca]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-d3cf6cca]{font-weight:700}.attributes .child .value[data-v-d3cf6cca]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-d3cf6cca]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-d3cf6cca]:last-child,.entity-container-wrapper.with-children[data-v-d3cf6cca]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-d3cf6cca]{animation:blink-animation-d3cf6cca 1s steps(20,start)}@keyframes blink-animation-d3cf6cca{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2582.0d7f9f2c.css b/platypush/backend/http/webapp/dist/static/css/2582.0d7f9f2c.css deleted file mode 100644 index 33c42be528..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/2582.0d7f9f2c.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-772c7a5b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-772c7a5b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-772c7a5b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-772c7a5b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-772c7a5b]:first-child{margin-left:26%!important}.col-offset-3[data-v-772c7a5b]:not(first-child){margin-left:30%!important}.col-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-772c7a5b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-772c7a5b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-772c7a5b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-772c7a5b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-772c7a5b]:first-child{margin-left:52%!important}.col-offset-6[data-v-772c7a5b]:not(first-child){margin-left:56%!important}.col-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-772c7a5b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-772c7a5b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-772c7a5b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-772c7a5b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-772c7a5b]:first-child{margin-left:78%!important}.col-offset-9[data-v-772c7a5b]:not(first-child){margin-left:82%!important}.col-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-772c7a5b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-772c7a5b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-772c7a5b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-772c7a5b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-s-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-s-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-s-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-s-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-772c7a5b]{display:none!important}.s-visible[data-v-772c7a5b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-m-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-m-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-m-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-m-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-772c7a5b]{display:none!important}.m-visible[data-v-772c7a5b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-l-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-l-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-l-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-l-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-772c7a5b]{display:none!important}.l-visible[data-v-772c7a5b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-xl-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-xl-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-xl-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xl-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-772c7a5b]{display:none!important}.xl-visible[data-v-772c7a5b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-772c7a5b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-772c7a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-772c7a5b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-772c7a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-772c7a5b]{margin-left:26%}.col-no-margin-xxl-3[data-v-772c7a5b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-772c7a5b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-772c7a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-772c7a5b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-772c7a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-772c7a5b]{margin-left:52%}.col-no-margin-xxl-6[data-v-772c7a5b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-772c7a5b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-772c7a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-772c7a5b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-772c7a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-772c7a5b]{margin-left:78%}.col-no-margin-xxl-9[data-v-772c7a5b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-772c7a5b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-772c7a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-772c7a5b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-772c7a5b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-772c7a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-772c7a5b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-772c7a5b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-772c7a5b]{display:none!important}.xxl-visible[data-v-772c7a5b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-772c7a5b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-772c7a5b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-772c7a5b]{display:none!important}}.vertical-center[data-v-772c7a5b]{display:flex;align-items:center}.horizontal-center[data-v-772c7a5b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-772c7a5b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-772c7a5b]{display:none!important}.no-content[data-v-772c7a5b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-772c7a5b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-772c7a5b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-772c7a5b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-772c7a5b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-772c7a5b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-772c7a5b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-772c7a5b],.btn[data-v-772c7a5b],button[data-v-772c7a5b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-772c7a5b],.btn-default[type=submit][data-v-772c7a5b],.btn.btn-primary[data-v-772c7a5b],.btn[type=submit][data-v-772c7a5b],button.btn-primary[data-v-772c7a5b],button[type=submit][data-v-772c7a5b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-772c7a5b],.btn-default .icon[data-v-772c7a5b],button .icon[data-v-772c7a5b]{margin-right:.5em}input[type=password][data-v-772c7a5b],input[type=text][data-v-772c7a5b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-772c7a5b]:focus,input[type=text][data-v-772c7a5b]:focus{border:1px solid #35b870}button[data-v-772c7a5b],input[data-v-772c7a5b]{outline:none}input[type=text][data-v-772c7a5b]:hover,textarea[data-v-772c7a5b]:hover{border:1px solid #9cdfb0}ul[data-v-772c7a5b]{margin:0;padding:0;list-style:none}a[data-v-772c7a5b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-772c7a5b]:hover{color:#35b870}[data-v-772c7a5b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-772c7a5b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-772c7a5b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-772c7a5b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-772c7a5b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-772c7a5b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-772c7a5b] .nav .path{cursor:pointer}.browser[data-v-772c7a5b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-772c7a5b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-772c7a5b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-772c7a5b],input[type=number][data-v-772c7a5b],input[type=password][data-v-772c7a5b],input[type=search][data-v-772c7a5b],input[type=text][data-v-772c7a5b],input[type=time][data-v-772c7a5b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-772c7a5b]:hover,input[type=number][data-v-772c7a5b]:hover,input[type=password][data-v-772c7a5b]:hover,input[type=search][data-v-772c7a5b]:hover,input[type=text][data-v-772c7a5b]:hover,input[type=time][data-v-772c7a5b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-772c7a5b]:focus,input[type=number][data-v-772c7a5b]:focus,input[type=password][data-v-772c7a5b]:focus,input[type=search][data-v-772c7a5b]:focus,input[type=text][data-v-772c7a5b]:focus,input[type=time][data-v-772c7a5b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-772c7a5b],input[type=number].with-icon[data-v-772c7a5b],input[type=password].with-icon[data-v-772c7a5b],input[type=search].with-icon[data-v-772c7a5b],input[type=text].with-icon[data-v-772c7a5b],input[type=time].with-icon[data-v-772c7a5b]{padding-left:.3em}input[type=search][data-v-772c7a5b],input[type=text][data-v-772c7a5b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-772c7a5b]{animation-fill-mode:both;animation-name:fadeIn-772c7a5b;-webkit-animation-name:fadeIn-772c7a5b}.fade-in[data-v-772c7a5b],.fade-out[data-v-772c7a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-772c7a5b]{animation-fill-mode:both;animation-name:fadeOut-772c7a5b;-webkit-animation-name:fadeOut-772c7a5b}@keyframes fadeIn-772c7a5b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-772c7a5b{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-772c7a5b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-772c7a5b;-webkit-animation-name:glow-772c7a5b}.loop[data-v-772c7a5b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-772c7a5b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-772c7a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-772c7a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-772c7a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.extra-controls-container[data-v-772c7a5b]{display:flex;align-items:center;justify-content:center;opacity:.7}.extra-controls-container button[data-v-772c7a5b]{margin:0 .25em;padding:0;background:none;border:0}.extra-controls-container button.enabled[data-v-772c7a5b]{color:#32b646}.extra-controls-container button[data-v-772c7a5b]:not(:disabled):hover{color:#35b870;opacity:1}.col-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a742ddb0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a742ddb0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a742ddb0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a742ddb0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a742ddb0]:first-child{margin-left:26%!important}.col-offset-3[data-v-a742ddb0]:not(first-child){margin-left:30%!important}.col-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a742ddb0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a742ddb0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a742ddb0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a742ddb0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a742ddb0]:first-child{margin-left:52%!important}.col-offset-6[data-v-a742ddb0]:not(first-child){margin-left:56%!important}.col-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a742ddb0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a742ddb0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a742ddb0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a742ddb0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a742ddb0]:first-child{margin-left:78%!important}.col-offset-9[data-v-a742ddb0]:not(first-child){margin-left:82%!important}.col-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a742ddb0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a742ddb0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a742ddb0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a742ddb0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-s-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-s-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-s-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-s-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a742ddb0]{display:none!important}.s-visible[data-v-a742ddb0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-m-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-m-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-m-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-m-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a742ddb0]{display:none!important}.m-visible[data-v-a742ddb0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-l-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-l-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-l-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-l-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a742ddb0]{display:none!important}.l-visible[data-v-a742ddb0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-xl-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-xl-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-xl-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xl-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a742ddb0]{display:none!important}.xl-visible[data-v-a742ddb0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a742ddb0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a742ddb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a742ddb0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a742ddb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a742ddb0]{margin-left:26%}.col-no-margin-xxl-3[data-v-a742ddb0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a742ddb0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a742ddb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a742ddb0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a742ddb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a742ddb0]{margin-left:52%}.col-no-margin-xxl-6[data-v-a742ddb0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a742ddb0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a742ddb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a742ddb0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a742ddb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a742ddb0]{margin-left:78%}.col-no-margin-xxl-9[data-v-a742ddb0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a742ddb0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a742ddb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a742ddb0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a742ddb0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a742ddb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a742ddb0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a742ddb0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a742ddb0]{display:none!important}.xxl-visible[data-v-a742ddb0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-a742ddb0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-a742ddb0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a742ddb0]{display:none!important}}.vertical-center[data-v-a742ddb0]{display:flex;align-items:center}.horizontal-center[data-v-a742ddb0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a742ddb0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a742ddb0]{display:none!important}.no-content[data-v-a742ddb0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-a742ddb0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-a742ddb0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-a742ddb0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-a742ddb0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-a742ddb0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-a742ddb0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-a742ddb0],.btn[data-v-a742ddb0],button[data-v-a742ddb0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a742ddb0],.btn-default[type=submit][data-v-a742ddb0],.btn.btn-primary[data-v-a742ddb0],.btn[type=submit][data-v-a742ddb0],button.btn-primary[data-v-a742ddb0],button[type=submit][data-v-a742ddb0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a742ddb0],.btn-default .icon[data-v-a742ddb0],button .icon[data-v-a742ddb0]{margin-right:.5em}input[type=password][data-v-a742ddb0],input[type=text][data-v-a742ddb0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a742ddb0]:focus,input[type=text][data-v-a742ddb0]:focus{border:1px solid #35b870}button[data-v-a742ddb0],input[data-v-a742ddb0]{outline:none}input[type=text][data-v-a742ddb0]:hover,textarea[data-v-a742ddb0]:hover{border:1px solid #9cdfb0}ul[data-v-a742ddb0]{margin:0;padding:0;list-style:none}a[data-v-a742ddb0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a742ddb0]:hover{color:#35b870}[data-v-a742ddb0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-a742ddb0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-a742ddb0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a742ddb0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a742ddb0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-a742ddb0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-a742ddb0] .nav .path{cursor:pointer}.browser[data-v-a742ddb0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-a742ddb0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-a742ddb0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-a742ddb0],input[type=number][data-v-a742ddb0],input[type=password][data-v-a742ddb0],input[type=search][data-v-a742ddb0],input[type=text][data-v-a742ddb0],input[type=time][data-v-a742ddb0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-a742ddb0]:hover,input[type=number][data-v-a742ddb0]:hover,input[type=password][data-v-a742ddb0]:hover,input[type=search][data-v-a742ddb0]:hover,input[type=text][data-v-a742ddb0]:hover,input[type=time][data-v-a742ddb0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-a742ddb0]:focus,input[type=number][data-v-a742ddb0]:focus,input[type=password][data-v-a742ddb0]:focus,input[type=search][data-v-a742ddb0]:focus,input[type=text][data-v-a742ddb0]:focus,input[type=time][data-v-a742ddb0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-a742ddb0],input[type=number].with-icon[data-v-a742ddb0],input[type=password].with-icon[data-v-a742ddb0],input[type=search].with-icon[data-v-a742ddb0],input[type=text].with-icon[data-v-a742ddb0],input[type=time].with-icon[data-v-a742ddb0]{padding-left:.3em}input[type=search][data-v-a742ddb0],input[type=text][data-v-a742ddb0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a742ddb0]{animation-fill-mode:both;animation-name:fadeIn-a742ddb0;-webkit-animation-name:fadeIn-a742ddb0}.fade-in[data-v-a742ddb0],.fade-out[data-v-a742ddb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a742ddb0]{animation-fill-mode:both;animation-name:fadeOut-a742ddb0;-webkit-animation-name:fadeOut-a742ddb0}@keyframes fadeIn-a742ddb0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a742ddb0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-a742ddb0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-a742ddb0;-webkit-animation-name:glow-a742ddb0}.loop[data-v-a742ddb0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-a742ddb0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-a742ddb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a742ddb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a742ddb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}button[data-v-a742ddb0]{font-size:1.75em;background:transparent;color:#27ee5e;padding:0!important;border:none}button[data-v-a742ddb0]:hover{color:#5cfd88}.col-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-662f988f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-662f988f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-662f988f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-662f988f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-662f988f]:first-child{margin-left:26%!important}.col-offset-3[data-v-662f988f]:not(first-child){margin-left:30%!important}.col-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-662f988f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-662f988f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-662f988f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-662f988f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-662f988f]:first-child{margin-left:52%!important}.col-offset-6[data-v-662f988f]:not(first-child){margin-left:56%!important}.col-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-662f988f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-662f988f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-662f988f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-662f988f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-662f988f]:first-child{margin-left:78%!important}.col-offset-9[data-v-662f988f]:not(first-child){margin-left:82%!important}.col-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-662f988f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-662f988f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-662f988f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-662f988f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-3[data-v-662f988f]{margin-left:26%}.col-no-margin-s-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-6[data-v-662f988f]{margin-left:52%}.col-no-margin-s-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-9[data-v-662f988f]{margin-left:78%}.col-no-margin-s-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-s-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-662f988f]{display:none!important}.s-visible[data-v-662f988f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-3[data-v-662f988f]{margin-left:26%}.col-no-margin-m-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-6[data-v-662f988f]{margin-left:52%}.col-no-margin-m-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-9[data-v-662f988f]{margin-left:78%}.col-no-margin-m-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-m-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-662f988f]{display:none!important}.m-visible[data-v-662f988f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-3[data-v-662f988f]{margin-left:26%}.col-no-margin-l-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-6[data-v-662f988f]{margin-left:52%}.col-no-margin-l-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-9[data-v-662f988f]{margin-left:78%}.col-no-margin-l-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-l-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-662f988f]{display:none!important}.l-visible[data-v-662f988f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-3[data-v-662f988f]{margin-left:26%}.col-no-margin-xl-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-6[data-v-662f988f]{margin-left:52%}.col-no-margin-xl-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-9[data-v-662f988f]{margin-left:78%}.col-no-margin-xl-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-xl-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-662f988f]{display:none!important}.xl-visible[data-v-662f988f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-662f988f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-662f988f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-662f988f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-662f988f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-662f988f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-662f988f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-662f988f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-662f988f]{margin-left:26%}.col-no-margin-xxl-3[data-v-662f988f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-662f988f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-662f988f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-662f988f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-662f988f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-662f988f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-662f988f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-662f988f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-662f988f]{margin-left:52%}.col-no-margin-xxl-6[data-v-662f988f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-662f988f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-662f988f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-662f988f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-662f988f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-662f988f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-662f988f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-662f988f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-662f988f]{margin-left:78%}.col-no-margin-xxl-9[data-v-662f988f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-662f988f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-662f988f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-662f988f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-662f988f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-662f988f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-662f988f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-662f988f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-662f988f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-662f988f]{display:none!important}.xxl-visible[data-v-662f988f]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-662f988f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-662f988f]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-662f988f]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-662f988f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-662f988f]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-662f988f]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-662f988f]{display:none!important}}.vertical-center[data-v-662f988f]{display:flex;align-items:center}.horizontal-center[data-v-662f988f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-662f988f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-662f988f]{display:none!important}.no-content[data-v-662f988f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-662f988f]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-662f988f]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-662f988f]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-662f988f]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-662f988f]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-662f988f]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-662f988f],.btn[data-v-662f988f],button[data-v-662f988f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-662f988f],.btn-default[type=submit][data-v-662f988f],.btn.btn-primary[data-v-662f988f],.btn[type=submit][data-v-662f988f],button.btn-primary[data-v-662f988f],button[type=submit][data-v-662f988f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-662f988f],.btn-default .icon[data-v-662f988f],button .icon[data-v-662f988f]{margin-right:.5em}input[type=password][data-v-662f988f],input[type=text][data-v-662f988f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-662f988f]:focus,input[type=text][data-v-662f988f]:focus{border:1px solid #35b870}button[data-v-662f988f],input[data-v-662f988f]{outline:none}input[type=text][data-v-662f988f]:hover,textarea[data-v-662f988f]:hover{border:1px solid #9cdfb0}ul[data-v-662f988f]{margin:0;padding:0;list-style:none}a[data-v-662f988f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-662f988f]:hover{color:#35b870}[data-v-662f988f]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-662f988f]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-662f988f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-662f988f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-662f988f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-662f988f] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-662f988f] .nav .path{cursor:pointer}.browser[data-v-662f988f] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-662f988f] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-662f988f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-662f988f],input[type=number][data-v-662f988f],input[type=password][data-v-662f988f],input[type=search][data-v-662f988f],input[type=text][data-v-662f988f],input[type=time][data-v-662f988f]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-662f988f]:hover,input[type=number][data-v-662f988f]:hover,input[type=password][data-v-662f988f]:hover,input[type=search][data-v-662f988f]:hover,input[type=text][data-v-662f988f]:hover,input[type=time][data-v-662f988f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-662f988f]:focus,input[type=number][data-v-662f988f]:focus,input[type=password][data-v-662f988f]:focus,input[type=search][data-v-662f988f]:focus,input[type=text][data-v-662f988f]:focus,input[type=time][data-v-662f988f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-662f988f],input[type=number].with-icon[data-v-662f988f],input[type=password].with-icon[data-v-662f988f],input[type=search].with-icon[data-v-662f988f],input[type=text].with-icon[data-v-662f988f],input[type=time].with-icon[data-v-662f988f]{padding-left:.3em}input[type=search][data-v-662f988f],input[type=text][data-v-662f988f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-662f988f]{animation-fill-mode:both;animation-name:fadeIn-662f988f;-webkit-animation-name:fadeIn-662f988f}.fade-in[data-v-662f988f],.fade-out[data-v-662f988f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-662f988f]{animation-fill-mode:both;animation-name:fadeOut-662f988f;-webkit-animation-name:fadeOut-662f988f}@keyframes fadeIn-662f988f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-662f988f{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-662f988f]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-662f988f;-webkit-animation-name:glow-662f988f}.loop[data-v-662f988f]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-662f988f{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-662f988f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-662f988f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-662f988f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-662f988f]{color:#d21}.volume-slider-container[data-v-662f988f]{min-width:15em;max-width:25em;display:inline-flex;align-items:center;flex:1}.volume-slider-container .volume-slider[data-v-662f988f]{margin:0;padding:0 .5em 0 1em;flex:1}.volume-slider-container button[data-v-662f988f]{margin:0;padding:0;background:transparent;border:none}.volume-slider-container button[data-v-662f988f]:disabled{cursor:default}.volume-slider-container button[data-v-662f988f]:not(:disabled):hover{color:#35b870}.col-1[data-v-1648255d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-1[data-v-1648255d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1648255d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1648255d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1648255d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-2[data-v-1648255d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1648255d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1648255d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1648255d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-3[data-v-1648255d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1648255d]:first-child{margin-left:26%!important}.col-offset-3[data-v-1648255d]:not(first-child){margin-left:30%!important}.col-4[data-v-1648255d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-4[data-v-1648255d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1648255d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1648255d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1648255d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-5[data-v-1648255d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1648255d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1648255d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1648255d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-6[data-v-1648255d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1648255d]:first-child{margin-left:52%!important}.col-offset-6[data-v-1648255d]:not(first-child){margin-left:56%!important}.col-7[data-v-1648255d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-7[data-v-1648255d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1648255d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1648255d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1648255d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-8[data-v-1648255d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1648255d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1648255d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1648255d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-9[data-v-1648255d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1648255d]:first-child{margin-left:78%!important}.col-offset-9[data-v-1648255d]:not(first-child){margin-left:82%!important}.col-10[data-v-1648255d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-10[data-v-1648255d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1648255d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1648255d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1648255d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1648255d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1648255d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-1[data-v-1648255d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1648255d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1648255d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-2[data-v-1648255d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1648255d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1648255d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-3[data-v-1648255d]{margin-left:26%}.col-no-margin-s-3[data-v-1648255d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1648255d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-4[data-v-1648255d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1648255d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1648255d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-5[data-v-1648255d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1648255d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1648255d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-6[data-v-1648255d]{margin-left:52%}.col-no-margin-s-6[data-v-1648255d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1648255d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-7[data-v-1648255d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1648255d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1648255d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-8[data-v-1648255d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1648255d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1648255d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-9[data-v-1648255d]{margin-left:78%}.col-no-margin-s-9[data-v-1648255d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1648255d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-10[data-v-1648255d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1648255d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1648255d]:first-child{margin-left:0}.col-offset-s-11[data-v-1648255d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1648255d]{display:none!important}.s-visible[data-v-1648255d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1648255d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-1[data-v-1648255d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1648255d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1648255d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-2[data-v-1648255d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1648255d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1648255d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-3[data-v-1648255d]{margin-left:26%}.col-no-margin-m-3[data-v-1648255d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1648255d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-4[data-v-1648255d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1648255d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1648255d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-5[data-v-1648255d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1648255d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1648255d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-6[data-v-1648255d]{margin-left:52%}.col-no-margin-m-6[data-v-1648255d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1648255d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-7[data-v-1648255d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1648255d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1648255d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-8[data-v-1648255d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1648255d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1648255d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-9[data-v-1648255d]{margin-left:78%}.col-no-margin-m-9[data-v-1648255d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1648255d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-10[data-v-1648255d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1648255d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1648255d]:first-child{margin-left:0}.col-offset-m-11[data-v-1648255d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1648255d]{display:none!important}.m-visible[data-v-1648255d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1648255d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-1[data-v-1648255d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1648255d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1648255d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-2[data-v-1648255d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1648255d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1648255d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-3[data-v-1648255d]{margin-left:26%}.col-no-margin-l-3[data-v-1648255d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1648255d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-4[data-v-1648255d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1648255d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1648255d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-5[data-v-1648255d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1648255d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1648255d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-6[data-v-1648255d]{margin-left:52%}.col-no-margin-l-6[data-v-1648255d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1648255d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-7[data-v-1648255d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1648255d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1648255d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-8[data-v-1648255d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1648255d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1648255d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-9[data-v-1648255d]{margin-left:78%}.col-no-margin-l-9[data-v-1648255d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1648255d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-10[data-v-1648255d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1648255d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1648255d]:first-child{margin-left:0}.col-offset-l-11[data-v-1648255d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1648255d]{display:none!important}.l-visible[data-v-1648255d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1648255d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-1[data-v-1648255d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1648255d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1648255d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-2[data-v-1648255d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1648255d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1648255d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-3[data-v-1648255d]{margin-left:26%}.col-no-margin-xl-3[data-v-1648255d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1648255d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-4[data-v-1648255d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1648255d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1648255d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-5[data-v-1648255d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1648255d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1648255d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-6[data-v-1648255d]{margin-left:52%}.col-no-margin-xl-6[data-v-1648255d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1648255d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-7[data-v-1648255d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1648255d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1648255d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-8[data-v-1648255d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1648255d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1648255d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-9[data-v-1648255d]{margin-left:78%}.col-no-margin-xl-9[data-v-1648255d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1648255d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-10[data-v-1648255d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1648255d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1648255d]:first-child{margin-left:0}.col-offset-xl-11[data-v-1648255d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1648255d]{display:none!important}.xl-visible[data-v-1648255d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1648255d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1648255d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1648255d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1648255d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1648255d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1648255d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1648255d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1648255d]{margin-left:26%}.col-no-margin-xxl-3[data-v-1648255d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1648255d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1648255d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1648255d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1648255d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1648255d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1648255d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1648255d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1648255d]{margin-left:52%}.col-no-margin-xxl-6[data-v-1648255d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1648255d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1648255d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1648255d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1648255d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1648255d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1648255d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1648255d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1648255d]{margin-left:78%}.col-no-margin-xxl-9[data-v-1648255d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1648255d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1648255d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1648255d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1648255d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1648255d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1648255d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1648255d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1648255d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1648255d]{display:none!important}.xxl-visible[data-v-1648255d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1648255d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1648255d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1648255d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1648255d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1648255d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1648255d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1648255d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1648255d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1648255d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1648255d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1648255d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1648255d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1648255d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1648255d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1648255d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1648255d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1648255d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1648255d]{display:none!important}}.vertical-center[data-v-1648255d]{display:flex;align-items:center}.horizontal-center[data-v-1648255d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.controls .right-controls[data-v-1648255d],.controls .right-controls[data-v-1648255d] .extra-controls-container,.extension[data-v-1648255d] .extra-controls-container,.pull-right[data-v-1648255d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1648255d]{display:none!important}.no-content[data-v-1648255d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1648255d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1648255d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1648255d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1648255d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1648255d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1648255d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1648255d],.btn[data-v-1648255d],button[data-v-1648255d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1648255d],.btn-default[type=submit][data-v-1648255d],.btn.btn-primary[data-v-1648255d],.btn[type=submit][data-v-1648255d],button.btn-primary[data-v-1648255d],button[type=submit][data-v-1648255d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1648255d],.btn-default .icon[data-v-1648255d],button .icon[data-v-1648255d]{margin-right:.5em}input[type=password][data-v-1648255d],input[type=text][data-v-1648255d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1648255d]:focus,input[type=text][data-v-1648255d]:focus{border:1px solid #35b870}button[data-v-1648255d],input[data-v-1648255d]{outline:none}input[type=text][data-v-1648255d]:hover,textarea[data-v-1648255d]:hover{border:1px solid #9cdfb0}ul[data-v-1648255d]{margin:0;padding:0;list-style:none}a[data-v-1648255d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1648255d]:hover{color:#35b870}[data-v-1648255d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1648255d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1648255d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1648255d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1648255d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1648255d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1648255d] .nav .path{cursor:pointer}.browser[data-v-1648255d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1648255d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1648255d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1648255d],input[type=number][data-v-1648255d],input[type=password][data-v-1648255d],input[type=search][data-v-1648255d],input[type=text][data-v-1648255d],input[type=time][data-v-1648255d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1648255d]:hover,input[type=number][data-v-1648255d]:hover,input[type=password][data-v-1648255d]:hover,input[type=search][data-v-1648255d]:hover,input[type=text][data-v-1648255d]:hover,input[type=time][data-v-1648255d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1648255d]:focus,input[type=number][data-v-1648255d]:focus,input[type=password][data-v-1648255d]:focus,input[type=search][data-v-1648255d]:focus,input[type=text][data-v-1648255d]:focus,input[type=time][data-v-1648255d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1648255d],input[type=number].with-icon[data-v-1648255d],input[type=password].with-icon[data-v-1648255d],input[type=search].with-icon[data-v-1648255d],input[type=text].with-icon[data-v-1648255d],input[type=time].with-icon[data-v-1648255d]{padding-left:.3em}input[type=search][data-v-1648255d],input[type=text][data-v-1648255d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1648255d]{animation-fill-mode:both;animation-name:fadeIn-1648255d;-webkit-animation-name:fadeIn-1648255d}.fade-in[data-v-1648255d],.fade-out[data-v-1648255d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1648255d]{animation-fill-mode:both;animation-name:fadeOut-1648255d;-webkit-animation-name:fadeOut-1648255d}@keyframes fadeIn-1648255d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1648255d{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1648255d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1648255d;-webkit-animation-name:glow-1648255d}.loop[data-v-1648255d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1648255d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1648255d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1648255d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1648255d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-1648255d]{color:#d21}button[data-v-1648255d]{border:0;background:none}button[data-v-1648255d]:hover{border:0}button:hover .icon[data-v-1648255d]{color:#35b870}button.enabled[data-v-1648255d]{color:#32b646}.extension[data-v-1648255d]{background:radial-gradient(#fff,hsla(69,25%,85%,.627));box-shadow:inset 0 0 1px 2px #c7c8c8;border-radius:1em 1em 0 0;flex-direction:column;display:none;overflow:hidden;padding:.5em}@media screen and (max-width:calc(1024px - 1px)){.extension[data-v-1648255d]{display:flex}}.extension[data-v-1648255d] .extra-controls-container{flex:1}.extension[data-v-1648255d] .progress-bar-container{font-size:1.25em}.extension[data-v-1648255d] .volume-slider-container{margin:1em 0}.extension .row[data-v-1648255d]{display:flex}.extension .buttons-container[data-v-1648255d]{width:calc(100% + 1em);margin-left:-.5em;font-size:2em;justify-content:center;box-shadow:0 3px 2px -1px silver}.extension .buttons-container button[data-v-1648255d]{text-align:center}.extension .buttons-container button[data-v-1648255d]:hover{color:#35b870}.extension .buttons-container button i[data-v-1648255d]{margin:auto}.extension .buttons[data-v-1648255d]{display:flex;justify-content:center;margin:0}.extension .image-container[data-v-1648255d]{width:100%;display:flex;justify-content:center;cursor:pointer}.extension .image-container .remote-image-container[data-v-1648255d]{height:30vh}.extension .image-container .remote-image-container .image[data-v-1648255d]{height:100%}.extension .image-container .icon-container[data-v-1648255d]{padding:.05em;display:flex;align-items:center;justify-content:center;font-size:15em;opacity:.5;border:1px solid #ddd;box-shadow:0 3px 2px -1px silver}.extension .image-container .icon-container[data-v-1648255d]:hover{color:#35b870;opacity:1}.extension .image-container .icon.playing[data-v-1648255d]{animation-duration:3s;animation-name:rotate-1648255d;animation-iteration-count:infinite}@keyframes rotate-1648255d{0%{transform:rotate(0deg);opacity:1}50%{opacity:.5}to{transform:rotate(359deg);opacity:1}}.controls[data-v-1648255d]{width:100%;height:5.5em;display:flex;padding:1em .5em;overflow:hidden;align-items:center}.controls .row[data-v-1648255d]{width:100%;display:flex}.controls .track-container[data-v-1648255d]{height:100%;display:flex;align-items:center;margin-left:0}@media screen and (max-width:calc(1024px - 1px)){.controls .track-container[data-v-1648255d]{flex-direction:column;text-align:center}}.controls .track-container a[data-v-1648255d]{color:initial;text-decoration:none}.controls .track-container a[data-v-1648255d]:hover{color:#35b870}.controls .track-container .artist[data-v-1648255d],.controls .track-container .title[data-v-1648255d]{overflow:hidden;text-overflow:ellipsis}.controls .track-container .artist[data-v-1648255d]{opacity:.6;letter-spacing:.04em}.controls .track-container .title[data-v-1648255d]{font-weight:400;font-size:1em;letter-spacing:.05em;margin-bottom:.25em}.controls .track-container .image[data-v-1648255d]{width:5em;max-height:100%;display:inline-flex}.controls .track-info[data-v-1648255d]{height:100%;display:flex}@media screen and (max-width:calc(1024px - 1px)){.controls .track-info[data-v-1648255d]{flex-direction:column}}@media screen and (min-width:1024px){.controls .track-info[data-v-1648255d]{flex-direction:row;align-items:center}.controls .track-info .image[data-v-1648255d]{margin-right:.75em}}.controls .playback-controls .row[data-v-1648255d]{justify-content:center}.controls .playback-controls .buttons[data-v-1648255d]{margin-bottom:.5em;align-items:center}.controls .playback-controls button[data-v-1648255d]{padding:.5em;margin:0 .75em}.controls .playback-controls button .play-pause[data-v-1648255d]{color:#27ee5e;font-size:1.75em}.controls .playback-controls button .play-pause[data-v-1648255d]:hover{color:#38cf80}.controls .right-controls[data-v-1648255d]{display:flex;flex-direction:column;flex:1;align-items:flex-end}.controls .right-controls button[data-v-1648255d]{padding:.5em}.controls .seek-slider[data-v-1648255d]{width:75%}.col-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e32f5b62]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e32f5b62]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e32f5b62]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e32f5b62]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e32f5b62]:first-child{margin-left:26%!important}.col-offset-3[data-v-e32f5b62]:not(first-child){margin-left:30%!important}.col-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e32f5b62]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e32f5b62]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e32f5b62]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e32f5b62]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e32f5b62]:first-child{margin-left:52%!important}.col-offset-6[data-v-e32f5b62]:not(first-child){margin-left:56%!important}.col-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e32f5b62]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e32f5b62]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e32f5b62]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e32f5b62]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e32f5b62]:first-child{margin-left:78%!important}.col-offset-9[data-v-e32f5b62]:not(first-child){margin-left:82%!important}.col-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e32f5b62]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e32f5b62]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e32f5b62]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e32f5b62]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-1[data-v-e32f5b62]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-2[data-v-e32f5b62]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-3[data-v-e32f5b62]{margin-left:26%}.col-no-margin-s-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-4[data-v-e32f5b62]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-5[data-v-e32f5b62]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-6[data-v-e32f5b62]{margin-left:52%}.col-no-margin-s-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-7[data-v-e32f5b62]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-8[data-v-e32f5b62]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-9[data-v-e32f5b62]{margin-left:78%}.col-no-margin-s-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-10[data-v-e32f5b62]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-s-11[data-v-e32f5b62]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e32f5b62]{display:none!important}.s-visible[data-v-e32f5b62]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-1[data-v-e32f5b62]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-2[data-v-e32f5b62]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-3[data-v-e32f5b62]{margin-left:26%}.col-no-margin-m-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-4[data-v-e32f5b62]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-5[data-v-e32f5b62]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-6[data-v-e32f5b62]{margin-left:52%}.col-no-margin-m-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-7[data-v-e32f5b62]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-8[data-v-e32f5b62]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-9[data-v-e32f5b62]{margin-left:78%}.col-no-margin-m-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-10[data-v-e32f5b62]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-m-11[data-v-e32f5b62]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e32f5b62]{display:none!important}.m-visible[data-v-e32f5b62]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-1[data-v-e32f5b62]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-2[data-v-e32f5b62]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-3[data-v-e32f5b62]{margin-left:26%}.col-no-margin-l-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-4[data-v-e32f5b62]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-5[data-v-e32f5b62]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-6[data-v-e32f5b62]{margin-left:52%}.col-no-margin-l-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-7[data-v-e32f5b62]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-8[data-v-e32f5b62]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-9[data-v-e32f5b62]{margin-left:78%}.col-no-margin-l-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-10[data-v-e32f5b62]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-l-11[data-v-e32f5b62]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e32f5b62]{display:none!important}.l-visible[data-v-e32f5b62]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-1[data-v-e32f5b62]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-2[data-v-e32f5b62]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-3[data-v-e32f5b62]{margin-left:26%}.col-no-margin-xl-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-4[data-v-e32f5b62]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-5[data-v-e32f5b62]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-6[data-v-e32f5b62]{margin-left:52%}.col-no-margin-xl-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-7[data-v-e32f5b62]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-8[data-v-e32f5b62]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-9[data-v-e32f5b62]{margin-left:78%}.col-no-margin-xl-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-10[data-v-e32f5b62]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xl-11[data-v-e32f5b62]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e32f5b62]{display:none!important}.xl-visible[data-v-e32f5b62]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e32f5b62]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e32f5b62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e32f5b62]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e32f5b62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e32f5b62]{margin-left:26%}.col-no-margin-xxl-3[data-v-e32f5b62]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e32f5b62]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e32f5b62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e32f5b62]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e32f5b62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e32f5b62]{margin-left:52%}.col-no-margin-xxl-6[data-v-e32f5b62]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e32f5b62]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e32f5b62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e32f5b62]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e32f5b62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e32f5b62]{margin-left:78%}.col-no-margin-xxl-9[data-v-e32f5b62]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e32f5b62]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e32f5b62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e32f5b62]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e32f5b62]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e32f5b62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e32f5b62]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e32f5b62]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e32f5b62]{display:none!important}.xxl-visible[data-v-e32f5b62]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e32f5b62]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e32f5b62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e32f5b62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e32f5b62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e32f5b62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e32f5b62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e32f5b62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e32f5b62]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e32f5b62]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e32f5b62]{display:none!important}}.vertical-center[data-v-e32f5b62]{display:flex;align-items:center}.horizontal-center[data-v-e32f5b62]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e32f5b62]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e32f5b62]{display:none!important}.no-content[data-v-e32f5b62]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e32f5b62]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e32f5b62]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e32f5b62]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e32f5b62]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e32f5b62]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e32f5b62]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e32f5b62],.btn[data-v-e32f5b62],button[data-v-e32f5b62]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e32f5b62],.btn-default[type=submit][data-v-e32f5b62],.btn.btn-primary[data-v-e32f5b62],.btn[type=submit][data-v-e32f5b62],button.btn-primary[data-v-e32f5b62],button[type=submit][data-v-e32f5b62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-e32f5b62],.btn-default .icon[data-v-e32f5b62],button .icon[data-v-e32f5b62]{margin-right:.5em}input[type=password][data-v-e32f5b62],input[type=text][data-v-e32f5b62]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e32f5b62]:focus,input[type=text][data-v-e32f5b62]:focus{border:1px solid #35b870}button[data-v-e32f5b62],input[data-v-e32f5b62]{outline:none}input[type=text][data-v-e32f5b62]:hover,textarea[data-v-e32f5b62]:hover{border:1px solid #9cdfb0}ul[data-v-e32f5b62]{margin:0;padding:0;list-style:none}a[data-v-e32f5b62]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e32f5b62]:hover{color:#35b870}[data-v-e32f5b62]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e32f5b62]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e32f5b62]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e32f5b62]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-e32f5b62]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e32f5b62] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e32f5b62] .nav .path{cursor:pointer}.browser[data-v-e32f5b62] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e32f5b62] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-e32f5b62]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e32f5b62],input[type=number][data-v-e32f5b62],input[type=password][data-v-e32f5b62],input[type=search][data-v-e32f5b62],input[type=text][data-v-e32f5b62],input[type=time][data-v-e32f5b62]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-e32f5b62]:hover,input[type=number][data-v-e32f5b62]:hover,input[type=password][data-v-e32f5b62]:hover,input[type=search][data-v-e32f5b62]:hover,input[type=text][data-v-e32f5b62]:hover,input[type=time][data-v-e32f5b62]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e32f5b62]:focus,input[type=number][data-v-e32f5b62]:focus,input[type=password][data-v-e32f5b62]:focus,input[type=search][data-v-e32f5b62]:focus,input[type=text][data-v-e32f5b62]:focus,input[type=time][data-v-e32f5b62]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e32f5b62],input[type=number].with-icon[data-v-e32f5b62],input[type=password].with-icon[data-v-e32f5b62],input[type=search].with-icon[data-v-e32f5b62],input[type=text].with-icon[data-v-e32f5b62],input[type=time].with-icon[data-v-e32f5b62]{padding-left:.3em}input[type=search][data-v-e32f5b62],input[type=text][data-v-e32f5b62]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e32f5b62]{animation-fill-mode:both;animation-name:fadeIn-e32f5b62;-webkit-animation-name:fadeIn-e32f5b62}.fade-in[data-v-e32f5b62],.fade-out[data-v-e32f5b62]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e32f5b62]{animation-fill-mode:both;animation-name:fadeOut-e32f5b62;-webkit-animation-name:fadeOut-e32f5b62}@keyframes fadeIn-e32f5b62{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e32f5b62{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-e32f5b62]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-e32f5b62;-webkit-animation-name:glow-e32f5b62}.loop[data-v-e32f5b62]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-e32f5b62{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-e32f5b62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e32f5b62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e32f5b62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-e32f5b62]{color:#d21}.media-container[data-v-e32f5b62]{width:100%;height:100%;display:flex;flex-direction:column;position:relative}.media-container .view-container[data-v-e32f5b62]{height:100%}.media-container .controls-container[data-v-e32f5b62]{width:100%;position:absolute;bottom:0;border-top:1px solid #ddd;background:#f8f8f8;box-shadow:0 -2.5px 4px 0 silver} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2694.515bb415.css b/platypush/backend/http/webapp/dist/static/css/2694.515bb415.css new file mode 100644 index 0000000000..ab5ed1d3c8 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2694.515bb415.css @@ -0,0 +1 @@ +.col-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-643b9f62]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-643b9f62]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-643b9f62]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-643b9f62]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-643b9f62]:first-child{margin-left:26%!important}.col-offset-3[data-v-643b9f62]:not(first-child){margin-left:30%!important}.col-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-643b9f62]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-643b9f62]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-643b9f62]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-643b9f62]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-643b9f62]:first-child{margin-left:52%!important}.col-offset-6[data-v-643b9f62]:not(first-child){margin-left:56%!important}.col-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-643b9f62]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-643b9f62]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-643b9f62]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-643b9f62]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-643b9f62]:first-child{margin-left:78%!important}.col-offset-9[data-v-643b9f62]:not(first-child){margin-left:82%!important}.col-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-643b9f62]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-643b9f62]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-643b9f62]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-643b9f62]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-1[data-v-643b9f62]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-2[data-v-643b9f62]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-3[data-v-643b9f62]{margin-left:26%}.col-no-margin-s-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-4[data-v-643b9f62]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-5[data-v-643b9f62]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-6[data-v-643b9f62]{margin-left:52%}.col-no-margin-s-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-7[data-v-643b9f62]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-8[data-v-643b9f62]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-9[data-v-643b9f62]{margin-left:78%}.col-no-margin-s-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-10[data-v-643b9f62]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-643b9f62]:first-child{margin-left:0}.col-offset-s-11[data-v-643b9f62]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-s-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-643b9f62]{display:none!important}.s-visible[data-v-643b9f62]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-1[data-v-643b9f62]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-2[data-v-643b9f62]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-3[data-v-643b9f62]{margin-left:26%}.col-no-margin-m-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-4[data-v-643b9f62]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-5[data-v-643b9f62]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-6[data-v-643b9f62]{margin-left:52%}.col-no-margin-m-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-7[data-v-643b9f62]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-8[data-v-643b9f62]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-9[data-v-643b9f62]{margin-left:78%}.col-no-margin-m-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-10[data-v-643b9f62]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-643b9f62]:first-child{margin-left:0}.col-offset-m-11[data-v-643b9f62]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-m-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-643b9f62]{display:none!important}.m-visible[data-v-643b9f62]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-1[data-v-643b9f62]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-2[data-v-643b9f62]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-3[data-v-643b9f62]{margin-left:26%}.col-no-margin-l-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-4[data-v-643b9f62]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-5[data-v-643b9f62]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-6[data-v-643b9f62]{margin-left:52%}.col-no-margin-l-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-7[data-v-643b9f62]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-8[data-v-643b9f62]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-9[data-v-643b9f62]{margin-left:78%}.col-no-margin-l-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-10[data-v-643b9f62]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-643b9f62]:first-child{margin-left:0}.col-offset-l-11[data-v-643b9f62]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-l-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-643b9f62]{display:none!important}.l-visible[data-v-643b9f62]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-1[data-v-643b9f62]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-2[data-v-643b9f62]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-3[data-v-643b9f62]{margin-left:26%}.col-no-margin-xl-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-4[data-v-643b9f62]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-5[data-v-643b9f62]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-6[data-v-643b9f62]{margin-left:52%}.col-no-margin-xl-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-7[data-v-643b9f62]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-8[data-v-643b9f62]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-9[data-v-643b9f62]{margin-left:78%}.col-no-margin-xl-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-10[data-v-643b9f62]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xl-11[data-v-643b9f62]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-643b9f62]{display:none!important}.xl-visible[data-v-643b9f62]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-1[data-v-643b9f62]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-643b9f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-2[data-v-643b9f62]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-643b9f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-3[data-v-643b9f62]{margin-left:26%}.col-no-margin-xxl-3[data-v-643b9f62]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-4[data-v-643b9f62]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-643b9f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-5[data-v-643b9f62]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-643b9f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-6[data-v-643b9f62]{margin-left:52%}.col-no-margin-xxl-6[data-v-643b9f62]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-7[data-v-643b9f62]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-643b9f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-8[data-v-643b9f62]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-643b9f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-9[data-v-643b9f62]{margin-left:78%}.col-no-margin-xxl-9[data-v-643b9f62]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-10[data-v-643b9f62]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-643b9f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-643b9f62]:first-child{margin-left:0}.col-offset-xxl-11[data-v-643b9f62]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-643b9f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-643b9f62]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-643b9f62]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-643b9f62]{display:none!important}.xxl-visible[data-v-643b9f62]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-643b9f62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-643b9f62]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-643b9f62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-643b9f62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-643b9f62]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-643b9f62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-643b9f62]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-643b9f62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-643b9f62]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-643b9f62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-643b9f62]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-643b9f62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-643b9f62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-643b9f62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-643b9f62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-643b9f62]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-643b9f62]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-643b9f62]{display:none!important}}.vertical-center[data-v-643b9f62]{display:flex;align-items:center}.horizontal-center[data-v-643b9f62]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-643b9f62]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-643b9f62]{display:none!important}.no-content[data-v-643b9f62]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-643b9f62]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-643b9f62]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-643b9f62]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-643b9f62]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-643b9f62]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-643b9f62]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-643b9f62],.btn[data-v-643b9f62],button[data-v-643b9f62]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-643b9f62],.btn-default[type=submit][data-v-643b9f62],.btn.btn-primary[data-v-643b9f62],.btn[type=submit][data-v-643b9f62],button.btn-primary[data-v-643b9f62],button[type=submit][data-v-643b9f62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-643b9f62]:hover,.btn[data-v-643b9f62]:hover,button[data-v-643b9f62]:hover{color:#35b870}.btn .icon[data-v-643b9f62],.btn-default .icon[data-v-643b9f62],button .icon[data-v-643b9f62]{margin-right:.5em}.btn-default[data-v-643b9f62]:disabled,.btn-default[disabled][data-v-643b9f62],.btn[data-v-643b9f62]:disabled,.btn[disabled][data-v-643b9f62],button[data-v-643b9f62]:disabled,button[disabled][data-v-643b9f62]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-643b9f62]{cursor:grab!important}.dragged[data-v-643b9f62]{opacity:.5!important}input[type=password][data-v-643b9f62],input[type=text][data-v-643b9f62]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-643b9f62]:focus,input[type=text][data-v-643b9f62]:focus{border:1px solid #35b870}button[data-v-643b9f62],input[data-v-643b9f62]{outline:none}input[type=text][data-v-643b9f62]:hover,textarea[data-v-643b9f62]:hover{border:1px solid #9cdfb0}ul[data-v-643b9f62]{margin:0;padding:0;list-style:none}a[data-v-643b9f62]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-643b9f62]:hover{color:#35b870}[data-v-643b9f62]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-643b9f62]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-643b9f62]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-643b9f62]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-643b9f62]{color:#ad1717}body[data-v-643b9f62]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-643b9f62] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-643b9f62] .nav .path{cursor:pointer}.browser[data-v-643b9f62] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-643b9f62] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-643b9f62]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-643b9f62]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-643b9f62],input[type=number][data-v-643b9f62],input[type=password][data-v-643b9f62],input[type=search][data-v-643b9f62],input[type=text][data-v-643b9f62],input[type=time][data-v-643b9f62]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-643b9f62]:hover,input[type=number][data-v-643b9f62]:hover,input[type=password][data-v-643b9f62]:hover,input[type=search][data-v-643b9f62]:hover,input[type=text][data-v-643b9f62]:hover,input[type=time][data-v-643b9f62]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-643b9f62]:focus,input[type=number][data-v-643b9f62]:focus,input[type=password][data-v-643b9f62]:focus,input[type=search][data-v-643b9f62]:focus,input[type=text][data-v-643b9f62]:focus,input[type=time][data-v-643b9f62]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-643b9f62],input[type=number].with-icon[data-v-643b9f62],input[type=password].with-icon[data-v-643b9f62],input[type=search].with-icon[data-v-643b9f62],input[type=text].with-icon[data-v-643b9f62],input[type=time].with-icon[data-v-643b9f62]{padding-left:.3em}input[type=search][data-v-643b9f62],input[type=text][data-v-643b9f62]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-643b9f62]{animation-fill-mode:both;animation-name:fadeIn-643b9f62;-webkit-animation-name:fadeIn-643b9f62}.fade-in[data-v-643b9f62],.fade-out[data-v-643b9f62]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-643b9f62]{animation-fill-mode:both;animation-name:fadeOut-643b9f62;-webkit-animation-name:fadeOut-643b9f62}.expand[data-v-643b9f62]{animation-fill-mode:both;animation-name:expand-643b9f62;-webkit-animation-name:expand-643b9f62}.expand[data-v-643b9f62],.shrink[data-v-643b9f62]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-643b9f62]{animation-fill-mode:both;animation-name:shrink-643b9f62;-webkit-animation-name:shrink-643b9f62}.fold[data-v-643b9f62]{animation-fill-mode:both;animation-name:fold-643b9f62;-webkit-animation-name:fold-643b9f62}.fold[data-v-643b9f62],.unfold[data-v-643b9f62]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-643b9f62]{animation-fill-mode:both;animation-name:unfold-643b9f62;-webkit-animation-name:unfold-643b9f62}.dim[data-v-643b9f62]{animation-fill-mode:both;animation-name:dim-643b9f62;-webkit-animation-name:dim-643b9f62}.brighten[data-v-643b9f62],.dim[data-v-643b9f62]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-643b9f62]{animation-fill-mode:both;animation-name:brighten-643b9f62;-webkit-animation-name:brighten-643b9f62}@keyframes fadeIn-643b9f62{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-643b9f62{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-643b9f62{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-643b9f62{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-643b9f62{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-643b9f62{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-643b9f62{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-643b9f62{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-643b9f62]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-643b9f62;-webkit-animation-name:glow-643b9f62}.loop[data-v-643b9f62]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-643b9f62{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-643b9f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-643b9f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-643b9f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-playlists[data-v-643b9f62]{height:100%;position:relative}.media-youtube-playlists .playlist-body[data-v-643b9f62]{height:100%}.media-youtube-playlists[data-v-643b9f62] .playlist.item{position:relative;cursor:pointer}.media-youtube-playlists[data-v-643b9f62] .playlist.item .title{font-size:1.1em;margin-top:.5em}.media-youtube-playlists[data-v-643b9f62] .playlist.item .actions{position:absolute;top:0;right:0;display:flex;padding:.5em;background:rgba(0,0,0,.25);opacity:.9;border-radius:0 0 .5em .5em;transition:opacity .2s;z-index:1}.media-youtube-playlists[data-v-643b9f62] .playlist.item .actions button{background:none;border:none;color:#fff;cursor:pointer;transition:transform .2s;flex:1}.media-youtube-playlists[data-v-643b9f62] .playlist.item .actions button:hover{color:#35b870;transform:scale(1.2)}.media-youtube-playlists[data-v-643b9f62] .playlist.item:hover{text-decoration:underline}.media-youtube-playlists[data-v-643b9f62] .playlist.item:hover img{filter:contrast(70%)}.media-youtube-playlists[data-v-643b9f62] .modal .edit-playlist-form{min-width:300px;display:flex;flex-direction:column}.media-youtube-playlists[data-v-643b9f62] .modal .edit-playlist-form .row{margin:.5em 0}.media-youtube-playlists[data-v-643b9f62] .modal .edit-playlist-form .row input{border:1px solid #e1e4e8;border-radius:1em;padding:.5em;width:100%}.media-youtube-playlists[data-v-643b9f62] .modal .edit-playlist-form .row input:focus{border:1px solid #32b646}.media-youtube-playlists[data-v-643b9f62] .modal .edit-playlist-form .row.buttons{display:flex;justify-content:flex-end;margin-top:.5em}.media-youtube-playlists[data-v-643b9f62] .modal .edit-playlist-form .row.buttons .btn-container{display:flex;justify-content:center}.media-youtube-playlists[data-v-643b9f62] .modal .edit-playlist-form .row button{margin:0 .5em;padding:.5em;border-radius:1em;cursor:pointer;transition:background .2s}.media-youtube-playlists[data-v-643b9f62] .modal .edit-playlist-form .row button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2718.5a080a62.css b/platypush/backend/http/webapp/dist/static/css/2718.5a080a62.css new file mode 100644 index 0000000000..e35203abfb --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2718.5a080a62.css @@ -0,0 +1 @@ +.col-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-56458f8e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-56458f8e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-56458f8e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-56458f8e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-56458f8e]:first-child{margin-left:26%!important}.col-offset-3[data-v-56458f8e]:not(first-child){margin-left:30%!important}.col-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-56458f8e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-56458f8e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-56458f8e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-56458f8e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-56458f8e]:first-child{margin-left:52%!important}.col-offset-6[data-v-56458f8e]:not(first-child){margin-left:56%!important}.col-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-56458f8e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-56458f8e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-56458f8e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-56458f8e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-56458f8e]:first-child{margin-left:78%!important}.col-offset-9[data-v-56458f8e]:not(first-child){margin-left:82%!important}.col-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-56458f8e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-56458f8e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-56458f8e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-56458f8e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-s-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-s-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-s-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-56458f8e]{display:none!important}.s-visible[data-v-56458f8e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-m-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-m-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-m-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-56458f8e]{display:none!important}.m-visible[data-v-56458f8e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-l-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-l-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-l-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-56458f8e]{display:none!important}.l-visible[data-v-56458f8e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-xl-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-xl-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-xl-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-56458f8e]{display:none!important}.xl-visible[data-v-56458f8e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-xxl-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-xxl-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-xxl-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-56458f8e]{display:none!important}.xxl-visible[data-v-56458f8e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-56458f8e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-56458f8e]{display:none!important}}.vertical-center[data-v-56458f8e]{display:flex;align-items:center}.horizontal-center[data-v-56458f8e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-56458f8e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-56458f8e]{display:none!important}.no-content[data-v-56458f8e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-56458f8e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-56458f8e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-56458f8e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-56458f8e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-56458f8e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-56458f8e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-56458f8e],.btn[data-v-56458f8e],button[data-v-56458f8e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-56458f8e],.btn-default[type=submit][data-v-56458f8e],.btn.btn-primary[data-v-56458f8e],.btn[type=submit][data-v-56458f8e],button.btn-primary[data-v-56458f8e],button[type=submit][data-v-56458f8e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-56458f8e]:hover,.btn[data-v-56458f8e]:hover,button[data-v-56458f8e]:hover{color:#35b870}.btn .icon[data-v-56458f8e],.btn-default .icon[data-v-56458f8e],button .icon[data-v-56458f8e]{margin-right:.5em}.btn-default[data-v-56458f8e]:disabled,.btn-default[disabled][data-v-56458f8e],.btn[data-v-56458f8e]:disabled,.btn[disabled][data-v-56458f8e],button[data-v-56458f8e]:disabled,button[disabled][data-v-56458f8e]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-56458f8e]{cursor:grab!important}.dragged[data-v-56458f8e]{opacity:.5!important}input[type=password][data-v-56458f8e],input[type=text][data-v-56458f8e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-56458f8e]:focus,input[type=text][data-v-56458f8e]:focus{border:1px solid #35b870}button[data-v-56458f8e],input[data-v-56458f8e]{outline:none}input[type=text][data-v-56458f8e]:hover,textarea[data-v-56458f8e]:hover{border:1px solid #9cdfb0}ul[data-v-56458f8e]{margin:0;padding:0;list-style:none}a[data-v-56458f8e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-56458f8e]:hover{color:#35b870}[data-v-56458f8e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-56458f8e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-56458f8e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-56458f8e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-56458f8e]{color:#ad1717}body[data-v-56458f8e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-56458f8e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-56458f8e] .nav .path{cursor:pointer}.browser[data-v-56458f8e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-56458f8e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-56458f8e]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-56458f8e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-56458f8e],input[type=number][data-v-56458f8e],input[type=password][data-v-56458f8e],input[type=search][data-v-56458f8e],input[type=text][data-v-56458f8e],input[type=time][data-v-56458f8e]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-56458f8e]:hover,input[type=number][data-v-56458f8e]:hover,input[type=password][data-v-56458f8e]:hover,input[type=search][data-v-56458f8e]:hover,input[type=text][data-v-56458f8e]:hover,input[type=time][data-v-56458f8e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-56458f8e]:focus,input[type=number][data-v-56458f8e]:focus,input[type=password][data-v-56458f8e]:focus,input[type=search][data-v-56458f8e]:focus,input[type=text][data-v-56458f8e]:focus,input[type=time][data-v-56458f8e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-56458f8e],input[type=number].with-icon[data-v-56458f8e],input[type=password].with-icon[data-v-56458f8e],input[type=search].with-icon[data-v-56458f8e],input[type=text].with-icon[data-v-56458f8e],input[type=time].with-icon[data-v-56458f8e]{padding-left:.3em}input[type=search][data-v-56458f8e],input[type=text][data-v-56458f8e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-56458f8e]{animation-fill-mode:both;animation-name:fadeIn-56458f8e;-webkit-animation-name:fadeIn-56458f8e}.fade-in[data-v-56458f8e],.fade-out[data-v-56458f8e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-56458f8e]{animation-fill-mode:both;animation-name:fadeOut-56458f8e;-webkit-animation-name:fadeOut-56458f8e}.expand[data-v-56458f8e]{animation-fill-mode:both;animation-name:expand-56458f8e;-webkit-animation-name:expand-56458f8e}.expand[data-v-56458f8e],.shrink[data-v-56458f8e]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-56458f8e]{animation-fill-mode:both;animation-name:shrink-56458f8e;-webkit-animation-name:shrink-56458f8e}.fold[data-v-56458f8e]{animation-fill-mode:both;animation-name:fold-56458f8e;-webkit-animation-name:fold-56458f8e}.fold[data-v-56458f8e],.unfold[data-v-56458f8e]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-56458f8e]{animation-fill-mode:both;animation-name:unfold-56458f8e;-webkit-animation-name:unfold-56458f8e}.dim[data-v-56458f8e]{animation-fill-mode:both;animation-name:dim-56458f8e;-webkit-animation-name:dim-56458f8e}.brighten[data-v-56458f8e],.dim[data-v-56458f8e]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-56458f8e]{animation-fill-mode:both;animation-name:brighten-56458f8e;-webkit-animation-name:brighten-56458f8e}@keyframes fadeIn-56458f8e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-56458f8e{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-56458f8e{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-56458f8e{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-56458f8e{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-56458f8e{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-56458f8e{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-56458f8e{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-56458f8e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-56458f8e;-webkit-animation-name:glow-56458f8e}.loop[data-v-56458f8e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-56458f8e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-56458f8e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-56458f8e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-56458f8e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zwave-container .no-items[data-v-56458f8e]{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zwave-container .info-body .row[data-v-56458f8e]:nth-child(2n),.zwave-container .params .row[data-v-56458f8e]:nth-child(2n){background:#f0f0f0}.zwave-container .info-body .row[data-v-56458f8e]:nth-child(odd),.zwave-container .params .row[data-v-56458f8e]:nth-child(odd){background:#fff}.zwave-container .info-body .row[data-v-56458f8e]:hover,.zwave-container .params .row[data-v-56458f8e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .node .actions .row[data-v-56458f8e],.zwave-container .scene .actions .row[data-v-56458f8e]{cursor:pointer}.zwave-container .node form[data-v-56458f8e],.zwave-container .scene form[data-v-56458f8e]{margin-bottom:0}.zwave-container .params[data-v-56458f8e]{background:#fff;padding-bottom:1em}.zwave-container .params .title[data-v-56458f8e]{font-size:1.1em!important;margin:0!important}.zwave-container .params .section[data-v-56458f8e]{display:flex;flex-direction:column;padding:0 1em}.zwave-container .params .section[data-v-56458f8e]:not(:first-child){padding-top:1em}.zwave-container .params .section .header[data-v-56458f8e]{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zwave-container .params .section .header .buttons[data-v-56458f8e]{display:inline-flex;justify-content:right}.zwave-container .params .row[data-v-56458f8e]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zwave-container .params .row[data-v-56458f8e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .params .param-name[data-v-56458f8e]{display:inline-flex;width:40%;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .params .param-value[data-v-56458f8e]{display:inline-block;width:58%;text-align:right}.zwave-container .params .param-value .value-edit[data-v-56458f8e]{display:flex;align-items:center}.zwave-container .params .param-value .value-data[data-v-56458f8e]{display:inline-block;font-weight:700}.zwave-container .params .param-value .slider-container[data-v-56458f8e]{display:flex;align-items:center}.zwave-container .params .param-value .unit[data-v-56458f8e]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .params .param-value select[data-v-56458f8e]{width:100%}.zwave-container .params .param-value .numeric input.slider[data-v-56458f8e]{text-align:left}.zwave-container .params .param-value .numeric input[type=text][data-v-56458f8e]{text-align:right;width:100%}.zwave-container .params .param-value .numeric .row[data-v-56458f8e],.zwave-container .params .param-value .numeric .row[data-v-56458f8e]:hover{background:none}.zwave-container .params .param-value .numeric .value-max[data-v-56458f8e],.zwave-container .params .param-value .numeric .value-min[data-v-56458f8e]{width:50%;font-size:.85em;opacity:.75}.zwave-container .params .param-value .numeric .value-min[data-v-56458f8e]{text-align:left}.zwave-container .params .param-value .numeric .value-max[data-v-56458f8e]{text-align:right}.zwave-container .params .param-value .edit-cell[data-v-56458f8e]{width:100%;display:inline-flex;justify-content:right;align-items:center}.zwave-container .params .param-value .edit-cell .buttons[data-v-56458f8e]{margin:0}.zwave-container .row[data-v-56458f8e]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zwave-container .row .param-name[data-v-56458f8e]{width:100%;font-weight:700}.zwave-container .row .param-value[data-v-56458f8e]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zwave-container .row .param-name[data-v-56458f8e]{width:40%}.zwave-container .row .param-value[data-v-56458f8e]{width:58%;justify-content:right}}.zwave-container .row .param-name[data-v-56458f8e]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .row .param-value[data-v-56458f8e]{display:inline-flex;align-items:center}.zwave-container .row .param-value .value-edit[data-v-56458f8e]{display:flex;align-items:center}.zwave-container .row .param-value .value-data[data-v-56458f8e]{display:inline-block;font-weight:700}.zwave-container .row .param-value .slider-container[data-v-56458f8e]{display:flex;align-items:center}.zwave-container .row .param-value .unit[data-v-56458f8e]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .row .param-value select[data-v-56458f8e]{width:100%}.zwave-container .row .param-value .numeric input.slider[data-v-56458f8e]{text-align:left}.zwave-container .row .param-value .numeric input[type=text][data-v-56458f8e]{text-align:right;width:100%}.zwave-container .row .param-value .numeric .row[data-v-56458f8e],.zwave-container .row .param-value .numeric .row[data-v-56458f8e]:hover{background:none}.zwave-container .row .param-value .numeric .value-max[data-v-56458f8e],.zwave-container .row .param-value .numeric .value-min[data-v-56458f8e]{width:50%;font-size:.85em;opacity:.75}.zwave-container .row .param-value .numeric .value-min[data-v-56458f8e]{text-align:left}.zwave-container .row .param-value .numeric .value-max[data-v-56458f8e]{text-align:right}.zwave-container .btn-default[data-v-56458f8e]{border:0;padding:0 1em}.zwave-container .btn-default[data-v-56458f8e]:hover{border:1px solid #ddd;border-radius:1em}.zwave-container .buttons[data-v-56458f8e]{text-align:right}.zwave-container .view-container[data-v-56458f8e]{width:100%;height:calc(100% - 3.5em);overflow:auto;display:flex;justify-content:center}.zwave-container .view[data-v-56458f8e]{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:1024px){.zwave-container .view[data-v-56458f8e]{width:100%;border-radius:0;margin-top:0}}@media screen and (min-width:1024px){.zwave-container .view[data-v-56458f8e]{min-width:400pt;max-width:750pt;border-radius:1.5em;margin-top:1em}}.zwave-container .item[data-v-56458f8e]{border-bottom:1px solid #ddd}.zwave-container .item.selected[data-v-56458f8e]{box-shadow:0 2px 4px 0 #bbb}.zwave-container .item .name.header[data-v-56458f8e]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zwave-container .item .name.header[data-v-56458f8e]:hover{border-radius:1.5em}.zwave-container .item .name.header.selected[data-v-56458f8e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:1.5em}.zwave-container .item .title[data-v-56458f8e]{font-size:1.2em;padding-left:.5em}.zwave-container .item .buttons[data-v-56458f8e]{margin:0}.zwave-container .item[data-v-56458f8e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .item:hover.selected[data-v-56458f8e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zwave-container .item[data-v-56458f8e]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .item[data-v-56458f8e]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .item .params .section[data-v-56458f8e]{padding:1.5em 0 0 0}.zwave-container .item .value .param-name[data-v-56458f8e]{display:inline-block}.zwave-container .item .value .param-name .name[data-v-56458f8e]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zwave-container .item .value .param-name .name[data-v-56458f8e]:before{content:"["}.zwave-container .item .value .param-name .name[data-v-56458f8e]:after{content:"]"}.zwave-container .item .value .param-name .unit[data-v-56458f8e]{font-size:.8em}.zwave-container .item .value .param-name .unit[data-v-56458f8e]:before{content:" [unit: "}.zwave-container .item .value .param-name .unit[data-v-56458f8e]:after{content:"]"}.zwave-container .item .value .param-value label[data-v-56458f8e]{width:90%}.zwave-container .item .value .param-value input[data-v-56458f8e]{width:100%}.zwave-container .item button[data-v-56458f8e]{border:0;background:none;padding:0 .5em}.zwave-container .item button[data-v-56458f8e]:hover{color:#35b870}@media screen and (max-width:769px){.zwave-container .item .name-edit[data-v-56458f8e]{justify-content:left}}@media screen and (min-width:769px){.zwave-container .item .name-edit[data-v-56458f8e]{justify-content:right}}.zwave-container .item .name-edit[data-v-56458f8e]{width:100%;display:inline-flex;align-items:center}.zwave-container .item .name-edit form[data-v-56458f8e]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zwave-container .item .name-edit .buttons[data-v-56458f8e]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zwave-container .item .name-edit form[data-v-56458f8e]{background:none;padding:0;border:none;box-shadow:none}.zwave-container .btn-value-name-edit[data-v-56458f8e]{padding:0}.zwave-container .modal .section .header[data-v-56458f8e]{background:none;padding:.5em 0}.zwave-container .modal .section .body[data-v-56458f8e]{padding:0}.zwave-container .modal .network-info[data-v-56458f8e]{min-width:600pt}.zwave-container .error[data-v-56458f8e]{color:#a00}.zwave-container form[data-v-56458f8e]{border:none;box-shadow:none;padding:0;margin:0}.zwave-container button[data-v-56458f8e]{background:none;border:none;padding:0 .75em}.zwave-container button[data-v-56458f8e]:hover{color:#35b870}.zwave-container .buttons[data-v-56458f8e]{display:inline-flex;margin:0}.zwave-container .buttons .dropdown .item[data-v-56458f8e]{padding:.5em 2em .5em .5em}.zwave-container select[data-v-56458f8e]{width:100%}.zwave-container .clickable[data-v-56458f8e]{cursor:pointer}.zwave-container .buttons button[data-v-56458f8e]{background:none!important}.zwave-container .view.values .node-container[data-v-56458f8e]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .view.values .node-container[data-v-56458f8e]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .view.values .node-container .item[data-v-56458f8e]{border-radius:0}.section.nodes .header[data-v-56458f8e],.section.nodes .row[data-v-56458f8e]{position:relative}.section.nodes .header .buttons[data-v-56458f8e],.section.nodes .row .buttons[data-v-56458f8e]{position:absolute;right:0;display:flex;justify-content:right}.col-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3da196a6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3da196a6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3da196a6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3da196a6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3da196a6]:first-child{margin-left:26%!important}.col-offset-3[data-v-3da196a6]:not(first-child){margin-left:30%!important}.col-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3da196a6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3da196a6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3da196a6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3da196a6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3da196a6]:first-child{margin-left:52%!important}.col-offset-6[data-v-3da196a6]:not(first-child){margin-left:56%!important}.col-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3da196a6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3da196a6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3da196a6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3da196a6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3da196a6]:first-child{margin-left:78%!important}.col-offset-9[data-v-3da196a6]:not(first-child){margin-left:82%!important}.col-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3da196a6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3da196a6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3da196a6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3da196a6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-s-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-s-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-s-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3da196a6]{display:none!important}.s-visible[data-v-3da196a6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-m-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-m-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-m-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3da196a6]{display:none!important}.m-visible[data-v-3da196a6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-l-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-l-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-l-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3da196a6]{display:none!important}.l-visible[data-v-3da196a6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-xl-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-xl-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-xl-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3da196a6]{display:none!important}.xl-visible[data-v-3da196a6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-xxl-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-xxl-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-xxl-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3da196a6]{display:none!important}.xxl-visible[data-v-3da196a6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3da196a6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3da196a6]{display:none!important}}.vertical-center[data-v-3da196a6]{display:flex;align-items:center}.horizontal-center[data-v-3da196a6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3da196a6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3da196a6]{display:none!important}.no-content[data-v-3da196a6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3da196a6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3da196a6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3da196a6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3da196a6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3da196a6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3da196a6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3da196a6],.btn[data-v-3da196a6],button[data-v-3da196a6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3da196a6],.btn-default[type=submit][data-v-3da196a6],.btn.btn-primary[data-v-3da196a6],.btn[type=submit][data-v-3da196a6],button.btn-primary[data-v-3da196a6],button[type=submit][data-v-3da196a6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3da196a6]:hover,.btn[data-v-3da196a6]:hover,button[data-v-3da196a6]:hover{color:#35b870}.btn .icon[data-v-3da196a6],.btn-default .icon[data-v-3da196a6],button .icon[data-v-3da196a6]{margin-right:.5em}.btn-default[data-v-3da196a6]:disabled,.btn-default[disabled][data-v-3da196a6],.btn[data-v-3da196a6]:disabled,.btn[disabled][data-v-3da196a6],button[data-v-3da196a6]:disabled,button[disabled][data-v-3da196a6]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3da196a6]{cursor:grab!important}.dragged[data-v-3da196a6]{opacity:.5!important}input[type=password][data-v-3da196a6],input[type=text][data-v-3da196a6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3da196a6]:focus,input[type=text][data-v-3da196a6]:focus{border:1px solid #35b870}button[data-v-3da196a6],input[data-v-3da196a6]{outline:none}input[type=text][data-v-3da196a6]:hover,textarea[data-v-3da196a6]:hover{border:1px solid #9cdfb0}ul[data-v-3da196a6]{margin:0;padding:0;list-style:none}a[data-v-3da196a6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3da196a6]:hover{color:#35b870}[data-v-3da196a6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3da196a6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3da196a6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3da196a6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3da196a6]{color:#ad1717}body[data-v-3da196a6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3da196a6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3da196a6] .nav .path{cursor:pointer}.browser[data-v-3da196a6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3da196a6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3da196a6]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3da196a6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3da196a6],input[type=number][data-v-3da196a6],input[type=password][data-v-3da196a6],input[type=search][data-v-3da196a6],input[type=text][data-v-3da196a6],input[type=time][data-v-3da196a6]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3da196a6]:hover,input[type=number][data-v-3da196a6]:hover,input[type=password][data-v-3da196a6]:hover,input[type=search][data-v-3da196a6]:hover,input[type=text][data-v-3da196a6]:hover,input[type=time][data-v-3da196a6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3da196a6]:focus,input[type=number][data-v-3da196a6]:focus,input[type=password][data-v-3da196a6]:focus,input[type=search][data-v-3da196a6]:focus,input[type=text][data-v-3da196a6]:focus,input[type=time][data-v-3da196a6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3da196a6],input[type=number].with-icon[data-v-3da196a6],input[type=password].with-icon[data-v-3da196a6],input[type=search].with-icon[data-v-3da196a6],input[type=text].with-icon[data-v-3da196a6],input[type=time].with-icon[data-v-3da196a6]{padding-left:.3em}input[type=search][data-v-3da196a6],input[type=text][data-v-3da196a6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3da196a6]{animation-fill-mode:both;animation-name:fadeIn-3da196a6;-webkit-animation-name:fadeIn-3da196a6}.fade-in[data-v-3da196a6],.fade-out[data-v-3da196a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3da196a6]{animation-fill-mode:both;animation-name:fadeOut-3da196a6;-webkit-animation-name:fadeOut-3da196a6}.expand[data-v-3da196a6]{animation-fill-mode:both;animation-name:expand-3da196a6;-webkit-animation-name:expand-3da196a6}.expand[data-v-3da196a6],.shrink[data-v-3da196a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-3da196a6]{animation-fill-mode:both;animation-name:shrink-3da196a6;-webkit-animation-name:shrink-3da196a6}.fold[data-v-3da196a6]{animation-fill-mode:both;animation-name:fold-3da196a6;-webkit-animation-name:fold-3da196a6}.fold[data-v-3da196a6],.unfold[data-v-3da196a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-3da196a6]{animation-fill-mode:both;animation-name:unfold-3da196a6;-webkit-animation-name:unfold-3da196a6}.dim[data-v-3da196a6]{animation-fill-mode:both;animation-name:dim-3da196a6;-webkit-animation-name:dim-3da196a6}.brighten[data-v-3da196a6],.dim[data-v-3da196a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-3da196a6]{animation-fill-mode:both;animation-name:brighten-3da196a6;-webkit-animation-name:brighten-3da196a6}@keyframes fadeIn-3da196a6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3da196a6{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3da196a6{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3da196a6{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3da196a6{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3da196a6{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3da196a6{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3da196a6{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3da196a6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3da196a6;-webkit-animation-name:glow-3da196a6}.loop[data-v-3da196a6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3da196a6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3da196a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3da196a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3da196a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zwave-container .no-items[data-v-3da196a6]{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zwave-container .info-body .row[data-v-3da196a6]:nth-child(2n),.zwave-container .params .row[data-v-3da196a6]:nth-child(2n){background:#f0f0f0}.zwave-container .info-body .row[data-v-3da196a6]:nth-child(odd),.zwave-container .params .row[data-v-3da196a6]:nth-child(odd){background:#fff}.zwave-container .info-body .row[data-v-3da196a6]:hover,.zwave-container .params .row[data-v-3da196a6]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .node .actions .row[data-v-3da196a6],.zwave-container .scene .actions .row[data-v-3da196a6]{cursor:pointer}.zwave-container .node form[data-v-3da196a6],.zwave-container .scene form[data-v-3da196a6]{margin-bottom:0}.zwave-container .params[data-v-3da196a6]{background:#fff;padding-bottom:1em}.zwave-container .params .title[data-v-3da196a6]{font-size:1.1em!important;margin:0!important}.zwave-container .params .section[data-v-3da196a6]{display:flex;flex-direction:column;padding:0 1em}.zwave-container .params .section[data-v-3da196a6]:not(:first-child){padding-top:1em}.zwave-container .params .section .header[data-v-3da196a6]{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zwave-container .params .section .header .buttons[data-v-3da196a6]{display:inline-flex;justify-content:right}.zwave-container .params .row[data-v-3da196a6]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zwave-container .params .row[data-v-3da196a6]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .params .param-name[data-v-3da196a6]{display:inline-flex;width:40%;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .params .param-value[data-v-3da196a6]{display:inline-block;width:58%;text-align:right}.zwave-container .params .param-value .value-edit[data-v-3da196a6]{display:flex;align-items:center}.zwave-container .params .param-value .value-data[data-v-3da196a6]{display:inline-block;font-weight:700}.zwave-container .params .param-value .slider-container[data-v-3da196a6]{display:flex;align-items:center}.zwave-container .params .param-value .unit[data-v-3da196a6]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .params .param-value select[data-v-3da196a6]{width:100%}.zwave-container .params .param-value .numeric input.slider[data-v-3da196a6]{text-align:left}.zwave-container .params .param-value .numeric input[type=text][data-v-3da196a6]{text-align:right;width:100%}.zwave-container .params .param-value .numeric .row[data-v-3da196a6],.zwave-container .params .param-value .numeric .row[data-v-3da196a6]:hover{background:none}.zwave-container .params .param-value .numeric .value-max[data-v-3da196a6],.zwave-container .params .param-value .numeric .value-min[data-v-3da196a6]{width:50%;font-size:.85em;opacity:.75}.zwave-container .params .param-value .numeric .value-min[data-v-3da196a6]{text-align:left}.zwave-container .params .param-value .numeric .value-max[data-v-3da196a6]{text-align:right}.zwave-container .params .param-value .edit-cell[data-v-3da196a6]{width:100%;display:inline-flex;justify-content:right;align-items:center}.zwave-container .params .param-value .edit-cell .buttons[data-v-3da196a6]{margin:0}.zwave-container .row[data-v-3da196a6]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zwave-container .row .param-name[data-v-3da196a6]{width:100%;font-weight:700}.zwave-container .row .param-value[data-v-3da196a6]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zwave-container .row .param-name[data-v-3da196a6]{width:40%}.zwave-container .row .param-value[data-v-3da196a6]{width:58%;justify-content:right}}.zwave-container .row .param-name[data-v-3da196a6]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .row .param-value[data-v-3da196a6]{display:inline-flex;align-items:center}.zwave-container .row .param-value .value-edit[data-v-3da196a6]{display:flex;align-items:center}.zwave-container .row .param-value .value-data[data-v-3da196a6]{display:inline-block;font-weight:700}.zwave-container .row .param-value .slider-container[data-v-3da196a6]{display:flex;align-items:center}.zwave-container .row .param-value .unit[data-v-3da196a6]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .row .param-value select[data-v-3da196a6]{width:100%}.zwave-container .row .param-value .numeric input.slider[data-v-3da196a6]{text-align:left}.zwave-container .row .param-value .numeric input[type=text][data-v-3da196a6]{text-align:right;width:100%}.zwave-container .row .param-value .numeric .row[data-v-3da196a6],.zwave-container .row .param-value .numeric .row[data-v-3da196a6]:hover{background:none}.zwave-container .row .param-value .numeric .value-max[data-v-3da196a6],.zwave-container .row .param-value .numeric .value-min[data-v-3da196a6]{width:50%;font-size:.85em;opacity:.75}.zwave-container .row .param-value .numeric .value-min[data-v-3da196a6]{text-align:left}.zwave-container .row .param-value .numeric .value-max[data-v-3da196a6]{text-align:right}.zwave-container .btn-default[data-v-3da196a6]{border:0;padding:0 1em}.zwave-container .btn-default[data-v-3da196a6]:hover{border:1px solid #ddd;border-radius:1em}.zwave-container .buttons[data-v-3da196a6]{text-align:right}.zwave-container .view-container[data-v-3da196a6]{width:100%;height:calc(100% - 3.5em);overflow:auto;display:flex;justify-content:center}.zwave-container .view[data-v-3da196a6]{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:1024px){.zwave-container .view[data-v-3da196a6]{width:100%;border-radius:0;margin-top:0}}@media screen and (min-width:1024px){.zwave-container .view[data-v-3da196a6]{min-width:400pt;max-width:750pt;border-radius:1.5em;margin-top:1em}}.zwave-container .item[data-v-3da196a6]{border-bottom:1px solid #ddd}.zwave-container .item.selected[data-v-3da196a6]{box-shadow:0 2px 4px 0 #bbb}.zwave-container .item .name.header[data-v-3da196a6]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zwave-container .item .name.header[data-v-3da196a6]:hover{border-radius:1.5em}.zwave-container .item .name.header.selected[data-v-3da196a6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:1.5em}.zwave-container .item .title[data-v-3da196a6]{font-size:1.2em;padding-left:.5em}.zwave-container .item .buttons[data-v-3da196a6]{margin:0}.zwave-container .item[data-v-3da196a6]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .item:hover.selected[data-v-3da196a6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zwave-container .item[data-v-3da196a6]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .item[data-v-3da196a6]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .item .params .section[data-v-3da196a6]{padding:1.5em 0 0 0}.zwave-container .item .value .param-name[data-v-3da196a6]{display:inline-block}.zwave-container .item .value .param-name .name[data-v-3da196a6]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zwave-container .item .value .param-name .name[data-v-3da196a6]:before{content:"["}.zwave-container .item .value .param-name .name[data-v-3da196a6]:after{content:"]"}.zwave-container .item .value .param-name .unit[data-v-3da196a6]{font-size:.8em}.zwave-container .item .value .param-name .unit[data-v-3da196a6]:before{content:" [unit: "}.zwave-container .item .value .param-name .unit[data-v-3da196a6]:after{content:"]"}.zwave-container .item .value .param-value label[data-v-3da196a6]{width:90%}.zwave-container .item .value .param-value input[data-v-3da196a6]{width:100%}.zwave-container .item button[data-v-3da196a6]{border:0;background:none;padding:0 .5em}.zwave-container .item button[data-v-3da196a6]:hover{color:#35b870}@media screen and (max-width:769px){.zwave-container .item .name-edit[data-v-3da196a6]{justify-content:left}}@media screen and (min-width:769px){.zwave-container .item .name-edit[data-v-3da196a6]{justify-content:right}}.zwave-container .item .name-edit[data-v-3da196a6]{width:100%;display:inline-flex;align-items:center}.zwave-container .item .name-edit form[data-v-3da196a6]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zwave-container .item .name-edit .buttons[data-v-3da196a6]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zwave-container .item .name-edit form[data-v-3da196a6]{background:none;padding:0;border:none;box-shadow:none}.zwave-container .btn-value-name-edit[data-v-3da196a6]{padding:0}.zwave-container .modal .section .header[data-v-3da196a6]{background:none;padding:.5em 0}.zwave-container .modal .section .body[data-v-3da196a6]{padding:0}.zwave-container .modal .network-info[data-v-3da196a6]{min-width:600pt}.zwave-container .error[data-v-3da196a6]{color:#a00}.zwave-container form[data-v-3da196a6]{border:none;box-shadow:none;padding:0;margin:0}.zwave-container button[data-v-3da196a6]{background:none;border:none;padding:0 .75em}.zwave-container button[data-v-3da196a6]:hover{color:#35b870}.zwave-container .buttons[data-v-3da196a6]{display:inline-flex;margin:0}.zwave-container .buttons .dropdown .item[data-v-3da196a6]{padding:.5em 2em .5em .5em}.zwave-container select[data-v-3da196a6]{width:100%}.zwave-container .clickable[data-v-3da196a6]{cursor:pointer}.zwave-container .buttons button[data-v-3da196a6]{background:none!important}.zwave-container .view.values .node-container[data-v-3da196a6]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .view.values .node-container[data-v-3da196a6]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .view.values .node-container .item[data-v-3da196a6]{border-radius:0}.col-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c1863a74]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c1863a74]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c1863a74]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c1863a74]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c1863a74]:first-child{margin-left:26%!important}.col-offset-3[data-v-c1863a74]:not(first-child){margin-left:30%!important}.col-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c1863a74]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c1863a74]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c1863a74]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c1863a74]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c1863a74]:first-child{margin-left:52%!important}.col-offset-6[data-v-c1863a74]:not(first-child){margin-left:56%!important}.col-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c1863a74]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c1863a74]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c1863a74]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c1863a74]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c1863a74]:first-child{margin-left:78%!important}.col-offset-9[data-v-c1863a74]:not(first-child){margin-left:82%!important}.col-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c1863a74]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c1863a74]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c1863a74]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c1863a74]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-s-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-s-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-s-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c1863a74]{display:none!important}.s-visible[data-v-c1863a74]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-m-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-m-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-m-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c1863a74]{display:none!important}.m-visible[data-v-c1863a74]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-l-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-l-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-l-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c1863a74]{display:none!important}.l-visible[data-v-c1863a74]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-xl-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-xl-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-xl-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c1863a74]{display:none!important}.xl-visible[data-v-c1863a74]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-xxl-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-xxl-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-xxl-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c1863a74]{display:none!important}.xxl-visible[data-v-c1863a74]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-c1863a74]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c1863a74]{display:none!important}}.vertical-center[data-v-c1863a74]{display:flex;align-items:center}.horizontal-center[data-v-c1863a74]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c1863a74]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c1863a74]{display:none!important}.no-content[data-v-c1863a74]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-c1863a74]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-c1863a74]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-c1863a74]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-c1863a74]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-c1863a74]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-c1863a74]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-c1863a74],.btn[data-v-c1863a74],button[data-v-c1863a74]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c1863a74],.btn-default[type=submit][data-v-c1863a74],.btn.btn-primary[data-v-c1863a74],.btn[type=submit][data-v-c1863a74],button.btn-primary[data-v-c1863a74],button[type=submit][data-v-c1863a74]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-c1863a74]:hover,.btn[data-v-c1863a74]:hover,button[data-v-c1863a74]:hover{color:#35b870}.btn .icon[data-v-c1863a74],.btn-default .icon[data-v-c1863a74],button .icon[data-v-c1863a74]{margin-right:.5em}.btn-default[data-v-c1863a74]:disabled,.btn-default[disabled][data-v-c1863a74],.btn[data-v-c1863a74]:disabled,.btn[disabled][data-v-c1863a74],button[data-v-c1863a74]:disabled,button[disabled][data-v-c1863a74]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-c1863a74]{cursor:grab!important}.dragged[data-v-c1863a74]{opacity:.5!important}input[type=password][data-v-c1863a74],input[type=text][data-v-c1863a74]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c1863a74]:focus,input[type=text][data-v-c1863a74]:focus{border:1px solid #35b870}button[data-v-c1863a74],input[data-v-c1863a74]{outline:none}input[type=text][data-v-c1863a74]:hover,textarea[data-v-c1863a74]:hover{border:1px solid #9cdfb0}ul[data-v-c1863a74]{margin:0;padding:0;list-style:none}a[data-v-c1863a74]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c1863a74]:hover{color:#35b870}[data-v-c1863a74]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-c1863a74]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-c1863a74]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c1863a74]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-c1863a74]{color:#ad1717}body[data-v-c1863a74]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-c1863a74] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-c1863a74] .nav .path{cursor:pointer}.browser[data-v-c1863a74] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-c1863a74] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-c1863a74]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-c1863a74]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-c1863a74],input[type=number][data-v-c1863a74],input[type=password][data-v-c1863a74],input[type=search][data-v-c1863a74],input[type=text][data-v-c1863a74],input[type=time][data-v-c1863a74]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-c1863a74]:hover,input[type=number][data-v-c1863a74]:hover,input[type=password][data-v-c1863a74]:hover,input[type=search][data-v-c1863a74]:hover,input[type=text][data-v-c1863a74]:hover,input[type=time][data-v-c1863a74]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-c1863a74]:focus,input[type=number][data-v-c1863a74]:focus,input[type=password][data-v-c1863a74]:focus,input[type=search][data-v-c1863a74]:focus,input[type=text][data-v-c1863a74]:focus,input[type=time][data-v-c1863a74]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-c1863a74],input[type=number].with-icon[data-v-c1863a74],input[type=password].with-icon[data-v-c1863a74],input[type=search].with-icon[data-v-c1863a74],input[type=text].with-icon[data-v-c1863a74],input[type=time].with-icon[data-v-c1863a74]{padding-left:.3em}input[type=search][data-v-c1863a74],input[type=text][data-v-c1863a74]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c1863a74]{animation-fill-mode:both;animation-name:fadeIn-c1863a74;-webkit-animation-name:fadeIn-c1863a74}.fade-in[data-v-c1863a74],.fade-out[data-v-c1863a74]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c1863a74]{animation-fill-mode:both;animation-name:fadeOut-c1863a74;-webkit-animation-name:fadeOut-c1863a74}.expand[data-v-c1863a74]{animation-fill-mode:both;animation-name:expand-c1863a74;-webkit-animation-name:expand-c1863a74}.expand[data-v-c1863a74],.shrink[data-v-c1863a74]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-c1863a74]{animation-fill-mode:both;animation-name:shrink-c1863a74;-webkit-animation-name:shrink-c1863a74}.fold[data-v-c1863a74]{animation-fill-mode:both;animation-name:fold-c1863a74;-webkit-animation-name:fold-c1863a74}.fold[data-v-c1863a74],.unfold[data-v-c1863a74]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-c1863a74]{animation-fill-mode:both;animation-name:unfold-c1863a74;-webkit-animation-name:unfold-c1863a74}.dim[data-v-c1863a74]{animation-fill-mode:both;animation-name:dim-c1863a74;-webkit-animation-name:dim-c1863a74}.brighten[data-v-c1863a74],.dim[data-v-c1863a74]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-c1863a74]{animation-fill-mode:both;animation-name:brighten-c1863a74;-webkit-animation-name:brighten-c1863a74}@keyframes fadeIn-c1863a74{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c1863a74{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-c1863a74{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-c1863a74{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-c1863a74{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-c1863a74{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-c1863a74{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-c1863a74{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-c1863a74]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-c1863a74;-webkit-animation-name:glow-c1863a74}.loop[data-v-c1863a74]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-c1863a74{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-c1863a74]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c1863a74]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c1863a74]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-c1863a74] .modal .dialog-content{padding:1em}[data-v-c1863a74] .modal .buttons{display:flex;flex-direction:row;justify-content:right;padding:1em 0 1em 1em;border:0;border-radius:0;box-shadow:0 -1px silver}[data-v-c1863a74] .modal .buttons button{padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-c1863a74] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-57b0cec3]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-57b0cec3]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-57b0cec3]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-57b0cec3]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-57b0cec3]:first-child{margin-left:26%!important}.col-offset-3[data-v-57b0cec3]:not(first-child){margin-left:30%!important}.col-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-57b0cec3]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-57b0cec3]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-57b0cec3]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-57b0cec3]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-57b0cec3]:first-child{margin-left:52%!important}.col-offset-6[data-v-57b0cec3]:not(first-child){margin-left:56%!important}.col-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-57b0cec3]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-57b0cec3]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-57b0cec3]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-57b0cec3]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-57b0cec3]:first-child{margin-left:78%!important}.col-offset-9[data-v-57b0cec3]:not(first-child){margin-left:82%!important}.col-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-57b0cec3]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-57b0cec3]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-57b0cec3]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-57b0cec3]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-1[data-v-57b0cec3]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-2[data-v-57b0cec3]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-3[data-v-57b0cec3]{margin-left:26%}.col-no-margin-s-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-4[data-v-57b0cec3]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-5[data-v-57b0cec3]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-6[data-v-57b0cec3]{margin-left:52%}.col-no-margin-s-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-7[data-v-57b0cec3]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-8[data-v-57b0cec3]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-9[data-v-57b0cec3]{margin-left:78%}.col-no-margin-s-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-10[data-v-57b0cec3]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-s-11[data-v-57b0cec3]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-s-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-57b0cec3]{display:none!important}.s-visible[data-v-57b0cec3]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-1[data-v-57b0cec3]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-2[data-v-57b0cec3]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-3[data-v-57b0cec3]{margin-left:26%}.col-no-margin-m-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-4[data-v-57b0cec3]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-5[data-v-57b0cec3]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-6[data-v-57b0cec3]{margin-left:52%}.col-no-margin-m-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-7[data-v-57b0cec3]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-8[data-v-57b0cec3]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-9[data-v-57b0cec3]{margin-left:78%}.col-no-margin-m-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-10[data-v-57b0cec3]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-m-11[data-v-57b0cec3]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-m-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-57b0cec3]{display:none!important}.m-visible[data-v-57b0cec3]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-1[data-v-57b0cec3]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-2[data-v-57b0cec3]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-3[data-v-57b0cec3]{margin-left:26%}.col-no-margin-l-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-4[data-v-57b0cec3]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-5[data-v-57b0cec3]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-6[data-v-57b0cec3]{margin-left:52%}.col-no-margin-l-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-7[data-v-57b0cec3]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-8[data-v-57b0cec3]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-9[data-v-57b0cec3]{margin-left:78%}.col-no-margin-l-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-10[data-v-57b0cec3]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-l-11[data-v-57b0cec3]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-l-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-57b0cec3]{display:none!important}.l-visible[data-v-57b0cec3]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-1[data-v-57b0cec3]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-2[data-v-57b0cec3]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-3[data-v-57b0cec3]{margin-left:26%}.col-no-margin-xl-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-4[data-v-57b0cec3]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-5[data-v-57b0cec3]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-6[data-v-57b0cec3]{margin-left:52%}.col-no-margin-xl-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-7[data-v-57b0cec3]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-8[data-v-57b0cec3]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-9[data-v-57b0cec3]{margin-left:78%}.col-no-margin-xl-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-10[data-v-57b0cec3]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xl-11[data-v-57b0cec3]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-57b0cec3]{display:none!important}.xl-visible[data-v-57b0cec3]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-1[data-v-57b0cec3]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-57b0cec3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-2[data-v-57b0cec3]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-57b0cec3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-3[data-v-57b0cec3]{margin-left:26%}.col-no-margin-xxl-3[data-v-57b0cec3]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-4[data-v-57b0cec3]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-57b0cec3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-5[data-v-57b0cec3]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-57b0cec3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-6[data-v-57b0cec3]{margin-left:52%}.col-no-margin-xxl-6[data-v-57b0cec3]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-7[data-v-57b0cec3]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-57b0cec3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-8[data-v-57b0cec3]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-57b0cec3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-9[data-v-57b0cec3]{margin-left:78%}.col-no-margin-xxl-9[data-v-57b0cec3]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-10[data-v-57b0cec3]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-57b0cec3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-57b0cec3]:first-child{margin-left:0}.col-offset-xxl-11[data-v-57b0cec3]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-57b0cec3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-57b0cec3]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-57b0cec3]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-57b0cec3]{display:none!important}.xxl-visible[data-v-57b0cec3]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-57b0cec3]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-57b0cec3]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-57b0cec3]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-57b0cec3]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-57b0cec3]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-57b0cec3]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-57b0cec3]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-57b0cec3]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-57b0cec3]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-57b0cec3]{display:none!important}}.vertical-center[data-v-57b0cec3]{display:flex;align-items:center}.horizontal-center[data-v-57b0cec3]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-57b0cec3]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-57b0cec3]{display:none!important}.no-content[data-v-57b0cec3]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-57b0cec3]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-57b0cec3]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-57b0cec3]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-57b0cec3]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-57b0cec3]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-57b0cec3]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-57b0cec3],.btn[data-v-57b0cec3],button[data-v-57b0cec3]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-57b0cec3],.btn-default[type=submit][data-v-57b0cec3],.btn.btn-primary[data-v-57b0cec3],.btn[type=submit][data-v-57b0cec3],button.btn-primary[data-v-57b0cec3],button[type=submit][data-v-57b0cec3]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-57b0cec3]:hover,.btn[data-v-57b0cec3]:hover,button[data-v-57b0cec3]:hover{color:#35b870}.btn .icon[data-v-57b0cec3],.btn-default .icon[data-v-57b0cec3],button .icon[data-v-57b0cec3]{margin-right:.5em}.btn-default[data-v-57b0cec3]:disabled,.btn-default[disabled][data-v-57b0cec3],.btn[data-v-57b0cec3]:disabled,.btn[disabled][data-v-57b0cec3],button[data-v-57b0cec3]:disabled,button[disabled][data-v-57b0cec3]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-57b0cec3]{cursor:grab!important}.dragged[data-v-57b0cec3]{opacity:.5!important}input[type=password][data-v-57b0cec3],input[type=text][data-v-57b0cec3]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-57b0cec3]:focus,input[type=text][data-v-57b0cec3]:focus{border:1px solid #35b870}button[data-v-57b0cec3],input[data-v-57b0cec3]{outline:none}input[type=text][data-v-57b0cec3]:hover,textarea[data-v-57b0cec3]:hover{border:1px solid #9cdfb0}ul[data-v-57b0cec3]{margin:0;padding:0;list-style:none}a[data-v-57b0cec3]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-57b0cec3]:hover{color:#35b870}[data-v-57b0cec3]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-57b0cec3]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-57b0cec3]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-57b0cec3]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-57b0cec3]{color:#ad1717}body[data-v-57b0cec3]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-57b0cec3] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-57b0cec3] .nav .path{cursor:pointer}.browser[data-v-57b0cec3] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-57b0cec3] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-57b0cec3]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-57b0cec3]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-57b0cec3],input[type=number][data-v-57b0cec3],input[type=password][data-v-57b0cec3],input[type=search][data-v-57b0cec3],input[type=text][data-v-57b0cec3],input[type=time][data-v-57b0cec3]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-57b0cec3]:hover,input[type=number][data-v-57b0cec3]:hover,input[type=password][data-v-57b0cec3]:hover,input[type=search][data-v-57b0cec3]:hover,input[type=text][data-v-57b0cec3]:hover,input[type=time][data-v-57b0cec3]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-57b0cec3]:focus,input[type=number][data-v-57b0cec3]:focus,input[type=password][data-v-57b0cec3]:focus,input[type=search][data-v-57b0cec3]:focus,input[type=text][data-v-57b0cec3]:focus,input[type=time][data-v-57b0cec3]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-57b0cec3],input[type=number].with-icon[data-v-57b0cec3],input[type=password].with-icon[data-v-57b0cec3],input[type=search].with-icon[data-v-57b0cec3],input[type=text].with-icon[data-v-57b0cec3],input[type=time].with-icon[data-v-57b0cec3]{padding-left:.3em}input[type=search][data-v-57b0cec3],input[type=text][data-v-57b0cec3]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-57b0cec3]{animation-fill-mode:both;animation-name:fadeIn-57b0cec3;-webkit-animation-name:fadeIn-57b0cec3}.fade-in[data-v-57b0cec3],.fade-out[data-v-57b0cec3]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-57b0cec3]{animation-fill-mode:both;animation-name:fadeOut-57b0cec3;-webkit-animation-name:fadeOut-57b0cec3}.expand[data-v-57b0cec3]{animation-fill-mode:both;animation-name:expand-57b0cec3;-webkit-animation-name:expand-57b0cec3}.expand[data-v-57b0cec3],.shrink[data-v-57b0cec3]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-57b0cec3]{animation-fill-mode:both;animation-name:shrink-57b0cec3;-webkit-animation-name:shrink-57b0cec3}.fold[data-v-57b0cec3]{animation-fill-mode:both;animation-name:fold-57b0cec3;-webkit-animation-name:fold-57b0cec3}.fold[data-v-57b0cec3],.unfold[data-v-57b0cec3]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-57b0cec3]{animation-fill-mode:both;animation-name:unfold-57b0cec3;-webkit-animation-name:unfold-57b0cec3}.dim[data-v-57b0cec3]{animation-fill-mode:both;animation-name:dim-57b0cec3;-webkit-animation-name:dim-57b0cec3}.brighten[data-v-57b0cec3],.dim[data-v-57b0cec3]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-57b0cec3]{animation-fill-mode:both;animation-name:brighten-57b0cec3;-webkit-animation-name:brighten-57b0cec3}@keyframes fadeIn-57b0cec3{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-57b0cec3{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-57b0cec3{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-57b0cec3{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-57b0cec3{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-57b0cec3{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-57b0cec3{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-57b0cec3{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-57b0cec3]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-57b0cec3;-webkit-animation-name:glow-57b0cec3}.loop[data-v-57b0cec3]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-57b0cec3{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-57b0cec3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-57b0cec3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-57b0cec3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zwave-container .no-items[data-v-57b0cec3]{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zwave-container .info-body .row[data-v-57b0cec3]:nth-child(2n),.zwave-container .params .row[data-v-57b0cec3]:nth-child(2n){background:#f0f0f0}.zwave-container .info-body .row[data-v-57b0cec3]:nth-child(odd),.zwave-container .params .row[data-v-57b0cec3]:nth-child(odd){background:#fff}.zwave-container .info-body .row[data-v-57b0cec3]:hover,.zwave-container .params .row[data-v-57b0cec3]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .node .actions .row[data-v-57b0cec3],.zwave-container .scene .actions .row[data-v-57b0cec3]{cursor:pointer}.zwave-container .node form[data-v-57b0cec3],.zwave-container .scene form[data-v-57b0cec3]{margin-bottom:0}.zwave-container .params[data-v-57b0cec3]{background:#fff;padding-bottom:1em}.zwave-container .params .title[data-v-57b0cec3]{font-size:1.1em!important;margin:0!important}.zwave-container .params .section[data-v-57b0cec3]{display:flex;flex-direction:column;padding:0 1em}.zwave-container .params .section[data-v-57b0cec3]:not(:first-child){padding-top:1em}.zwave-container .params .section .header[data-v-57b0cec3]{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zwave-container .params .section .header .buttons[data-v-57b0cec3]{display:inline-flex;justify-content:right}.zwave-container .params .row[data-v-57b0cec3]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zwave-container .params .row[data-v-57b0cec3]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .params .param-name[data-v-57b0cec3]{display:inline-flex;width:40%;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .params .param-value[data-v-57b0cec3]{display:inline-block;width:58%;text-align:right}.zwave-container .params .param-value .value-edit[data-v-57b0cec3]{display:flex;align-items:center}.zwave-container .params .param-value .value-data[data-v-57b0cec3]{display:inline-block;font-weight:700}.zwave-container .params .param-value .slider-container[data-v-57b0cec3]{display:flex;align-items:center}.zwave-container .params .param-value .unit[data-v-57b0cec3]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .params .param-value select[data-v-57b0cec3]{width:100%}.zwave-container .params .param-value .numeric input.slider[data-v-57b0cec3]{text-align:left}.zwave-container .params .param-value .numeric input[type=text][data-v-57b0cec3]{text-align:right;width:100%}.zwave-container .params .param-value .numeric .row[data-v-57b0cec3],.zwave-container .params .param-value .numeric .row[data-v-57b0cec3]:hover{background:none}.zwave-container .params .param-value .numeric .value-max[data-v-57b0cec3],.zwave-container .params .param-value .numeric .value-min[data-v-57b0cec3]{width:50%;font-size:.85em;opacity:.75}.zwave-container .params .param-value .numeric .value-min[data-v-57b0cec3]{text-align:left}.zwave-container .params .param-value .numeric .value-max[data-v-57b0cec3]{text-align:right}.zwave-container .params .param-value .edit-cell[data-v-57b0cec3]{width:100%;display:inline-flex;justify-content:right;align-items:center}.zwave-container .params .param-value .edit-cell .buttons[data-v-57b0cec3]{margin:0}.zwave-container .row[data-v-57b0cec3]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zwave-container .row .param-name[data-v-57b0cec3]{width:100%;font-weight:700}.zwave-container .row .param-value[data-v-57b0cec3]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zwave-container .row .param-name[data-v-57b0cec3]{width:40%}.zwave-container .row .param-value[data-v-57b0cec3]{width:58%;justify-content:right}}.zwave-container .row .param-name[data-v-57b0cec3]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .row .param-value[data-v-57b0cec3]{display:inline-flex;align-items:center}.zwave-container .row .param-value .value-edit[data-v-57b0cec3]{display:flex;align-items:center}.zwave-container .row .param-value .value-data[data-v-57b0cec3]{display:inline-block;font-weight:700}.zwave-container .row .param-value .slider-container[data-v-57b0cec3]{display:flex;align-items:center}.zwave-container .row .param-value .unit[data-v-57b0cec3]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .row .param-value select[data-v-57b0cec3]{width:100%}.zwave-container .row .param-value .numeric input.slider[data-v-57b0cec3]{text-align:left}.zwave-container .row .param-value .numeric input[type=text][data-v-57b0cec3]{text-align:right;width:100%}.zwave-container .row .param-value .numeric .row[data-v-57b0cec3],.zwave-container .row .param-value .numeric .row[data-v-57b0cec3]:hover{background:none}.zwave-container .row .param-value .numeric .value-max[data-v-57b0cec3],.zwave-container .row .param-value .numeric .value-min[data-v-57b0cec3]{width:50%;font-size:.85em;opacity:.75}.zwave-container .row .param-value .numeric .value-min[data-v-57b0cec3]{text-align:left}.zwave-container .row .param-value .numeric .value-max[data-v-57b0cec3]{text-align:right}.zwave-container .btn-default[data-v-57b0cec3]{border:0;padding:0 1em}.zwave-container .btn-default[data-v-57b0cec3]:hover{border:1px solid #ddd;border-radius:1em}.zwave-container .buttons[data-v-57b0cec3]{text-align:right}.zwave-container .view-container[data-v-57b0cec3]{width:100%;height:calc(100% - 3.5em);overflow:auto;display:flex;justify-content:center}.zwave-container .view[data-v-57b0cec3]{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:1024px){.zwave-container .view[data-v-57b0cec3]{width:100%;border-radius:0;margin-top:0}}@media screen and (min-width:1024px){.zwave-container .view[data-v-57b0cec3]{min-width:400pt;max-width:750pt;border-radius:1.5em;margin-top:1em}}.zwave-container .item[data-v-57b0cec3]{border-bottom:1px solid #ddd}.zwave-container .item.selected[data-v-57b0cec3]{box-shadow:0 2px 4px 0 #bbb}.zwave-container .item .name.header[data-v-57b0cec3]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zwave-container .item .name.header[data-v-57b0cec3]:hover{border-radius:1.5em}.zwave-container .item .name.header.selected[data-v-57b0cec3]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:1.5em}.zwave-container .item .title[data-v-57b0cec3]{font-size:1.2em;padding-left:.5em}.zwave-container .item .buttons[data-v-57b0cec3]{margin:0}.zwave-container .item[data-v-57b0cec3]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .item:hover.selected[data-v-57b0cec3]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zwave-container .item[data-v-57b0cec3]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .item[data-v-57b0cec3]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .item .params .section[data-v-57b0cec3]{padding:1.5em 0 0 0}.zwave-container .item .value .param-name[data-v-57b0cec3]{display:inline-block}.zwave-container .item .value .param-name .name[data-v-57b0cec3]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zwave-container .item .value .param-name .name[data-v-57b0cec3]:before{content:"["}.zwave-container .item .value .param-name .name[data-v-57b0cec3]:after{content:"]"}.zwave-container .item .value .param-name .unit[data-v-57b0cec3]{font-size:.8em}.zwave-container .item .value .param-name .unit[data-v-57b0cec3]:before{content:" [unit: "}.zwave-container .item .value .param-name .unit[data-v-57b0cec3]:after{content:"]"}.zwave-container .item .value .param-value label[data-v-57b0cec3]{width:90%}.zwave-container .item .value .param-value input[data-v-57b0cec3]{width:100%}.zwave-container .item button[data-v-57b0cec3]{border:0;background:none;padding:0 .5em}.zwave-container .item button[data-v-57b0cec3]:hover{color:#35b870}@media screen and (max-width:769px){.zwave-container .item .name-edit[data-v-57b0cec3]{justify-content:left}}@media screen and (min-width:769px){.zwave-container .item .name-edit[data-v-57b0cec3]{justify-content:right}}.zwave-container .item .name-edit[data-v-57b0cec3]{width:100%;display:inline-flex;align-items:center}.zwave-container .item .name-edit form[data-v-57b0cec3]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zwave-container .item .name-edit .buttons[data-v-57b0cec3]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zwave-container .item .name-edit form[data-v-57b0cec3]{background:none;padding:0;border:none;box-shadow:none}.zwave-container .btn-value-name-edit[data-v-57b0cec3]{padding:0}.zwave-container .modal .section .header[data-v-57b0cec3]{background:none;padding:.5em 0}.zwave-container .modal .section .body[data-v-57b0cec3]{padding:0}.zwave-container .modal .network-info[data-v-57b0cec3]{min-width:600pt}.zwave-container .error[data-v-57b0cec3]{color:#a00}.zwave-container form[data-v-57b0cec3]{border:none;box-shadow:none;padding:0;margin:0}.zwave-container button[data-v-57b0cec3]{background:none;border:none;padding:0 .75em}.zwave-container button[data-v-57b0cec3]:hover{color:#35b870}.zwave-container .buttons[data-v-57b0cec3]{display:inline-flex;margin:0}.zwave-container .buttons .dropdown .item[data-v-57b0cec3]{padding:.5em 2em .5em .5em}.zwave-container select[data-v-57b0cec3]{width:100%}.zwave-container .clickable[data-v-57b0cec3]{cursor:pointer}.zwave-container .buttons button[data-v-57b0cec3]{background:none!important}.zwave-container .view.values .node-container[data-v-57b0cec3]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .view.values .node-container[data-v-57b0cec3]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .view.values .node-container .item[data-v-57b0cec3]{border-radius:0}.node-container:first-child .item.node[data-v-57b0cec3]:hover{border-radius:1.5em 1.5em 0 0}.node-container:last-child .item.node[data-v-57b0cec3]:hover{border-radius:0 0 1.5em 1.5em}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zwave-container .no-items{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zwave-container .info-body .row:nth-child(2n),.zwave-container .params .row:nth-child(2n){background:#f0f0f0}.zwave-container .info-body .row:nth-child(odd),.zwave-container .params .row:nth-child(odd){background:#fff}.zwave-container .info-body .row:hover,.zwave-container .params .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .node .actions .row,.zwave-container .scene .actions .row{cursor:pointer}.zwave-container .node form,.zwave-container .scene form{margin-bottom:0}.zwave-container .params{background:#fff;padding-bottom:1em}.zwave-container .params .title{font-size:1.1em!important;margin:0!important}.zwave-container .params .section{display:flex;flex-direction:column;padding:0 1em}.zwave-container .params .section:not(:first-child){padding-top:1em}.zwave-container .params .section .header{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zwave-container .params .section .header .buttons{display:inline-flex;justify-content:right}.zwave-container .params .row{display:flex;align-items:center;border-radius:1em;padding:.3em}.zwave-container .params .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .params .param-name{display:inline-flex;width:40%;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .params .param-value{display:inline-block;width:58%;text-align:right}.zwave-container .params .param-value .value-edit{display:flex;align-items:center}.zwave-container .params .param-value .value-data{display:inline-block;font-weight:700}.zwave-container .params .param-value .slider-container{display:flex;align-items:center}.zwave-container .params .param-value .unit{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .params .param-value select{width:100%}.zwave-container .params .param-value .numeric input.slider{text-align:left}.zwave-container .params .param-value .numeric input[type=text]{text-align:right;width:100%}.zwave-container .params .param-value .numeric .row,.zwave-container .params .param-value .numeric .row:hover{background:none}.zwave-container .params .param-value .numeric .value-max,.zwave-container .params .param-value .numeric .value-min{width:50%;font-size:.85em;opacity:.75}.zwave-container .params .param-value .numeric .value-min{text-align:left}.zwave-container .params .param-value .numeric .value-max{text-align:right}.zwave-container .params .param-value .edit-cell{width:100%;display:inline-flex;justify-content:right;align-items:center}.zwave-container .params .param-value .edit-cell .buttons{margin:0}.zwave-container .row{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zwave-container .row .param-name{width:100%;font-weight:700}.zwave-container .row .param-value{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zwave-container .row .param-name{width:40%}.zwave-container .row .param-value{width:58%;justify-content:right}}.zwave-container .row .param-name{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .row .param-value{display:inline-flex;align-items:center}.zwave-container .row .param-value .value-edit{display:flex;align-items:center}.zwave-container .row .param-value .value-data{display:inline-block;font-weight:700}.zwave-container .row .param-value .slider-container{display:flex;align-items:center}.zwave-container .row .param-value .unit{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .row .param-value select{width:100%}.zwave-container .row .param-value .numeric input.slider{text-align:left}.zwave-container .row .param-value .numeric input[type=text]{text-align:right;width:100%}.zwave-container .row .param-value .numeric .row,.zwave-container .row .param-value .numeric .row:hover{background:none}.zwave-container .row .param-value .numeric .value-max,.zwave-container .row .param-value .numeric .value-min{width:50%;font-size:.85em;opacity:.75}.zwave-container .row .param-value .numeric .value-min{text-align:left}.zwave-container .row .param-value .numeric .value-max{text-align:right}.zwave-container .btn-default{border:0;padding:0 1em}.zwave-container .btn-default:hover{border:1px solid #ddd;border-radius:1em}.zwave-container .buttons{text-align:right}.zwave-container .view-container{width:100%;height:calc(100% - 3.5em);overflow:auto;display:flex;justify-content:center}.zwave-container .view{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:1024px){.zwave-container .view{width:100%;border-radius:0;margin-top:0}}@media screen and (min-width:1024px){.zwave-container .view{min-width:400pt;max-width:750pt;border-radius:1.5em;margin-top:1em}}.zwave-container .item{border-bottom:1px solid #ddd}.zwave-container .item.selected{box-shadow:0 2px 4px 0 #bbb}.zwave-container .item .name.header{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zwave-container .item .name.header:hover{border-radius:1.5em}.zwave-container .item .name.header.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:1.5em}.zwave-container .item .title{font-size:1.2em;padding-left:.5em}.zwave-container .item .buttons{margin:0}.zwave-container .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .item:hover.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zwave-container .item:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .item:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .item .params .section{padding:1.5em 0 0 0}.zwave-container .item .value .param-name{display:inline-block}.zwave-container .item .value .param-name .name{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zwave-container .item .value .param-name .name:before{content:"["}.zwave-container .item .value .param-name .name:after{content:"]"}.zwave-container .item .value .param-name .unit{font-size:.8em}.zwave-container .item .value .param-name .unit:before{content:" [unit: "}.zwave-container .item .value .param-name .unit:after{content:"]"}.zwave-container .item .value .param-value label{width:90%}.zwave-container .item .value .param-value input{width:100%}.zwave-container .item button{border:0;background:none;padding:0 .5em}.zwave-container .item button:hover{color:#35b870}@media screen and (max-width:769px){.zwave-container .item .name-edit{justify-content:left}}@media screen and (min-width:769px){.zwave-container .item .name-edit{justify-content:right}}.zwave-container .item .name-edit,.zwave-container .item .name-edit form{width:100%;display:inline-flex;align-items:center}.zwave-container .item .name-edit form{justify-content:right;flex-direction:row}.zwave-container .item .name-edit .buttons{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zwave-container .item .name-edit form{background:none;padding:0;border:none;box-shadow:none}.zwave-container .btn-value-name-edit{padding:0}.zwave-container .modal .section .header{background:none;padding:.5em 0}.zwave-container .modal .section .body{padding:0}.zwave-container .modal .network-info{min-width:600pt}.zwave-container .error{color:#a00}.zwave-container form{border:none;box-shadow:none;padding:0;margin:0}.zwave-container button{background:none;border:none;padding:0 .75em}.zwave-container button:hover{color:#35b870}.zwave-container .buttons{display:inline-flex;margin:0}.zwave-container .buttons .dropdown .item{padding:.5em 2em .5em .5em}.zwave-container select{width:100%}.zwave-container .clickable{cursor:pointer}.zwave-container .buttons button{background:none!important}.zwave-container .view.values .node-container:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .view.values .node-container:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .view.values .node-container .item{border-radius:0}.zwave-container{height:100%;flex-direction:column;overflow:auto}.zwave-container,.zwave-container .view-options{width:100%;padding:0;display:flex;align-items:center}.zwave-container .view-options{height:3.5em;justify-content:space-between;background:#f9fafa;border-bottom:1px solid #ddd;box-shadow:0 3px 2px -1px silver}.zwave-container .view-options .view-selector{display:inline-flex;padding-left:.5em}.zwave-container .view-options .view-selector label,.zwave-container .view-options select{width:100%}.zwave-container .view-options .buttons{display:inline-flex;margin:0!important;justify-content:flex-end}.zwave-container .view-options .buttons button{border:none;background:none}.zwave-container .group-add{margin:-2em;min-width:20em;padding-bottom:1em}.zwave-container .network-info{margin:-1em}.zwave-container .add-node-form,.zwave-container .fields{display:flex;flex-direction:column;justify-content:center}.zwave-container .add-node-form input,.zwave-container .fields input{margin:.5em}.zwave-container .add-node-form .buttons,.zwave-container .fields .buttons{box-shadow:0 -1px silver;margin-top:.75em;padding-top:.75em;justify-content:right} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2764.7b323478.css b/platypush/backend/http/webapp/dist/static/css/2764.7b323478.css new file mode 100644 index 0000000000..fdf9a0f808 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2764.7b323478.css @@ -0,0 +1 @@ +.col-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7dfc81fd]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7dfc81fd]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7dfc81fd]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7dfc81fd]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7dfc81fd]:first-child{margin-left:26%!important}.col-offset-3[data-v-7dfc81fd]:not(first-child){margin-left:30%!important}.col-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7dfc81fd]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7dfc81fd]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7dfc81fd]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7dfc81fd]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7dfc81fd]:first-child{margin-left:52%!important}.col-offset-6[data-v-7dfc81fd]:not(first-child){margin-left:56%!important}.col-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7dfc81fd]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7dfc81fd]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7dfc81fd]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7dfc81fd]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7dfc81fd]:first-child{margin-left:78%!important}.col-offset-9[data-v-7dfc81fd]:not(first-child){margin-left:82%!important}.col-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7dfc81fd]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7dfc81fd]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7dfc81fd]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7dfc81fd]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-1[data-v-7dfc81fd]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-2[data-v-7dfc81fd]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-3[data-v-7dfc81fd]{margin-left:26%}.col-no-margin-s-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-4[data-v-7dfc81fd]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-5[data-v-7dfc81fd]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-6[data-v-7dfc81fd]{margin-left:52%}.col-no-margin-s-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-7[data-v-7dfc81fd]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-8[data-v-7dfc81fd]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-9[data-v-7dfc81fd]{margin-left:78%}.col-no-margin-s-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-10[data-v-7dfc81fd]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-s-11[data-v-7dfc81fd]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7dfc81fd]{display:none!important}.s-visible[data-v-7dfc81fd]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-1[data-v-7dfc81fd]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-2[data-v-7dfc81fd]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-3[data-v-7dfc81fd]{margin-left:26%}.col-no-margin-m-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-4[data-v-7dfc81fd]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-5[data-v-7dfc81fd]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-6[data-v-7dfc81fd]{margin-left:52%}.col-no-margin-m-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-7[data-v-7dfc81fd]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-8[data-v-7dfc81fd]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-9[data-v-7dfc81fd]{margin-left:78%}.col-no-margin-m-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-10[data-v-7dfc81fd]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-m-11[data-v-7dfc81fd]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7dfc81fd]{display:none!important}.m-visible[data-v-7dfc81fd]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-1[data-v-7dfc81fd]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-2[data-v-7dfc81fd]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-3[data-v-7dfc81fd]{margin-left:26%}.col-no-margin-l-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-4[data-v-7dfc81fd]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-5[data-v-7dfc81fd]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-6[data-v-7dfc81fd]{margin-left:52%}.col-no-margin-l-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-7[data-v-7dfc81fd]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-8[data-v-7dfc81fd]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-9[data-v-7dfc81fd]{margin-left:78%}.col-no-margin-l-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-10[data-v-7dfc81fd]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-l-11[data-v-7dfc81fd]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7dfc81fd]{display:none!important}.l-visible[data-v-7dfc81fd]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-1[data-v-7dfc81fd]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-2[data-v-7dfc81fd]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-3[data-v-7dfc81fd]{margin-left:26%}.col-no-margin-xl-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-4[data-v-7dfc81fd]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-5[data-v-7dfc81fd]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-6[data-v-7dfc81fd]{margin-left:52%}.col-no-margin-xl-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-7[data-v-7dfc81fd]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-8[data-v-7dfc81fd]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-9[data-v-7dfc81fd]{margin-left:78%}.col-no-margin-xl-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-10[data-v-7dfc81fd]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xl-11[data-v-7dfc81fd]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7dfc81fd]{display:none!important}.xl-visible[data-v-7dfc81fd]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7dfc81fd]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7dfc81fd]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7dfc81fd]{margin-left:26%}.col-no-margin-xxl-3[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7dfc81fd]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7dfc81fd]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7dfc81fd]{margin-left:52%}.col-no-margin-xxl-6[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7dfc81fd]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7dfc81fd]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7dfc81fd]{margin-left:78%}.col-no-margin-xxl-9[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7dfc81fd]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7dfc81fd]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7dfc81fd]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7dfc81fd]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7dfc81fd]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7dfc81fd]{display:none!important}.xxl-visible[data-v-7dfc81fd]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7dfc81fd]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7dfc81fd]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7dfc81fd]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7dfc81fd]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7dfc81fd]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7dfc81fd]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7dfc81fd]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7dfc81fd]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7dfc81fd]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7dfc81fd]{display:none!important}}.vertical-center[data-v-7dfc81fd]{display:flex;align-items:center}.horizontal-center[data-v-7dfc81fd]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7dfc81fd]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7dfc81fd]{display:none!important}.no-content[data-v-7dfc81fd]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7dfc81fd]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7dfc81fd]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7dfc81fd]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7dfc81fd]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7dfc81fd]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7dfc81fd]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7dfc81fd],.btn[data-v-7dfc81fd],button[data-v-7dfc81fd]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7dfc81fd],.btn-default[type=submit][data-v-7dfc81fd],.btn.btn-primary[data-v-7dfc81fd],.btn[type=submit][data-v-7dfc81fd],button.btn-primary[data-v-7dfc81fd],button[type=submit][data-v-7dfc81fd]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7dfc81fd]:hover,.btn[data-v-7dfc81fd]:hover,button[data-v-7dfc81fd]:hover{color:#35b870}.btn .icon[data-v-7dfc81fd],.btn-default .icon[data-v-7dfc81fd],button .icon[data-v-7dfc81fd]{margin-right:.5em}.btn-default[data-v-7dfc81fd]:disabled,.btn-default[disabled][data-v-7dfc81fd],.btn[data-v-7dfc81fd]:disabled,.btn[disabled][data-v-7dfc81fd],button[data-v-7dfc81fd]:disabled,button[disabled][data-v-7dfc81fd]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7dfc81fd]{cursor:grab!important}.dragged[data-v-7dfc81fd]{opacity:.5!important}input[type=password][data-v-7dfc81fd],input[type=text][data-v-7dfc81fd]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7dfc81fd]:focus,input[type=text][data-v-7dfc81fd]:focus{border:1px solid #35b870}button[data-v-7dfc81fd],input[data-v-7dfc81fd]{outline:none}input[type=text][data-v-7dfc81fd]:hover,textarea[data-v-7dfc81fd]:hover{border:1px solid #9cdfb0}ul[data-v-7dfc81fd]{margin:0;padding:0;list-style:none}a[data-v-7dfc81fd]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7dfc81fd]:hover{color:#35b870}[data-v-7dfc81fd]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7dfc81fd]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7dfc81fd]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7dfc81fd]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7dfc81fd]{color:#ad1717}body[data-v-7dfc81fd]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7dfc81fd] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7dfc81fd] .nav .path{cursor:pointer}.browser[data-v-7dfc81fd] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7dfc81fd] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7dfc81fd]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7dfc81fd]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7dfc81fd],input[type=number][data-v-7dfc81fd],input[type=password][data-v-7dfc81fd],input[type=search][data-v-7dfc81fd],input[type=text][data-v-7dfc81fd],input[type=time][data-v-7dfc81fd]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7dfc81fd]:hover,input[type=number][data-v-7dfc81fd]:hover,input[type=password][data-v-7dfc81fd]:hover,input[type=search][data-v-7dfc81fd]:hover,input[type=text][data-v-7dfc81fd]:hover,input[type=time][data-v-7dfc81fd]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7dfc81fd]:focus,input[type=number][data-v-7dfc81fd]:focus,input[type=password][data-v-7dfc81fd]:focus,input[type=search][data-v-7dfc81fd]:focus,input[type=text][data-v-7dfc81fd]:focus,input[type=time][data-v-7dfc81fd]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7dfc81fd],input[type=number].with-icon[data-v-7dfc81fd],input[type=password].with-icon[data-v-7dfc81fd],input[type=search].with-icon[data-v-7dfc81fd],input[type=text].with-icon[data-v-7dfc81fd],input[type=time].with-icon[data-v-7dfc81fd]{padding-left:.3em}input[type=search][data-v-7dfc81fd],input[type=text][data-v-7dfc81fd]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7dfc81fd]{animation-fill-mode:both;animation-name:fadeIn-7dfc81fd;-webkit-animation-name:fadeIn-7dfc81fd}.fade-in[data-v-7dfc81fd],.fade-out[data-v-7dfc81fd]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7dfc81fd]{animation-fill-mode:both;animation-name:fadeOut-7dfc81fd;-webkit-animation-name:fadeOut-7dfc81fd}.expand[data-v-7dfc81fd]{animation-fill-mode:both;animation-name:expand-7dfc81fd;-webkit-animation-name:expand-7dfc81fd}.expand[data-v-7dfc81fd],.shrink[data-v-7dfc81fd]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7dfc81fd]{animation-fill-mode:both;animation-name:shrink-7dfc81fd;-webkit-animation-name:shrink-7dfc81fd}.fold[data-v-7dfc81fd]{animation-fill-mode:both;animation-name:fold-7dfc81fd;-webkit-animation-name:fold-7dfc81fd}.fold[data-v-7dfc81fd],.unfold[data-v-7dfc81fd]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7dfc81fd]{animation-fill-mode:both;animation-name:unfold-7dfc81fd;-webkit-animation-name:unfold-7dfc81fd}.dim[data-v-7dfc81fd]{animation-fill-mode:both;animation-name:dim-7dfc81fd;-webkit-animation-name:dim-7dfc81fd}.brighten[data-v-7dfc81fd],.dim[data-v-7dfc81fd]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7dfc81fd]{animation-fill-mode:both;animation-name:brighten-7dfc81fd;-webkit-animation-name:brighten-7dfc81fd}@keyframes fadeIn-7dfc81fd{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7dfc81fd{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7dfc81fd{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7dfc81fd{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7dfc81fd{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7dfc81fd{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7dfc81fd{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7dfc81fd{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7dfc81fd]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7dfc81fd;-webkit-animation-name:glow-7dfc81fd}.loop[data-v-7dfc81fd]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7dfc81fd{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7dfc81fd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7dfc81fd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7dfc81fd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.channel[data-v-7dfc81fd],.playlist-container[data-v-7dfc81fd]{--banner-height:5em}}@media screen and (min-width:769px){.channel[data-v-7dfc81fd],.playlist-container[data-v-7dfc81fd]{--banner-height:100px}}.header[data-v-7dfc81fd]{border-bottom:1px solid #ddd;margin-bottom:.5em;position:relative;overflow-y:auto}.header .banner[data-v-7dfc81fd]{height:var(--banner-height);display:flex;background-color:#000;justify-content:center}.header .banner img[data-v-7dfc81fd]{max-width:800px;max-height:100%;flex:1}.header .image[data-v-7dfc81fd]{height:100px;margin:-2.5em 2em .5em .5em}.header .image img[data-v-7dfc81fd]{height:100%;border-radius:50%}.header .row[data-v-7dfc81fd]{display:flex}@media screen and (min-width:1024px){.header .row[data-v-7dfc81fd]{flex-direction:row}}.header .row .info[data-v-7dfc81fd]{display:flex;flex-direction:column;align-items:center;height:100%;background-color:rgba(0,0,0,.5)}.header .row .info .row[data-v-7dfc81fd]{width:100%;display:flex;align-items:center;justify-content:center;flex:1;padding:0 .5em}.header .info-container[data-v-7dfc81fd]{position:absolute;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);color:hsla(0,0%,100%,.9);display:flex;flex-direction:column}.header .info-container a[data-v-7dfc81fd]{color:hsla(0,0%,100%,.9)!important}.header .info-container a[data-v-7dfc81fd]:hover{color:#35b870!important}.header .info-container .title[data-v-7dfc81fd]{letter-spacing:.1em;color:hsla(0,0%,100%,.9)!important}.header .info-container .n-items[data-v-7dfc81fd]{margin-left:auto;padding:0 .5em}.header .title-container[data-v-7dfc81fd]{max-height:var(--banner-height);overflow-y:hidden}.header .title[data-v-7dfc81fd]{height:100%;align-content:center;color:#23513a;font-size:1.7em;font-weight:700;margin:.5em 0;-webkit-text-decoration:dotted;text-decoration:dotted}.header .title[data-v-7dfc81fd]:hover{color:#35b870}.header .description[data-v-7dfc81fd]{font-size:.9em;margin-right:.5em}.media-results[data-v-7dfc81fd]{height:calc(100% - var(--banner-height) - 1em)}.media-youtube-playlist[data-v-7dfc81fd]{height:100%}.media-youtube-playlist .playlist-container[data-v-7dfc81fd]{height:100%;display:flex;flex-direction:column}.media-youtube-playlist .header .banner[data-v-7dfc81fd]{opacity:.75}.media-youtube-playlist .header .channel[data-v-7dfc81fd]{flex:1} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/281.b8d8c407.css b/platypush/backend/http/webapp/dist/static/css/281.b8d8c407.css deleted file mode 100644 index 9640a060e4..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/281.b8d8c407.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3aa50a14]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3aa50a14]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3aa50a14]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3aa50a14]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3aa50a14]:first-child{margin-left:26%!important}.col-offset-3[data-v-3aa50a14]:not(first-child){margin-left:30%!important}.col-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3aa50a14]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3aa50a14]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3aa50a14]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3aa50a14]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3aa50a14]:first-child{margin-left:52%!important}.col-offset-6[data-v-3aa50a14]:not(first-child){margin-left:56%!important}.col-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3aa50a14]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3aa50a14]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3aa50a14]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3aa50a14]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3aa50a14]:first-child{margin-left:78%!important}.col-offset-9[data-v-3aa50a14]:not(first-child){margin-left:82%!important}.col-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3aa50a14]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3aa50a14]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3aa50a14]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3aa50a14]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-1[data-v-3aa50a14]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-2[data-v-3aa50a14]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-3[data-v-3aa50a14]{margin-left:26%}.col-no-margin-s-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-4[data-v-3aa50a14]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-5[data-v-3aa50a14]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-6[data-v-3aa50a14]{margin-left:52%}.col-no-margin-s-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-7[data-v-3aa50a14]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-8[data-v-3aa50a14]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-9[data-v-3aa50a14]{margin-left:78%}.col-no-margin-s-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-10[data-v-3aa50a14]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-s-11[data-v-3aa50a14]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3aa50a14]{display:none!important}.s-visible[data-v-3aa50a14]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-1[data-v-3aa50a14]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-2[data-v-3aa50a14]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-3[data-v-3aa50a14]{margin-left:26%}.col-no-margin-m-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-4[data-v-3aa50a14]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-5[data-v-3aa50a14]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-6[data-v-3aa50a14]{margin-left:52%}.col-no-margin-m-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-7[data-v-3aa50a14]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-8[data-v-3aa50a14]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-9[data-v-3aa50a14]{margin-left:78%}.col-no-margin-m-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-10[data-v-3aa50a14]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-m-11[data-v-3aa50a14]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3aa50a14]{display:none!important}.m-visible[data-v-3aa50a14]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-1[data-v-3aa50a14]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-2[data-v-3aa50a14]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-3[data-v-3aa50a14]{margin-left:26%}.col-no-margin-l-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-4[data-v-3aa50a14]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-5[data-v-3aa50a14]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-6[data-v-3aa50a14]{margin-left:52%}.col-no-margin-l-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-7[data-v-3aa50a14]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-8[data-v-3aa50a14]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-9[data-v-3aa50a14]{margin-left:78%}.col-no-margin-l-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-10[data-v-3aa50a14]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-l-11[data-v-3aa50a14]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3aa50a14]{display:none!important}.l-visible[data-v-3aa50a14]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-1[data-v-3aa50a14]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-2[data-v-3aa50a14]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-3[data-v-3aa50a14]{margin-left:26%}.col-no-margin-xl-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-4[data-v-3aa50a14]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-5[data-v-3aa50a14]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-6[data-v-3aa50a14]{margin-left:52%}.col-no-margin-xl-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-7[data-v-3aa50a14]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-8[data-v-3aa50a14]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-9[data-v-3aa50a14]{margin-left:78%}.col-no-margin-xl-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-10[data-v-3aa50a14]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xl-11[data-v-3aa50a14]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3aa50a14]{display:none!important}.xl-visible[data-v-3aa50a14]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3aa50a14]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3aa50a14]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3aa50a14]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3aa50a14]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3aa50a14]{margin-left:26%}.col-no-margin-xxl-3[data-v-3aa50a14]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3aa50a14]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3aa50a14]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3aa50a14]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3aa50a14]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3aa50a14]{margin-left:52%}.col-no-margin-xxl-6[data-v-3aa50a14]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3aa50a14]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3aa50a14]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3aa50a14]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3aa50a14]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3aa50a14]{margin-left:78%}.col-no-margin-xxl-9[data-v-3aa50a14]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3aa50a14]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3aa50a14]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3aa50a14]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3aa50a14]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3aa50a14]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3aa50a14]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3aa50a14]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3aa50a14]{display:none!important}.xxl-visible[data-v-3aa50a14]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3aa50a14]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3aa50a14]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3aa50a14]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3aa50a14]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3aa50a14]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3aa50a14]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3aa50a14]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3aa50a14]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3aa50a14]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3aa50a14]{display:none!important}}.vertical-center[data-v-3aa50a14]{display:flex;align-items:center}.horizontal-center[data-v-3aa50a14]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3aa50a14]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3aa50a14]{display:none!important}.no-content[data-v-3aa50a14]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3aa50a14]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3aa50a14]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3aa50a14]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3aa50a14]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3aa50a14]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3aa50a14]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3aa50a14],.btn[data-v-3aa50a14],button[data-v-3aa50a14]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3aa50a14],.btn-default[type=submit][data-v-3aa50a14],.btn.btn-primary[data-v-3aa50a14],.btn[type=submit][data-v-3aa50a14],button.btn-primary[data-v-3aa50a14],button[type=submit][data-v-3aa50a14]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3aa50a14],.btn-default .icon[data-v-3aa50a14],button .icon[data-v-3aa50a14]{margin-right:.5em}input[type=password][data-v-3aa50a14],input[type=text][data-v-3aa50a14]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3aa50a14]:focus,input[type=text][data-v-3aa50a14]:focus{border:1px solid #35b870}button[data-v-3aa50a14],input[data-v-3aa50a14]{outline:none}input[type=text][data-v-3aa50a14]:hover,textarea[data-v-3aa50a14]:hover{border:1px solid #9cdfb0}ul[data-v-3aa50a14]{margin:0;padding:0;list-style:none}a[data-v-3aa50a14]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3aa50a14]:hover{color:#35b870}[data-v-3aa50a14]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3aa50a14]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3aa50a14]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3aa50a14]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3aa50a14]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3aa50a14] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3aa50a14] .nav .path{cursor:pointer}.browser[data-v-3aa50a14] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3aa50a14] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3aa50a14]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3aa50a14],input[type=number][data-v-3aa50a14],input[type=password][data-v-3aa50a14],input[type=search][data-v-3aa50a14],input[type=text][data-v-3aa50a14],input[type=time][data-v-3aa50a14]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3aa50a14]:hover,input[type=number][data-v-3aa50a14]:hover,input[type=password][data-v-3aa50a14]:hover,input[type=search][data-v-3aa50a14]:hover,input[type=text][data-v-3aa50a14]:hover,input[type=time][data-v-3aa50a14]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3aa50a14]:focus,input[type=number][data-v-3aa50a14]:focus,input[type=password][data-v-3aa50a14]:focus,input[type=search][data-v-3aa50a14]:focus,input[type=text][data-v-3aa50a14]:focus,input[type=time][data-v-3aa50a14]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3aa50a14],input[type=number].with-icon[data-v-3aa50a14],input[type=password].with-icon[data-v-3aa50a14],input[type=search].with-icon[data-v-3aa50a14],input[type=text].with-icon[data-v-3aa50a14],input[type=time].with-icon[data-v-3aa50a14]{padding-left:.3em}input[type=search][data-v-3aa50a14],input[type=text][data-v-3aa50a14]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3aa50a14]{animation-fill-mode:both;animation-name:fadeIn-3aa50a14;-webkit-animation-name:fadeIn-3aa50a14}.fade-in[data-v-3aa50a14],.fade-out[data-v-3aa50a14]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3aa50a14]{animation-fill-mode:both;animation-name:fadeOut-3aa50a14;-webkit-animation-name:fadeOut-3aa50a14}@keyframes fadeIn-3aa50a14{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3aa50a14{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3aa50a14]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3aa50a14;-webkit-animation-name:glow-3aa50a14}.loop[data-v-3aa50a14]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3aa50a14{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3aa50a14]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3aa50a14]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3aa50a14]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-playlists[data-v-3aa50a14]{height:100%;position:relative}.media-youtube-playlists .playlist-body[data-v-3aa50a14]{height:100%}.media-youtube-playlists[data-v-3aa50a14] .playlist.item{position:relative;cursor:pointer}.media-youtube-playlists[data-v-3aa50a14] .playlist.item .title{font-size:1.1em;margin-top:.5em}.media-youtube-playlists[data-v-3aa50a14] .playlist.item .actions{position:absolute;top:0;right:0;display:flex;padding:.5em;background:rgba(0,0,0,.25);opacity:.9;border-radius:0 0 .5em .5em;transition:opacity .2s;z-index:1}.media-youtube-playlists[data-v-3aa50a14] .playlist.item .actions button{background:none;border:none;color:#fff;cursor:pointer;transition:transform .2s;flex:1}.media-youtube-playlists[data-v-3aa50a14] .playlist.item .actions button:hover{color:#35b870;transform:scale(1.2)}.media-youtube-playlists[data-v-3aa50a14] .playlist.item:hover{text-decoration:underline}.media-youtube-playlists[data-v-3aa50a14] .playlist.item:hover img{filter:contrast(70%)}.media-youtube-playlists[data-v-3aa50a14] .modal .edit-playlist-form{min-width:300px;display:flex;flex-direction:column}.media-youtube-playlists[data-v-3aa50a14] .modal .edit-playlist-form .row{margin:.5em 0}.media-youtube-playlists[data-v-3aa50a14] .modal .edit-playlist-form .row input{border:1px solid #e1e4e8;border-radius:1em;padding:.5em;width:100%}.media-youtube-playlists[data-v-3aa50a14] .modal .edit-playlist-form .row input:focus{border:1px solid #32b646}.media-youtube-playlists[data-v-3aa50a14] .modal .edit-playlist-form .row.buttons{display:flex;justify-content:flex-end;margin-top:.5em}.media-youtube-playlists[data-v-3aa50a14] .modal .edit-playlist-form .row.buttons .btn-container{display:flex;justify-content:center}.media-youtube-playlists[data-v-3aa50a14] .modal .edit-playlist-form .row button{margin:0 .5em;padding:.5em;border-radius:1em;cursor:pointer;transition:background .2s}.media-youtube-playlists[data-v-3aa50a14] .modal .edit-playlist-form .row button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/58.ecf614b3.css b/platypush/backend/http/webapp/dist/static/css/2831.09fe1331.css similarity index 72% rename from platypush/backend/http/webapp/dist/static/css/58.ecf614b3.css rename to platypush/backend/http/webapp/dist/static/css/2831.09fe1331.css index 8e846e363f..c529c5a264 100644 --- a/platypush/backend/http/webapp/dist/static/css/58.ecf614b3.css +++ b/platypush/backend/http/webapp/dist/static/css/2831.09fe1331.css @@ -1 +1 @@ -.col-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0bc64e95]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0bc64e95]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0bc64e95]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0bc64e95]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0bc64e95]:first-child{margin-left:26%!important}.col-offset-3[data-v-0bc64e95]:not(first-child){margin-left:30%!important}.col-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0bc64e95]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0bc64e95]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0bc64e95]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0bc64e95]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0bc64e95]:first-child{margin-left:52%!important}.col-offset-6[data-v-0bc64e95]:not(first-child){margin-left:56%!important}.col-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0bc64e95]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0bc64e95]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0bc64e95]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0bc64e95]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0bc64e95]:first-child{margin-left:78%!important}.col-offset-9[data-v-0bc64e95]:not(first-child){margin-left:82%!important}.col-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0bc64e95]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0bc64e95]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0bc64e95]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0bc64e95]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-s-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-s-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-s-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0bc64e95]{display:none!important}.s-visible[data-v-0bc64e95]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-m-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-m-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-m-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0bc64e95]{display:none!important}.m-visible[data-v-0bc64e95]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-l-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-l-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-l-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0bc64e95]{display:none!important}.l-visible[data-v-0bc64e95]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-xl-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-xl-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-xl-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0bc64e95]{display:none!important}.xl-visible[data-v-0bc64e95]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-xxl-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-xxl-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-xxl-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0bc64e95]{display:none!important}.xxl-visible[data-v-0bc64e95]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0bc64e95]{display:none!important}}.vertical-center[data-v-0bc64e95]{display:flex;align-items:center}.horizontal-center[data-v-0bc64e95]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0bc64e95]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0bc64e95]{display:none!important}.no-content[data-v-0bc64e95]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0bc64e95]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0bc64e95]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0bc64e95]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0bc64e95]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0bc64e95]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0bc64e95]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0bc64e95],.btn[data-v-0bc64e95],button[data-v-0bc64e95]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0bc64e95],.btn-default[type=submit][data-v-0bc64e95],.btn.btn-primary[data-v-0bc64e95],.btn[type=submit][data-v-0bc64e95],button.btn-primary[data-v-0bc64e95],button[type=submit][data-v-0bc64e95]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0bc64e95],.btn-default .icon[data-v-0bc64e95],button .icon[data-v-0bc64e95]{margin-right:.5em}input[type=password][data-v-0bc64e95],input[type=text][data-v-0bc64e95]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0bc64e95]:focus,input[type=text][data-v-0bc64e95]:focus{border:1px solid #35b870}button[data-v-0bc64e95],input[data-v-0bc64e95]{outline:none}input[type=text][data-v-0bc64e95]:hover,textarea[data-v-0bc64e95]:hover{border:1px solid #9cdfb0}ul[data-v-0bc64e95]{margin:0;padding:0;list-style:none}a[data-v-0bc64e95]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0bc64e95]:hover{color:#35b870}[data-v-0bc64e95]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0bc64e95]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0bc64e95]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0bc64e95]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0bc64e95]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0bc64e95] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0bc64e95] .nav .path{cursor:pointer}.browser[data-v-0bc64e95] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0bc64e95] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0bc64e95]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0bc64e95],input[type=number][data-v-0bc64e95],input[type=password][data-v-0bc64e95],input[type=search][data-v-0bc64e95],input[type=text][data-v-0bc64e95],input[type=time][data-v-0bc64e95]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0bc64e95]:hover,input[type=number][data-v-0bc64e95]:hover,input[type=password][data-v-0bc64e95]:hover,input[type=search][data-v-0bc64e95]:hover,input[type=text][data-v-0bc64e95]:hover,input[type=time][data-v-0bc64e95]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0bc64e95]:focus,input[type=number][data-v-0bc64e95]:focus,input[type=password][data-v-0bc64e95]:focus,input[type=search][data-v-0bc64e95]:focus,input[type=text][data-v-0bc64e95]:focus,input[type=time][data-v-0bc64e95]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0bc64e95],input[type=number].with-icon[data-v-0bc64e95],input[type=password].with-icon[data-v-0bc64e95],input[type=search].with-icon[data-v-0bc64e95],input[type=text].with-icon[data-v-0bc64e95],input[type=time].with-icon[data-v-0bc64e95]{padding-left:.3em}input[type=search][data-v-0bc64e95],input[type=text][data-v-0bc64e95]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0bc64e95]{animation-fill-mode:both;animation-name:fadeIn-0bc64e95;-webkit-animation-name:fadeIn-0bc64e95}.fade-in[data-v-0bc64e95],.fade-out[data-v-0bc64e95]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0bc64e95]{animation-fill-mode:both;animation-name:fadeOut-0bc64e95;-webkit-animation-name:fadeOut-0bc64e95}@keyframes fadeIn-0bc64e95{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0bc64e95{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0bc64e95]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0bc64e95;-webkit-animation-name:glow-0bc64e95}.loop[data-v-0bc64e95]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0bc64e95{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0bc64e95]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0bc64e95]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0bc64e95]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.copy-button[data-v-0bc64e95]{position:absolute;top:0;right:.5em;margin:0;padding:0!important;background:none;color:#f3f3fa;border:none;padding:.5em;font-size:1.5em;cursor:pointer;z-index:1} \ No newline at end of file +.col-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0bc64e95]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0bc64e95]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0bc64e95]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0bc64e95]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0bc64e95]:first-child{margin-left:26%!important}.col-offset-3[data-v-0bc64e95]:not(first-child){margin-left:30%!important}.col-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0bc64e95]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0bc64e95]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0bc64e95]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0bc64e95]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0bc64e95]:first-child{margin-left:52%!important}.col-offset-6[data-v-0bc64e95]:not(first-child){margin-left:56%!important}.col-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0bc64e95]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0bc64e95]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0bc64e95]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0bc64e95]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0bc64e95]:first-child{margin-left:78%!important}.col-offset-9[data-v-0bc64e95]:not(first-child){margin-left:82%!important}.col-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0bc64e95]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0bc64e95]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0bc64e95]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0bc64e95]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-s-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-s-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-s-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-s-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0bc64e95]{display:none!important}.s-visible[data-v-0bc64e95]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-m-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-m-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-m-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-m-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0bc64e95]{display:none!important}.m-visible[data-v-0bc64e95]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-l-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-l-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-l-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-l-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0bc64e95]{display:none!important}.l-visible[data-v-0bc64e95]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-xl-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-xl-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-xl-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xl-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0bc64e95]{display:none!important}.xl-visible[data-v-0bc64e95]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0bc64e95]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0bc64e95]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0bc64e95]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0bc64e95]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0bc64e95]{margin-left:26%}.col-no-margin-xxl-3[data-v-0bc64e95]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0bc64e95]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0bc64e95]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0bc64e95]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0bc64e95]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0bc64e95]{margin-left:52%}.col-no-margin-xxl-6[data-v-0bc64e95]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0bc64e95]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0bc64e95]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0bc64e95]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0bc64e95]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0bc64e95]{margin-left:78%}.col-no-margin-xxl-9[data-v-0bc64e95]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0bc64e95]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0bc64e95]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0bc64e95]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0bc64e95]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0bc64e95]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0bc64e95]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0bc64e95]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0bc64e95]{display:none!important}.xxl-visible[data-v-0bc64e95]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0bc64e95]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0bc64e95]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0bc64e95]{display:none!important}}.vertical-center[data-v-0bc64e95]{display:flex;align-items:center}.horizontal-center[data-v-0bc64e95]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0bc64e95]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0bc64e95]{display:none!important}.no-content[data-v-0bc64e95]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0bc64e95]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0bc64e95]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0bc64e95]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0bc64e95]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0bc64e95]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0bc64e95]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0bc64e95],.btn[data-v-0bc64e95],button[data-v-0bc64e95]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0bc64e95],.btn-default[type=submit][data-v-0bc64e95],.btn.btn-primary[data-v-0bc64e95],.btn[type=submit][data-v-0bc64e95],button.btn-primary[data-v-0bc64e95],button[type=submit][data-v-0bc64e95]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-0bc64e95]:hover,.btn[data-v-0bc64e95]:hover,button[data-v-0bc64e95]:hover{color:#35b870}.btn .icon[data-v-0bc64e95],.btn-default .icon[data-v-0bc64e95],button .icon[data-v-0bc64e95]{margin-right:.5em}.btn-default[data-v-0bc64e95]:disabled,.btn-default[disabled][data-v-0bc64e95],.btn[data-v-0bc64e95]:disabled,.btn[disabled][data-v-0bc64e95],button[data-v-0bc64e95]:disabled,button[disabled][data-v-0bc64e95]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-0bc64e95]{cursor:grab!important}.dragged[data-v-0bc64e95]{opacity:.5!important}input[type=password][data-v-0bc64e95],input[type=text][data-v-0bc64e95]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0bc64e95]:focus,input[type=text][data-v-0bc64e95]:focus{border:1px solid #35b870}button[data-v-0bc64e95],input[data-v-0bc64e95]{outline:none}input[type=text][data-v-0bc64e95]:hover,textarea[data-v-0bc64e95]:hover{border:1px solid #9cdfb0}ul[data-v-0bc64e95]{margin:0;padding:0;list-style:none}a[data-v-0bc64e95]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0bc64e95]:hover{color:#35b870}[data-v-0bc64e95]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0bc64e95]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0bc64e95]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0bc64e95]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-0bc64e95]{color:#ad1717}body[data-v-0bc64e95]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0bc64e95] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0bc64e95] .nav .path{cursor:pointer}.browser[data-v-0bc64e95] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0bc64e95] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-0bc64e95]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-0bc64e95]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0bc64e95],input[type=number][data-v-0bc64e95],input[type=password][data-v-0bc64e95],input[type=search][data-v-0bc64e95],input[type=text][data-v-0bc64e95],input[type=time][data-v-0bc64e95]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-0bc64e95]:hover,input[type=number][data-v-0bc64e95]:hover,input[type=password][data-v-0bc64e95]:hover,input[type=search][data-v-0bc64e95]:hover,input[type=text][data-v-0bc64e95]:hover,input[type=time][data-v-0bc64e95]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0bc64e95]:focus,input[type=number][data-v-0bc64e95]:focus,input[type=password][data-v-0bc64e95]:focus,input[type=search][data-v-0bc64e95]:focus,input[type=text][data-v-0bc64e95]:focus,input[type=time][data-v-0bc64e95]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0bc64e95],input[type=number].with-icon[data-v-0bc64e95],input[type=password].with-icon[data-v-0bc64e95],input[type=search].with-icon[data-v-0bc64e95],input[type=text].with-icon[data-v-0bc64e95],input[type=time].with-icon[data-v-0bc64e95]{padding-left:.3em}input[type=search][data-v-0bc64e95],input[type=text][data-v-0bc64e95]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0bc64e95]{animation-fill-mode:both;animation-name:fadeIn-0bc64e95;-webkit-animation-name:fadeIn-0bc64e95}.fade-in[data-v-0bc64e95],.fade-out[data-v-0bc64e95]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0bc64e95]{animation-fill-mode:both;animation-name:fadeOut-0bc64e95;-webkit-animation-name:fadeOut-0bc64e95}.expand[data-v-0bc64e95]{animation-fill-mode:both;animation-name:expand-0bc64e95;-webkit-animation-name:expand-0bc64e95}.expand[data-v-0bc64e95],.shrink[data-v-0bc64e95]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-0bc64e95]{animation-fill-mode:both;animation-name:shrink-0bc64e95;-webkit-animation-name:shrink-0bc64e95}.fold[data-v-0bc64e95]{animation-fill-mode:both;animation-name:fold-0bc64e95;-webkit-animation-name:fold-0bc64e95}.fold[data-v-0bc64e95],.unfold[data-v-0bc64e95]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-0bc64e95]{animation-fill-mode:both;animation-name:unfold-0bc64e95;-webkit-animation-name:unfold-0bc64e95}.dim[data-v-0bc64e95]{animation-fill-mode:both;animation-name:dim-0bc64e95;-webkit-animation-name:dim-0bc64e95}.brighten[data-v-0bc64e95],.dim[data-v-0bc64e95]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-0bc64e95]{animation-fill-mode:both;animation-name:brighten-0bc64e95;-webkit-animation-name:brighten-0bc64e95}@keyframes fadeIn-0bc64e95{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0bc64e95{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-0bc64e95{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-0bc64e95{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-0bc64e95{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-0bc64e95{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-0bc64e95{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-0bc64e95{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-0bc64e95]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0bc64e95;-webkit-animation-name:glow-0bc64e95}.loop[data-v-0bc64e95]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0bc64e95{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0bc64e95]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0bc64e95]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0bc64e95]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.copy-button[data-v-0bc64e95]{position:absolute;top:0;right:.5em;margin:0;padding:0!important;background:none;color:#f3f3fa;border:none;padding:.5em;font-size:1.5em;cursor:pointer;z-index:1}pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#2e3440}.hljs,.hljs-subst{color:#d8dee9}.hljs-selector-tag{color:#81a1c1}.hljs-selector-id{color:#8fbcbb;font-weight:700}.hljs-selector-attr,.hljs-selector-class{color:#8fbcbb}.hljs-property,.hljs-selector-pseudo{color:#88c0d0}.hljs-addition{background-color:hsla(92,28%,65%,.5)}.hljs-deletion{background-color:rgba(191,97,106,.5)}.hljs-built_in,.hljs-class,.hljs-type{color:#8fbcbb}.hljs-function,.hljs-function>.hljs-title,.hljs-title.hljs-function{color:#88c0d0}.hljs-keyword,.hljs-literal,.hljs-symbol{color:#81a1c1}.hljs-number{color:#b48ead}.hljs-regexp{color:#ebcb8b}.hljs-string{color:#a3be8c}.hljs-title{color:#8fbcbb}.hljs-params{color:#d8dee9}.hljs-bullet{color:#81a1c1}.hljs-code{color:#8fbcbb}.hljs-emphasis{font-style:italic}.hljs-formula{color:#8fbcbb}.hljs-strong{font-weight:700}.hljs-link:hover{text-decoration:underline}.hljs-comment,.hljs-quote{color:#4c566a}.hljs-doctag{color:#8fbcbb}.hljs-meta,.hljs-meta .hljs-keyword{color:#5e81ac}.hljs-meta .hljs-string{color:#a3be8c}.hljs-attr{color:#8fbcbb}.hljs-attribute{color:#d8dee9}.hljs-name{color:#81a1c1}.hljs-section{color:#88c0d0}.hljs-tag{color:#81a1c1}.hljs-template-variable,.hljs-variable{color:#d8dee9}.hljs-template-tag{color:#5e81ac}.language-abnf .hljs-attribute{color:#88c0d0}.language-abnf .hljs-symbol{color:#ebcb8b}.language-apache .hljs-attribute{color:#88c0d0}.language-apache .hljs-section{color:#81a1c1}.language-arduino .hljs-built_in{color:#88c0d0}.language-aspectj .hljs-meta{color:#d08770}.language-aspectj>.hljs-title{color:#88c0d0}.language-bnf .hljs-attribute{color:#8fbcbb}.language-clojure .hljs-name{color:#88c0d0}.language-clojure .hljs-symbol{color:#ebcb8b}.language-coq .hljs-built_in{color:#88c0d0}.language-cpp .hljs-meta .hljs-string{color:#8fbcbb}.language-css .hljs-built_in{color:#88c0d0}.language-css .hljs-keyword{color:#d08770}.language-diff .hljs-meta,.language-ebnf .hljs-attribute{color:#8fbcbb}.language-glsl .hljs-built_in{color:#88c0d0}.language-groovy .hljs-meta:not(:first-child),.language-haxe .hljs-meta,.language-java .hljs-meta{color:#d08770}.language-ldif .hljs-attribute{color:#8fbcbb}.language-lisp .hljs-name,.language-lua .hljs-built_in,.language-moonscript .hljs-built_in,.language-nginx .hljs-attribute{color:#88c0d0}.language-nginx .hljs-section{color:#5e81ac}.language-pf .hljs-built_in,.language-processing .hljs-built_in{color:#88c0d0}.language-scss .hljs-keyword,.language-stylus .hljs-keyword{color:#81a1c1}.language-swift .hljs-meta{color:#d08770}.language-vim .hljs-built_in{color:#88c0d0;font-style:italic}.language-yaml .hljs-meta{color:#d08770} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2844.31199f56.css b/platypush/backend/http/webapp/dist/static/css/2844.213aa9d5.css similarity index 74% rename from platypush/backend/http/webapp/dist/static/css/2844.31199f56.css rename to platypush/backend/http/webapp/dist/static/css/2844.213aa9d5.css index db5eaf7a23..b9d11fcead 100644 --- a/platypush/backend/http/webapp/dist/static/css/2844.31199f56.css +++ b/platypush/backend/http/webapp/dist/static/css/2844.213aa9d5.css @@ -1 +1 @@ -.col-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-eff375b6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-eff375b6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-eff375b6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-eff375b6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-eff375b6]:first-child{margin-left:26%!important}.col-offset-3[data-v-eff375b6]:not(first-child){margin-left:30%!important}.col-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-eff375b6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-eff375b6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-eff375b6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-eff375b6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-eff375b6]:first-child{margin-left:52%!important}.col-offset-6[data-v-eff375b6]:not(first-child){margin-left:56%!important}.col-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-eff375b6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-eff375b6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-eff375b6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-eff375b6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-eff375b6]:first-child{margin-left:78%!important}.col-offset-9[data-v-eff375b6]:not(first-child){margin-left:82%!important}.col-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-eff375b6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-eff375b6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-eff375b6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-eff375b6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-s-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-s-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-s-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-eff375b6]{display:none!important}.s-visible[data-v-eff375b6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-m-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-m-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-m-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-eff375b6]{display:none!important}.m-visible[data-v-eff375b6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-l-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-l-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-l-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-eff375b6]{display:none!important}.l-visible[data-v-eff375b6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-xl-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-xl-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-xl-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-eff375b6]{display:none!important}.xl-visible[data-v-eff375b6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-xxl-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-xxl-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-xxl-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-eff375b6]{display:none!important}.xxl-visible[data-v-eff375b6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-eff375b6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-eff375b6]{display:none!important}}.vertical-center[data-v-eff375b6]{display:flex;align-items:center}.horizontal-center[data-v-eff375b6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-eff375b6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-eff375b6]{display:none!important}.no-content[data-v-eff375b6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-eff375b6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-eff375b6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-eff375b6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-eff375b6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-eff375b6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-eff375b6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-eff375b6],.btn[data-v-eff375b6],button[data-v-eff375b6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-eff375b6],.btn-default[type=submit][data-v-eff375b6],.btn.btn-primary[data-v-eff375b6],.btn[type=submit][data-v-eff375b6],button.btn-primary[data-v-eff375b6],button[type=submit][data-v-eff375b6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-eff375b6],.btn-default .icon[data-v-eff375b6],button .icon[data-v-eff375b6]{margin-right:.5em}input[type=password][data-v-eff375b6],input[type=text][data-v-eff375b6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-eff375b6]:focus,input[type=text][data-v-eff375b6]:focus{border:1px solid #35b870}button[data-v-eff375b6],input[data-v-eff375b6]{outline:none}input[type=text][data-v-eff375b6]:hover,textarea[data-v-eff375b6]:hover{border:1px solid #9cdfb0}ul[data-v-eff375b6]{margin:0;padding:0;list-style:none}a[data-v-eff375b6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-eff375b6]:hover{color:#35b870}[data-v-eff375b6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-eff375b6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-eff375b6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-eff375b6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-eff375b6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-eff375b6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-eff375b6] .nav .path{cursor:pointer}.browser[data-v-eff375b6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-eff375b6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-eff375b6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-eff375b6],input[type=number][data-v-eff375b6],input[type=password][data-v-eff375b6],input[type=search][data-v-eff375b6],input[type=text][data-v-eff375b6],input[type=time][data-v-eff375b6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-eff375b6]:hover,input[type=number][data-v-eff375b6]:hover,input[type=password][data-v-eff375b6]:hover,input[type=search][data-v-eff375b6]:hover,input[type=text][data-v-eff375b6]:hover,input[type=time][data-v-eff375b6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-eff375b6]:focus,input[type=number][data-v-eff375b6]:focus,input[type=password][data-v-eff375b6]:focus,input[type=search][data-v-eff375b6]:focus,input[type=text][data-v-eff375b6]:focus,input[type=time][data-v-eff375b6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-eff375b6],input[type=number].with-icon[data-v-eff375b6],input[type=password].with-icon[data-v-eff375b6],input[type=search].with-icon[data-v-eff375b6],input[type=text].with-icon[data-v-eff375b6],input[type=time].with-icon[data-v-eff375b6]{padding-left:.3em}input[type=search][data-v-eff375b6],input[type=text][data-v-eff375b6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-eff375b6]{animation-fill-mode:both;animation-name:fadeIn-eff375b6;-webkit-animation-name:fadeIn-eff375b6}.fade-in[data-v-eff375b6],.fade-out[data-v-eff375b6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-eff375b6]{animation-fill-mode:both;animation-name:fadeOut-eff375b6;-webkit-animation-name:fadeOut-eff375b6}@keyframes fadeIn-eff375b6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-eff375b6{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-eff375b6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-eff375b6;-webkit-animation-name:glow-eff375b6}.loop[data-v-eff375b6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-eff375b6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-eff375b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-eff375b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-eff375b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.power-switch[data-v-eff375b6]{position:relative;transition:transform .3s;transform:scale(var(--scale,1)) translateZ(0)}.power-switch[data-v-eff375b6]:active{--scale:.96}.power-switch.disabled[data-v-eff375b6]{opacity:.6}.power-switch input[data-v-eff375b6]{display:none}.power-switch input+label[data-v-eff375b6]{border-radius:1em;display:inline-flex;cursor:pointer;position:relative;transition:box-shadow .4s}.power-switch input+label[data-v-eff375b6]:before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;background:none;opacity:var(--gradient,0);transition:opacity .4s}.power-switch input+label .switch[data-v-eff375b6]{position:relative;display:inline-block;vertical-align:top;height:1.4em;width:2.5em;border-radius:1em;background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}.power-switch input+label .switch[data-v-eff375b6]:before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;background:#00d750;opacity:var(--gradient,0);transition:opacity .4s}.power-switch input+label .switch .dot[data-v-eff375b6]{background:#d4d8d6;position:absolute;width:1.5em;height:1.5em;border-radius:50%;box-shadow:1px 0 3.5px 0 #475c40;left:-.25em;top:-.05em;transform:translateX(var(--offset,0));transition:transform .4s,box-shadow .4s}.power-switch input+label .switch .dot[data-v-eff375b6]:before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;background:#fff;opacity:var(--gradient,0);transition:opacity .4s}.power-switch input+label span[data-v-eff375b6]{line-height:2em;font-size:1.2em;color:var(--text,#646b8c);font-weight:500;display:inline-block;vertical-align:top;position:relative;margin-left:.5em;transition:color .4s}.power-switch input+label+span[data-v-eff375b6]{text-align:center;display:block;position:absolute;left:0;right:0;top:100%;opacity:0;font-size:1em;font-weight:500;color:#e4e4e4;transform:translateY(.2em);transition:opacity .4s,transform .4s}.power-switch input:not(:checked)+label[data-v-eff375b6]{pointer-events:none}.power-switch input:not(:checked)+label+span[data-v-eff375b6]{opacity:1;transform:translateY(.6em)}.power-switch input:checked+label[data-v-eff375b6]{--offset:1.5em;--text:$slider-progress-bg;--gradient:1;--shadow:rgba(0,39,6,.1)} \ No newline at end of file +.col-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-eff375b6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-eff375b6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-eff375b6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-eff375b6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-eff375b6]:first-child{margin-left:26%!important}.col-offset-3[data-v-eff375b6]:not(first-child){margin-left:30%!important}.col-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-eff375b6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-eff375b6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-eff375b6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-eff375b6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-eff375b6]:first-child{margin-left:52%!important}.col-offset-6[data-v-eff375b6]:not(first-child){margin-left:56%!important}.col-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-eff375b6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-eff375b6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-eff375b6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-eff375b6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-eff375b6]:first-child{margin-left:78%!important}.col-offset-9[data-v-eff375b6]:not(first-child){margin-left:82%!important}.col-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-eff375b6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-eff375b6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-eff375b6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-eff375b6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-s-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-s-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-s-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-s-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-eff375b6]{display:none!important}.s-visible[data-v-eff375b6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-m-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-m-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-m-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-m-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-eff375b6]{display:none!important}.m-visible[data-v-eff375b6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-l-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-l-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-l-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-l-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-eff375b6]{display:none!important}.l-visible[data-v-eff375b6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-xl-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-xl-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-xl-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xl-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-eff375b6]{display:none!important}.xl-visible[data-v-eff375b6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-eff375b6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-eff375b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-eff375b6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-eff375b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-eff375b6]{margin-left:26%}.col-no-margin-xxl-3[data-v-eff375b6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-eff375b6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-eff375b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-eff375b6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-eff375b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-eff375b6]{margin-left:52%}.col-no-margin-xxl-6[data-v-eff375b6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-eff375b6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-eff375b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-eff375b6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-eff375b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-eff375b6]{margin-left:78%}.col-no-margin-xxl-9[data-v-eff375b6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-eff375b6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-eff375b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-eff375b6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-eff375b6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-eff375b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-eff375b6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-eff375b6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-eff375b6]{display:none!important}.xxl-visible[data-v-eff375b6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-eff375b6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-eff375b6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-eff375b6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-eff375b6]{display:none!important}}.vertical-center[data-v-eff375b6]{display:flex;align-items:center}.horizontal-center[data-v-eff375b6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-eff375b6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-eff375b6]{display:none!important}.no-content[data-v-eff375b6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-eff375b6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-eff375b6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-eff375b6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-eff375b6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-eff375b6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-eff375b6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-eff375b6],.btn[data-v-eff375b6],button[data-v-eff375b6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-eff375b6],.btn-default[type=submit][data-v-eff375b6],.btn.btn-primary[data-v-eff375b6],.btn[type=submit][data-v-eff375b6],button.btn-primary[data-v-eff375b6],button[type=submit][data-v-eff375b6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-eff375b6]:hover,.btn[data-v-eff375b6]:hover,button[data-v-eff375b6]:hover{color:#35b870}.btn .icon[data-v-eff375b6],.btn-default .icon[data-v-eff375b6],button .icon[data-v-eff375b6]{margin-right:.5em}.btn-default[data-v-eff375b6]:disabled,.btn-default[disabled][data-v-eff375b6],.btn[data-v-eff375b6]:disabled,.btn[disabled][data-v-eff375b6],button[data-v-eff375b6]:disabled,button[disabled][data-v-eff375b6]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-eff375b6]{cursor:grab!important}.dragged[data-v-eff375b6]{opacity:.5!important}input[type=password][data-v-eff375b6],input[type=text][data-v-eff375b6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-eff375b6]:focus,input[type=text][data-v-eff375b6]:focus{border:1px solid #35b870}button[data-v-eff375b6],input[data-v-eff375b6]{outline:none}input[type=text][data-v-eff375b6]:hover,textarea[data-v-eff375b6]:hover{border:1px solid #9cdfb0}ul[data-v-eff375b6]{margin:0;padding:0;list-style:none}a[data-v-eff375b6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-eff375b6]:hover{color:#35b870}[data-v-eff375b6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-eff375b6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-eff375b6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-eff375b6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-eff375b6]{color:#ad1717}body[data-v-eff375b6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-eff375b6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-eff375b6] .nav .path{cursor:pointer}.browser[data-v-eff375b6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-eff375b6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-eff375b6]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-eff375b6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-eff375b6],input[type=number][data-v-eff375b6],input[type=password][data-v-eff375b6],input[type=search][data-v-eff375b6],input[type=text][data-v-eff375b6],input[type=time][data-v-eff375b6]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-eff375b6]:hover,input[type=number][data-v-eff375b6]:hover,input[type=password][data-v-eff375b6]:hover,input[type=search][data-v-eff375b6]:hover,input[type=text][data-v-eff375b6]:hover,input[type=time][data-v-eff375b6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-eff375b6]:focus,input[type=number][data-v-eff375b6]:focus,input[type=password][data-v-eff375b6]:focus,input[type=search][data-v-eff375b6]:focus,input[type=text][data-v-eff375b6]:focus,input[type=time][data-v-eff375b6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-eff375b6],input[type=number].with-icon[data-v-eff375b6],input[type=password].with-icon[data-v-eff375b6],input[type=search].with-icon[data-v-eff375b6],input[type=text].with-icon[data-v-eff375b6],input[type=time].with-icon[data-v-eff375b6]{padding-left:.3em}input[type=search][data-v-eff375b6],input[type=text][data-v-eff375b6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-eff375b6]{animation-fill-mode:both;animation-name:fadeIn-eff375b6;-webkit-animation-name:fadeIn-eff375b6}.fade-in[data-v-eff375b6],.fade-out[data-v-eff375b6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-eff375b6]{animation-fill-mode:both;animation-name:fadeOut-eff375b6;-webkit-animation-name:fadeOut-eff375b6}.expand[data-v-eff375b6]{animation-fill-mode:both;animation-name:expand-eff375b6;-webkit-animation-name:expand-eff375b6}.expand[data-v-eff375b6],.shrink[data-v-eff375b6]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-eff375b6]{animation-fill-mode:both;animation-name:shrink-eff375b6;-webkit-animation-name:shrink-eff375b6}.fold[data-v-eff375b6]{animation-fill-mode:both;animation-name:fold-eff375b6;-webkit-animation-name:fold-eff375b6}.fold[data-v-eff375b6],.unfold[data-v-eff375b6]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-eff375b6]{animation-fill-mode:both;animation-name:unfold-eff375b6;-webkit-animation-name:unfold-eff375b6}.dim[data-v-eff375b6]{animation-fill-mode:both;animation-name:dim-eff375b6;-webkit-animation-name:dim-eff375b6}.brighten[data-v-eff375b6],.dim[data-v-eff375b6]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-eff375b6]{animation-fill-mode:both;animation-name:brighten-eff375b6;-webkit-animation-name:brighten-eff375b6}@keyframes fadeIn-eff375b6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-eff375b6{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-eff375b6{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-eff375b6{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-eff375b6{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-eff375b6{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-eff375b6{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-eff375b6{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-eff375b6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-eff375b6;-webkit-animation-name:glow-eff375b6}.loop[data-v-eff375b6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-eff375b6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-eff375b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-eff375b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-eff375b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.power-switch[data-v-eff375b6]{position:relative;transition:transform .3s;transform:scale(var(--scale,1)) translateZ(0)}.power-switch[data-v-eff375b6]:active{--scale:.96}.power-switch.disabled[data-v-eff375b6]{opacity:.6}.power-switch input[data-v-eff375b6]{display:none}.power-switch input+label[data-v-eff375b6]{border-radius:1em;display:inline-flex;cursor:pointer;position:relative;transition:box-shadow .4s}.power-switch input+label[data-v-eff375b6]:before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;background:none;opacity:var(--gradient,0);transition:opacity .4s}.power-switch input+label .switch[data-v-eff375b6]{position:relative;display:inline-block;vertical-align:top;height:1.4em;width:2.5em;border-radius:1em;background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}.power-switch input+label .switch[data-v-eff375b6]:before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;background:#00d750;opacity:var(--gradient,0);transition:opacity .4s}.power-switch input+label .switch .dot[data-v-eff375b6]{background:#d4d8d6;position:absolute;width:1.5em;height:1.5em;border-radius:50%;box-shadow:1px 0 3.5px 0 #475c40;left:-.25em;top:-.05em;transform:translateX(var(--offset,0));transition:transform .4s,box-shadow .4s}.power-switch input+label .switch .dot[data-v-eff375b6]:before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;background:#fff;opacity:var(--gradient,0);transition:opacity .4s}.power-switch input+label span[data-v-eff375b6]{line-height:2em;font-size:1.2em;color:var(--text,#646b8c);font-weight:500;display:inline-block;vertical-align:top;position:relative;margin-left:.5em;transition:color .4s}.power-switch input+label+span[data-v-eff375b6]{text-align:center;display:block;position:absolute;left:0;right:0;top:100%;opacity:0;font-size:1em;font-weight:500;color:#e4e4e4;transform:translateY(.2em);transition:opacity .4s,transform .4s}.power-switch input:not(:checked)+label[data-v-eff375b6]{pointer-events:none}.power-switch input:not(:checked)+label+span[data-v-eff375b6]{opacity:1;transform:translateY(.6em)}.power-switch input:checked+label[data-v-eff375b6]{--offset:1.5em;--text:$slider-progress-bg;--gradient:1;--shadow:rgba(0,39,6,.1)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/288.ceaf4d40.css b/platypush/backend/http/webapp/dist/static/css/288.ceaf4d40.css deleted file mode 100644 index 958114c5f6..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/288.ceaf4d40.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2495ce8a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2495ce8a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2495ce8a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2495ce8a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2495ce8a]:first-child{margin-left:26%!important}.col-offset-3[data-v-2495ce8a]:not(first-child){margin-left:30%!important}.col-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2495ce8a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2495ce8a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2495ce8a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2495ce8a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2495ce8a]:first-child{margin-left:52%!important}.col-offset-6[data-v-2495ce8a]:not(first-child){margin-left:56%!important}.col-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2495ce8a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2495ce8a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2495ce8a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2495ce8a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2495ce8a]:first-child{margin-left:78%!important}.col-offset-9[data-v-2495ce8a]:not(first-child){margin-left:82%!important}.col-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2495ce8a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2495ce8a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2495ce8a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2495ce8a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-s-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-s-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-s-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2495ce8a]{display:none!important}.s-visible[data-v-2495ce8a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-m-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-m-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-m-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2495ce8a]{display:none!important}.m-visible[data-v-2495ce8a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-l-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-l-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-l-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2495ce8a]{display:none!important}.l-visible[data-v-2495ce8a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-xl-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-xl-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-xl-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2495ce8a]{display:none!important}.xl-visible[data-v-2495ce8a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-xxl-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-xxl-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-xxl-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2495ce8a]{display:none!important}.xxl-visible[data-v-2495ce8a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2495ce8a]{display:none!important}}.vertical-center[data-v-2495ce8a]{display:flex;align-items:center}.horizontal-center[data-v-2495ce8a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2495ce8a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2495ce8a]{display:none!important}.no-content[data-v-2495ce8a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2495ce8a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2495ce8a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2495ce8a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2495ce8a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2495ce8a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2495ce8a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2495ce8a],.btn[data-v-2495ce8a],button[data-v-2495ce8a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2495ce8a],.btn-default[type=submit][data-v-2495ce8a],.btn.btn-primary[data-v-2495ce8a],.btn[type=submit][data-v-2495ce8a],button.btn-primary[data-v-2495ce8a],button[type=submit][data-v-2495ce8a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-2495ce8a],.btn-default .icon[data-v-2495ce8a],button .icon[data-v-2495ce8a]{margin-right:.5em}input[type=password][data-v-2495ce8a],input[type=text][data-v-2495ce8a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2495ce8a]:focus,input[type=text][data-v-2495ce8a]:focus{border:1px solid #35b870}button[data-v-2495ce8a],input[data-v-2495ce8a]{outline:none}input[type=text][data-v-2495ce8a]:hover,textarea[data-v-2495ce8a]:hover{border:1px solid #9cdfb0}ul[data-v-2495ce8a]{margin:0;padding:0;list-style:none}a[data-v-2495ce8a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2495ce8a]:hover{color:#35b870}[data-v-2495ce8a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2495ce8a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2495ce8a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2495ce8a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-2495ce8a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2495ce8a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2495ce8a] .nav .path{cursor:pointer}.browser[data-v-2495ce8a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2495ce8a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-2495ce8a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2495ce8a],input[type=number][data-v-2495ce8a],input[type=password][data-v-2495ce8a],input[type=search][data-v-2495ce8a],input[type=text][data-v-2495ce8a],input[type=time][data-v-2495ce8a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-2495ce8a]:hover,input[type=number][data-v-2495ce8a]:hover,input[type=password][data-v-2495ce8a]:hover,input[type=search][data-v-2495ce8a]:hover,input[type=text][data-v-2495ce8a]:hover,input[type=time][data-v-2495ce8a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2495ce8a]:focus,input[type=number][data-v-2495ce8a]:focus,input[type=password][data-v-2495ce8a]:focus,input[type=search][data-v-2495ce8a]:focus,input[type=text][data-v-2495ce8a]:focus,input[type=time][data-v-2495ce8a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2495ce8a],input[type=number].with-icon[data-v-2495ce8a],input[type=password].with-icon[data-v-2495ce8a],input[type=search].with-icon[data-v-2495ce8a],input[type=text].with-icon[data-v-2495ce8a],input[type=time].with-icon[data-v-2495ce8a]{padding-left:.3em}input[type=search][data-v-2495ce8a],input[type=text][data-v-2495ce8a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2495ce8a]{animation-fill-mode:both;animation-name:fadeIn-2495ce8a;-webkit-animation-name:fadeIn-2495ce8a}.fade-in[data-v-2495ce8a],.fade-out[data-v-2495ce8a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2495ce8a]{animation-fill-mode:both;animation-name:fadeOut-2495ce8a;-webkit-animation-name:fadeOut-2495ce8a}@keyframes fadeIn-2495ce8a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2495ce8a{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-2495ce8a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2495ce8a;-webkit-animation-name:glow-2495ce8a}.loop[data-v-2495ce8a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2495ce8a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2495ce8a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2495ce8a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2495ce8a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.form-footer[data-v-2495ce8a]{height:5em;padding:1em;text-align:right;border-top:1px solid #ddd}.col-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0896abbc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0896abbc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0896abbc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0896abbc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0896abbc]:first-child{margin-left:26%!important}.col-offset-3[data-v-0896abbc]:not(first-child){margin-left:30%!important}.col-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0896abbc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0896abbc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0896abbc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0896abbc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0896abbc]:first-child{margin-left:52%!important}.col-offset-6[data-v-0896abbc]:not(first-child){margin-left:56%!important}.col-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0896abbc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0896abbc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0896abbc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0896abbc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0896abbc]:first-child{margin-left:78%!important}.col-offset-9[data-v-0896abbc]:not(first-child){margin-left:82%!important}.col-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0896abbc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0896abbc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0896abbc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0896abbc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-s-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-s-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-s-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0896abbc]{display:none!important}.s-visible[data-v-0896abbc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-m-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-m-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-m-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0896abbc]{display:none!important}.m-visible[data-v-0896abbc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-l-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-l-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-l-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0896abbc]{display:none!important}.l-visible[data-v-0896abbc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-xl-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-xl-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-xl-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0896abbc]{display:none!important}.xl-visible[data-v-0896abbc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-xxl-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-xxl-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-xxl-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0896abbc]{display:none!important}.xxl-visible[data-v-0896abbc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0896abbc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0896abbc]{display:none!important}}.vertical-center[data-v-0896abbc]{display:flex;align-items:center}.horizontal-center[data-v-0896abbc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0896abbc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0896abbc]{display:none!important}.no-content[data-v-0896abbc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0896abbc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0896abbc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0896abbc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0896abbc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0896abbc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0896abbc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0896abbc],.btn[data-v-0896abbc],button[data-v-0896abbc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0896abbc],.btn-default[type=submit][data-v-0896abbc],.btn.btn-primary[data-v-0896abbc],.btn[type=submit][data-v-0896abbc],button.btn-primary[data-v-0896abbc],button[type=submit][data-v-0896abbc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0896abbc],.btn-default .icon[data-v-0896abbc],button .icon[data-v-0896abbc]{margin-right:.5em}input[type=password][data-v-0896abbc],input[type=text][data-v-0896abbc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0896abbc]:focus,input[type=text][data-v-0896abbc]:focus{border:1px solid #35b870}button[data-v-0896abbc],input[data-v-0896abbc]{outline:none}input[type=text][data-v-0896abbc]:hover,textarea[data-v-0896abbc]:hover{border:1px solid #9cdfb0}ul[data-v-0896abbc]{margin:0;padding:0;list-style:none}a[data-v-0896abbc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0896abbc]:hover{color:#35b870}[data-v-0896abbc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0896abbc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0896abbc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0896abbc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0896abbc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0896abbc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0896abbc] .nav .path{cursor:pointer}.browser[data-v-0896abbc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0896abbc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0896abbc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0896abbc],input[type=number][data-v-0896abbc],input[type=password][data-v-0896abbc],input[type=search][data-v-0896abbc],input[type=text][data-v-0896abbc],input[type=time][data-v-0896abbc]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0896abbc]:hover,input[type=number][data-v-0896abbc]:hover,input[type=password][data-v-0896abbc]:hover,input[type=search][data-v-0896abbc]:hover,input[type=text][data-v-0896abbc]:hover,input[type=time][data-v-0896abbc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0896abbc]:focus,input[type=number][data-v-0896abbc]:focus,input[type=password][data-v-0896abbc]:focus,input[type=search][data-v-0896abbc]:focus,input[type=text][data-v-0896abbc]:focus,input[type=time][data-v-0896abbc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0896abbc],input[type=number].with-icon[data-v-0896abbc],input[type=password].with-icon[data-v-0896abbc],input[type=search].with-icon[data-v-0896abbc],input[type=text].with-icon[data-v-0896abbc],input[type=time].with-icon[data-v-0896abbc]{padding-left:.3em}input[type=search][data-v-0896abbc],input[type=text][data-v-0896abbc]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0896abbc]{animation-fill-mode:both;animation-name:fadeIn-0896abbc;-webkit-animation-name:fadeIn-0896abbc}.fade-in[data-v-0896abbc],.fade-out[data-v-0896abbc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0896abbc]{animation-fill-mode:both;animation-name:fadeOut-0896abbc;-webkit-animation-name:fadeOut-0896abbc}@keyframes fadeIn-0896abbc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0896abbc{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0896abbc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0896abbc;-webkit-animation-name:glow-0896abbc}.loop[data-v-0896abbc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0896abbc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0896abbc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0896abbc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0896abbc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}nav[data-v-0896abbc]{width:2.8em;height:100%;position:relative;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;box-shadow:2.5px 0 4.5px 2px #5e5e5e;margin-left:2.5px;overflow:hidden}nav .menu-button[data-v-0896abbc]{position:absolute;top:.75em;left:0;width:100%;display:inline-flex;justify-content:center;padding:0;margin:0;font-size:1.2em;border:0;background:none;cursor:pointer;z-index:1}nav .menu-button[data-v-0896abbc]:hover{color:#35b870}nav li[data-v-0896abbc]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7}nav li.selected[data-v-0896abbc],nav li[data-v-0896abbc]:hover{border-radius:1.2em;margin:0 .2em}nav li[data-v-0896abbc]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-0896abbc]{background:rgba(160,245,178,.95)}.col-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7e4bd102]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7e4bd102]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7e4bd102]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7e4bd102]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7e4bd102]:first-child{margin-left:26%!important}.col-offset-3[data-v-7e4bd102]:not(first-child){margin-left:30%!important}.col-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7e4bd102]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7e4bd102]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7e4bd102]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7e4bd102]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7e4bd102]:first-child{margin-left:52%!important}.col-offset-6[data-v-7e4bd102]:not(first-child){margin-left:56%!important}.col-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7e4bd102]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7e4bd102]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7e4bd102]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7e4bd102]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7e4bd102]:first-child{margin-left:78%!important}.col-offset-9[data-v-7e4bd102]:not(first-child){margin-left:82%!important}.col-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7e4bd102]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7e4bd102]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7e4bd102]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7e4bd102]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-s-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-s-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-s-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7e4bd102]{display:none!important}.s-visible[data-v-7e4bd102]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-m-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-m-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-m-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7e4bd102]{display:none!important}.m-visible[data-v-7e4bd102]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-l-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-l-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-l-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7e4bd102]{display:none!important}.l-visible[data-v-7e4bd102]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-xl-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-xl-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-xl-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7e4bd102]{display:none!important}.xl-visible[data-v-7e4bd102]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-xxl-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-xxl-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-xxl-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7e4bd102]{display:none!important}.xxl-visible[data-v-7e4bd102]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7e4bd102]{display:none!important}}.vertical-center[data-v-7e4bd102]{display:flex;align-items:center}.horizontal-center[data-v-7e4bd102]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7e4bd102]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7e4bd102]{display:none!important}.no-content[data-v-7e4bd102]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7e4bd102]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7e4bd102]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7e4bd102]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7e4bd102]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7e4bd102]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7e4bd102]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7e4bd102],.btn[data-v-7e4bd102],button[data-v-7e4bd102]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7e4bd102],.btn-default[type=submit][data-v-7e4bd102],.btn.btn-primary[data-v-7e4bd102],.btn[type=submit][data-v-7e4bd102],button.btn-primary[data-v-7e4bd102],button[type=submit][data-v-7e4bd102]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7e4bd102],.btn-default .icon[data-v-7e4bd102],button .icon[data-v-7e4bd102]{margin-right:.5em}input[type=password][data-v-7e4bd102],input[type=text][data-v-7e4bd102]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7e4bd102]:focus,input[type=text][data-v-7e4bd102]:focus{border:1px solid #35b870}button[data-v-7e4bd102],input[data-v-7e4bd102]{outline:none}input[type=text][data-v-7e4bd102]:hover,textarea[data-v-7e4bd102]:hover{border:1px solid #9cdfb0}ul[data-v-7e4bd102]{margin:0;padding:0;list-style:none}a[data-v-7e4bd102]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7e4bd102]:hover{color:#35b870}[data-v-7e4bd102]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7e4bd102]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7e4bd102]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7e4bd102]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7e4bd102]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7e4bd102] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7e4bd102] .nav .path{cursor:pointer}.browser[data-v-7e4bd102] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7e4bd102] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7e4bd102]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7e4bd102],input[type=number][data-v-7e4bd102],input[type=password][data-v-7e4bd102],input[type=search][data-v-7e4bd102],input[type=text][data-v-7e4bd102],input[type=time][data-v-7e4bd102]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7e4bd102]:hover,input[type=number][data-v-7e4bd102]:hover,input[type=password][data-v-7e4bd102]:hover,input[type=search][data-v-7e4bd102]:hover,input[type=text][data-v-7e4bd102]:hover,input[type=time][data-v-7e4bd102]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7e4bd102]:focus,input[type=number][data-v-7e4bd102]:focus,input[type=password][data-v-7e4bd102]:focus,input[type=search][data-v-7e4bd102]:focus,input[type=text][data-v-7e4bd102]:focus,input[type=time][data-v-7e4bd102]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7e4bd102],input[type=number].with-icon[data-v-7e4bd102],input[type=password].with-icon[data-v-7e4bd102],input[type=search].with-icon[data-v-7e4bd102],input[type=text].with-icon[data-v-7e4bd102],input[type=time].with-icon[data-v-7e4bd102]{padding-left:.3em}input[type=search][data-v-7e4bd102],input[type=text][data-v-7e4bd102]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7e4bd102]{animation-fill-mode:both;animation-name:fadeIn-7e4bd102;-webkit-animation-name:fadeIn-7e4bd102}.fade-in[data-v-7e4bd102],.fade-out[data-v-7e4bd102]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7e4bd102]{animation-fill-mode:both;animation-name:fadeOut-7e4bd102;-webkit-animation-name:fadeOut-7e4bd102}@keyframes fadeIn-7e4bd102{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7e4bd102{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7e4bd102]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7e4bd102;-webkit-animation-name:glow-7e4bd102}.loop[data-v-7e4bd102]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7e4bd102{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7e4bd102]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7e4bd102]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7e4bd102]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-7e4bd102]{width:100%;height:3.3em;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header[data-v-7e4bd102] .dropdown .item.active{color:#35b870}.header[data-v-7e4bd102] .dropdown .item.selected{font-weight:700}.col-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1c4503ee]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1c4503ee]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1c4503ee]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1c4503ee]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1c4503ee]:first-child{margin-left:26%!important}.col-offset-3[data-v-1c4503ee]:not(first-child){margin-left:30%!important}.col-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1c4503ee]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1c4503ee]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1c4503ee]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1c4503ee]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1c4503ee]:first-child{margin-left:52%!important}.col-offset-6[data-v-1c4503ee]:not(first-child){margin-left:56%!important}.col-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1c4503ee]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1c4503ee]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1c4503ee]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1c4503ee]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1c4503ee]:first-child{margin-left:78%!important}.col-offset-9[data-v-1c4503ee]:not(first-child){margin-left:82%!important}.col-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1c4503ee]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1c4503ee]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1c4503ee]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1c4503ee]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-1[data-v-1c4503ee]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-2[data-v-1c4503ee]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-3[data-v-1c4503ee]{margin-left:26%}.col-no-margin-s-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-4[data-v-1c4503ee]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-5[data-v-1c4503ee]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-6[data-v-1c4503ee]{margin-left:52%}.col-no-margin-s-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-7[data-v-1c4503ee]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-8[data-v-1c4503ee]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-9[data-v-1c4503ee]{margin-left:78%}.col-no-margin-s-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-10[data-v-1c4503ee]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-s-11[data-v-1c4503ee]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1c4503ee]{display:none!important}.s-visible[data-v-1c4503ee]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-1[data-v-1c4503ee]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-2[data-v-1c4503ee]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-3[data-v-1c4503ee]{margin-left:26%}.col-no-margin-m-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-4[data-v-1c4503ee]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-5[data-v-1c4503ee]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-6[data-v-1c4503ee]{margin-left:52%}.col-no-margin-m-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-7[data-v-1c4503ee]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-8[data-v-1c4503ee]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-9[data-v-1c4503ee]{margin-left:78%}.col-no-margin-m-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-10[data-v-1c4503ee]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-m-11[data-v-1c4503ee]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1c4503ee]{display:none!important}.m-visible[data-v-1c4503ee]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-1[data-v-1c4503ee]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-2[data-v-1c4503ee]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-3[data-v-1c4503ee]{margin-left:26%}.col-no-margin-l-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-4[data-v-1c4503ee]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-5[data-v-1c4503ee]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-6[data-v-1c4503ee]{margin-left:52%}.col-no-margin-l-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-7[data-v-1c4503ee]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-8[data-v-1c4503ee]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-9[data-v-1c4503ee]{margin-left:78%}.col-no-margin-l-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-10[data-v-1c4503ee]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-l-11[data-v-1c4503ee]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1c4503ee]{display:none!important}.l-visible[data-v-1c4503ee]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-1[data-v-1c4503ee]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-2[data-v-1c4503ee]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-3[data-v-1c4503ee]{margin-left:26%}.col-no-margin-xl-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-4[data-v-1c4503ee]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-5[data-v-1c4503ee]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-6[data-v-1c4503ee]{margin-left:52%}.col-no-margin-xl-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-7[data-v-1c4503ee]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-8[data-v-1c4503ee]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-9[data-v-1c4503ee]{margin-left:78%}.col-no-margin-xl-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-10[data-v-1c4503ee]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xl-11[data-v-1c4503ee]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1c4503ee]{display:none!important}.xl-visible[data-v-1c4503ee]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1c4503ee]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1c4503ee]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1c4503ee]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1c4503ee]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1c4503ee]{margin-left:26%}.col-no-margin-xxl-3[data-v-1c4503ee]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1c4503ee]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1c4503ee]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1c4503ee]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1c4503ee]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1c4503ee]{margin-left:52%}.col-no-margin-xxl-6[data-v-1c4503ee]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1c4503ee]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1c4503ee]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1c4503ee]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1c4503ee]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1c4503ee]{margin-left:78%}.col-no-margin-xxl-9[data-v-1c4503ee]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1c4503ee]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1c4503ee]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1c4503ee]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1c4503ee]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1c4503ee]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1c4503ee]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1c4503ee]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1c4503ee]{display:none!important}.xxl-visible[data-v-1c4503ee]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1c4503ee]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1c4503ee]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1c4503ee]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1c4503ee]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1c4503ee]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1c4503ee]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1c4503ee]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1c4503ee]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1c4503ee]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1c4503ee]{display:none!important}}.vertical-center[data-v-1c4503ee]{display:flex;align-items:center}.horizontal-center[data-v-1c4503ee]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1c4503ee]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1c4503ee]{display:none!important}.no-content[data-v-1c4503ee]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1c4503ee]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1c4503ee]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1c4503ee]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1c4503ee]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1c4503ee]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1c4503ee]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1c4503ee],.btn[data-v-1c4503ee],button[data-v-1c4503ee]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1c4503ee],.btn-default[type=submit][data-v-1c4503ee],.btn.btn-primary[data-v-1c4503ee],.btn[type=submit][data-v-1c4503ee],button.btn-primary[data-v-1c4503ee],button[type=submit][data-v-1c4503ee]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1c4503ee],.btn-default .icon[data-v-1c4503ee],button .icon[data-v-1c4503ee]{margin-right:.5em}input[type=password][data-v-1c4503ee],input[type=text][data-v-1c4503ee]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1c4503ee]:focus,input[type=text][data-v-1c4503ee]:focus{border:1px solid #35b870}button[data-v-1c4503ee],input[data-v-1c4503ee]{outline:none}input[type=text][data-v-1c4503ee]:hover,textarea[data-v-1c4503ee]:hover{border:1px solid #9cdfb0}ul[data-v-1c4503ee]{margin:0;padding:0;list-style:none}a[data-v-1c4503ee]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1c4503ee]:hover{color:#35b870}[data-v-1c4503ee]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1c4503ee]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1c4503ee]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1c4503ee]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1c4503ee]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1c4503ee] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1c4503ee] .nav .path{cursor:pointer}.browser[data-v-1c4503ee] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1c4503ee] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1c4503ee]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1c4503ee],input[type=number][data-v-1c4503ee],input[type=password][data-v-1c4503ee],input[type=search][data-v-1c4503ee],input[type=text][data-v-1c4503ee],input[type=time][data-v-1c4503ee]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1c4503ee]:hover,input[type=number][data-v-1c4503ee]:hover,input[type=password][data-v-1c4503ee]:hover,input[type=search][data-v-1c4503ee]:hover,input[type=text][data-v-1c4503ee]:hover,input[type=time][data-v-1c4503ee]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1c4503ee]:focus,input[type=number][data-v-1c4503ee]:focus,input[type=password][data-v-1c4503ee]:focus,input[type=search][data-v-1c4503ee]:focus,input[type=text][data-v-1c4503ee]:focus,input[type=time][data-v-1c4503ee]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1c4503ee],input[type=number].with-icon[data-v-1c4503ee],input[type=password].with-icon[data-v-1c4503ee],input[type=search].with-icon[data-v-1c4503ee],input[type=text].with-icon[data-v-1c4503ee],input[type=time].with-icon[data-v-1c4503ee]{padding-left:.3em}input[type=search][data-v-1c4503ee],input[type=text][data-v-1c4503ee]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1c4503ee]{animation-fill-mode:both;animation-name:fadeIn-1c4503ee;-webkit-animation-name:fadeIn-1c4503ee}.fade-in[data-v-1c4503ee],.fade-out[data-v-1c4503ee]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1c4503ee]{animation-fill-mode:both;animation-name:fadeOut-1c4503ee;-webkit-animation-name:fadeOut-1c4503ee}@keyframes fadeIn-1c4503ee{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1c4503ee{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1c4503ee]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1c4503ee;-webkit-animation-name:glow-1c4503ee}.loop[data-v-1c4503ee]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1c4503ee{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1c4503ee]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1c4503ee]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1c4503ee]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-1c4503ee]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-1c4503ee]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-1c4503ee]{background:#8fefb7}.track.selected[data-v-1c4503ee]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover.top[data-v-1c4503ee]{border-top:2px solid #35b870}.track.dragover.bottom[data-v-1c4503ee]{border-bottom:2px solid #35b870}.track.dragging[data-v-1c4503ee]{opacity:.5}.track[data-v-1c4503ee]::-moz-selection{background:transparent!important}.track[data-v-1c4503ee]::selection{background:transparent!important}.track .title[data-v-1c4503ee]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-1c4503ee],.track .artist[data-v-1c4503ee]{display:inline-flex;font-size:.9em}.track .artist[data-v-1c4503ee]{opacity:.85}.track .album[data-v-1c4503ee]{opacity:.7}.track .artist[data-v-1c4503ee]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-1c4503ee]{display:none}}.track .album[data-v-1c4503ee]:before{content:"•";margin-right:.25em}.track .right-side[data-v-1c4503ee]{display:flex;justify-content:flex-end}.track .actions[data-v-1c4503ee],.track .duration[data-v-1c4503ee]{display:inline-flex;align-items:center}.track .duration[data-v-1c4503ee]{font-size:.85em;opacity:.7}.track .actions[data-v-1c4503ee] button{opacity:.7}.fa-youtube[data-v-1c4503ee]{color:#d21}.playlist[data-v-1c4503ee]{width:100%;height:100%;display:flex;flex-direction:column}.playlist .header-container button[data-v-1c4503ee]{border:0;background:none}.playlist .header-container .filter[data-v-1c4503ee]{display:flex;flex-direction:row;align-items:center}.playlist .header-container .filter label[data-v-1c4503ee]{flex-grow:1}.playlist .header-container .filter label input[type=search][data-v-1c4503ee]{width:100%}.playlist .header-container .buttons[data-v-1c4503ee]{direction:rtl}.playlist .header-container .buttons .dropdown-container[data-v-1c4503ee]{direction:ltr}.playlist[data-v-1c4503ee] .header .back-btn{padding-left:.25em}.playlist .body[data-v-1c4503ee]{height:calc(100% - 8.8em);overflow:auto}.playlist .no-content[data-v-1c4503ee]{height:100%}.playing-icon[data-v-1c4503ee]{display:inline-block;position:relative;margin-left:.75em;width:1.5em;height:1em}@keyframes playing_bar-1c4503ee{0%{height:0}12.5%{height:75%}25%{height:100%}37.5%{height:10%}50%{height:40%}62.5%{height:50%}75%{height:30%}87.5%{height:55%}to{height:0}}.playing-icon span[data-v-1c4503ee]{animation:.2s;display:block;position:absolute;bottom:0;width:.25em;height:100%;background:#38cf80;animation-name:playing_bar-1c4503ee;animation-iteration-count:infinite}.playing-icon span[data-v-1c4503ee]:first-child{left:0;animation-duration:2s}.playing-icon span[data-v-1c4503ee]:nth-child(2){left:6px;animation-duration:4s}.playing-icon span[data-v-1c4503ee]:nth-child(3){left:12px;animation-duration:1s}.playing-icon.paused span[data-v-1c4503ee]{animation-play-state:paused}[data-v-1c4503ee] .track-info-content .attr{opacity:.75}[data-v-1c4503ee] .track-info-content .value{text-align:right}.col-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1e3ea170]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1e3ea170]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1e3ea170]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1e3ea170]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1e3ea170]:first-child{margin-left:26%!important}.col-offset-3[data-v-1e3ea170]:not(first-child){margin-left:30%!important}.col-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1e3ea170]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1e3ea170]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1e3ea170]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1e3ea170]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1e3ea170]:first-child{margin-left:52%!important}.col-offset-6[data-v-1e3ea170]:not(first-child){margin-left:56%!important}.col-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1e3ea170]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1e3ea170]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1e3ea170]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1e3ea170]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1e3ea170]:first-child{margin-left:78%!important}.col-offset-9[data-v-1e3ea170]:not(first-child){margin-left:82%!important}.col-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1e3ea170]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1e3ea170]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1e3ea170]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1e3ea170]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-1[data-v-1e3ea170]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-2[data-v-1e3ea170]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-3[data-v-1e3ea170]{margin-left:26%}.col-no-margin-s-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-4[data-v-1e3ea170]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-5[data-v-1e3ea170]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-6[data-v-1e3ea170]{margin-left:52%}.col-no-margin-s-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-7[data-v-1e3ea170]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-8[data-v-1e3ea170]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-9[data-v-1e3ea170]{margin-left:78%}.col-no-margin-s-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-10[data-v-1e3ea170]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-s-11[data-v-1e3ea170]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1e3ea170]{display:none!important}.s-visible[data-v-1e3ea170]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-1[data-v-1e3ea170]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-2[data-v-1e3ea170]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-3[data-v-1e3ea170]{margin-left:26%}.col-no-margin-m-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-4[data-v-1e3ea170]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-5[data-v-1e3ea170]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-6[data-v-1e3ea170]{margin-left:52%}.col-no-margin-m-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-7[data-v-1e3ea170]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-8[data-v-1e3ea170]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-9[data-v-1e3ea170]{margin-left:78%}.col-no-margin-m-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-10[data-v-1e3ea170]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-m-11[data-v-1e3ea170]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1e3ea170]{display:none!important}.m-visible[data-v-1e3ea170]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-1[data-v-1e3ea170]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-2[data-v-1e3ea170]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-3[data-v-1e3ea170]{margin-left:26%}.col-no-margin-l-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-4[data-v-1e3ea170]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-5[data-v-1e3ea170]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-6[data-v-1e3ea170]{margin-left:52%}.col-no-margin-l-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-7[data-v-1e3ea170]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-8[data-v-1e3ea170]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-9[data-v-1e3ea170]{margin-left:78%}.col-no-margin-l-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-10[data-v-1e3ea170]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-l-11[data-v-1e3ea170]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1e3ea170]{display:none!important}.l-visible[data-v-1e3ea170]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-1[data-v-1e3ea170]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-2[data-v-1e3ea170]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-3[data-v-1e3ea170]{margin-left:26%}.col-no-margin-xl-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-4[data-v-1e3ea170]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-5[data-v-1e3ea170]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-6[data-v-1e3ea170]{margin-left:52%}.col-no-margin-xl-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-7[data-v-1e3ea170]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-8[data-v-1e3ea170]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-9[data-v-1e3ea170]{margin-left:78%}.col-no-margin-xl-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-10[data-v-1e3ea170]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xl-11[data-v-1e3ea170]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1e3ea170]{display:none!important}.xl-visible[data-v-1e3ea170]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1e3ea170]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1e3ea170]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1e3ea170]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1e3ea170]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1e3ea170]{margin-left:26%}.col-no-margin-xxl-3[data-v-1e3ea170]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1e3ea170]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1e3ea170]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1e3ea170]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1e3ea170]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1e3ea170]{margin-left:52%}.col-no-margin-xxl-6[data-v-1e3ea170]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1e3ea170]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1e3ea170]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1e3ea170]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1e3ea170]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1e3ea170]{margin-left:78%}.col-no-margin-xxl-9[data-v-1e3ea170]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1e3ea170]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1e3ea170]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1e3ea170]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1e3ea170]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1e3ea170]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1e3ea170]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1e3ea170]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1e3ea170]{display:none!important}.xxl-visible[data-v-1e3ea170]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1e3ea170]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1e3ea170]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1e3ea170]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1e3ea170]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1e3ea170]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1e3ea170]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1e3ea170]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1e3ea170]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1e3ea170]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1e3ea170]{display:none!important}}.vertical-center[data-v-1e3ea170]{display:flex;align-items:center}.horizontal-center[data-v-1e3ea170]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1e3ea170]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1e3ea170]{display:none!important}.no-content[data-v-1e3ea170]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1e3ea170]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1e3ea170]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1e3ea170]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1e3ea170]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1e3ea170]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1e3ea170]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1e3ea170],.btn[data-v-1e3ea170],button[data-v-1e3ea170]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1e3ea170],.btn-default[type=submit][data-v-1e3ea170],.btn.btn-primary[data-v-1e3ea170],.btn[type=submit][data-v-1e3ea170],button.btn-primary[data-v-1e3ea170],button[type=submit][data-v-1e3ea170]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1e3ea170],.btn-default .icon[data-v-1e3ea170],button .icon[data-v-1e3ea170]{margin-right:.5em}input[type=password][data-v-1e3ea170],input[type=text][data-v-1e3ea170]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1e3ea170]:focus,input[type=text][data-v-1e3ea170]:focus{border:1px solid #35b870}button[data-v-1e3ea170],input[data-v-1e3ea170]{outline:none}input[type=text][data-v-1e3ea170]:hover,textarea[data-v-1e3ea170]:hover{border:1px solid #9cdfb0}ul[data-v-1e3ea170]{margin:0;padding:0;list-style:none}a[data-v-1e3ea170]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1e3ea170]:hover{color:#35b870}[data-v-1e3ea170]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1e3ea170]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1e3ea170]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1e3ea170]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1e3ea170]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1e3ea170] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1e3ea170] .nav .path{cursor:pointer}.browser[data-v-1e3ea170] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1e3ea170] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1e3ea170]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1e3ea170],input[type=number][data-v-1e3ea170],input[type=password][data-v-1e3ea170],input[type=search][data-v-1e3ea170],input[type=text][data-v-1e3ea170],input[type=time][data-v-1e3ea170]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1e3ea170]:hover,input[type=number][data-v-1e3ea170]:hover,input[type=password][data-v-1e3ea170]:hover,input[type=search][data-v-1e3ea170]:hover,input[type=text][data-v-1e3ea170]:hover,input[type=time][data-v-1e3ea170]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1e3ea170]:focus,input[type=number][data-v-1e3ea170]:focus,input[type=password][data-v-1e3ea170]:focus,input[type=search][data-v-1e3ea170]:focus,input[type=text][data-v-1e3ea170]:focus,input[type=time][data-v-1e3ea170]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1e3ea170],input[type=number].with-icon[data-v-1e3ea170],input[type=password].with-icon[data-v-1e3ea170],input[type=search].with-icon[data-v-1e3ea170],input[type=text].with-icon[data-v-1e3ea170],input[type=time].with-icon[data-v-1e3ea170]{padding-left:.3em}input[type=search][data-v-1e3ea170],input[type=text][data-v-1e3ea170]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1e3ea170]{animation-fill-mode:both;animation-name:fadeIn-1e3ea170;-webkit-animation-name:fadeIn-1e3ea170}.fade-in[data-v-1e3ea170],.fade-out[data-v-1e3ea170]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1e3ea170]{animation-fill-mode:both;animation-name:fadeOut-1e3ea170;-webkit-animation-name:fadeOut-1e3ea170}@keyframes fadeIn-1e3ea170{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1e3ea170{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1e3ea170]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1e3ea170;-webkit-animation-name:glow-1e3ea170}.loop[data-v-1e3ea170]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1e3ea170{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1e3ea170]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1e3ea170]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1e3ea170]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-1e3ea170]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-1e3ea170]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-1e3ea170]{background:#8fefb7}.track.selected[data-v-1e3ea170]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover.top[data-v-1e3ea170]{border-top:2px solid #35b870}.track.dragover.bottom[data-v-1e3ea170]{border-bottom:2px solid #35b870}.track.dragging[data-v-1e3ea170]{opacity:.5}.track[data-v-1e3ea170]::-moz-selection{background:transparent!important}.track[data-v-1e3ea170]::selection{background:transparent!important}.track .title[data-v-1e3ea170]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-1e3ea170],.track .artist[data-v-1e3ea170]{display:inline-flex;font-size:.9em}.track .artist[data-v-1e3ea170]{opacity:.85}.track .album[data-v-1e3ea170]{opacity:.7}.track .artist[data-v-1e3ea170]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-1e3ea170]{display:none}}.track .album[data-v-1e3ea170]:before{content:"•";margin-right:.25em}.track .right-side[data-v-1e3ea170]{display:flex;justify-content:flex-end}.track .actions[data-v-1e3ea170],.track .duration[data-v-1e3ea170]{display:inline-flex;align-items:center}.track .duration[data-v-1e3ea170]{font-size:.85em;opacity:.7}.track .actions[data-v-1e3ea170] button{opacity:.7}.fa-youtube[data-v-1e3ea170]{color:#d21}.playlists[data-v-1e3ea170]{width:100%;display:flex;flex-direction:column}.playlists .header-container .filter input[data-v-1e3ea170]{width:100%}.playlists .body[data-v-1e3ea170]{height:calc(100% - 8.8em);overflow:auto}.playlists .no-content[data-v-1e3ea170]{height:100%}.playlists .playlist[data-v-1e3ea170]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.playlists .playlist .name-container[data-v-1e3ea170]{display:flex;align-items:center}.playlists .playlist .name-container .icon[data-v-1e3ea170]{margin-right:.5em;opacity:.85}.playlists .playlist .name-container .name[data-v-1e3ea170]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.playlists .playlist[data-v-1e3ea170]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.playlists .playlist.active[data-v-1e3ea170]{background:#8fefb7}.playlists .playlist.selected[data-v-1e3ea170]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.playlists .playlist .right-side[data-v-1e3ea170]{display:flex;justify-content:flex-end}.playlists .header .buttons[data-v-1e3ea170]{display:flex;align-items:flex-end;justify-content:flex-end}.editor-container[data-v-1e3ea170]{width:100%;height:100%;display:flex;flex-direction:column}.editor-container .header-container[data-v-1e3ea170]{width:100%}.editor-container[data-v-1e3ea170] .header .back-btn{padding-left:.25em}.editor-container[data-v-1e3ea170] .header .search-box input{width:65%}.editor-container .editor[data-v-1e3ea170]{width:100%;height:calc(100% - 8.8em);display:flex;flex-direction:column;overflow:auto}.col-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-897f30f2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-897f30f2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-897f30f2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-897f30f2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-897f30f2]:first-child{margin-left:26%!important}.col-offset-3[data-v-897f30f2]:not(first-child){margin-left:30%!important}.col-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-897f30f2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-897f30f2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-897f30f2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-897f30f2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-897f30f2]:first-child{margin-left:52%!important}.col-offset-6[data-v-897f30f2]:not(first-child){margin-left:56%!important}.col-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-897f30f2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-897f30f2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-897f30f2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-897f30f2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-897f30f2]:first-child{margin-left:78%!important}.col-offset-9[data-v-897f30f2]:not(first-child){margin-left:82%!important}.col-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-897f30f2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-897f30f2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-897f30f2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-897f30f2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-1[data-v-897f30f2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-2[data-v-897f30f2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-3[data-v-897f30f2]{margin-left:26%}.col-no-margin-s-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-4[data-v-897f30f2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-5[data-v-897f30f2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-6[data-v-897f30f2]{margin-left:52%}.col-no-margin-s-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-7[data-v-897f30f2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-8[data-v-897f30f2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-9[data-v-897f30f2]{margin-left:78%}.col-no-margin-s-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-10[data-v-897f30f2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-897f30f2]:first-child{margin-left:0}.col-offset-s-11[data-v-897f30f2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-897f30f2]{display:none!important}.s-visible[data-v-897f30f2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-1[data-v-897f30f2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-2[data-v-897f30f2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-3[data-v-897f30f2]{margin-left:26%}.col-no-margin-m-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-4[data-v-897f30f2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-5[data-v-897f30f2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-6[data-v-897f30f2]{margin-left:52%}.col-no-margin-m-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-7[data-v-897f30f2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-8[data-v-897f30f2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-9[data-v-897f30f2]{margin-left:78%}.col-no-margin-m-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-10[data-v-897f30f2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-897f30f2]:first-child{margin-left:0}.col-offset-m-11[data-v-897f30f2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-897f30f2]{display:none!important}.m-visible[data-v-897f30f2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-1[data-v-897f30f2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-2[data-v-897f30f2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-3[data-v-897f30f2]{margin-left:26%}.col-no-margin-l-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-4[data-v-897f30f2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-5[data-v-897f30f2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-6[data-v-897f30f2]{margin-left:52%}.col-no-margin-l-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-7[data-v-897f30f2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-8[data-v-897f30f2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-9[data-v-897f30f2]{margin-left:78%}.col-no-margin-l-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-10[data-v-897f30f2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-897f30f2]:first-child{margin-left:0}.col-offset-l-11[data-v-897f30f2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-897f30f2]{display:none!important}.l-visible[data-v-897f30f2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-1[data-v-897f30f2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-2[data-v-897f30f2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-3[data-v-897f30f2]{margin-left:26%}.col-no-margin-xl-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-4[data-v-897f30f2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-5[data-v-897f30f2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-6[data-v-897f30f2]{margin-left:52%}.col-no-margin-xl-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-7[data-v-897f30f2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-8[data-v-897f30f2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-9[data-v-897f30f2]{margin-left:78%}.col-no-margin-xl-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-10[data-v-897f30f2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xl-11[data-v-897f30f2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-897f30f2]{display:none!important}.xl-visible[data-v-897f30f2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-897f30f2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-897f30f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-897f30f2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-897f30f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-897f30f2]{margin-left:26%}.col-no-margin-xxl-3[data-v-897f30f2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-897f30f2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-897f30f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-897f30f2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-897f30f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-897f30f2]{margin-left:52%}.col-no-margin-xxl-6[data-v-897f30f2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-897f30f2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-897f30f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-897f30f2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-897f30f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-897f30f2]{margin-left:78%}.col-no-margin-xxl-9[data-v-897f30f2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-897f30f2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-897f30f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-897f30f2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-897f30f2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-897f30f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-897f30f2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-897f30f2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-897f30f2]{display:none!important}.xxl-visible[data-v-897f30f2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-897f30f2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-897f30f2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-897f30f2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-897f30f2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-897f30f2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-897f30f2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-897f30f2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-897f30f2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-897f30f2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-897f30f2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-897f30f2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-897f30f2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-897f30f2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-897f30f2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-897f30f2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-897f30f2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-897f30f2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-897f30f2]{display:none!important}}.vertical-center[data-v-897f30f2]{display:flex;align-items:center}.horizontal-center[data-v-897f30f2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-897f30f2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-897f30f2]{display:none!important}.no-content[data-v-897f30f2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-897f30f2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-897f30f2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-897f30f2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-897f30f2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-897f30f2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-897f30f2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-897f30f2],.btn[data-v-897f30f2],button[data-v-897f30f2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-897f30f2],.btn-default[type=submit][data-v-897f30f2],.btn.btn-primary[data-v-897f30f2],.btn[type=submit][data-v-897f30f2],button.btn-primary[data-v-897f30f2],button[type=submit][data-v-897f30f2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-897f30f2],.btn-default .icon[data-v-897f30f2],button .icon[data-v-897f30f2]{margin-right:.5em}input[type=password][data-v-897f30f2],input[type=text][data-v-897f30f2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-897f30f2]:focus,input[type=text][data-v-897f30f2]:focus{border:1px solid #35b870}button[data-v-897f30f2],input[data-v-897f30f2]{outline:none}input[type=text][data-v-897f30f2]:hover,textarea[data-v-897f30f2]:hover{border:1px solid #9cdfb0}ul[data-v-897f30f2]{margin:0;padding:0;list-style:none}a[data-v-897f30f2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-897f30f2]:hover{color:#35b870}[data-v-897f30f2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-897f30f2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-897f30f2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-897f30f2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-897f30f2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-897f30f2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-897f30f2] .nav .path{cursor:pointer}.browser[data-v-897f30f2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-897f30f2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-897f30f2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-897f30f2],input[type=number][data-v-897f30f2],input[type=password][data-v-897f30f2],input[type=search][data-v-897f30f2],input[type=text][data-v-897f30f2],input[type=time][data-v-897f30f2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-897f30f2]:hover,input[type=number][data-v-897f30f2]:hover,input[type=password][data-v-897f30f2]:hover,input[type=search][data-v-897f30f2]:hover,input[type=text][data-v-897f30f2]:hover,input[type=time][data-v-897f30f2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-897f30f2]:focus,input[type=number][data-v-897f30f2]:focus,input[type=password][data-v-897f30f2]:focus,input[type=search][data-v-897f30f2]:focus,input[type=text][data-v-897f30f2]:focus,input[type=time][data-v-897f30f2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-897f30f2],input[type=number].with-icon[data-v-897f30f2],input[type=password].with-icon[data-v-897f30f2],input[type=search].with-icon[data-v-897f30f2],input[type=text].with-icon[data-v-897f30f2],input[type=time].with-icon[data-v-897f30f2]{padding-left:.3em}input[type=search][data-v-897f30f2],input[type=text][data-v-897f30f2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-897f30f2]{animation-fill-mode:both;animation-name:fadeIn-897f30f2;-webkit-animation-name:fadeIn-897f30f2}.fade-in[data-v-897f30f2],.fade-out[data-v-897f30f2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-897f30f2]{animation-fill-mode:both;animation-name:fadeOut-897f30f2;-webkit-animation-name:fadeOut-897f30f2}@keyframes fadeIn-897f30f2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-897f30f2{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-897f30f2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-897f30f2;-webkit-animation-name:glow-897f30f2}.loop[data-v-897f30f2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-897f30f2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-897f30f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-897f30f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-897f30f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-897f30f2]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-897f30f2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-897f30f2]{background:#8fefb7}.track.selected[data-v-897f30f2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover.top[data-v-897f30f2]{border-top:2px solid #35b870}.track.dragover.bottom[data-v-897f30f2]{border-bottom:2px solid #35b870}.track.dragging[data-v-897f30f2]{opacity:.5}.track[data-v-897f30f2]::-moz-selection{background:transparent!important}.track[data-v-897f30f2]::selection{background:transparent!important}.track .title[data-v-897f30f2]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-897f30f2],.track .artist[data-v-897f30f2]{display:inline-flex;font-size:.9em}.track .artist[data-v-897f30f2]{opacity:.85}.track .album[data-v-897f30f2]{opacity:.7}.track .artist[data-v-897f30f2]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-897f30f2]{display:none}}.track .album[data-v-897f30f2]:before{content:"•";margin-right:.25em}.track .right-side[data-v-897f30f2]{display:flex;justify-content:flex-end}.track .actions[data-v-897f30f2],.track .duration[data-v-897f30f2]{display:inline-flex;align-items:center}.track .duration[data-v-897f30f2]{font-size:.85em;opacity:.7}.track .actions[data-v-897f30f2] button{opacity:.7}.fa-youtube[data-v-897f30f2]{color:#d21}.search[data-v-897f30f2]{width:100%;height:calc(100% - 5.5em);display:flex;flex-direction:column;position:relative}.search .nav-toggler.floating[data-v-897f30f2]{position:absolute;top:0;right:0;z-index:1}.search .form-container[data-v-897f30f2],.search[data-v-897f30f2]:not(.form-collapsed){justify-content:center;align-items:center}.search .form-container[data-v-897f30f2]{width:100%;height:100%;display:flex;flex-grow:1}.search form[data-v-897f30f2]{width:calc(100% - 2em);max-width:30em;height:17em;background:#edf0ee;display:flex;flex-direction:column;padding:2em;border-radius:1.5em}.search form .row[data-v-897f30f2]{margin:.25em 0}.search form input[type=text][data-v-897f30f2]{width:100%}.search form[data-v-897f30f2] .form-footer{height:3em;padding-right:0;border:0}.search form[data-v-897f30f2] button{border:0}.search form[data-v-897f30f2] button[type=submit]{background:none}.search form[data-v-897f30f2] button:hover{border:0;color:#38cf80}.search .results[data-v-897f30f2]{height:calc(100% - 3.3em);flex-grow:1;overflow:auto}.search .results .title-container[data-v-897f30f2]{display:flex;align-items:center}.search .results .title-container .type[data-v-897f30f2]{opacity:.85;margin-right:.5em}.search[data-v-897f30f2] .header{display:flex;width:100%;align-items:center}.search[data-v-897f30f2] .header .search-box{width:70%;display:flex;align-items:center}.search[data-v-897f30f2] .header .search-box .back-btn{margin-left:0;padding-left:0}.search[data-v-897f30f2] .header .search-box input[type=search]{width:100%}.search[data-v-897f30f2] .header .buttons{width:30%;display:inline-flex;justify-content:flex-end;margin:0}.col-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-163c27b3]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-163c27b3]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-163c27b3]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-163c27b3]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-163c27b3]:first-child{margin-left:26%!important}.col-offset-3[data-v-163c27b3]:not(first-child){margin-left:30%!important}.col-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-163c27b3]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-163c27b3]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-163c27b3]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-163c27b3]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-163c27b3]:first-child{margin-left:52%!important}.col-offset-6[data-v-163c27b3]:not(first-child){margin-left:56%!important}.col-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-163c27b3]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-163c27b3]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-163c27b3]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-163c27b3]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-163c27b3]:first-child{margin-left:78%!important}.col-offset-9[data-v-163c27b3]:not(first-child){margin-left:82%!important}.col-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-163c27b3]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-163c27b3]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-163c27b3]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-163c27b3]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-1[data-v-163c27b3]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-2[data-v-163c27b3]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-3[data-v-163c27b3]{margin-left:26%}.col-no-margin-s-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-4[data-v-163c27b3]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-5[data-v-163c27b3]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-6[data-v-163c27b3]{margin-left:52%}.col-no-margin-s-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-7[data-v-163c27b3]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-8[data-v-163c27b3]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-9[data-v-163c27b3]{margin-left:78%}.col-no-margin-s-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-10[data-v-163c27b3]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-163c27b3]:first-child{margin-left:0}.col-offset-s-11[data-v-163c27b3]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-s-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-163c27b3]{display:none!important}.s-visible[data-v-163c27b3]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-1[data-v-163c27b3]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-2[data-v-163c27b3]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-3[data-v-163c27b3]{margin-left:26%}.col-no-margin-m-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-4[data-v-163c27b3]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-5[data-v-163c27b3]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-6[data-v-163c27b3]{margin-left:52%}.col-no-margin-m-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-7[data-v-163c27b3]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-8[data-v-163c27b3]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-9[data-v-163c27b3]{margin-left:78%}.col-no-margin-m-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-10[data-v-163c27b3]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-163c27b3]:first-child{margin-left:0}.col-offset-m-11[data-v-163c27b3]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-m-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-163c27b3]{display:none!important}.m-visible[data-v-163c27b3]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-1[data-v-163c27b3]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-2[data-v-163c27b3]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-3[data-v-163c27b3]{margin-left:26%}.col-no-margin-l-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-4[data-v-163c27b3]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-5[data-v-163c27b3]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-6[data-v-163c27b3]{margin-left:52%}.col-no-margin-l-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-7[data-v-163c27b3]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-8[data-v-163c27b3]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-9[data-v-163c27b3]{margin-left:78%}.col-no-margin-l-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-10[data-v-163c27b3]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-163c27b3]:first-child{margin-left:0}.col-offset-l-11[data-v-163c27b3]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-l-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-163c27b3]{display:none!important}.l-visible[data-v-163c27b3]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-1[data-v-163c27b3]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-2[data-v-163c27b3]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-3[data-v-163c27b3]{margin-left:26%}.col-no-margin-xl-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-4[data-v-163c27b3]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-5[data-v-163c27b3]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-6[data-v-163c27b3]{margin-left:52%}.col-no-margin-xl-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-7[data-v-163c27b3]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-8[data-v-163c27b3]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-9[data-v-163c27b3]{margin-left:78%}.col-no-margin-xl-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-10[data-v-163c27b3]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xl-11[data-v-163c27b3]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-163c27b3]{display:none!important}.xl-visible[data-v-163c27b3]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-1[data-v-163c27b3]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-163c27b3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-2[data-v-163c27b3]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-163c27b3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-3[data-v-163c27b3]{margin-left:26%}.col-no-margin-xxl-3[data-v-163c27b3]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-4[data-v-163c27b3]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-163c27b3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-5[data-v-163c27b3]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-163c27b3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-6[data-v-163c27b3]{margin-left:52%}.col-no-margin-xxl-6[data-v-163c27b3]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-7[data-v-163c27b3]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-163c27b3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-8[data-v-163c27b3]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-163c27b3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-9[data-v-163c27b3]{margin-left:78%}.col-no-margin-xxl-9[data-v-163c27b3]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-10[data-v-163c27b3]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-163c27b3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-163c27b3]:first-child{margin-left:0}.col-offset-xxl-11[data-v-163c27b3]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-163c27b3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-163c27b3]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-163c27b3]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-163c27b3]{display:none!important}.xxl-visible[data-v-163c27b3]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-163c27b3]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-163c27b3]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-163c27b3]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-163c27b3]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-163c27b3]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-163c27b3]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-163c27b3]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-163c27b3]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-163c27b3]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-163c27b3]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-163c27b3]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-163c27b3]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-163c27b3]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-163c27b3]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-163c27b3]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-163c27b3]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-163c27b3]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-163c27b3]{display:none!important}}.vertical-center[data-v-163c27b3]{display:flex;align-items:center}.horizontal-center[data-v-163c27b3]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-163c27b3]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-163c27b3]{display:none!important}.no-content[data-v-163c27b3]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-163c27b3]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-163c27b3]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-163c27b3]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-163c27b3]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-163c27b3]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-163c27b3]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-163c27b3],.btn[data-v-163c27b3],button[data-v-163c27b3]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-163c27b3],.btn-default[type=submit][data-v-163c27b3],.btn.btn-primary[data-v-163c27b3],.btn[type=submit][data-v-163c27b3],button.btn-primary[data-v-163c27b3],button[type=submit][data-v-163c27b3]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-163c27b3],.btn-default .icon[data-v-163c27b3],button .icon[data-v-163c27b3]{margin-right:.5em}input[type=password][data-v-163c27b3],input[type=text][data-v-163c27b3]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-163c27b3]:focus,input[type=text][data-v-163c27b3]:focus{border:1px solid #35b870}button[data-v-163c27b3],input[data-v-163c27b3]{outline:none}input[type=text][data-v-163c27b3]:hover,textarea[data-v-163c27b3]:hover{border:1px solid #9cdfb0}ul[data-v-163c27b3]{margin:0;padding:0;list-style:none}a[data-v-163c27b3]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-163c27b3]:hover{color:#35b870}[data-v-163c27b3]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-163c27b3]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-163c27b3]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-163c27b3]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-163c27b3]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-163c27b3] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-163c27b3] .nav .path{cursor:pointer}.browser[data-v-163c27b3] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-163c27b3] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-163c27b3]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-163c27b3],input[type=number][data-v-163c27b3],input[type=password][data-v-163c27b3],input[type=search][data-v-163c27b3],input[type=text][data-v-163c27b3],input[type=time][data-v-163c27b3]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-163c27b3]:hover,input[type=number][data-v-163c27b3]:hover,input[type=password][data-v-163c27b3]:hover,input[type=search][data-v-163c27b3]:hover,input[type=text][data-v-163c27b3]:hover,input[type=time][data-v-163c27b3]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-163c27b3]:focus,input[type=number][data-v-163c27b3]:focus,input[type=password][data-v-163c27b3]:focus,input[type=search][data-v-163c27b3]:focus,input[type=text][data-v-163c27b3]:focus,input[type=time][data-v-163c27b3]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-163c27b3],input[type=number].with-icon[data-v-163c27b3],input[type=password].with-icon[data-v-163c27b3],input[type=search].with-icon[data-v-163c27b3],input[type=text].with-icon[data-v-163c27b3],input[type=time].with-icon[data-v-163c27b3]{padding-left:.3em}input[type=search][data-v-163c27b3],input[type=text][data-v-163c27b3]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-163c27b3]{animation-fill-mode:both;animation-name:fadeIn-163c27b3;-webkit-animation-name:fadeIn-163c27b3}.fade-in[data-v-163c27b3],.fade-out[data-v-163c27b3]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-163c27b3]{animation-fill-mode:both;animation-name:fadeOut-163c27b3;-webkit-animation-name:fadeOut-163c27b3}@keyframes fadeIn-163c27b3{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-163c27b3{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-163c27b3]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-163c27b3;-webkit-animation-name:glow-163c27b3}.loop[data-v-163c27b3]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-163c27b3{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-163c27b3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-163c27b3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-163c27b3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-163c27b3]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-163c27b3]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-163c27b3]{background:#8fefb7}.track.selected[data-v-163c27b3]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover.top[data-v-163c27b3]{border-top:2px solid #35b870}.track.dragover.bottom[data-v-163c27b3]{border-bottom:2px solid #35b870}.track.dragging[data-v-163c27b3]{opacity:.5}.track[data-v-163c27b3]::-moz-selection{background:transparent!important}.track[data-v-163c27b3]::selection{background:transparent!important}.track .title[data-v-163c27b3]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-163c27b3],.track .artist[data-v-163c27b3]{display:inline-flex;font-size:.9em}.track .artist[data-v-163c27b3]{opacity:.85}.track .album[data-v-163c27b3]{opacity:.7}.track .artist[data-v-163c27b3]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-163c27b3]{display:none}}.track .album[data-v-163c27b3]:before{content:"•";margin-right:.25em}.track .right-side[data-v-163c27b3]{display:flex;justify-content:flex-end}.track .actions[data-v-163c27b3],.track .duration[data-v-163c27b3]{display:inline-flex;align-items:center}.track .duration[data-v-163c27b3]{font-size:.85em;opacity:.7}.track .actions[data-v-163c27b3] button{opacity:.7}.library[data-v-163c27b3]{width:100%;display:flex;flex-direction:column}.library .results[data-v-163c27b3]{overflow:auto;height:100%}.library .results .track[data-v-163c27b3]{display:flex;align-items:center;justify-content:left}.library .results .track .left-side[data-v-163c27b3]{display:inline-flex;align-items:center}.library .results .icon[data-v-163c27b3]{opacity:.5;margin-right:.75em}.library[data-v-163c27b3] .header{display:flex;width:100%;align-items:center}.library[data-v-163c27b3] .header .search-box{width:70%}.library[data-v-163c27b3] .header .search-box input[type=search]{width:100%}.library[data-v-163c27b3] .header .buttons{width:30%;display:inline-flex;justify-content:right;margin:0}.col-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5a75ab98]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5a75ab98]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5a75ab98]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5a75ab98]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5a75ab98]:first-child{margin-left:26%!important}.col-offset-3[data-v-5a75ab98]:not(first-child){margin-left:30%!important}.col-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5a75ab98]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5a75ab98]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5a75ab98]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5a75ab98]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5a75ab98]:first-child{margin-left:52%!important}.col-offset-6[data-v-5a75ab98]:not(first-child){margin-left:56%!important}.col-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5a75ab98]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5a75ab98]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5a75ab98]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5a75ab98]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5a75ab98]:first-child{margin-left:78%!important}.col-offset-9[data-v-5a75ab98]:not(first-child){margin-left:82%!important}.col-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5a75ab98]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5a75ab98]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5a75ab98]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5a75ab98]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-s-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-s-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-s-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5a75ab98]{display:none!important}.s-visible[data-v-5a75ab98]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-m-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-m-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-m-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5a75ab98]{display:none!important}.m-visible[data-v-5a75ab98]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-l-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-l-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-l-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5a75ab98]{display:none!important}.l-visible[data-v-5a75ab98]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-xl-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-xl-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-xl-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5a75ab98]{display:none!important}.xl-visible[data-v-5a75ab98]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-xxl-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-xxl-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-xxl-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5a75ab98]{display:none!important}.xxl-visible[data-v-5a75ab98]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5a75ab98]{display:none!important}}.vertical-center[data-v-5a75ab98]{display:flex;align-items:center}.horizontal-center[data-v-5a75ab98]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5a75ab98]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5a75ab98]{display:none!important}.no-content[data-v-5a75ab98]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5a75ab98]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5a75ab98]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5a75ab98]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5a75ab98]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5a75ab98]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5a75ab98]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5a75ab98],.btn[data-v-5a75ab98],button[data-v-5a75ab98]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5a75ab98],.btn-default[type=submit][data-v-5a75ab98],.btn.btn-primary[data-v-5a75ab98],.btn[type=submit][data-v-5a75ab98],button.btn-primary[data-v-5a75ab98],button[type=submit][data-v-5a75ab98]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5a75ab98],.btn-default .icon[data-v-5a75ab98],button .icon[data-v-5a75ab98]{margin-right:.5em}input[type=password][data-v-5a75ab98],input[type=text][data-v-5a75ab98]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5a75ab98]:focus,input[type=text][data-v-5a75ab98]:focus{border:1px solid #35b870}button[data-v-5a75ab98],input[data-v-5a75ab98]{outline:none}input[type=text][data-v-5a75ab98]:hover,textarea[data-v-5a75ab98]:hover{border:1px solid #9cdfb0}ul[data-v-5a75ab98]{margin:0;padding:0;list-style:none}a[data-v-5a75ab98]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5a75ab98]:hover{color:#35b870}[data-v-5a75ab98]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5a75ab98]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5a75ab98]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5a75ab98]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5a75ab98]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5a75ab98] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5a75ab98] .nav .path{cursor:pointer}.browser[data-v-5a75ab98] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5a75ab98] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-5a75ab98]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5a75ab98],input[type=number][data-v-5a75ab98],input[type=password][data-v-5a75ab98],input[type=search][data-v-5a75ab98],input[type=text][data-v-5a75ab98],input[type=time][data-v-5a75ab98]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-5a75ab98]:hover,input[type=number][data-v-5a75ab98]:hover,input[type=password][data-v-5a75ab98]:hover,input[type=search][data-v-5a75ab98]:hover,input[type=text][data-v-5a75ab98]:hover,input[type=time][data-v-5a75ab98]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5a75ab98]:focus,input[type=number][data-v-5a75ab98]:focus,input[type=password][data-v-5a75ab98]:focus,input[type=search][data-v-5a75ab98]:focus,input[type=text][data-v-5a75ab98]:focus,input[type=time][data-v-5a75ab98]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5a75ab98],input[type=number].with-icon[data-v-5a75ab98],input[type=password].with-icon[data-v-5a75ab98],input[type=search].with-icon[data-v-5a75ab98],input[type=text].with-icon[data-v-5a75ab98],input[type=time].with-icon[data-v-5a75ab98]{padding-left:.3em}input[type=search][data-v-5a75ab98],input[type=text][data-v-5a75ab98]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5a75ab98]{animation-fill-mode:both;animation-name:fadeIn-5a75ab98;-webkit-animation-name:fadeIn-5a75ab98}.fade-in[data-v-5a75ab98],.fade-out[data-v-5a75ab98]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5a75ab98]{animation-fill-mode:both;animation-name:fadeOut-5a75ab98;-webkit-animation-name:fadeOut-5a75ab98}@keyframes fadeIn-5a75ab98{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5a75ab98{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-5a75ab98]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5a75ab98;-webkit-animation-name:glow-5a75ab98}.loop[data-v-5a75ab98]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5a75ab98{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5a75ab98]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5a75ab98]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5a75ab98]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-5a75ab98]{height:100%;background:#fff;display:flex;flex-direction:row-reverse}main .view-container[data-v-5a75ab98]{display:flex;flex-grow:1;overflow:auto}main[data-v-5a75ab98] button{background:none;padding:.5em .75em;border:0}main[data-v-5a75ab98] button:hover{border:0;color:#35b870}main[data-v-5a75ab98] a{color:#000;opacity:.65}main[data-v-5a75ab98] a:hover{opacity:.75;border-bottom:1px dotted}.playlists-modal-container[data-v-5a75ab98] .body{display:flex;flex-direction:column;padding:0!important}.playlists-modal-container[data-v-5a75ab98] .filter{padding:.33em;background-color:#e4eae8;border-bottom:1px solid #ddd}.playlists-modal-container[data-v-5a75ab98] .filter input{width:90%}.playlists-modal-container[data-v-5a75ab98] .playlists{overflow:auto;padding:1.5em}.playlists-modal-container[data-v-5a75ab98] .playlists label{display:flex;align-items:center}.playlists-modal-container[data-v-5a75ab98] .playlists label:not(:last-child){margin-bottom:.5em}.playlists-modal-container[data-v-5a75ab98] .playlists label .name{margin-left:.5em}.track-info-container[data-v-5a75ab98] .body{height:15em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.track-info-container[data-v-5a75ab98] .body{width:25em}}@media screen and (min-width:769px){.track-info-container[data-v-5a75ab98] .body{width:35em}}.track-info-container[data-v-5a75ab98] .body .file{-webkit-user-select:text;-moz-user-select:text;user-select:text} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2892.0d765211.css b/platypush/backend/http/webapp/dist/static/css/2892.0d765211.css deleted file mode 100644 index 8fb42e9e68..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/2892.0d765211.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5f4a36da]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5f4a36da]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5f4a36da]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5f4a36da]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5f4a36da]:first-child{margin-left:26%!important}.col-offset-3[data-v-5f4a36da]:not(first-child){margin-left:30%!important}.col-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5f4a36da]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5f4a36da]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5f4a36da]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5f4a36da]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5f4a36da]:first-child{margin-left:52%!important}.col-offset-6[data-v-5f4a36da]:not(first-child){margin-left:56%!important}.col-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5f4a36da]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5f4a36da]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5f4a36da]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5f4a36da]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5f4a36da]:first-child{margin-left:78%!important}.col-offset-9[data-v-5f4a36da]:not(first-child){margin-left:82%!important}.col-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5f4a36da]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5f4a36da]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5f4a36da]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5f4a36da]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-1[data-v-5f4a36da]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-2[data-v-5f4a36da]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-3[data-v-5f4a36da]{margin-left:26%}.col-no-margin-s-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-4[data-v-5f4a36da]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-5[data-v-5f4a36da]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-6[data-v-5f4a36da]{margin-left:52%}.col-no-margin-s-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-7[data-v-5f4a36da]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-8[data-v-5f4a36da]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-9[data-v-5f4a36da]{margin-left:78%}.col-no-margin-s-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-10[data-v-5f4a36da]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-s-11[data-v-5f4a36da]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5f4a36da]{display:none!important}.s-visible[data-v-5f4a36da]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-1[data-v-5f4a36da]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-2[data-v-5f4a36da]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-3[data-v-5f4a36da]{margin-left:26%}.col-no-margin-m-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-4[data-v-5f4a36da]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-5[data-v-5f4a36da]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-6[data-v-5f4a36da]{margin-left:52%}.col-no-margin-m-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-7[data-v-5f4a36da]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-8[data-v-5f4a36da]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-9[data-v-5f4a36da]{margin-left:78%}.col-no-margin-m-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-10[data-v-5f4a36da]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-m-11[data-v-5f4a36da]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5f4a36da]{display:none!important}.m-visible[data-v-5f4a36da]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-1[data-v-5f4a36da]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-2[data-v-5f4a36da]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-3[data-v-5f4a36da]{margin-left:26%}.col-no-margin-l-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-4[data-v-5f4a36da]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-5[data-v-5f4a36da]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-6[data-v-5f4a36da]{margin-left:52%}.col-no-margin-l-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-7[data-v-5f4a36da]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-8[data-v-5f4a36da]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-9[data-v-5f4a36da]{margin-left:78%}.col-no-margin-l-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-10[data-v-5f4a36da]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-l-11[data-v-5f4a36da]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5f4a36da]{display:none!important}.l-visible[data-v-5f4a36da]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-1[data-v-5f4a36da]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-2[data-v-5f4a36da]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-3[data-v-5f4a36da]{margin-left:26%}.col-no-margin-xl-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-4[data-v-5f4a36da]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-5[data-v-5f4a36da]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-6[data-v-5f4a36da]{margin-left:52%}.col-no-margin-xl-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-7[data-v-5f4a36da]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-8[data-v-5f4a36da]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-9[data-v-5f4a36da]{margin-left:78%}.col-no-margin-xl-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-10[data-v-5f4a36da]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xl-11[data-v-5f4a36da]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5f4a36da]{display:none!important}.xl-visible[data-v-5f4a36da]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5f4a36da]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5f4a36da]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5f4a36da]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5f4a36da]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5f4a36da]{margin-left:26%}.col-no-margin-xxl-3[data-v-5f4a36da]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5f4a36da]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5f4a36da]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5f4a36da]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5f4a36da]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5f4a36da]{margin-left:52%}.col-no-margin-xxl-6[data-v-5f4a36da]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5f4a36da]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5f4a36da]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5f4a36da]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5f4a36da]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5f4a36da]{margin-left:78%}.col-no-margin-xxl-9[data-v-5f4a36da]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5f4a36da]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5f4a36da]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5f4a36da]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5f4a36da]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5f4a36da]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5f4a36da]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5f4a36da]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5f4a36da]{display:none!important}.xxl-visible[data-v-5f4a36da]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5f4a36da]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5f4a36da]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5f4a36da]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5f4a36da]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5f4a36da]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5f4a36da]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5f4a36da]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5f4a36da]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5f4a36da]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5f4a36da]{display:none!important}}.vertical-center[data-v-5f4a36da]{display:flex;align-items:center}.horizontal-center[data-v-5f4a36da]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5f4a36da]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5f4a36da]{display:none!important}.no-content[data-v-5f4a36da]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5f4a36da]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5f4a36da]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5f4a36da]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5f4a36da]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5f4a36da]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5f4a36da]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5f4a36da],.btn[data-v-5f4a36da],button[data-v-5f4a36da]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5f4a36da],.btn-default[type=submit][data-v-5f4a36da],.btn.btn-primary[data-v-5f4a36da],.btn[type=submit][data-v-5f4a36da],button.btn-primary[data-v-5f4a36da],button[type=submit][data-v-5f4a36da]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5f4a36da],.btn-default .icon[data-v-5f4a36da],button .icon[data-v-5f4a36da]{margin-right:.5em}input[type=password][data-v-5f4a36da],input[type=text][data-v-5f4a36da]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5f4a36da]:focus,input[type=text][data-v-5f4a36da]:focus{border:1px solid #35b870}button[data-v-5f4a36da],input[data-v-5f4a36da]{outline:none}input[type=text][data-v-5f4a36da]:hover,textarea[data-v-5f4a36da]:hover{border:1px solid #9cdfb0}ul[data-v-5f4a36da]{margin:0;padding:0;list-style:none}a[data-v-5f4a36da]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5f4a36da]:hover{color:#35b870}[data-v-5f4a36da]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5f4a36da]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5f4a36da]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5f4a36da]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5f4a36da]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5f4a36da] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5f4a36da] .nav .path{cursor:pointer}.browser[data-v-5f4a36da] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5f4a36da] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-5f4a36da]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5f4a36da],input[type=number][data-v-5f4a36da],input[type=password][data-v-5f4a36da],input[type=search][data-v-5f4a36da],input[type=text][data-v-5f4a36da],input[type=time][data-v-5f4a36da]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-5f4a36da]:hover,input[type=number][data-v-5f4a36da]:hover,input[type=password][data-v-5f4a36da]:hover,input[type=search][data-v-5f4a36da]:hover,input[type=text][data-v-5f4a36da]:hover,input[type=time][data-v-5f4a36da]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5f4a36da]:focus,input[type=number][data-v-5f4a36da]:focus,input[type=password][data-v-5f4a36da]:focus,input[type=search][data-v-5f4a36da]:focus,input[type=text][data-v-5f4a36da]:focus,input[type=time][data-v-5f4a36da]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5f4a36da],input[type=number].with-icon[data-v-5f4a36da],input[type=password].with-icon[data-v-5f4a36da],input[type=search].with-icon[data-v-5f4a36da],input[type=text].with-icon[data-v-5f4a36da],input[type=time].with-icon[data-v-5f4a36da]{padding-left:.3em}input[type=search][data-v-5f4a36da],input[type=text][data-v-5f4a36da]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5f4a36da]{animation-fill-mode:both;animation-name:fadeIn-5f4a36da;-webkit-animation-name:fadeIn-5f4a36da}.fade-in[data-v-5f4a36da],.fade-out[data-v-5f4a36da]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5f4a36da]{animation-fill-mode:both;animation-name:fadeOut-5f4a36da;-webkit-animation-name:fadeOut-5f4a36da}@keyframes fadeIn-5f4a36da{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5f4a36da{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-5f4a36da]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5f4a36da;-webkit-animation-name:glow-5f4a36da}.loop[data-v-5f4a36da]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5f4a36da{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5f4a36da]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5f4a36da]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5f4a36da]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-file-browser[data-v-5f4a36da]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2893.9ed78d28.css b/platypush/backend/http/webapp/dist/static/css/2893.fb75679d.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/2893.9ed78d28.css rename to platypush/backend/http/webapp/dist/static/css/2893.fb75679d.css index c29f535329..8036a9cb75 100644 --- a/platypush/backend/http/webapp/dist/static/css/2893.9ed78d28.css +++ b/platypush/backend/http/webapp/dist/static/css/2893.fb75679d.css @@ -1 +1 @@ -.col-1[data-v-159d46fc],.entity .head .icon[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-159d46fc]:first-child,.entity .head .icon[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-159d46fc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-159d46fc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-159d46fc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-159d46fc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-159d46fc],.entity .head .value-and-toggler[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-159d46fc]:first-child,.entity .head .value-and-toggler[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-159d46fc]:first-child{margin-left:26%!important}.col-offset-3[data-v-159d46fc]:not(first-child){margin-left:30%!important}.col-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-159d46fc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-159d46fc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-159d46fc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-159d46fc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-159d46fc]:first-child{margin-left:52%!important}.col-offset-6[data-v-159d46fc]:not(first-child){margin-left:56%!important}.col-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-159d46fc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-159d46fc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-159d46fc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-159d46fc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-159d46fc]:first-child{margin-left:78%!important}.col-offset-9[data-v-159d46fc]:not(first-child){margin-left:82%!important}.col-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-159d46fc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-159d46fc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-159d46fc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-159d46fc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-159d46fc],.entity .head .value-container[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-159d46fc]:first-child,.entity .head .value-container[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-s-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-s-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-159d46fc],.entity .head .label[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-159d46fc]:first-child,.entity .head .label[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-s-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-159d46fc],.attributes .child .value[data-v-159d46fc],.col-s-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-159d46fc]:first-child,.attributes .child .value[data-v-159d46fc]:first-child,.col-s-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-159d46fc]{display:none!important}.s-visible[data-v-159d46fc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-159d46fc],.entity .head .value-container[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-159d46fc]:first-child,.entity .head .value-container[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-m-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-159d46fc],.attributes .child .value[data-v-159d46fc],.col-m-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-159d46fc]:first-child,.attributes .child .value[data-v-159d46fc]:first-child,.col-m-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-m-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-159d46fc],.entity .head .label[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-159d46fc]:first-child,.entity .head .label[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-m-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-159d46fc]{display:none!important}.m-visible[data-v-159d46fc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-l-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-l-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-l-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-159d46fc]{display:none!important}.l-visible[data-v-159d46fc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-xl-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-xl-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-xl-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-159d46fc]{display:none!important}.xl-visible[data-v-159d46fc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-xxl-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-xxl-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-xxl-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-159d46fc]{display:none!important}.xxl-visible[data-v-159d46fc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-159d46fc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-159d46fc]{display:none!important}}.vertical-center[data-v-159d46fc]{display:flex;align-items:center}.horizontal-center[data-v-159d46fc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-159d46fc],.pull-right[data-v-159d46fc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-159d46fc]{display:none!important}.no-content[data-v-159d46fc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-159d46fc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-159d46fc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-159d46fc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-159d46fc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-159d46fc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-159d46fc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-159d46fc],.btn[data-v-159d46fc],button[data-v-159d46fc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-159d46fc],.btn-default[type=submit][data-v-159d46fc],.btn.btn-primary[data-v-159d46fc],.btn[type=submit][data-v-159d46fc],button.btn-primary[data-v-159d46fc],button[type=submit][data-v-159d46fc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-159d46fc],.btn-default .icon[data-v-159d46fc],button .icon[data-v-159d46fc]{margin-right:.5em}input[type=password][data-v-159d46fc],input[type=text][data-v-159d46fc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-159d46fc]:focus,input[type=text][data-v-159d46fc]:focus{border:1px solid #35b870}button[data-v-159d46fc],input[data-v-159d46fc]{outline:none}input[type=text][data-v-159d46fc]:hover,textarea[data-v-159d46fc]:hover{border:1px solid #9cdfb0}ul[data-v-159d46fc]{margin:0;padding:0;list-style:none}a[data-v-159d46fc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-159d46fc]:hover{color:#35b870}[data-v-159d46fc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-159d46fc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-159d46fc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-159d46fc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-159d46fc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-159d46fc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-159d46fc] .nav .path{cursor:pointer}.browser[data-v-159d46fc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-159d46fc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-159d46fc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-159d46fc],input[type=number][data-v-159d46fc],input[type=password][data-v-159d46fc],input[type=search][data-v-159d46fc],input[type=text][data-v-159d46fc],input[type=time][data-v-159d46fc]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-159d46fc]:hover,input[type=number][data-v-159d46fc]:hover,input[type=password][data-v-159d46fc]:hover,input[type=search][data-v-159d46fc]:hover,input[type=text][data-v-159d46fc]:hover,input[type=time][data-v-159d46fc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-159d46fc]:focus,input[type=number][data-v-159d46fc]:focus,input[type=password][data-v-159d46fc]:focus,input[type=search][data-v-159d46fc]:focus,input[type=text][data-v-159d46fc]:focus,input[type=time][data-v-159d46fc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-159d46fc],input[type=number].with-icon[data-v-159d46fc],input[type=password].with-icon[data-v-159d46fc],input[type=search].with-icon[data-v-159d46fc],input[type=text].with-icon[data-v-159d46fc],input[type=time].with-icon[data-v-159d46fc]{padding-left:.3em}input[type=search][data-v-159d46fc],input[type=text][data-v-159d46fc]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-159d46fc],.fade-in[data-v-159d46fc]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-159d46fc;-webkit-animation-name:fadeIn-159d46fc}.fade-out[data-v-159d46fc]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-159d46fc;-webkit-animation-name:fadeOut-159d46fc}@keyframes fadeIn-159d46fc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-159d46fc{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-159d46fc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-159d46fc;-webkit-animation-name:glow-159d46fc}.loop[data-v-159d46fc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-159d46fc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-159d46fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-159d46fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-159d46fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-159d46fc]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-159d46fc]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-159d46fc]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-159d46fc]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-159d46fc]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-159d46fc]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-159d46fc]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-159d46fc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-159d46fc]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-159d46fc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-159d46fc]{margin-right:.5em}.entity .head .icon[data-v-159d46fc]:hover{color:#35b870}.entity .head .label[data-v-159d46fc]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-159d46fc]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-159d46fc]:hover{color:#35b870}.entity .head .value[data-v-159d46fc]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-159d46fc]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-159d46fc]{margin-right:2.5em}.entity .head .value-container[data-v-159d46fc]{min-width:7em}.entity .head .unit[data-v-159d46fc]{margin-left:.2em}.entity .head .pull-right[data-v-159d46fc],.entity .head .value-container[data-v-159d46fc]{padding-right:.5em}.entity .head .pull-right[data-v-159d46fc] .power-switch,.entity .head .value-container[data-v-159d46fc] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-159d46fc]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-159d46fc]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-159d46fc]:hover{color:#35b870}.collapse-toggler[data-v-159d46fc]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-159d46fc]:hover{color:#35b870}.attributes .child[data-v-159d46fc]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-159d46fc]{flex-direction:column}}.attributes .child[data-v-159d46fc]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-159d46fc]:hover{cursor:auto}.attributes .child.head[data-v-159d46fc]{cursor:pointer}.attributes .child.head[data-v-159d46fc]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-159d46fc]{font-weight:700}.attributes .child .value[data-v-159d46fc]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-159d46fc]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-159d46fc]:last-child,.entity-container-wrapper.with-children[data-v-159d46fc]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-159d46fc]{animation:blink-animation-159d46fc 1s steps(20,start)}@keyframes blink-animation-159d46fc{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-159d46fc],.entity .head .icon[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-159d46fc]:first-child,.entity .head .icon[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-159d46fc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-159d46fc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-159d46fc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-159d46fc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-159d46fc],.entity .head .value-and-toggler[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-159d46fc]:first-child,.entity .head .value-and-toggler[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-159d46fc]:first-child{margin-left:26%!important}.col-offset-3[data-v-159d46fc]:not(first-child){margin-left:30%!important}.col-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-159d46fc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-159d46fc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-159d46fc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-159d46fc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-159d46fc]:first-child{margin-left:52%!important}.col-offset-6[data-v-159d46fc]:not(first-child){margin-left:56%!important}.col-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-159d46fc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-159d46fc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-159d46fc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-159d46fc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-159d46fc]:first-child{margin-left:78%!important}.col-offset-9[data-v-159d46fc]:not(first-child){margin-left:82%!important}.col-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-159d46fc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-159d46fc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-159d46fc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-159d46fc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-159d46fc],.entity .head .value-container[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-159d46fc]:first-child,.entity .head .value-container[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-s-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-s-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-159d46fc],.entity .head .label[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-159d46fc]:first-child,.entity .head .label[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-s-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-s-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-159d46fc],.attributes .child .value[data-v-159d46fc],.col-s-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-159d46fc]:first-child,.attributes .child .value[data-v-159d46fc]:first-child,.col-s-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-159d46fc]{display:none!important}.s-visible[data-v-159d46fc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-159d46fc],.entity .head .value-container[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-159d46fc]:first-child,.entity .head .value-container[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-m-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-159d46fc],.attributes .child .value[data-v-159d46fc],.col-m-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-159d46fc]:first-child,.attributes .child .value[data-v-159d46fc]:first-child,.col-m-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-m-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-159d46fc],.entity .head .label[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-159d46fc]:first-child,.entity .head .label[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-m-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-m-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-159d46fc]{display:none!important}.m-visible[data-v-159d46fc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-l-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-l-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-l-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-l-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-159d46fc]{display:none!important}.l-visible[data-v-159d46fc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-xl-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-xl-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-xl-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xl-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-159d46fc]{display:none!important}.xl-visible[data-v-159d46fc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-159d46fc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-159d46fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-159d46fc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-159d46fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-159d46fc]{margin-left:26%}.col-no-margin-xxl-3[data-v-159d46fc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-159d46fc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-159d46fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-159d46fc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-159d46fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-159d46fc]{margin-left:52%}.col-no-margin-xxl-6[data-v-159d46fc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-159d46fc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-159d46fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-159d46fc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-159d46fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-159d46fc]{margin-left:78%}.col-no-margin-xxl-9[data-v-159d46fc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-159d46fc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-159d46fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-159d46fc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-159d46fc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-159d46fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-159d46fc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-159d46fc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-159d46fc]{display:none!important}.xxl-visible[data-v-159d46fc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-159d46fc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-159d46fc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-159d46fc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-159d46fc]{display:none!important}}.vertical-center[data-v-159d46fc]{display:flex;align-items:center}.horizontal-center[data-v-159d46fc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-159d46fc],.pull-right[data-v-159d46fc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-159d46fc]{display:none!important}.no-content[data-v-159d46fc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-159d46fc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-159d46fc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-159d46fc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-159d46fc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-159d46fc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-159d46fc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-159d46fc],.btn[data-v-159d46fc],button[data-v-159d46fc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-159d46fc],.btn-default[type=submit][data-v-159d46fc],.btn.btn-primary[data-v-159d46fc],.btn[type=submit][data-v-159d46fc],button.btn-primary[data-v-159d46fc],button[type=submit][data-v-159d46fc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-159d46fc]:hover,.btn[data-v-159d46fc]:hover,button[data-v-159d46fc]:hover{color:#35b870}.btn .icon[data-v-159d46fc],.btn-default .icon[data-v-159d46fc],button .icon[data-v-159d46fc]{margin-right:.5em}.btn-default[data-v-159d46fc]:disabled,.btn-default[disabled][data-v-159d46fc],.btn[data-v-159d46fc]:disabled,.btn[disabled][data-v-159d46fc],button[data-v-159d46fc]:disabled,button[disabled][data-v-159d46fc]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-159d46fc]{cursor:grab!important}.dragged[data-v-159d46fc]{opacity:.5!important}input[type=password][data-v-159d46fc],input[type=text][data-v-159d46fc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-159d46fc]:focus,input[type=text][data-v-159d46fc]:focus{border:1px solid #35b870}button[data-v-159d46fc],input[data-v-159d46fc]{outline:none}input[type=text][data-v-159d46fc]:hover,textarea[data-v-159d46fc]:hover{border:1px solid #9cdfb0}ul[data-v-159d46fc]{margin:0;padding:0;list-style:none}a[data-v-159d46fc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-159d46fc]:hover{color:#35b870}[data-v-159d46fc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-159d46fc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-159d46fc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-159d46fc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-159d46fc]{color:#ad1717}body[data-v-159d46fc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-159d46fc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-159d46fc] .nav .path{cursor:pointer}.browser[data-v-159d46fc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-159d46fc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-159d46fc]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-159d46fc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-159d46fc],input[type=number][data-v-159d46fc],input[type=password][data-v-159d46fc],input[type=search][data-v-159d46fc],input[type=text][data-v-159d46fc],input[type=time][data-v-159d46fc]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-159d46fc]:hover,input[type=number][data-v-159d46fc]:hover,input[type=password][data-v-159d46fc]:hover,input[type=search][data-v-159d46fc]:hover,input[type=text][data-v-159d46fc]:hover,input[type=time][data-v-159d46fc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-159d46fc]:focus,input[type=number][data-v-159d46fc]:focus,input[type=password][data-v-159d46fc]:focus,input[type=search][data-v-159d46fc]:focus,input[type=text][data-v-159d46fc]:focus,input[type=time][data-v-159d46fc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-159d46fc],input[type=number].with-icon[data-v-159d46fc],input[type=password].with-icon[data-v-159d46fc],input[type=search].with-icon[data-v-159d46fc],input[type=text].with-icon[data-v-159d46fc],input[type=time].with-icon[data-v-159d46fc]{padding-left:.3em}input[type=search][data-v-159d46fc],input[type=text][data-v-159d46fc]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-159d46fc],.fade-in[data-v-159d46fc]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-159d46fc;-webkit-animation-name:fadeIn-159d46fc}.fade-out[data-v-159d46fc]{animation-fill-mode:both;animation-name:fadeOut-159d46fc;-webkit-animation-name:fadeOut-159d46fc}.expand[data-v-159d46fc],.fade-out[data-v-159d46fc]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-159d46fc]{animation-fill-mode:both;animation-name:expand-159d46fc;-webkit-animation-name:expand-159d46fc}.shrink[data-v-159d46fc]{animation-fill-mode:both;animation-name:shrink-159d46fc;-webkit-animation-name:shrink-159d46fc}.fold[data-v-159d46fc],.shrink[data-v-159d46fc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-159d46fc]{animation-fill-mode:both;animation-name:fold-159d46fc;-webkit-animation-name:fold-159d46fc}.unfold[data-v-159d46fc]{animation-fill-mode:both;animation-name:unfold-159d46fc;-webkit-animation-name:unfold-159d46fc}.dim[data-v-159d46fc],.unfold[data-v-159d46fc]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-159d46fc]{animation-fill-mode:both;animation-name:dim-159d46fc;-webkit-animation-name:dim-159d46fc}.brighten[data-v-159d46fc]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-159d46fc;-webkit-animation-name:brighten-159d46fc}@keyframes fadeIn-159d46fc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-159d46fc{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-159d46fc{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-159d46fc{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-159d46fc{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-159d46fc{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-159d46fc{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-159d46fc{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-159d46fc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-159d46fc;-webkit-animation-name:glow-159d46fc}.loop[data-v-159d46fc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-159d46fc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-159d46fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-159d46fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-159d46fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-159d46fc]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-159d46fc]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-159d46fc]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-159d46fc]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-159d46fc]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-159d46fc]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-159d46fc]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-159d46fc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-159d46fc]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-159d46fc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-159d46fc]{margin-right:.5em}.entity .head .icon[data-v-159d46fc]:hover{color:#35b870}.entity .head .label[data-v-159d46fc]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-159d46fc]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-159d46fc]:hover{color:#35b870}.entity .head .value[data-v-159d46fc]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-159d46fc]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-159d46fc]{margin-right:2.5em}.entity .head .value-container[data-v-159d46fc]{min-width:7em}.entity .head .unit[data-v-159d46fc]{margin-left:.2em}.entity .head .pull-right[data-v-159d46fc],.entity .head .value-container[data-v-159d46fc]{padding-right:.5em}.entity .head .pull-right[data-v-159d46fc] .power-switch,.entity .head .value-container[data-v-159d46fc] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-159d46fc]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-159d46fc]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-159d46fc]:hover{color:#35b870}.collapse-toggler[data-v-159d46fc]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-159d46fc]:hover{color:#35b870}.attributes .child[data-v-159d46fc]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-159d46fc]{flex-direction:column}}.attributes .child[data-v-159d46fc]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-159d46fc]:hover{cursor:auto}.attributes .child.head[data-v-159d46fc]{cursor:pointer}.attributes .child.head[data-v-159d46fc]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-159d46fc]{font-weight:700}.attributes .child .value[data-v-159d46fc]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-159d46fc]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-159d46fc]:last-child,.entity-container-wrapper.with-children[data-v-159d46fc]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-159d46fc]{animation:blink-animation-159d46fc 1s steps(20,start)}@keyframes blink-animation-159d46fc{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2924.23b041bd.css b/platypush/backend/http/webapp/dist/static/css/2924.355557a9.css similarity index 79% rename from platypush/backend/http/webapp/dist/static/css/2924.23b041bd.css rename to platypush/backend/http/webapp/dist/static/css/2924.355557a9.css index d94f00726d..3724781299 100644 --- a/platypush/backend/http/webapp/dist/static/css/2924.23b041bd.css +++ b/platypush/backend/http/webapp/dist/static/css/2924.355557a9.css @@ -1 +1 @@ -.col-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2edff8b7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2edff8b7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2edff8b7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2edff8b7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2edff8b7]:first-child{margin-left:26%!important}.col-offset-3[data-v-2edff8b7]:not(first-child){margin-left:30%!important}.col-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2edff8b7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2edff8b7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2edff8b7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2edff8b7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2edff8b7]:first-child{margin-left:52%!important}.col-offset-6[data-v-2edff8b7]:not(first-child){margin-left:56%!important}.col-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2edff8b7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2edff8b7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2edff8b7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2edff8b7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2edff8b7]:first-child{margin-left:78%!important}.col-offset-9[data-v-2edff8b7]:not(first-child){margin-left:82%!important}.col-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2edff8b7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2edff8b7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2edff8b7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2edff8b7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-s-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-s-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-s-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2edff8b7]{display:none!important}.s-visible[data-v-2edff8b7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-m-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-m-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-m-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2edff8b7]{display:none!important}.m-visible[data-v-2edff8b7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-l-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-l-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-l-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2edff8b7]{display:none!important}.l-visible[data-v-2edff8b7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-xl-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-xl-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-xl-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2edff8b7]{display:none!important}.xl-visible[data-v-2edff8b7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-xxl-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-xxl-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-xxl-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2edff8b7]{display:none!important}.xxl-visible[data-v-2edff8b7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2edff8b7]{display:none!important}}.vertical-center[data-v-2edff8b7]{display:flex;align-items:center}.horizontal-center[data-v-2edff8b7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2edff8b7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2edff8b7]{display:none!important}.no-content[data-v-2edff8b7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2edff8b7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2edff8b7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2edff8b7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2edff8b7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2edff8b7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2edff8b7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2edff8b7],.btn[data-v-2edff8b7],button[data-v-2edff8b7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2edff8b7],.btn-default[type=submit][data-v-2edff8b7],.btn.btn-primary[data-v-2edff8b7],.btn[type=submit][data-v-2edff8b7],button.btn-primary[data-v-2edff8b7],button[type=submit][data-v-2edff8b7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-2edff8b7],.btn-default .icon[data-v-2edff8b7],button .icon[data-v-2edff8b7]{margin-right:.5em}input[type=password][data-v-2edff8b7],input[type=text][data-v-2edff8b7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2edff8b7]:focus,input[type=text][data-v-2edff8b7]:focus{border:1px solid #35b870}button[data-v-2edff8b7],input[data-v-2edff8b7]{outline:none}input[type=text][data-v-2edff8b7]:hover,textarea[data-v-2edff8b7]:hover{border:1px solid #9cdfb0}ul[data-v-2edff8b7]{margin:0;padding:0;list-style:none}a[data-v-2edff8b7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2edff8b7]:hover{color:#35b870}[data-v-2edff8b7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2edff8b7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2edff8b7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2edff8b7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-2edff8b7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2edff8b7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2edff8b7] .nav .path{cursor:pointer}.browser[data-v-2edff8b7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2edff8b7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-2edff8b7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2edff8b7],input[type=number][data-v-2edff8b7],input[type=password][data-v-2edff8b7],input[type=search][data-v-2edff8b7],input[type=text][data-v-2edff8b7],input[type=time][data-v-2edff8b7]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-2edff8b7]:hover,input[type=number][data-v-2edff8b7]:hover,input[type=password][data-v-2edff8b7]:hover,input[type=search][data-v-2edff8b7]:hover,input[type=text][data-v-2edff8b7]:hover,input[type=time][data-v-2edff8b7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2edff8b7]:focus,input[type=number][data-v-2edff8b7]:focus,input[type=password][data-v-2edff8b7]:focus,input[type=search][data-v-2edff8b7]:focus,input[type=text][data-v-2edff8b7]:focus,input[type=time][data-v-2edff8b7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2edff8b7],input[type=number].with-icon[data-v-2edff8b7],input[type=password].with-icon[data-v-2edff8b7],input[type=search].with-icon[data-v-2edff8b7],input[type=text].with-icon[data-v-2edff8b7],input[type=time].with-icon[data-v-2edff8b7]{padding-left:.3em}input[type=search][data-v-2edff8b7],input[type=text][data-v-2edff8b7]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2edff8b7]{animation-fill-mode:both;animation-name:fadeIn-2edff8b7;-webkit-animation-name:fadeIn-2edff8b7}.fade-in[data-v-2edff8b7],.fade-out[data-v-2edff8b7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2edff8b7]{animation-fill-mode:both;animation-name:fadeOut-2edff8b7;-webkit-animation-name:fadeOut-2edff8b7}@keyframes fadeIn-2edff8b7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2edff8b7{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-2edff8b7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2edff8b7;-webkit-animation-name:glow-2edff8b7}.loop[data-v-2edff8b7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2edff8b7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2edff8b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2edff8b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2edff8b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)} \ No newline at end of file +.col-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2edff8b7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2edff8b7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2edff8b7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2edff8b7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2edff8b7]:first-child{margin-left:26%!important}.col-offset-3[data-v-2edff8b7]:not(first-child){margin-left:30%!important}.col-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2edff8b7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2edff8b7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2edff8b7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2edff8b7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2edff8b7]:first-child{margin-left:52%!important}.col-offset-6[data-v-2edff8b7]:not(first-child){margin-left:56%!important}.col-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2edff8b7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2edff8b7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2edff8b7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2edff8b7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2edff8b7]:first-child{margin-left:78%!important}.col-offset-9[data-v-2edff8b7]:not(first-child){margin-left:82%!important}.col-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2edff8b7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2edff8b7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2edff8b7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2edff8b7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-s-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-s-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-s-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-s-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2edff8b7]{display:none!important}.s-visible[data-v-2edff8b7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-m-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-m-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-m-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-m-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2edff8b7]{display:none!important}.m-visible[data-v-2edff8b7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-l-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-l-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-l-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-l-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2edff8b7]{display:none!important}.l-visible[data-v-2edff8b7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-xl-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-xl-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-xl-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xl-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2edff8b7]{display:none!important}.xl-visible[data-v-2edff8b7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2edff8b7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2edff8b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2edff8b7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2edff8b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2edff8b7]{margin-left:26%}.col-no-margin-xxl-3[data-v-2edff8b7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2edff8b7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2edff8b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2edff8b7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2edff8b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2edff8b7]{margin-left:52%}.col-no-margin-xxl-6[data-v-2edff8b7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2edff8b7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2edff8b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2edff8b7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2edff8b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2edff8b7]{margin-left:78%}.col-no-margin-xxl-9[data-v-2edff8b7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2edff8b7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2edff8b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2edff8b7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2edff8b7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2edff8b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2edff8b7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2edff8b7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2edff8b7]{display:none!important}.xxl-visible[data-v-2edff8b7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2edff8b7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2edff8b7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2edff8b7]{display:none!important}}.vertical-center[data-v-2edff8b7]{display:flex;align-items:center}.horizontal-center[data-v-2edff8b7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2edff8b7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2edff8b7]{display:none!important}.no-content[data-v-2edff8b7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2edff8b7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2edff8b7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2edff8b7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2edff8b7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2edff8b7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2edff8b7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2edff8b7],.btn[data-v-2edff8b7],button[data-v-2edff8b7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2edff8b7],.btn-default[type=submit][data-v-2edff8b7],.btn.btn-primary[data-v-2edff8b7],.btn[type=submit][data-v-2edff8b7],button.btn-primary[data-v-2edff8b7],button[type=submit][data-v-2edff8b7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2edff8b7]:hover,.btn[data-v-2edff8b7]:hover,button[data-v-2edff8b7]:hover{color:#35b870}.btn .icon[data-v-2edff8b7],.btn-default .icon[data-v-2edff8b7],button .icon[data-v-2edff8b7]{margin-right:.5em}.btn-default[data-v-2edff8b7]:disabled,.btn-default[disabled][data-v-2edff8b7],.btn[data-v-2edff8b7]:disabled,.btn[disabled][data-v-2edff8b7],button[data-v-2edff8b7]:disabled,button[disabled][data-v-2edff8b7]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2edff8b7]{cursor:grab!important}.dragged[data-v-2edff8b7]{opacity:.5!important}input[type=password][data-v-2edff8b7],input[type=text][data-v-2edff8b7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2edff8b7]:focus,input[type=text][data-v-2edff8b7]:focus{border:1px solid #35b870}button[data-v-2edff8b7],input[data-v-2edff8b7]{outline:none}input[type=text][data-v-2edff8b7]:hover,textarea[data-v-2edff8b7]:hover{border:1px solid #9cdfb0}ul[data-v-2edff8b7]{margin:0;padding:0;list-style:none}a[data-v-2edff8b7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2edff8b7]:hover{color:#35b870}[data-v-2edff8b7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2edff8b7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2edff8b7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2edff8b7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2edff8b7]{color:#ad1717}body[data-v-2edff8b7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2edff8b7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2edff8b7] .nav .path{cursor:pointer}.browser[data-v-2edff8b7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2edff8b7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2edff8b7]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2edff8b7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2edff8b7],input[type=number][data-v-2edff8b7],input[type=password][data-v-2edff8b7],input[type=search][data-v-2edff8b7],input[type=text][data-v-2edff8b7],input[type=time][data-v-2edff8b7]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2edff8b7]:hover,input[type=number][data-v-2edff8b7]:hover,input[type=password][data-v-2edff8b7]:hover,input[type=search][data-v-2edff8b7]:hover,input[type=text][data-v-2edff8b7]:hover,input[type=time][data-v-2edff8b7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2edff8b7]:focus,input[type=number][data-v-2edff8b7]:focus,input[type=password][data-v-2edff8b7]:focus,input[type=search][data-v-2edff8b7]:focus,input[type=text][data-v-2edff8b7]:focus,input[type=time][data-v-2edff8b7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2edff8b7],input[type=number].with-icon[data-v-2edff8b7],input[type=password].with-icon[data-v-2edff8b7],input[type=search].with-icon[data-v-2edff8b7],input[type=text].with-icon[data-v-2edff8b7],input[type=time].with-icon[data-v-2edff8b7]{padding-left:.3em}input[type=search][data-v-2edff8b7],input[type=text][data-v-2edff8b7]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2edff8b7]{animation-fill-mode:both;animation-name:fadeIn-2edff8b7;-webkit-animation-name:fadeIn-2edff8b7}.fade-in[data-v-2edff8b7],.fade-out[data-v-2edff8b7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2edff8b7]{animation-fill-mode:both;animation-name:fadeOut-2edff8b7;-webkit-animation-name:fadeOut-2edff8b7}.expand[data-v-2edff8b7]{animation-fill-mode:both;animation-name:expand-2edff8b7;-webkit-animation-name:expand-2edff8b7}.expand[data-v-2edff8b7],.shrink[data-v-2edff8b7]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2edff8b7]{animation-fill-mode:both;animation-name:shrink-2edff8b7;-webkit-animation-name:shrink-2edff8b7}.fold[data-v-2edff8b7]{animation-fill-mode:both;animation-name:fold-2edff8b7;-webkit-animation-name:fold-2edff8b7}.fold[data-v-2edff8b7],.unfold[data-v-2edff8b7]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2edff8b7]{animation-fill-mode:both;animation-name:unfold-2edff8b7;-webkit-animation-name:unfold-2edff8b7}.dim[data-v-2edff8b7]{animation-fill-mode:both;animation-name:dim-2edff8b7;-webkit-animation-name:dim-2edff8b7}.brighten[data-v-2edff8b7],.dim[data-v-2edff8b7]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2edff8b7]{animation-fill-mode:both;animation-name:brighten-2edff8b7;-webkit-animation-name:brighten-2edff8b7}@keyframes fadeIn-2edff8b7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2edff8b7{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2edff8b7{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2edff8b7{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2edff8b7{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2edff8b7{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2edff8b7{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2edff8b7{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2edff8b7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2edff8b7;-webkit-animation-name:glow-2edff8b7}.loop[data-v-2edff8b7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2edff8b7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2edff8b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2edff8b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2edff8b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/293.521a4f1c.css b/platypush/backend/http/webapp/dist/static/css/293.521a4f1c.css new file mode 100644 index 0000000000..23cb9ced94 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/293.521a4f1c.css @@ -0,0 +1 @@ +.col-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1eab04fa]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1eab04fa]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1eab04fa]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1eab04fa]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1eab04fa]:first-child{margin-left:26%!important}.col-offset-3[data-v-1eab04fa]:not(first-child){margin-left:30%!important}.col-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1eab04fa]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1eab04fa]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1eab04fa]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1eab04fa]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1eab04fa]:first-child{margin-left:52%!important}.col-offset-6[data-v-1eab04fa]:not(first-child){margin-left:56%!important}.col-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1eab04fa]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1eab04fa]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1eab04fa]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1eab04fa]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1eab04fa]:first-child{margin-left:78%!important}.col-offset-9[data-v-1eab04fa]:not(first-child){margin-left:82%!important}.col-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1eab04fa]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1eab04fa]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1eab04fa]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1eab04fa]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-s-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-s-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-s-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1eab04fa]{display:none!important}.s-visible[data-v-1eab04fa]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-m-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-m-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-m-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1eab04fa]{display:none!important}.m-visible[data-v-1eab04fa]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-l-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-l-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-l-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1eab04fa]{display:none!important}.l-visible[data-v-1eab04fa]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-xl-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-xl-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-xl-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1eab04fa]{display:none!important}.xl-visible[data-v-1eab04fa]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-xxl-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-xxl-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-xxl-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1eab04fa]{display:none!important}.xxl-visible[data-v-1eab04fa]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1eab04fa]{display:none!important}}.vertical-center[data-v-1eab04fa]{display:flex;align-items:center}.horizontal-center[data-v-1eab04fa]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1eab04fa]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1eab04fa]{display:none!important}.no-content[data-v-1eab04fa]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1eab04fa]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1eab04fa]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1eab04fa]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1eab04fa]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1eab04fa]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1eab04fa]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1eab04fa],.btn[data-v-1eab04fa],button[data-v-1eab04fa]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1eab04fa],.btn-default[type=submit][data-v-1eab04fa],.btn.btn-primary[data-v-1eab04fa],.btn[type=submit][data-v-1eab04fa],button.btn-primary[data-v-1eab04fa],button[type=submit][data-v-1eab04fa]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1eab04fa]:hover,.btn[data-v-1eab04fa]:hover,button[data-v-1eab04fa]:hover{color:#35b870}.btn .icon[data-v-1eab04fa],.btn-default .icon[data-v-1eab04fa],button .icon[data-v-1eab04fa]{margin-right:.5em}.btn-default[data-v-1eab04fa]:disabled,.btn-default[disabled][data-v-1eab04fa],.btn[data-v-1eab04fa]:disabled,.btn[disabled][data-v-1eab04fa],button[data-v-1eab04fa]:disabled,button[disabled][data-v-1eab04fa]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1eab04fa]{cursor:grab!important}.dragged[data-v-1eab04fa]{opacity:.5!important}input[type=password][data-v-1eab04fa],input[type=text][data-v-1eab04fa]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1eab04fa]:focus,input[type=text][data-v-1eab04fa]:focus{border:1px solid #35b870}button[data-v-1eab04fa],input[data-v-1eab04fa]{outline:none}input[type=text][data-v-1eab04fa]:hover,textarea[data-v-1eab04fa]:hover{border:1px solid #9cdfb0}ul[data-v-1eab04fa]{margin:0;padding:0;list-style:none}a[data-v-1eab04fa]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1eab04fa]:hover{color:#35b870}[data-v-1eab04fa]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1eab04fa]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1eab04fa]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1eab04fa]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1eab04fa]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1eab04fa] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1eab04fa] .nav .path{cursor:pointer}.browser[data-v-1eab04fa] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1eab04fa] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1eab04fa]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1eab04fa]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1eab04fa],input[type=number][data-v-1eab04fa],input[type=password][data-v-1eab04fa],input[type=search][data-v-1eab04fa],input[type=text][data-v-1eab04fa],input[type=time][data-v-1eab04fa]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1eab04fa]:hover,input[type=number][data-v-1eab04fa]:hover,input[type=password][data-v-1eab04fa]:hover,input[type=search][data-v-1eab04fa]:hover,input[type=text][data-v-1eab04fa]:hover,input[type=time][data-v-1eab04fa]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1eab04fa]:focus,input[type=number][data-v-1eab04fa]:focus,input[type=password][data-v-1eab04fa]:focus,input[type=search][data-v-1eab04fa]:focus,input[type=text][data-v-1eab04fa]:focus,input[type=time][data-v-1eab04fa]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1eab04fa],input[type=number].with-icon[data-v-1eab04fa],input[type=password].with-icon[data-v-1eab04fa],input[type=search].with-icon[data-v-1eab04fa],input[type=text].with-icon[data-v-1eab04fa],input[type=time].with-icon[data-v-1eab04fa]{padding-left:.3em}input[type=search][data-v-1eab04fa],input[type=text][data-v-1eab04fa]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1eab04fa]{animation-fill-mode:both;animation-name:fadeIn-1eab04fa;-webkit-animation-name:fadeIn-1eab04fa}.fade-in[data-v-1eab04fa],.fade-out[data-v-1eab04fa]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1eab04fa]{animation-fill-mode:both;animation-name:fadeOut-1eab04fa;-webkit-animation-name:fadeOut-1eab04fa}.expand[data-v-1eab04fa]{animation-fill-mode:both;animation-name:expand-1eab04fa;-webkit-animation-name:expand-1eab04fa}.expand[data-v-1eab04fa],.shrink[data-v-1eab04fa]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1eab04fa]{animation-fill-mode:both;animation-name:shrink-1eab04fa;-webkit-animation-name:shrink-1eab04fa}.fold[data-v-1eab04fa]{animation-fill-mode:both;animation-name:fold-1eab04fa;-webkit-animation-name:fold-1eab04fa}.fold[data-v-1eab04fa],.unfold[data-v-1eab04fa]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1eab04fa]{animation-fill-mode:both;animation-name:unfold-1eab04fa;-webkit-animation-name:unfold-1eab04fa}.dim[data-v-1eab04fa]{animation-fill-mode:both;animation-name:dim-1eab04fa;-webkit-animation-name:dim-1eab04fa}.brighten[data-v-1eab04fa],.dim[data-v-1eab04fa]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1eab04fa]{animation-fill-mode:both;animation-name:brighten-1eab04fa;-webkit-animation-name:brighten-1eab04fa}@keyframes fadeIn-1eab04fa{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1eab04fa{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1eab04fa{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1eab04fa{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1eab04fa{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1eab04fa{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1eab04fa{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1eab04fa{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1eab04fa]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1eab04fa;-webkit-animation-name:glow-1eab04fa}.loop[data-v-1eab04fa]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1eab04fa{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1eab04fa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1eab04fa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1eab04fa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.text-danger[data-v-1eab04fa]{color:#ad1717}.col-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-40365cea]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-40365cea]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-40365cea]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-40365cea]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-40365cea]:first-child{margin-left:26%!important}.col-offset-3[data-v-40365cea]:not(first-child){margin-left:30%!important}.col-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-40365cea]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-40365cea]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-40365cea]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-40365cea]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-40365cea]:first-child{margin-left:52%!important}.col-offset-6[data-v-40365cea]:not(first-child){margin-left:56%!important}.col-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-40365cea]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-40365cea]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-40365cea]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-40365cea]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-40365cea]:first-child{margin-left:78%!important}.col-offset-9[data-v-40365cea]:not(first-child){margin-left:82%!important}.col-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-40365cea]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-40365cea]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-40365cea]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-40365cea]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-3[data-v-40365cea]{margin-left:26%}.col-no-margin-s-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-6[data-v-40365cea]{margin-left:52%}.col-no-margin-s-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-9[data-v-40365cea]{margin-left:78%}.col-no-margin-s-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-s-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-40365cea]{display:none!important}.s-visible[data-v-40365cea]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-3[data-v-40365cea]{margin-left:26%}.col-no-margin-m-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-6[data-v-40365cea]{margin-left:52%}.col-no-margin-m-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-9[data-v-40365cea]{margin-left:78%}.col-no-margin-m-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-m-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-40365cea]{display:none!important}.m-visible[data-v-40365cea]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-3[data-v-40365cea]{margin-left:26%}.col-no-margin-l-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-6[data-v-40365cea]{margin-left:52%}.col-no-margin-l-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-9[data-v-40365cea]{margin-left:78%}.col-no-margin-l-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-l-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-40365cea]{display:none!important}.l-visible[data-v-40365cea]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-3[data-v-40365cea]{margin-left:26%}.col-no-margin-xl-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-6[data-v-40365cea]{margin-left:52%}.col-no-margin-xl-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-9[data-v-40365cea]{margin-left:78%}.col-no-margin-xl-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-40365cea]{display:none!important}.xl-visible[data-v-40365cea]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-3[data-v-40365cea]{margin-left:26%}.col-no-margin-xxl-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-6[data-v-40365cea]{margin-left:52%}.col-no-margin-xxl-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-9[data-v-40365cea]{margin-left:78%}.col-no-margin-xxl-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-40365cea]{display:none!important}.xxl-visible[data-v-40365cea]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-40365cea]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-40365cea]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-40365cea]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-40365cea]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-40365cea]{display:none!important}}.vertical-center[data-v-40365cea]{display:flex;align-items:center}.horizontal-center[data-v-40365cea]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-40365cea]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-40365cea]{display:none!important}.no-content[data-v-40365cea]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-40365cea]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-40365cea]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-40365cea]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-40365cea]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-40365cea]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-40365cea]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-40365cea],.btn[data-v-40365cea],button[data-v-40365cea]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-40365cea],.btn-default[type=submit][data-v-40365cea],.btn.btn-primary[data-v-40365cea],.btn[type=submit][data-v-40365cea],button.btn-primary[data-v-40365cea],button[type=submit][data-v-40365cea]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-40365cea]:hover,.btn[data-v-40365cea]:hover,button[data-v-40365cea]:hover{color:#35b870}.btn .icon[data-v-40365cea],.btn-default .icon[data-v-40365cea],button .icon[data-v-40365cea]{margin-right:.5em}.btn-default[data-v-40365cea]:disabled,.btn-default[disabled][data-v-40365cea],.btn[data-v-40365cea]:disabled,.btn[disabled][data-v-40365cea],button[data-v-40365cea]:disabled,button[disabled][data-v-40365cea]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-40365cea]{cursor:grab!important}.dragged[data-v-40365cea]{opacity:.5!important}input[type=password][data-v-40365cea],input[type=text][data-v-40365cea]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-40365cea]:focus,input[type=text][data-v-40365cea]:focus{border:1px solid #35b870}button[data-v-40365cea],input[data-v-40365cea]{outline:none}input[type=text][data-v-40365cea]:hover,textarea[data-v-40365cea]:hover{border:1px solid #9cdfb0}ul[data-v-40365cea]{margin:0;padding:0;list-style:none}a[data-v-40365cea]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-40365cea]:hover{color:#35b870}[data-v-40365cea]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-40365cea]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-40365cea]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-40365cea]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-40365cea]{color:#ad1717}body[data-v-40365cea]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-40365cea] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-40365cea] .nav .path{cursor:pointer}.browser[data-v-40365cea] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-40365cea] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-40365cea]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-40365cea]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-40365cea],input[type=number][data-v-40365cea],input[type=password][data-v-40365cea],input[type=search][data-v-40365cea],input[type=text][data-v-40365cea],input[type=time][data-v-40365cea]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-40365cea]:hover,input[type=number][data-v-40365cea]:hover,input[type=password][data-v-40365cea]:hover,input[type=search][data-v-40365cea]:hover,input[type=text][data-v-40365cea]:hover,input[type=time][data-v-40365cea]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-40365cea]:focus,input[type=number][data-v-40365cea]:focus,input[type=password][data-v-40365cea]:focus,input[type=search][data-v-40365cea]:focus,input[type=text][data-v-40365cea]:focus,input[type=time][data-v-40365cea]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-40365cea],input[type=number].with-icon[data-v-40365cea],input[type=password].with-icon[data-v-40365cea],input[type=search].with-icon[data-v-40365cea],input[type=text].with-icon[data-v-40365cea],input[type=time].with-icon[data-v-40365cea]{padding-left:.3em}input[type=search][data-v-40365cea],input[type=text][data-v-40365cea]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-40365cea]{animation-fill-mode:both;animation-name:fadeIn-40365cea;-webkit-animation-name:fadeIn-40365cea}.fade-in[data-v-40365cea],.fade-out[data-v-40365cea]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-40365cea]{animation-fill-mode:both;animation-name:fadeOut-40365cea;-webkit-animation-name:fadeOut-40365cea}.expand[data-v-40365cea]{animation-fill-mode:both;animation-name:expand-40365cea;-webkit-animation-name:expand-40365cea}.expand[data-v-40365cea],.shrink[data-v-40365cea]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-40365cea]{animation-fill-mode:both;animation-name:shrink-40365cea;-webkit-animation-name:shrink-40365cea}.fold[data-v-40365cea]{animation-fill-mode:both;animation-name:fold-40365cea;-webkit-animation-name:fold-40365cea}.fold[data-v-40365cea],.unfold[data-v-40365cea]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-40365cea]{animation-fill-mode:both;animation-name:unfold-40365cea;-webkit-animation-name:unfold-40365cea}.dim[data-v-40365cea]{animation-fill-mode:both;animation-name:dim-40365cea;-webkit-animation-name:dim-40365cea}.brighten[data-v-40365cea],.dim[data-v-40365cea]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-40365cea]{animation-fill-mode:both;animation-name:brighten-40365cea;-webkit-animation-name:brighten-40365cea}@keyframes fadeIn-40365cea{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-40365cea{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-40365cea{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-40365cea{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-40365cea{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-40365cea{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-40365cea{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-40365cea{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-40365cea]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-40365cea;-webkit-animation-name:glow-40365cea}.loop[data-v-40365cea]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-40365cea{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-40365cea]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-40365cea]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-40365cea]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.app-container[data-v-40365cea]{width:100%;height:100%;position:relative;margin:0;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center}.app-container[data-v-40365cea] .btn-container{margin-bottom:1em}.app-container[data-v-40365cea] .btn-container button{width:15em}.app-container[data-v-40365cea] .btn-container button:hover{border:1px solid #35b870}.col-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-24d32b46]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-24d32b46]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-24d32b46]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-24d32b46]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-24d32b46]:first-child{margin-left:26%!important}.col-offset-3[data-v-24d32b46]:not(first-child){margin-left:30%!important}.col-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-24d32b46]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-24d32b46]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-24d32b46]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-24d32b46]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-24d32b46]:first-child{margin-left:52%!important}.col-offset-6[data-v-24d32b46]:not(first-child){margin-left:56%!important}.col-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-24d32b46]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-24d32b46]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-24d32b46]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-24d32b46]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-24d32b46]:first-child{margin-left:78%!important}.col-offset-9[data-v-24d32b46]:not(first-child){margin-left:82%!important}.col-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-24d32b46]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-24d32b46]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-24d32b46]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-24d32b46]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-1[data-v-24d32b46]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-2[data-v-24d32b46]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-3[data-v-24d32b46]{margin-left:26%}.col-no-margin-s-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-4[data-v-24d32b46]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-5[data-v-24d32b46]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-6[data-v-24d32b46]{margin-left:52%}.col-no-margin-s-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-7[data-v-24d32b46]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-8[data-v-24d32b46]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-9[data-v-24d32b46]{margin-left:78%}.col-no-margin-s-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-10[data-v-24d32b46]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-24d32b46]:first-child{margin-left:0}.col-offset-s-11[data-v-24d32b46]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-s-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-24d32b46]{display:none!important}.s-visible[data-v-24d32b46]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-1[data-v-24d32b46]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-2[data-v-24d32b46]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-3[data-v-24d32b46]{margin-left:26%}.col-no-margin-m-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-4[data-v-24d32b46]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-5[data-v-24d32b46]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-6[data-v-24d32b46]{margin-left:52%}.col-no-margin-m-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-7[data-v-24d32b46]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-8[data-v-24d32b46]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-9[data-v-24d32b46]{margin-left:78%}.col-no-margin-m-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-10[data-v-24d32b46]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-24d32b46]:first-child{margin-left:0}.col-offset-m-11[data-v-24d32b46]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-m-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-24d32b46]{display:none!important}.m-visible[data-v-24d32b46]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-1[data-v-24d32b46]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-2[data-v-24d32b46]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-3[data-v-24d32b46]{margin-left:26%}.col-no-margin-l-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-4[data-v-24d32b46]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-5[data-v-24d32b46]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-6[data-v-24d32b46]{margin-left:52%}.col-no-margin-l-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-7[data-v-24d32b46]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-8[data-v-24d32b46]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-9[data-v-24d32b46]{margin-left:78%}.col-no-margin-l-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-10[data-v-24d32b46]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-24d32b46]:first-child{margin-left:0}.col-offset-l-11[data-v-24d32b46]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-l-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-24d32b46]{display:none!important}.l-visible[data-v-24d32b46]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-1[data-v-24d32b46]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-2[data-v-24d32b46]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-3[data-v-24d32b46]{margin-left:26%}.col-no-margin-xl-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-4[data-v-24d32b46]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-5[data-v-24d32b46]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-6[data-v-24d32b46]{margin-left:52%}.col-no-margin-xl-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-7[data-v-24d32b46]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-8[data-v-24d32b46]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-9[data-v-24d32b46]{margin-left:78%}.col-no-margin-xl-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-10[data-v-24d32b46]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xl-11[data-v-24d32b46]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-24d32b46]{display:none!important}.xl-visible[data-v-24d32b46]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-1[data-v-24d32b46]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-24d32b46]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-2[data-v-24d32b46]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-24d32b46]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-3[data-v-24d32b46]{margin-left:26%}.col-no-margin-xxl-3[data-v-24d32b46]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-4[data-v-24d32b46]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-24d32b46]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-5[data-v-24d32b46]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-24d32b46]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-6[data-v-24d32b46]{margin-left:52%}.col-no-margin-xxl-6[data-v-24d32b46]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-7[data-v-24d32b46]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-24d32b46]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-8[data-v-24d32b46]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-24d32b46]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-9[data-v-24d32b46]{margin-left:78%}.col-no-margin-xxl-9[data-v-24d32b46]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-10[data-v-24d32b46]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-24d32b46]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-24d32b46]:first-child{margin-left:0}.col-offset-xxl-11[data-v-24d32b46]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-24d32b46]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-24d32b46]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-24d32b46]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-24d32b46]{display:none!important}.xxl-visible[data-v-24d32b46]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-24d32b46]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-24d32b46]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-24d32b46]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-24d32b46]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-24d32b46]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-24d32b46]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-24d32b46]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-24d32b46]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-24d32b46]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-24d32b46]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-24d32b46]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-24d32b46]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-24d32b46]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-24d32b46]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-24d32b46]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-24d32b46]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-24d32b46]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-24d32b46]{display:none!important}}.vertical-center[data-v-24d32b46]{display:flex;align-items:center}.horizontal-center[data-v-24d32b46]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-24d32b46]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-24d32b46]{display:none!important}.no-content[data-v-24d32b46]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-24d32b46]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-24d32b46]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-24d32b46]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-24d32b46]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-24d32b46]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-24d32b46]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-24d32b46],.btn[data-v-24d32b46],button[data-v-24d32b46]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-24d32b46],.btn-default[type=submit][data-v-24d32b46],.btn.btn-primary[data-v-24d32b46],.btn[type=submit][data-v-24d32b46],button.btn-primary[data-v-24d32b46],button[type=submit][data-v-24d32b46]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-24d32b46]:hover,.btn[data-v-24d32b46]:hover,button[data-v-24d32b46]:hover{color:#35b870}.btn .icon[data-v-24d32b46],.btn-default .icon[data-v-24d32b46],button .icon[data-v-24d32b46]{margin-right:.5em}.btn-default[data-v-24d32b46]:disabled,.btn-default[disabled][data-v-24d32b46],.btn[data-v-24d32b46]:disabled,.btn[disabled][data-v-24d32b46],button[data-v-24d32b46]:disabled,button[disabled][data-v-24d32b46]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-24d32b46]{cursor:grab!important}.dragged[data-v-24d32b46]{opacity:.5!important}input[type=password][data-v-24d32b46],input[type=text][data-v-24d32b46]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-24d32b46]:focus,input[type=text][data-v-24d32b46]:focus{border:1px solid #35b870}button[data-v-24d32b46],input[data-v-24d32b46]{outline:none}input[type=text][data-v-24d32b46]:hover,textarea[data-v-24d32b46]:hover{border:1px solid #9cdfb0}ul[data-v-24d32b46]{margin:0;padding:0;list-style:none}a[data-v-24d32b46]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-24d32b46]:hover{color:#35b870}[data-v-24d32b46]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-24d32b46]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-24d32b46]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-24d32b46]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-24d32b46]{color:#ad1717}body[data-v-24d32b46]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-24d32b46] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-24d32b46] .nav .path{cursor:pointer}.browser[data-v-24d32b46] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-24d32b46] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-24d32b46]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-24d32b46]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-24d32b46],input[type=number][data-v-24d32b46],input[type=password][data-v-24d32b46],input[type=search][data-v-24d32b46],input[type=text][data-v-24d32b46],input[type=time][data-v-24d32b46]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-24d32b46]:hover,input[type=number][data-v-24d32b46]:hover,input[type=password][data-v-24d32b46]:hover,input[type=search][data-v-24d32b46]:hover,input[type=text][data-v-24d32b46]:hover,input[type=time][data-v-24d32b46]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-24d32b46]:focus,input[type=number][data-v-24d32b46]:focus,input[type=password][data-v-24d32b46]:focus,input[type=search][data-v-24d32b46]:focus,input[type=text][data-v-24d32b46]:focus,input[type=time][data-v-24d32b46]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-24d32b46],input[type=number].with-icon[data-v-24d32b46],input[type=password].with-icon[data-v-24d32b46],input[type=search].with-icon[data-v-24d32b46],input[type=text].with-icon[data-v-24d32b46],input[type=time].with-icon[data-v-24d32b46]{padding-left:.3em}input[type=search][data-v-24d32b46],input[type=text][data-v-24d32b46]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-24d32b46]{animation-fill-mode:both;animation-name:fadeIn-24d32b46;-webkit-animation-name:fadeIn-24d32b46}.fade-in[data-v-24d32b46],.fade-out[data-v-24d32b46]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-24d32b46]{animation-fill-mode:both;animation-name:fadeOut-24d32b46;-webkit-animation-name:fadeOut-24d32b46}.expand[data-v-24d32b46]{animation-fill-mode:both;animation-name:expand-24d32b46;-webkit-animation-name:expand-24d32b46}.expand[data-v-24d32b46],.shrink[data-v-24d32b46]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-24d32b46]{animation-fill-mode:both;animation-name:shrink-24d32b46;-webkit-animation-name:shrink-24d32b46}.fold[data-v-24d32b46]{animation-fill-mode:both;animation-name:fold-24d32b46;-webkit-animation-name:fold-24d32b46}.fold[data-v-24d32b46],.unfold[data-v-24d32b46]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-24d32b46]{animation-fill-mode:both;animation-name:unfold-24d32b46;-webkit-animation-name:unfold-24d32b46}.dim[data-v-24d32b46]{animation-fill-mode:both;animation-name:dim-24d32b46;-webkit-animation-name:dim-24d32b46}.brighten[data-v-24d32b46],.dim[data-v-24d32b46]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-24d32b46]{animation-fill-mode:both;animation-name:brighten-24d32b46;-webkit-animation-name:brighten-24d32b46}@keyframes fadeIn-24d32b46{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-24d32b46{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-24d32b46{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-24d32b46{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-24d32b46{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-24d32b46{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-24d32b46{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-24d32b46{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-24d32b46]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-24d32b46;-webkit-animation-name:glow-24d32b46}.loop[data-v-24d32b46]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-24d32b46{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-24d32b46]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-24d32b46]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-24d32b46]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.otp-config-container[data-v-24d32b46]{width:100%;display:flex;flex-direction:column;position:relative}.otp-config-container .description[data-v-24d32b46]{font-size:.9em}.otp-config-container .otp-config[data-v-24d32b46]{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.otp-config-container .otp-config .title[data-v-24d32b46]{width:100%;display:flex;align-items:center}.otp-config-container .otp-config .title h3[data-v-24d32b46]{flex-grow:1}.otp-config-container .otp-config .section input[type=text][data-v-24d32b46]{width:100%;max-width:30em;padding:.5em;margin:.5em 0;border:1px solid #ccc}.otp-config-container .otp-config .qrcode-container[data-v-24d32b46]{width:100%;display:flex;justify-content:center}.otp-config-container .otp-config .qrcode[data-v-24d32b46]{width:200px}.otp-config-container .otp-config .backup-codes textarea[data-v-24d32b46]{width:100%;height:16em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}.otp-config-container .current-otp-config[data-v-24d32b46]{width:100%}.otp-config-container .current-otp-config .header[data-v-24d32b46]{width:100%;display:flex;flex-direction:row;align-items:center}.otp-config-container .current-otp-config .header h4[data-v-24d32b46]{flex-grow:1}.otp-config-container[data-v-24d32b46] .modal .confirm-modal{width:100%;max-width:40em}.otp-config-container[data-v-24d32b46] .modal .confirm-modal .dialog{width:100%}.otp-config-container[data-v-24d32b46] .modal .confirm-modal form{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.otp-config-container[data-v-24d32b46] .modal .confirm-modal form .buttons,.otp-config-container[data-v-24d32b46] .modal .confirm-modal form input[type=password],.otp-config-container[data-v-24d32b46] .modal .confirm-modal form input[type=text]{width:100%;max-width:20em}.otp-config-container[data-v-24d32b46] .modal .confirm-modal form .buttons{display:flex;justify-content:center}.otp-config-container[data-v-24d32b46] .modal .confirm-modal form .buttons button{margin:0 .5em}.otp-config-container[data-v-24d32b46] .modal .confirm-modal form .buttons button[type=submit]{position:relative}.col-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-dbc28730]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-dbc28730]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-dbc28730]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-dbc28730]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-dbc28730]:first-child{margin-left:26%!important}.col-offset-3[data-v-dbc28730]:not(first-child){margin-left:30%!important}.col-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-dbc28730]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-dbc28730]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-dbc28730]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-dbc28730]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-dbc28730]:first-child{margin-left:52%!important}.col-offset-6[data-v-dbc28730]:not(first-child){margin-left:56%!important}.col-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-dbc28730]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-dbc28730]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-dbc28730]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-dbc28730]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-dbc28730]:first-child{margin-left:78%!important}.col-offset-9[data-v-dbc28730]:not(first-child){margin-left:82%!important}.col-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-dbc28730]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-dbc28730]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-dbc28730]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-dbc28730]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-1[data-v-dbc28730]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-2[data-v-dbc28730]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-3[data-v-dbc28730]{margin-left:26%}.col-no-margin-s-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-4[data-v-dbc28730]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-5[data-v-dbc28730]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-6[data-v-dbc28730]{margin-left:52%}.col-no-margin-s-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-7[data-v-dbc28730]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-8[data-v-dbc28730]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-9[data-v-dbc28730]{margin-left:78%}.col-no-margin-s-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-10[data-v-dbc28730]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-dbc28730]:first-child{margin-left:0}.col-offset-s-11[data-v-dbc28730]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-s-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-dbc28730]{display:none!important}.s-visible[data-v-dbc28730]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-1[data-v-dbc28730]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-2[data-v-dbc28730]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-3[data-v-dbc28730]{margin-left:26%}.col-no-margin-m-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-4[data-v-dbc28730]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-5[data-v-dbc28730]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-6[data-v-dbc28730]{margin-left:52%}.col-no-margin-m-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-7[data-v-dbc28730]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-8[data-v-dbc28730]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-9[data-v-dbc28730]{margin-left:78%}.col-no-margin-m-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-10[data-v-dbc28730]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-dbc28730]:first-child{margin-left:0}.col-offset-m-11[data-v-dbc28730]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-m-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-dbc28730]{display:none!important}.m-visible[data-v-dbc28730]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-1[data-v-dbc28730]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-2[data-v-dbc28730]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-3[data-v-dbc28730]{margin-left:26%}.col-no-margin-l-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-4[data-v-dbc28730]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-5[data-v-dbc28730]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-6[data-v-dbc28730]{margin-left:52%}.col-no-margin-l-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-7[data-v-dbc28730]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-8[data-v-dbc28730]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-9[data-v-dbc28730]{margin-left:78%}.col-no-margin-l-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-10[data-v-dbc28730]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-dbc28730]:first-child{margin-left:0}.col-offset-l-11[data-v-dbc28730]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-l-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-dbc28730]{display:none!important}.l-visible[data-v-dbc28730]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-1[data-v-dbc28730]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-2[data-v-dbc28730]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-3[data-v-dbc28730]{margin-left:26%}.col-no-margin-xl-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-4[data-v-dbc28730]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-5[data-v-dbc28730]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-6[data-v-dbc28730]{margin-left:52%}.col-no-margin-xl-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-7[data-v-dbc28730]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-8[data-v-dbc28730]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-9[data-v-dbc28730]{margin-left:78%}.col-no-margin-xl-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-10[data-v-dbc28730]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xl-11[data-v-dbc28730]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-dbc28730]{display:none!important}.xl-visible[data-v-dbc28730]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-1[data-v-dbc28730]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-dbc28730]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-2[data-v-dbc28730]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-dbc28730]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-3[data-v-dbc28730]{margin-left:26%}.col-no-margin-xxl-3[data-v-dbc28730]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-4[data-v-dbc28730]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-dbc28730]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-5[data-v-dbc28730]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-dbc28730]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-6[data-v-dbc28730]{margin-left:52%}.col-no-margin-xxl-6[data-v-dbc28730]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-7[data-v-dbc28730]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-dbc28730]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-8[data-v-dbc28730]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-dbc28730]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-9[data-v-dbc28730]{margin-left:78%}.col-no-margin-xxl-9[data-v-dbc28730]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-10[data-v-dbc28730]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-dbc28730]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-dbc28730]:first-child{margin-left:0}.col-offset-xxl-11[data-v-dbc28730]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-dbc28730]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-dbc28730]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-dbc28730]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-dbc28730]{display:none!important}.xxl-visible[data-v-dbc28730]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-dbc28730]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-dbc28730]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-dbc28730]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-dbc28730]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-dbc28730]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-dbc28730]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-dbc28730]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-dbc28730]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-dbc28730]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-dbc28730]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-dbc28730]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-dbc28730]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-dbc28730]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-dbc28730]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-dbc28730]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-dbc28730]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-dbc28730]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-dbc28730]{display:none!important}}.vertical-center[data-v-dbc28730]{display:flex;align-items:center}.horizontal-center[data-v-dbc28730]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-dbc28730]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-dbc28730]{display:none!important}.no-content[data-v-dbc28730]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-dbc28730]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-dbc28730]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-dbc28730]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-dbc28730]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-dbc28730]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-dbc28730]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-dbc28730],.btn[data-v-dbc28730],button[data-v-dbc28730]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-dbc28730],.btn-default[type=submit][data-v-dbc28730],.btn.btn-primary[data-v-dbc28730],.btn[type=submit][data-v-dbc28730],button.btn-primary[data-v-dbc28730],button[type=submit][data-v-dbc28730]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-dbc28730]:hover,.btn[data-v-dbc28730]:hover,button[data-v-dbc28730]:hover{color:#35b870}.btn .icon[data-v-dbc28730],.btn-default .icon[data-v-dbc28730],button .icon[data-v-dbc28730]{margin-right:.5em}.btn-default[data-v-dbc28730]:disabled,.btn-default[disabled][data-v-dbc28730],.btn[data-v-dbc28730]:disabled,.btn[disabled][data-v-dbc28730],button[data-v-dbc28730]:disabled,button[disabled][data-v-dbc28730]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-dbc28730]{cursor:grab!important}.dragged[data-v-dbc28730]{opacity:.5!important}input[type=password][data-v-dbc28730],input[type=text][data-v-dbc28730]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-dbc28730]:focus,input[type=text][data-v-dbc28730]:focus{border:1px solid #35b870}button[data-v-dbc28730],input[data-v-dbc28730]{outline:none}input[type=text][data-v-dbc28730]:hover,textarea[data-v-dbc28730]:hover{border:1px solid #9cdfb0}ul[data-v-dbc28730]{margin:0;padding:0;list-style:none}a[data-v-dbc28730]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-dbc28730]:hover{color:#35b870}[data-v-dbc28730]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-dbc28730]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-dbc28730]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-dbc28730]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-dbc28730]{color:#ad1717}body[data-v-dbc28730]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-dbc28730] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-dbc28730] .nav .path{cursor:pointer}.browser[data-v-dbc28730] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-dbc28730] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-dbc28730]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-dbc28730]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-dbc28730],input[type=number][data-v-dbc28730],input[type=password][data-v-dbc28730],input[type=search][data-v-dbc28730],input[type=text][data-v-dbc28730],input[type=time][data-v-dbc28730]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-dbc28730]:hover,input[type=number][data-v-dbc28730]:hover,input[type=password][data-v-dbc28730]:hover,input[type=search][data-v-dbc28730]:hover,input[type=text][data-v-dbc28730]:hover,input[type=time][data-v-dbc28730]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-dbc28730]:focus,input[type=number][data-v-dbc28730]:focus,input[type=password][data-v-dbc28730]:focus,input[type=search][data-v-dbc28730]:focus,input[type=text][data-v-dbc28730]:focus,input[type=time][data-v-dbc28730]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-dbc28730],input[type=number].with-icon[data-v-dbc28730],input[type=password].with-icon[data-v-dbc28730],input[type=search].with-icon[data-v-dbc28730],input[type=text].with-icon[data-v-dbc28730],input[type=time].with-icon[data-v-dbc28730]{padding-left:.3em}input[type=search][data-v-dbc28730],input[type=text][data-v-dbc28730]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-dbc28730]{animation-fill-mode:both;animation-name:fadeIn-dbc28730;-webkit-animation-name:fadeIn-dbc28730}.fade-in[data-v-dbc28730],.fade-out[data-v-dbc28730]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-dbc28730]{animation-fill-mode:both;animation-name:fadeOut-dbc28730;-webkit-animation-name:fadeOut-dbc28730}.expand[data-v-dbc28730]{animation-fill-mode:both;animation-name:expand-dbc28730;-webkit-animation-name:expand-dbc28730}.expand[data-v-dbc28730],.shrink[data-v-dbc28730]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-dbc28730]{animation-fill-mode:both;animation-name:shrink-dbc28730;-webkit-animation-name:shrink-dbc28730}.fold[data-v-dbc28730]{animation-fill-mode:both;animation-name:fold-dbc28730;-webkit-animation-name:fold-dbc28730}.fold[data-v-dbc28730],.unfold[data-v-dbc28730]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-dbc28730]{animation-fill-mode:both;animation-name:unfold-dbc28730;-webkit-animation-name:unfold-dbc28730}.dim[data-v-dbc28730]{animation-fill-mode:both;animation-name:dim-dbc28730;-webkit-animation-name:dim-dbc28730}.brighten[data-v-dbc28730],.dim[data-v-dbc28730]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-dbc28730]{animation-fill-mode:both;animation-name:brighten-dbc28730;-webkit-animation-name:brighten-dbc28730}@keyframes fadeIn-dbc28730{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-dbc28730{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-dbc28730{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-dbc28730{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-dbc28730{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-dbc28730{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-dbc28730{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-dbc28730{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-dbc28730]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-dbc28730;-webkit-animation-name:glow-dbc28730}.loop[data-v-dbc28730]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-dbc28730{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-dbc28730]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-dbc28730]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-dbc28730]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.settings-container .body[data-v-dbc28730]{width:100%;height:100%;display:flex;justify-content:center}.settings-container .modal .body[data-v-dbc28730]{height:auto}.settings-container form label[data-v-dbc28730]{display:block;text-align:center}.settings-container .users-list[data-v-dbc28730]{background:#fff;margin-top:.15em;height:-moz-max-content;height:max-content}.settings-container .users-list .user[data-v-dbc28730]{display:flex;align-items:center;padding:.75em}.settings-container .users-list .user[data-v-dbc28730]:not(:last-child){box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user[data-v-dbc28730]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.settings-container .users-list .user .actions[data-v-dbc28730]{display:inline-flex;justify-content:right}.settings-container .users-list .user .actions button[data-v-dbc28730]{background:none!important;width:-moz-min-content;width:min-content}@media screen and (max-width:1024px){.settings-container .users-list[data-v-dbc28730]{width:100%}}@media screen and (min-width:1024px){.settings-container .users-list[data-v-dbc28730]{min-width:400pt;max-width:600pt;margin-top:1em;border-radius:1em;box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user[data-v-dbc28730]{border-radius:0}.settings-container .users-list .user[data-v-dbc28730]:first-child{border-top-left-radius:1em;border-top-right-radius:1em}.settings-container .users-list .user[data-v-dbc28730]:last-child{border-bottom-left-radius:1em;border-bottom-right-radius:1em}}[data-v-dbc28730] .dropdown-container button{background:none!important}[data-v-dbc28730] .modal .btn{border-radius:1em}@media screen and (min-width:769px){[data-v-dbc28730] .otp-config-container{max-width:50em;margin:0 auto}}.col-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7c14160a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7c14160a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7c14160a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7c14160a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7c14160a]:first-child{margin-left:26%!important}.col-offset-3[data-v-7c14160a]:not(first-child){margin-left:30%!important}.col-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7c14160a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7c14160a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7c14160a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7c14160a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7c14160a]:first-child{margin-left:52%!important}.col-offset-6[data-v-7c14160a]:not(first-child){margin-left:56%!important}.col-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7c14160a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7c14160a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7c14160a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7c14160a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7c14160a]:first-child{margin-left:78%!important}.col-offset-9[data-v-7c14160a]:not(first-child){margin-left:82%!important}.col-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7c14160a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7c14160a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7c14160a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7c14160a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-1[data-v-7c14160a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-2[data-v-7c14160a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-3[data-v-7c14160a]{margin-left:26%}.col-no-margin-s-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-4[data-v-7c14160a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-5[data-v-7c14160a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-6[data-v-7c14160a]{margin-left:52%}.col-no-margin-s-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-7[data-v-7c14160a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-8[data-v-7c14160a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-9[data-v-7c14160a]{margin-left:78%}.col-no-margin-s-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-10[data-v-7c14160a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7c14160a]:first-child{margin-left:0}.col-offset-s-11[data-v-7c14160a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7c14160a]{display:none!important}.s-visible[data-v-7c14160a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-1[data-v-7c14160a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-2[data-v-7c14160a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-3[data-v-7c14160a]{margin-left:26%}.col-no-margin-m-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-4[data-v-7c14160a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-5[data-v-7c14160a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-6[data-v-7c14160a]{margin-left:52%}.col-no-margin-m-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-7[data-v-7c14160a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-8[data-v-7c14160a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-9[data-v-7c14160a]{margin-left:78%}.col-no-margin-m-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-10[data-v-7c14160a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7c14160a]:first-child{margin-left:0}.col-offset-m-11[data-v-7c14160a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7c14160a]{display:none!important}.m-visible[data-v-7c14160a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-1[data-v-7c14160a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-2[data-v-7c14160a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-3[data-v-7c14160a]{margin-left:26%}.col-no-margin-l-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-4[data-v-7c14160a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-5[data-v-7c14160a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-6[data-v-7c14160a]{margin-left:52%}.col-no-margin-l-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-7[data-v-7c14160a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-8[data-v-7c14160a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-9[data-v-7c14160a]{margin-left:78%}.col-no-margin-l-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-10[data-v-7c14160a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7c14160a]:first-child{margin-left:0}.col-offset-l-11[data-v-7c14160a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7c14160a]{display:none!important}.l-visible[data-v-7c14160a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-1[data-v-7c14160a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-2[data-v-7c14160a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-3[data-v-7c14160a]{margin-left:26%}.col-no-margin-xl-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-4[data-v-7c14160a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-5[data-v-7c14160a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-6[data-v-7c14160a]{margin-left:52%}.col-no-margin-xl-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-7[data-v-7c14160a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-8[data-v-7c14160a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-9[data-v-7c14160a]{margin-left:78%}.col-no-margin-xl-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-10[data-v-7c14160a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xl-11[data-v-7c14160a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7c14160a]{display:none!important}.xl-visible[data-v-7c14160a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7c14160a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7c14160a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7c14160a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7c14160a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7c14160a]{margin-left:26%}.col-no-margin-xxl-3[data-v-7c14160a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7c14160a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7c14160a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7c14160a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7c14160a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7c14160a]{margin-left:52%}.col-no-margin-xxl-6[data-v-7c14160a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7c14160a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7c14160a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7c14160a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7c14160a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7c14160a]{margin-left:78%}.col-no-margin-xxl-9[data-v-7c14160a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7c14160a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7c14160a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7c14160a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7c14160a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7c14160a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7c14160a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7c14160a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7c14160a]{display:none!important}.xxl-visible[data-v-7c14160a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7c14160a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7c14160a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7c14160a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7c14160a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7c14160a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7c14160a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7c14160a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7c14160a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7c14160a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7c14160a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7c14160a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7c14160a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7c14160a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7c14160a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7c14160a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7c14160a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7c14160a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7c14160a]{display:none!important}}.vertical-center[data-v-7c14160a]{display:flex;align-items:center}.horizontal-center[data-v-7c14160a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7c14160a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7c14160a]{display:none!important}.no-content[data-v-7c14160a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7c14160a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7c14160a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7c14160a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7c14160a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7c14160a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7c14160a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7c14160a],.btn[data-v-7c14160a],button[data-v-7c14160a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7c14160a],.btn-default[type=submit][data-v-7c14160a],.btn.btn-primary[data-v-7c14160a],.btn[type=submit][data-v-7c14160a],button.btn-primary[data-v-7c14160a],button[type=submit][data-v-7c14160a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7c14160a]:hover,.btn[data-v-7c14160a]:hover,button[data-v-7c14160a]:hover{color:#35b870}.btn .icon[data-v-7c14160a],.btn-default .icon[data-v-7c14160a],button .icon[data-v-7c14160a]{margin-right:.5em}.btn-default[data-v-7c14160a]:disabled,.btn-default[disabled][data-v-7c14160a],.btn[data-v-7c14160a]:disabled,.btn[disabled][data-v-7c14160a],button[data-v-7c14160a]:disabled,button[disabled][data-v-7c14160a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7c14160a]{cursor:grab!important}.dragged[data-v-7c14160a]{opacity:.5!important}input[type=password][data-v-7c14160a],input[type=text][data-v-7c14160a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7c14160a]:focus,input[type=text][data-v-7c14160a]:focus{border:1px solid #35b870}button[data-v-7c14160a],input[data-v-7c14160a]{outline:none}input[type=text][data-v-7c14160a]:hover,textarea[data-v-7c14160a]:hover{border:1px solid #9cdfb0}ul[data-v-7c14160a]{margin:0;padding:0;list-style:none}a[data-v-7c14160a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7c14160a]:hover{color:#35b870}[data-v-7c14160a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7c14160a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7c14160a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7c14160a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7c14160a]{color:#ad1717}body[data-v-7c14160a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7c14160a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7c14160a] .nav .path{cursor:pointer}.browser[data-v-7c14160a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7c14160a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7c14160a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7c14160a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7c14160a],input[type=number][data-v-7c14160a],input[type=password][data-v-7c14160a],input[type=search][data-v-7c14160a],input[type=text][data-v-7c14160a],input[type=time][data-v-7c14160a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7c14160a]:hover,input[type=number][data-v-7c14160a]:hover,input[type=password][data-v-7c14160a]:hover,input[type=search][data-v-7c14160a]:hover,input[type=text][data-v-7c14160a]:hover,input[type=time][data-v-7c14160a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7c14160a]:focus,input[type=number][data-v-7c14160a]:focus,input[type=password][data-v-7c14160a]:focus,input[type=search][data-v-7c14160a]:focus,input[type=text][data-v-7c14160a]:focus,input[type=time][data-v-7c14160a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7c14160a],input[type=number].with-icon[data-v-7c14160a],input[type=password].with-icon[data-v-7c14160a],input[type=search].with-icon[data-v-7c14160a],input[type=text].with-icon[data-v-7c14160a],input[type=time].with-icon[data-v-7c14160a]{padding-left:.3em}input[type=search][data-v-7c14160a],input[type=text][data-v-7c14160a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7c14160a]{animation-fill-mode:both;animation-name:fadeIn-7c14160a;-webkit-animation-name:fadeIn-7c14160a}.fade-in[data-v-7c14160a],.fade-out[data-v-7c14160a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7c14160a]{animation-fill-mode:both;animation-name:fadeOut-7c14160a;-webkit-animation-name:fadeOut-7c14160a}.expand[data-v-7c14160a]{animation-fill-mode:both;animation-name:expand-7c14160a;-webkit-animation-name:expand-7c14160a}.expand[data-v-7c14160a],.shrink[data-v-7c14160a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7c14160a]{animation-fill-mode:both;animation-name:shrink-7c14160a;-webkit-animation-name:shrink-7c14160a}.fold[data-v-7c14160a]{animation-fill-mode:both;animation-name:fold-7c14160a;-webkit-animation-name:fold-7c14160a}.fold[data-v-7c14160a],.unfold[data-v-7c14160a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7c14160a]{animation-fill-mode:both;animation-name:unfold-7c14160a;-webkit-animation-name:unfold-7c14160a}.dim[data-v-7c14160a]{animation-fill-mode:both;animation-name:dim-7c14160a;-webkit-animation-name:dim-7c14160a}.brighten[data-v-7c14160a],.dim[data-v-7c14160a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7c14160a]{animation-fill-mode:both;animation-name:brighten-7c14160a;-webkit-animation-name:brighten-7c14160a}@keyframes fadeIn-7c14160a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7c14160a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7c14160a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7c14160a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7c14160a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7c14160a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7c14160a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7c14160a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7c14160a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7c14160a;-webkit-animation-name:glow-7c14160a}.loop[data-v-7c14160a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7c14160a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7c14160a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7c14160a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7c14160a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.settings-container[data-v-7c14160a]{width:100%;height:100%;display:flex;flex-direction:column}.settings-container header[data-v-7c14160a]{width:100%;height:3em;display:flex;background:#fff;box-shadow:0 3px 2px -1px silver;padding:.5em}.settings-container header select[data-v-7c14160a]{width:100%}.settings-container header button[data-v-7c14160a]{padding-top:.25em}@media screen and (max-width:calc(769px - 1px)){.settings-container main[data-v-7c14160a]{height:calc(100% - 3em);overflow:auto}}@media screen and (min-width:769px){.settings-container main[data-v-7c14160a]{height:100%}}.settings-container button[data-v-7c14160a]{background:none}.settings-container form[data-v-7c14160a]{padding:0;border:none;border-radius:0;box-shadow:none}.settings-container form input[data-v-7c14160a]{margin-bottom:1em}.settings-container input[type=password][data-v-7c14160a]{border-radius:1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2976.0e5bc2d3.css b/platypush/backend/http/webapp/dist/static/css/2976.59466ee8.css similarity index 79% rename from platypush/backend/http/webapp/dist/static/css/2976.0e5bc2d3.css rename to platypush/backend/http/webapp/dist/static/css/2976.59466ee8.css index 53f4ca62ed..2049f2de60 100644 --- a/platypush/backend/http/webapp/dist/static/css/2976.0e5bc2d3.css +++ b/platypush/backend/http/webapp/dist/static/css/2976.59466ee8.css @@ -1 +1 @@ -.col-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1b32374c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1b32374c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1b32374c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1b32374c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1b32374c]:first-child{margin-left:26%!important}.col-offset-3[data-v-1b32374c]:not(first-child){margin-left:30%!important}.col-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1b32374c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1b32374c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1b32374c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1b32374c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1b32374c]:first-child{margin-left:52%!important}.col-offset-6[data-v-1b32374c]:not(first-child){margin-left:56%!important}.col-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1b32374c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1b32374c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1b32374c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1b32374c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1b32374c]:first-child{margin-left:78%!important}.col-offset-9[data-v-1b32374c]:not(first-child){margin-left:82%!important}.col-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1b32374c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1b32374c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1b32374c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1b32374c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-s-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-s-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-s-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1b32374c]{display:none!important}.s-visible[data-v-1b32374c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-m-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-m-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-m-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1b32374c]{display:none!important}.m-visible[data-v-1b32374c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-l-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-l-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-l-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1b32374c]{display:none!important}.l-visible[data-v-1b32374c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-xl-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-xl-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-xl-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1b32374c]{display:none!important}.xl-visible[data-v-1b32374c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-xxl-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-xxl-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-xxl-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1b32374c]{display:none!important}.xxl-visible[data-v-1b32374c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1b32374c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b32374c]{display:none!important}}.vertical-center[data-v-1b32374c]{display:flex;align-items:center}.horizontal-center[data-v-1b32374c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1b32374c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1b32374c]{display:none!important}.no-content[data-v-1b32374c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1b32374c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1b32374c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1b32374c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1b32374c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1b32374c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1b32374c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1b32374c],.btn[data-v-1b32374c],button[data-v-1b32374c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1b32374c],.btn-default[type=submit][data-v-1b32374c],.btn.btn-primary[data-v-1b32374c],.btn[type=submit][data-v-1b32374c],button.btn-primary[data-v-1b32374c],button[type=submit][data-v-1b32374c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1b32374c],.btn-default .icon[data-v-1b32374c],button .icon[data-v-1b32374c]{margin-right:.5em}input[type=password][data-v-1b32374c],input[type=text][data-v-1b32374c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1b32374c]:focus,input[type=text][data-v-1b32374c]:focus{border:1px solid #35b870}button[data-v-1b32374c],input[data-v-1b32374c]{outline:none}input[type=text][data-v-1b32374c]:hover,textarea[data-v-1b32374c]:hover{border:1px solid #9cdfb0}ul[data-v-1b32374c]{margin:0;padding:0;list-style:none}a[data-v-1b32374c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1b32374c]:hover{color:#35b870}[data-v-1b32374c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1b32374c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1b32374c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1b32374c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1b32374c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1b32374c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1b32374c] .nav .path{cursor:pointer}.browser[data-v-1b32374c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1b32374c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1b32374c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1b32374c],input[type=number][data-v-1b32374c],input[type=password][data-v-1b32374c],input[type=search][data-v-1b32374c],input[type=text][data-v-1b32374c],input[type=time][data-v-1b32374c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1b32374c]:hover,input[type=number][data-v-1b32374c]:hover,input[type=password][data-v-1b32374c]:hover,input[type=search][data-v-1b32374c]:hover,input[type=text][data-v-1b32374c]:hover,input[type=time][data-v-1b32374c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1b32374c]:focus,input[type=number][data-v-1b32374c]:focus,input[type=password][data-v-1b32374c]:focus,input[type=search][data-v-1b32374c]:focus,input[type=text][data-v-1b32374c]:focus,input[type=time][data-v-1b32374c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1b32374c],input[type=number].with-icon[data-v-1b32374c],input[type=password].with-icon[data-v-1b32374c],input[type=search].with-icon[data-v-1b32374c],input[type=text].with-icon[data-v-1b32374c],input[type=time].with-icon[data-v-1b32374c]{padding-left:.3em}input[type=search][data-v-1b32374c],input[type=text][data-v-1b32374c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1b32374c]{animation-fill-mode:both;animation-name:fadeIn-1b32374c;-webkit-animation-name:fadeIn-1b32374c}.fade-in[data-v-1b32374c],.fade-out[data-v-1b32374c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1b32374c]{animation-fill-mode:both;animation-name:fadeOut-1b32374c;-webkit-animation-name:fadeOut-1b32374c}@keyframes fadeIn-1b32374c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1b32374c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1b32374c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1b32374c;-webkit-animation-name:glow-1b32374c}.loop[data-v-1b32374c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1b32374c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1b32374c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1b32374c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1b32374c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.lights-plugin[data-v-1b32374c]{padding:.5em}} \ No newline at end of file +.col-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1b32374c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1b32374c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1b32374c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1b32374c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1b32374c]:first-child{margin-left:26%!important}.col-offset-3[data-v-1b32374c]:not(first-child){margin-left:30%!important}.col-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1b32374c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1b32374c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1b32374c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1b32374c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1b32374c]:first-child{margin-left:52%!important}.col-offset-6[data-v-1b32374c]:not(first-child){margin-left:56%!important}.col-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1b32374c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1b32374c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1b32374c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1b32374c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1b32374c]:first-child{margin-left:78%!important}.col-offset-9[data-v-1b32374c]:not(first-child){margin-left:82%!important}.col-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1b32374c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1b32374c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1b32374c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1b32374c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-s-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-s-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-s-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-s-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1b32374c]{display:none!important}.s-visible[data-v-1b32374c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-m-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-m-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-m-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-m-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1b32374c]{display:none!important}.m-visible[data-v-1b32374c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-l-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-l-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-l-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-l-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1b32374c]{display:none!important}.l-visible[data-v-1b32374c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-xl-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-xl-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-xl-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xl-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1b32374c]{display:none!important}.xl-visible[data-v-1b32374c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1b32374c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1b32374c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1b32374c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1b32374c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1b32374c]{margin-left:26%}.col-no-margin-xxl-3[data-v-1b32374c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1b32374c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1b32374c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1b32374c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1b32374c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1b32374c]{margin-left:52%}.col-no-margin-xxl-6[data-v-1b32374c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1b32374c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1b32374c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1b32374c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1b32374c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1b32374c]{margin-left:78%}.col-no-margin-xxl-9[data-v-1b32374c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1b32374c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1b32374c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1b32374c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1b32374c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1b32374c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1b32374c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1b32374c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1b32374c]{display:none!important}.xxl-visible[data-v-1b32374c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1b32374c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b32374c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1b32374c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b32374c]{display:none!important}}.vertical-center[data-v-1b32374c]{display:flex;align-items:center}.horizontal-center[data-v-1b32374c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1b32374c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1b32374c]{display:none!important}.no-content[data-v-1b32374c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1b32374c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1b32374c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1b32374c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1b32374c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1b32374c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1b32374c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1b32374c],.btn[data-v-1b32374c],button[data-v-1b32374c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1b32374c],.btn-default[type=submit][data-v-1b32374c],.btn.btn-primary[data-v-1b32374c],.btn[type=submit][data-v-1b32374c],button.btn-primary[data-v-1b32374c],button[type=submit][data-v-1b32374c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1b32374c]:hover,.btn[data-v-1b32374c]:hover,button[data-v-1b32374c]:hover{color:#35b870}.btn .icon[data-v-1b32374c],.btn-default .icon[data-v-1b32374c],button .icon[data-v-1b32374c]{margin-right:.5em}.btn-default[data-v-1b32374c]:disabled,.btn-default[disabled][data-v-1b32374c],.btn[data-v-1b32374c]:disabled,.btn[disabled][data-v-1b32374c],button[data-v-1b32374c]:disabled,button[disabled][data-v-1b32374c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1b32374c]{cursor:grab!important}.dragged[data-v-1b32374c]{opacity:.5!important}input[type=password][data-v-1b32374c],input[type=text][data-v-1b32374c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1b32374c]:focus,input[type=text][data-v-1b32374c]:focus{border:1px solid #35b870}button[data-v-1b32374c],input[data-v-1b32374c]{outline:none}input[type=text][data-v-1b32374c]:hover,textarea[data-v-1b32374c]:hover{border:1px solid #9cdfb0}ul[data-v-1b32374c]{margin:0;padding:0;list-style:none}a[data-v-1b32374c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1b32374c]:hover{color:#35b870}[data-v-1b32374c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1b32374c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1b32374c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1b32374c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1b32374c]{color:#ad1717}body[data-v-1b32374c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1b32374c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1b32374c] .nav .path{cursor:pointer}.browser[data-v-1b32374c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1b32374c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1b32374c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1b32374c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1b32374c],input[type=number][data-v-1b32374c],input[type=password][data-v-1b32374c],input[type=search][data-v-1b32374c],input[type=text][data-v-1b32374c],input[type=time][data-v-1b32374c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1b32374c]:hover,input[type=number][data-v-1b32374c]:hover,input[type=password][data-v-1b32374c]:hover,input[type=search][data-v-1b32374c]:hover,input[type=text][data-v-1b32374c]:hover,input[type=time][data-v-1b32374c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1b32374c]:focus,input[type=number][data-v-1b32374c]:focus,input[type=password][data-v-1b32374c]:focus,input[type=search][data-v-1b32374c]:focus,input[type=text][data-v-1b32374c]:focus,input[type=time][data-v-1b32374c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1b32374c],input[type=number].with-icon[data-v-1b32374c],input[type=password].with-icon[data-v-1b32374c],input[type=search].with-icon[data-v-1b32374c],input[type=text].with-icon[data-v-1b32374c],input[type=time].with-icon[data-v-1b32374c]{padding-left:.3em}input[type=search][data-v-1b32374c],input[type=text][data-v-1b32374c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1b32374c]{animation-fill-mode:both;animation-name:fadeIn-1b32374c;-webkit-animation-name:fadeIn-1b32374c}.fade-in[data-v-1b32374c],.fade-out[data-v-1b32374c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1b32374c]{animation-fill-mode:both;animation-name:fadeOut-1b32374c;-webkit-animation-name:fadeOut-1b32374c}.expand[data-v-1b32374c]{animation-fill-mode:both;animation-name:expand-1b32374c;-webkit-animation-name:expand-1b32374c}.expand[data-v-1b32374c],.shrink[data-v-1b32374c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1b32374c]{animation-fill-mode:both;animation-name:shrink-1b32374c;-webkit-animation-name:shrink-1b32374c}.fold[data-v-1b32374c]{animation-fill-mode:both;animation-name:fold-1b32374c;-webkit-animation-name:fold-1b32374c}.fold[data-v-1b32374c],.unfold[data-v-1b32374c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1b32374c]{animation-fill-mode:both;animation-name:unfold-1b32374c;-webkit-animation-name:unfold-1b32374c}.dim[data-v-1b32374c]{animation-fill-mode:both;animation-name:dim-1b32374c;-webkit-animation-name:dim-1b32374c}.brighten[data-v-1b32374c],.dim[data-v-1b32374c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1b32374c]{animation-fill-mode:both;animation-name:brighten-1b32374c;-webkit-animation-name:brighten-1b32374c}@keyframes fadeIn-1b32374c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1b32374c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1b32374c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1b32374c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1b32374c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1b32374c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1b32374c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1b32374c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1b32374c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1b32374c;-webkit-animation-name:glow-1b32374c}.loop[data-v-1b32374c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1b32374c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1b32374c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1b32374c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1b32374c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.lights-plugin[data-v-1b32374c]{padding:.5em}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2992.07a12488.css b/platypush/backend/http/webapp/dist/static/css/2992.ffd96967.css similarity index 77% rename from platypush/backend/http/webapp/dist/static/css/2992.07a12488.css rename to platypush/backend/http/webapp/dist/static/css/2992.ffd96967.css index 77fa788318..e9c2decc6a 100644 --- a/platypush/backend/http/webapp/dist/static/css/2992.07a12488.css +++ b/platypush/backend/http/webapp/dist/static/css/2992.ffd96967.css @@ -1 +1 @@ -.col-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4856c4d7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4856c4d7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4856c4d7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4856c4d7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4856c4d7]:first-child{margin-left:26%!important}.col-offset-3[data-v-4856c4d7]:not(first-child){margin-left:30%!important}.col-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4856c4d7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4856c4d7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4856c4d7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4856c4d7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4856c4d7]:first-child{margin-left:52%!important}.col-offset-6[data-v-4856c4d7]:not(first-child){margin-left:56%!important}.col-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4856c4d7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4856c4d7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4856c4d7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4856c4d7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4856c4d7]:first-child{margin-left:78%!important}.col-offset-9[data-v-4856c4d7]:not(first-child){margin-left:82%!important}.col-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4856c4d7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4856c4d7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4856c4d7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4856c4d7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-s-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-s-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-s-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4856c4d7]{display:none!important}.s-visible[data-v-4856c4d7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-m-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-m-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-m-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4856c4d7]{display:none!important}.m-visible[data-v-4856c4d7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-l-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-l-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-l-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4856c4d7]{display:none!important}.l-visible[data-v-4856c4d7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-xl-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-xl-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-xl-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4856c4d7]{display:none!important}.xl-visible[data-v-4856c4d7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-xxl-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-xxl-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-xxl-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4856c4d7]{display:none!important}.xxl-visible[data-v-4856c4d7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4856c4d7]{display:none!important}}.vertical-center[data-v-4856c4d7]{display:flex;align-items:center}.horizontal-center[data-v-4856c4d7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4856c4d7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4856c4d7]{display:none!important}.no-content[data-v-4856c4d7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4856c4d7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4856c4d7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4856c4d7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4856c4d7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4856c4d7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4856c4d7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4856c4d7],.btn[data-v-4856c4d7],button[data-v-4856c4d7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4856c4d7],.btn-default[type=submit][data-v-4856c4d7],.btn.btn-primary[data-v-4856c4d7],.btn[type=submit][data-v-4856c4d7],button.btn-primary[data-v-4856c4d7],button[type=submit][data-v-4856c4d7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4856c4d7],.btn-default .icon[data-v-4856c4d7],button .icon[data-v-4856c4d7]{margin-right:.5em}input[type=password][data-v-4856c4d7],input[type=text][data-v-4856c4d7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4856c4d7]:focus,input[type=text][data-v-4856c4d7]:focus{border:1px solid #35b870}button[data-v-4856c4d7],input[data-v-4856c4d7]{outline:none}input[type=text][data-v-4856c4d7]:hover,textarea[data-v-4856c4d7]:hover{border:1px solid #9cdfb0}ul[data-v-4856c4d7]{margin:0;padding:0;list-style:none}a[data-v-4856c4d7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4856c4d7]:hover{color:#35b870}[data-v-4856c4d7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4856c4d7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4856c4d7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4856c4d7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4856c4d7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4856c4d7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4856c4d7] .nav .path{cursor:pointer}.browser[data-v-4856c4d7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4856c4d7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4856c4d7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4856c4d7],input[type=number][data-v-4856c4d7],input[type=password][data-v-4856c4d7],input[type=search][data-v-4856c4d7],input[type=text][data-v-4856c4d7],input[type=time][data-v-4856c4d7]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4856c4d7]:hover,input[type=number][data-v-4856c4d7]:hover,input[type=password][data-v-4856c4d7]:hover,input[type=search][data-v-4856c4d7]:hover,input[type=text][data-v-4856c4d7]:hover,input[type=time][data-v-4856c4d7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4856c4d7]:focus,input[type=number][data-v-4856c4d7]:focus,input[type=password][data-v-4856c4d7]:focus,input[type=search][data-v-4856c4d7]:focus,input[type=text][data-v-4856c4d7]:focus,input[type=time][data-v-4856c4d7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4856c4d7],input[type=number].with-icon[data-v-4856c4d7],input[type=password].with-icon[data-v-4856c4d7],input[type=search].with-icon[data-v-4856c4d7],input[type=text].with-icon[data-v-4856c4d7],input[type=time].with-icon[data-v-4856c4d7]{padding-left:.3em}input[type=search][data-v-4856c4d7],input[type=text][data-v-4856c4d7]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4856c4d7]{animation-fill-mode:both;animation-name:fadeIn-4856c4d7;-webkit-animation-name:fadeIn-4856c4d7}.fade-in[data-v-4856c4d7],.fade-out[data-v-4856c4d7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4856c4d7]{animation-fill-mode:both;animation-name:fadeOut-4856c4d7;-webkit-animation-name:fadeOut-4856c4d7}@keyframes fadeIn-4856c4d7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4856c4d7{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-4856c4d7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4856c4d7;-webkit-animation-name:glow-4856c4d7}.loop[data-v-4856c4d7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4856c4d7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4856c4d7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4856c4d7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4856c4d7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.no-items-container[data-v-4856c4d7]{width:100%;display:flex;flex-direction:column;align-items:center}.no-items-container .no-items[data-v-4856c4d7]{min-width:100%;max-width:100%;background:#fff;margin:1em;padding:1em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center;border-radius:1em}@media screen and (min-width:769px){.no-items-container .no-items[data-v-4856c4d7]{min-width:80%}}@media screen and (min-width:1024px){.no-items-container .no-items[data-v-4856c4d7]{min-width:50%;max-width:35em}}@media screen and (min-width:1408px){.no-items-container .no-items[data-v-4856c4d7]{min-width:33%}}.no-items-container .no-items.shadow[data-v-4856c4d7]{box-shadow:0 3px 2px -1px silver} \ No newline at end of file +.col-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4856c4d7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4856c4d7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4856c4d7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4856c4d7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4856c4d7]:first-child{margin-left:26%!important}.col-offset-3[data-v-4856c4d7]:not(first-child){margin-left:30%!important}.col-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4856c4d7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4856c4d7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4856c4d7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4856c4d7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4856c4d7]:first-child{margin-left:52%!important}.col-offset-6[data-v-4856c4d7]:not(first-child){margin-left:56%!important}.col-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4856c4d7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4856c4d7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4856c4d7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4856c4d7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4856c4d7]:first-child{margin-left:78%!important}.col-offset-9[data-v-4856c4d7]:not(first-child){margin-left:82%!important}.col-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4856c4d7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4856c4d7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4856c4d7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4856c4d7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-s-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-s-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-s-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-s-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4856c4d7]{display:none!important}.s-visible[data-v-4856c4d7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-m-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-m-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-m-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-m-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4856c4d7]{display:none!important}.m-visible[data-v-4856c4d7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-l-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-l-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-l-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-l-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4856c4d7]{display:none!important}.l-visible[data-v-4856c4d7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-xl-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-xl-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-xl-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xl-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4856c4d7]{display:none!important}.xl-visible[data-v-4856c4d7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4856c4d7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4856c4d7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4856c4d7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4856c4d7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4856c4d7]{margin-left:26%}.col-no-margin-xxl-3[data-v-4856c4d7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4856c4d7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4856c4d7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4856c4d7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4856c4d7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4856c4d7]{margin-left:52%}.col-no-margin-xxl-6[data-v-4856c4d7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4856c4d7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4856c4d7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4856c4d7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4856c4d7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4856c4d7]{margin-left:78%}.col-no-margin-xxl-9[data-v-4856c4d7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4856c4d7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4856c4d7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4856c4d7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4856c4d7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4856c4d7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4856c4d7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4856c4d7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4856c4d7]{display:none!important}.xxl-visible[data-v-4856c4d7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4856c4d7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4856c4d7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4856c4d7]{display:none!important}}.vertical-center[data-v-4856c4d7]{display:flex;align-items:center}.horizontal-center[data-v-4856c4d7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4856c4d7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4856c4d7]{display:none!important}.no-content[data-v-4856c4d7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4856c4d7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4856c4d7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4856c4d7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4856c4d7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4856c4d7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4856c4d7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4856c4d7],.btn[data-v-4856c4d7],button[data-v-4856c4d7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4856c4d7],.btn-default[type=submit][data-v-4856c4d7],.btn.btn-primary[data-v-4856c4d7],.btn[type=submit][data-v-4856c4d7],button.btn-primary[data-v-4856c4d7],button[type=submit][data-v-4856c4d7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-4856c4d7]:hover,.btn[data-v-4856c4d7]:hover,button[data-v-4856c4d7]:hover{color:#35b870}.btn .icon[data-v-4856c4d7],.btn-default .icon[data-v-4856c4d7],button .icon[data-v-4856c4d7]{margin-right:.5em}.btn-default[data-v-4856c4d7]:disabled,.btn-default[disabled][data-v-4856c4d7],.btn[data-v-4856c4d7]:disabled,.btn[disabled][data-v-4856c4d7],button[data-v-4856c4d7]:disabled,button[disabled][data-v-4856c4d7]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-4856c4d7]{cursor:grab!important}.dragged[data-v-4856c4d7]{opacity:.5!important}input[type=password][data-v-4856c4d7],input[type=text][data-v-4856c4d7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4856c4d7]:focus,input[type=text][data-v-4856c4d7]:focus{border:1px solid #35b870}button[data-v-4856c4d7],input[data-v-4856c4d7]{outline:none}input[type=text][data-v-4856c4d7]:hover,textarea[data-v-4856c4d7]:hover{border:1px solid #9cdfb0}ul[data-v-4856c4d7]{margin:0;padding:0;list-style:none}a[data-v-4856c4d7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4856c4d7]:hover{color:#35b870}[data-v-4856c4d7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4856c4d7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4856c4d7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4856c4d7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-4856c4d7]{color:#ad1717}body[data-v-4856c4d7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4856c4d7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4856c4d7] .nav .path{cursor:pointer}.browser[data-v-4856c4d7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4856c4d7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-4856c4d7]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-4856c4d7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4856c4d7],input[type=number][data-v-4856c4d7],input[type=password][data-v-4856c4d7],input[type=search][data-v-4856c4d7],input[type=text][data-v-4856c4d7],input[type=time][data-v-4856c4d7]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-4856c4d7]:hover,input[type=number][data-v-4856c4d7]:hover,input[type=password][data-v-4856c4d7]:hover,input[type=search][data-v-4856c4d7]:hover,input[type=text][data-v-4856c4d7]:hover,input[type=time][data-v-4856c4d7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4856c4d7]:focus,input[type=number][data-v-4856c4d7]:focus,input[type=password][data-v-4856c4d7]:focus,input[type=search][data-v-4856c4d7]:focus,input[type=text][data-v-4856c4d7]:focus,input[type=time][data-v-4856c4d7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4856c4d7],input[type=number].with-icon[data-v-4856c4d7],input[type=password].with-icon[data-v-4856c4d7],input[type=search].with-icon[data-v-4856c4d7],input[type=text].with-icon[data-v-4856c4d7],input[type=time].with-icon[data-v-4856c4d7]{padding-left:.3em}input[type=search][data-v-4856c4d7],input[type=text][data-v-4856c4d7]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4856c4d7]{animation-fill-mode:both;animation-name:fadeIn-4856c4d7;-webkit-animation-name:fadeIn-4856c4d7}.fade-in[data-v-4856c4d7],.fade-out[data-v-4856c4d7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4856c4d7]{animation-fill-mode:both;animation-name:fadeOut-4856c4d7;-webkit-animation-name:fadeOut-4856c4d7}.expand[data-v-4856c4d7]{animation-fill-mode:both;animation-name:expand-4856c4d7;-webkit-animation-name:expand-4856c4d7}.expand[data-v-4856c4d7],.shrink[data-v-4856c4d7]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-4856c4d7]{animation-fill-mode:both;animation-name:shrink-4856c4d7;-webkit-animation-name:shrink-4856c4d7}.fold[data-v-4856c4d7]{animation-fill-mode:both;animation-name:fold-4856c4d7;-webkit-animation-name:fold-4856c4d7}.fold[data-v-4856c4d7],.unfold[data-v-4856c4d7]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-4856c4d7]{animation-fill-mode:both;animation-name:unfold-4856c4d7;-webkit-animation-name:unfold-4856c4d7}.dim[data-v-4856c4d7]{animation-fill-mode:both;animation-name:dim-4856c4d7;-webkit-animation-name:dim-4856c4d7}.brighten[data-v-4856c4d7],.dim[data-v-4856c4d7]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-4856c4d7]{animation-fill-mode:both;animation-name:brighten-4856c4d7;-webkit-animation-name:brighten-4856c4d7}@keyframes fadeIn-4856c4d7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4856c4d7{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-4856c4d7{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-4856c4d7{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-4856c4d7{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-4856c4d7{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-4856c4d7{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-4856c4d7{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-4856c4d7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4856c4d7;-webkit-animation-name:glow-4856c4d7}.loop[data-v-4856c4d7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4856c4d7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4856c4d7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4856c4d7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4856c4d7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.no-items-container[data-v-4856c4d7]{width:100%;display:flex;flex-direction:column;align-items:center}.no-items-container .no-items[data-v-4856c4d7]{min-width:100%;max-width:100%;background:#fff;margin:1em;padding:1em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center;border-radius:1em}@media screen and (min-width:769px){.no-items-container .no-items[data-v-4856c4d7]{min-width:80%}}@media screen and (min-width:1024px){.no-items-container .no-items[data-v-4856c4d7]{min-width:50%;max-width:35em}}@media screen and (min-width:1408px){.no-items-container .no-items[data-v-4856c4d7]{min-width:33%}}.no-items-container .no-items.shadow[data-v-4856c4d7]{box-shadow:0 3px 2px -1px silver} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3033.1471fa39.css b/platypush/backend/http/webapp/dist/static/css/3033.1471fa39.css deleted file mode 100644 index 51cd6fd1a8..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/3033.1471fa39.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-00d6fc76]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-00d6fc76]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-00d6fc76]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-00d6fc76]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-00d6fc76]:first-child{margin-left:26%!important}.col-offset-3[data-v-00d6fc76]:not(first-child){margin-left:30%!important}.col-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-00d6fc76]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-00d6fc76]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-00d6fc76]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-00d6fc76]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-00d6fc76]:first-child{margin-left:52%!important}.col-offset-6[data-v-00d6fc76]:not(first-child){margin-left:56%!important}.col-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-00d6fc76]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-00d6fc76]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-00d6fc76]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-00d6fc76]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-00d6fc76]:first-child{margin-left:78%!important}.col-offset-9[data-v-00d6fc76]:not(first-child){margin-left:82%!important}.col-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-00d6fc76]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-00d6fc76]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-00d6fc76]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-00d6fc76]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-1[data-v-00d6fc76]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-2[data-v-00d6fc76]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-3[data-v-00d6fc76]{margin-left:26%}.col-no-margin-s-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-4[data-v-00d6fc76]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-5[data-v-00d6fc76]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-6[data-v-00d6fc76]{margin-left:52%}.col-no-margin-s-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-7[data-v-00d6fc76]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-8[data-v-00d6fc76]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-9[data-v-00d6fc76]{margin-left:78%}.col-no-margin-s-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-10[data-v-00d6fc76]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-s-11[data-v-00d6fc76]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-s-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-00d6fc76]{display:none!important}.s-visible[data-v-00d6fc76]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-1[data-v-00d6fc76]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-2[data-v-00d6fc76]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-3[data-v-00d6fc76]{margin-left:26%}.col-no-margin-m-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-4[data-v-00d6fc76]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-5[data-v-00d6fc76]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-6[data-v-00d6fc76]{margin-left:52%}.col-no-margin-m-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-7[data-v-00d6fc76]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-8[data-v-00d6fc76]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-9[data-v-00d6fc76]{margin-left:78%}.col-no-margin-m-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-10[data-v-00d6fc76]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-m-11[data-v-00d6fc76]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-m-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-00d6fc76]{display:none!important}.m-visible[data-v-00d6fc76]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-1[data-v-00d6fc76]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-2[data-v-00d6fc76]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-3[data-v-00d6fc76]{margin-left:26%}.col-no-margin-l-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-4[data-v-00d6fc76]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-5[data-v-00d6fc76]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-6[data-v-00d6fc76]{margin-left:52%}.col-no-margin-l-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-7[data-v-00d6fc76]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-8[data-v-00d6fc76]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-9[data-v-00d6fc76]{margin-left:78%}.col-no-margin-l-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-10[data-v-00d6fc76]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-l-11[data-v-00d6fc76]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-l-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-00d6fc76]{display:none!important}.l-visible[data-v-00d6fc76]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-1[data-v-00d6fc76]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-2[data-v-00d6fc76]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-3[data-v-00d6fc76]{margin-left:26%}.col-no-margin-xl-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-4[data-v-00d6fc76]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-5[data-v-00d6fc76]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-6[data-v-00d6fc76]{margin-left:52%}.col-no-margin-xl-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-7[data-v-00d6fc76]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-8[data-v-00d6fc76]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-9[data-v-00d6fc76]{margin-left:78%}.col-no-margin-xl-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-10[data-v-00d6fc76]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xl-11[data-v-00d6fc76]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-00d6fc76]{display:none!important}.xl-visible[data-v-00d6fc76]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-1[data-v-00d6fc76]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-00d6fc76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-2[data-v-00d6fc76]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-00d6fc76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-3[data-v-00d6fc76]{margin-left:26%}.col-no-margin-xxl-3[data-v-00d6fc76]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-4[data-v-00d6fc76]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-00d6fc76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-5[data-v-00d6fc76]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-00d6fc76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-6[data-v-00d6fc76]{margin-left:52%}.col-no-margin-xxl-6[data-v-00d6fc76]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-7[data-v-00d6fc76]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-00d6fc76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-8[data-v-00d6fc76]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-00d6fc76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-9[data-v-00d6fc76]{margin-left:78%}.col-no-margin-xxl-9[data-v-00d6fc76]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-10[data-v-00d6fc76]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-00d6fc76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-00d6fc76]:first-child{margin-left:0}.col-offset-xxl-11[data-v-00d6fc76]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-00d6fc76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-00d6fc76]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-00d6fc76]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-00d6fc76]{display:none!important}.xxl-visible[data-v-00d6fc76]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-00d6fc76]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-00d6fc76]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-00d6fc76]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-00d6fc76]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-00d6fc76]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-00d6fc76]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-00d6fc76]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-00d6fc76]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-00d6fc76]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-00d6fc76]{display:none!important}}.vertical-center[data-v-00d6fc76]{display:flex;align-items:center}.horizontal-center[data-v-00d6fc76]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-00d6fc76]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-00d6fc76]{display:none!important}.no-content[data-v-00d6fc76]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-00d6fc76]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-00d6fc76]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-00d6fc76]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-00d6fc76]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-00d6fc76]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-00d6fc76]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-00d6fc76],.btn[data-v-00d6fc76],button[data-v-00d6fc76]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-00d6fc76],.btn-default[type=submit][data-v-00d6fc76],.btn.btn-primary[data-v-00d6fc76],.btn[type=submit][data-v-00d6fc76],button.btn-primary[data-v-00d6fc76],button[type=submit][data-v-00d6fc76]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-00d6fc76],.btn-default .icon[data-v-00d6fc76],button .icon[data-v-00d6fc76]{margin-right:.5em}input[type=password][data-v-00d6fc76],input[type=text][data-v-00d6fc76]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-00d6fc76]:focus,input[type=text][data-v-00d6fc76]:focus{border:1px solid #35b870}button[data-v-00d6fc76],input[data-v-00d6fc76]{outline:none}input[type=text][data-v-00d6fc76]:hover,textarea[data-v-00d6fc76]:hover{border:1px solid #9cdfb0}ul[data-v-00d6fc76]{margin:0;padding:0;list-style:none}a[data-v-00d6fc76]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-00d6fc76]:hover{color:#35b870}[data-v-00d6fc76]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-00d6fc76]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-00d6fc76]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-00d6fc76]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-00d6fc76]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-00d6fc76] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-00d6fc76] .nav .path{cursor:pointer}.browser[data-v-00d6fc76] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-00d6fc76] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-00d6fc76]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-00d6fc76],input[type=number][data-v-00d6fc76],input[type=password][data-v-00d6fc76],input[type=search][data-v-00d6fc76],input[type=text][data-v-00d6fc76],input[type=time][data-v-00d6fc76]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-00d6fc76]:hover,input[type=number][data-v-00d6fc76]:hover,input[type=password][data-v-00d6fc76]:hover,input[type=search][data-v-00d6fc76]:hover,input[type=text][data-v-00d6fc76]:hover,input[type=time][data-v-00d6fc76]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-00d6fc76]:focus,input[type=number][data-v-00d6fc76]:focus,input[type=password][data-v-00d6fc76]:focus,input[type=search][data-v-00d6fc76]:focus,input[type=text][data-v-00d6fc76]:focus,input[type=time][data-v-00d6fc76]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-00d6fc76],input[type=number].with-icon[data-v-00d6fc76],input[type=password].with-icon[data-v-00d6fc76],input[type=search].with-icon[data-v-00d6fc76],input[type=text].with-icon[data-v-00d6fc76],input[type=time].with-icon[data-v-00d6fc76]{padding-left:.3em}input[type=search][data-v-00d6fc76],input[type=text][data-v-00d6fc76]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-00d6fc76]{animation-fill-mode:both;animation-name:fadeIn-00d6fc76;-webkit-animation-name:fadeIn-00d6fc76}.fade-in[data-v-00d6fc76],.fade-out[data-v-00d6fc76]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-00d6fc76]{animation-fill-mode:both;animation-name:fadeOut-00d6fc76;-webkit-animation-name:fadeOut-00d6fc76}@keyframes fadeIn-00d6fc76{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-00d6fc76{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-00d6fc76]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-00d6fc76;-webkit-animation-name:glow-00d6fc76}.loop[data-v-00d6fc76]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-00d6fc76{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-00d6fc76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-00d6fc76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-00d6fc76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-00d6fc76] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-00d6fc76] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-00d6fc76] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-00d6fc76] .item .icon i{font-size:40px}[data-v-00d6fc76] .nav{height:2.5em}.media-browser .media-browser-body[data-v-00d6fc76],.media-browser[data-v-00d6fc76]{height:100%}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-players .plugins{display:none}.media-players .no-results{padding:1em}.dropdown-container .refresh{font-weight:700;font-size:.8em;opacity:.7}.dropdown-container .player.selected .item{color:#32b646}.col-1[data-v-a947f200]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-1[data-v-a947f200]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a947f200]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a947f200]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a947f200]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-2[data-v-a947f200]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a947f200]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a947f200]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a947f200]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-3[data-v-a947f200]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a947f200]:first-child{margin-left:26%!important}.col-offset-3[data-v-a947f200]:not(first-child){margin-left:30%!important}.col-4[data-v-a947f200]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-4[data-v-a947f200]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a947f200]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a947f200]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a947f200]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-5[data-v-a947f200]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a947f200]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a947f200]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a947f200]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-6[data-v-a947f200]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a947f200]:first-child{margin-left:52%!important}.col-offset-6[data-v-a947f200]:not(first-child){margin-left:56%!important}.col-7[data-v-a947f200]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-7[data-v-a947f200]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a947f200]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a947f200]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a947f200]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-8[data-v-a947f200]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a947f200]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a947f200]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a947f200]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-9[data-v-a947f200]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a947f200]:first-child{margin-left:78%!important}.col-offset-9[data-v-a947f200]:not(first-child){margin-left:82%!important}.col-10[data-v-a947f200]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-10[data-v-a947f200]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a947f200]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a947f200]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a947f200]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a947f200]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a947f200]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-1[data-v-a947f200]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a947f200]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a947f200]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-2[data-v-a947f200]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a947f200]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a947f200]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-3[data-v-a947f200]{margin-left:26%}.col-no-margin-s-3[data-v-a947f200]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a947f200]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-4[data-v-a947f200]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a947f200]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a947f200]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-5[data-v-a947f200]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a947f200]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a947f200]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-6[data-v-a947f200]{margin-left:52%}.col-no-margin-s-6[data-v-a947f200]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a947f200]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-7[data-v-a947f200]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a947f200]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a947f200]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-8[data-v-a947f200]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a947f200]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a947f200]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-9[data-v-a947f200]{margin-left:78%}.col-no-margin-s-9[data-v-a947f200]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a947f200]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-10[data-v-a947f200]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a947f200]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a947f200]:first-child{margin-left:0}.col-offset-s-11[data-v-a947f200]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a947f200]{display:none!important}.s-visible[data-v-a947f200]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a947f200]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-1[data-v-a947f200]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a947f200]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a947f200]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-2[data-v-a947f200]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a947f200]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a947f200]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-3[data-v-a947f200]{margin-left:26%}.col-no-margin-m-3[data-v-a947f200]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a947f200]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-4[data-v-a947f200]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a947f200]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a947f200]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-5[data-v-a947f200]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a947f200]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a947f200]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-6[data-v-a947f200]{margin-left:52%}.col-no-margin-m-6[data-v-a947f200]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a947f200]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-7[data-v-a947f200]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a947f200]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a947f200]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-8[data-v-a947f200]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a947f200]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a947f200]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-9[data-v-a947f200]{margin-left:78%}.col-no-margin-m-9[data-v-a947f200]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a947f200]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-10[data-v-a947f200]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a947f200]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a947f200]:first-child{margin-left:0}.col-offset-m-11[data-v-a947f200]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a947f200]{display:none!important}.m-visible[data-v-a947f200]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a947f200]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-1[data-v-a947f200]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a947f200]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a947f200]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-2[data-v-a947f200]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a947f200]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a947f200]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-3[data-v-a947f200]{margin-left:26%}.col-no-margin-l-3[data-v-a947f200]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a947f200]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-4[data-v-a947f200]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a947f200]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a947f200]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-5[data-v-a947f200]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a947f200]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a947f200]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-6[data-v-a947f200]{margin-left:52%}.col-no-margin-l-6[data-v-a947f200]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a947f200]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-7[data-v-a947f200]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a947f200]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a947f200]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-8[data-v-a947f200]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a947f200]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a947f200]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-9[data-v-a947f200]{margin-left:78%}.col-no-margin-l-9[data-v-a947f200]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a947f200]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-10[data-v-a947f200]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a947f200]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a947f200]:first-child{margin-left:0}.col-offset-l-11[data-v-a947f200]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a947f200]{display:none!important}.l-visible[data-v-a947f200]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a947f200]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-1[data-v-a947f200]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a947f200]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a947f200]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-2[data-v-a947f200]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a947f200]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a947f200]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-3[data-v-a947f200]{margin-left:26%}.col-no-margin-xl-3[data-v-a947f200]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a947f200]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-4[data-v-a947f200]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a947f200]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a947f200]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-5[data-v-a947f200]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a947f200]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a947f200]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-6[data-v-a947f200]{margin-left:52%}.col-no-margin-xl-6[data-v-a947f200]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a947f200]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-7[data-v-a947f200]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a947f200]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a947f200]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-8[data-v-a947f200]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a947f200]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a947f200]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-9[data-v-a947f200]{margin-left:78%}.col-no-margin-xl-9[data-v-a947f200]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a947f200]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-10[data-v-a947f200]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a947f200]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a947f200]:first-child{margin-left:0}.col-offset-xl-11[data-v-a947f200]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a947f200]{display:none!important}.xl-visible[data-v-a947f200]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a947f200]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a947f200]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a947f200]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a947f200]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a947f200]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a947f200]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a947f200]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a947f200]{margin-left:26%}.col-no-margin-xxl-3[data-v-a947f200]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a947f200]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a947f200]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a947f200]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a947f200]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a947f200]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a947f200]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a947f200]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a947f200]{margin-left:52%}.col-no-margin-xxl-6[data-v-a947f200]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a947f200]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a947f200]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a947f200]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a947f200]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a947f200]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a947f200]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a947f200]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a947f200]{margin-left:78%}.col-no-margin-xxl-9[data-v-a947f200]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a947f200]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a947f200]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a947f200]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a947f200]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a947f200]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a947f200]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a947f200]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a947f200]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a947f200]{display:none!important}.xxl-visible[data-v-a947f200]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-a947f200]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-a947f200]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-a947f200]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-a947f200]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a947f200]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-a947f200]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a947f200]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-a947f200]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a947f200]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-a947f200]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a947f200]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-a947f200]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a947f200]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-a947f200]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a947f200]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-a947f200]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-a947f200]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a947f200]{display:none!important}}.vertical-center[data-v-a947f200]{display:flex;align-items:center}.horizontal-center[data-v-a947f200]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a947f200]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a947f200]{display:none!important}.no-content[data-v-a947f200]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-a947f200]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-a947f200]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-a947f200]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-a947f200]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-a947f200]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-a947f200]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-a947f200],.btn[data-v-a947f200],button[data-v-a947f200]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a947f200],.btn-default[type=submit][data-v-a947f200],.btn.btn-primary[data-v-a947f200],.btn[type=submit][data-v-a947f200],button.btn-primary[data-v-a947f200],button[type=submit][data-v-a947f200]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a947f200],.btn-default .icon[data-v-a947f200],button .icon[data-v-a947f200]{margin-right:.5em}input[type=password][data-v-a947f200],input[type=text][data-v-a947f200]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a947f200]:focus,input[type=text][data-v-a947f200]:focus{border:1px solid #35b870}button[data-v-a947f200],input[data-v-a947f200]{outline:none}input[type=text][data-v-a947f200]:hover,textarea[data-v-a947f200]:hover{border:1px solid #9cdfb0}ul[data-v-a947f200]{margin:0;padding:0;list-style:none}a[data-v-a947f200]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a947f200]:hover{color:#35b870}[data-v-a947f200]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-a947f200]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-a947f200]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a947f200]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a947f200]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-a947f200] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-a947f200] .nav .path{cursor:pointer}.browser[data-v-a947f200] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-a947f200] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-a947f200]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-a947f200],input[type=number][data-v-a947f200],input[type=password][data-v-a947f200],input[type=search][data-v-a947f200],input[type=text][data-v-a947f200],input[type=time][data-v-a947f200]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-a947f200]:hover,input[type=number][data-v-a947f200]:hover,input[type=password][data-v-a947f200]:hover,input[type=search][data-v-a947f200]:hover,input[type=text][data-v-a947f200]:hover,input[type=time][data-v-a947f200]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-a947f200]:focus,input[type=number][data-v-a947f200]:focus,input[type=password][data-v-a947f200]:focus,input[type=search][data-v-a947f200]:focus,input[type=text][data-v-a947f200]:focus,input[type=time][data-v-a947f200]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-a947f200],input[type=number].with-icon[data-v-a947f200],input[type=password].with-icon[data-v-a947f200],input[type=search].with-icon[data-v-a947f200],input[type=text].with-icon[data-v-a947f200],input[type=time].with-icon[data-v-a947f200]{padding-left:.3em}input[type=search][data-v-a947f200],input[type=text][data-v-a947f200]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a947f200]{animation-fill-mode:both;animation-name:fadeIn-a947f200;-webkit-animation-name:fadeIn-a947f200}.fade-in[data-v-a947f200],.fade-out[data-v-a947f200]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a947f200]{animation-fill-mode:both;animation-name:fadeOut-a947f200;-webkit-animation-name:fadeOut-a947f200}@keyframes fadeIn-a947f200{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a947f200{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-a947f200]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-a947f200;-webkit-animation-name:glow-a947f200}.loop[data-v-a947f200]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-a947f200{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-a947f200]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a947f200]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a947f200]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-a947f200]{color:#d21}.header[data-v-a947f200]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header .filter-btn.selected[data-v-a947f200]{color:#32b646}.header .row[data-v-a947f200]{display:flex;align-items:center}.header.with-filter[data-v-a947f200]{height:6.3em;padding-bottom:0}.header .side[data-v-a947f200]{display:inline-flex;align-items:center}.header .side.right[data-v-a947f200]{justify-content:right;direction:rtl}.header[data-v-a947f200] button{background:none;padding:0 .5em;border:0}.header[data-v-a947f200] button:hover{color:#38cf80}.header form[data-v-a947f200]{width:100%;padding:0;border:0;border-radius:0;box-shadow:none;background:initial}.header .search-box[data-v-a947f200]{width:100%;margin-left:.5em}.header .search-box input[type=search][data-v-a947f200]{width:100%}.header .filter[data-v-a947f200]{width:100%;height:3em;margin-top:.5em}.header .filter label[data-v-a947f200]{display:inline-flex;flex-direction:row;margin-right:1em}.header .captions-btn[data-v-a947f200],.header .filter label input[data-v-a947f200]{margin-right:.5em}.header .captions-btn.selected[data-v-a947f200]{color:#32b646}.col-1[data-v-41684814]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-41684814]:first-child{margin-left:0}.col-no-margin-1[data-v-41684814]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-41684814]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-41684814]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-41684814]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-41684814]:first-child{margin-left:0}.col-no-margin-2[data-v-41684814]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-41684814]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-41684814]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-41684814],[data-v-41684814] .modal-body .row .attr{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-41684814]:first-child,[data-v-41684814] .modal-body .row .attr:first-child{margin-left:0}.col-no-margin-3[data-v-41684814]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-41684814]:first-child{margin-left:26%!important}.col-offset-3[data-v-41684814]:not(first-child){margin-left:30%!important}.col-4[data-v-41684814]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-41684814]:first-child{margin-left:0}.col-no-margin-4[data-v-41684814]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-41684814]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-41684814]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-41684814]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-41684814]:first-child{margin-left:0}.col-no-margin-5[data-v-41684814]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-41684814]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-41684814]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-41684814]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-41684814]:first-child{margin-left:0}.col-no-margin-6[data-v-41684814]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-41684814]:first-child{margin-left:52%!important}.col-offset-6[data-v-41684814]:not(first-child){margin-left:56%!important}.col-7[data-v-41684814]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-41684814]:first-child{margin-left:0}.col-no-margin-7[data-v-41684814]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-41684814]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-41684814]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-41684814]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-41684814]:first-child{margin-left:0}.col-no-margin-8[data-v-41684814]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-41684814]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-41684814]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-41684814],[data-v-41684814] .modal-body .row .value{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-41684814]:first-child,[data-v-41684814] .modal-body .row .value:first-child{margin-left:0}.col-no-margin-9[data-v-41684814]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-41684814]:first-child{margin-left:78%!important}.col-offset-9[data-v-41684814]:not(first-child){margin-left:82%!important}.col-10[data-v-41684814]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-41684814]:first-child{margin-left:0}.col-no-margin-10[data-v-41684814]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-41684814]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-41684814]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-41684814]:first-child{margin-left:0}.col-no-margin-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-41684814]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-41684814]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-41684814]:first-child{margin-left:0}.col-no-margin-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-41684814]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-41684814]:first-child{margin-left:0}.col-offset-s-1[data-v-41684814]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-41684814]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-41684814]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-41684814]:first-child{margin-left:0}.col-offset-s-2[data-v-41684814]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-41684814]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-41684814]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-41684814]:first-child{margin-left:0}.col-offset-s-3[data-v-41684814]{margin-left:26%}.col-no-margin-s-3[data-v-41684814]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-41684814]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-41684814]:first-child{margin-left:0}.col-offset-s-4[data-v-41684814]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-41684814]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-41684814]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-41684814]:first-child{margin-left:0}.col-offset-s-5[data-v-41684814]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-41684814]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-41684814]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-41684814]:first-child{margin-left:0}.col-offset-s-6[data-v-41684814]{margin-left:52%}.col-no-margin-s-6[data-v-41684814]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-41684814]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-41684814]:first-child{margin-left:0}.col-offset-s-7[data-v-41684814]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-41684814]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-41684814]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-41684814]:first-child{margin-left:0}.col-offset-s-8[data-v-41684814]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-41684814]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-41684814]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-41684814]:first-child{margin-left:0}.col-offset-s-9[data-v-41684814]{margin-left:78%}.col-no-margin-s-9[data-v-41684814]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-41684814]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-41684814]:first-child{margin-left:0}.col-offset-s-10[data-v-41684814]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-41684814]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-41684814]:first-child{margin-left:0}.col-offset-s-11[data-v-41684814]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-41684814]:first-child{margin-left:0}.col-no-margin-s-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-41684814]{display:none!important}.s-visible[data-v-41684814]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-41684814]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-41684814]:first-child{margin-left:0}.col-offset-m-1[data-v-41684814]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-41684814]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-41684814]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-41684814]:first-child{margin-left:0}.col-offset-m-2[data-v-41684814]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-41684814]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-41684814]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-41684814]:first-child{margin-left:0}.col-offset-m-3[data-v-41684814]{margin-left:26%}.col-no-margin-m-3[data-v-41684814]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-41684814]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-41684814]:first-child{margin-left:0}.col-offset-m-4[data-v-41684814]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-41684814]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-41684814]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-41684814]:first-child{margin-left:0}.col-offset-m-5[data-v-41684814]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-41684814]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-41684814]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-41684814]:first-child{margin-left:0}.col-offset-m-6[data-v-41684814]{margin-left:52%}.col-no-margin-m-6[data-v-41684814]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-41684814]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-41684814]:first-child{margin-left:0}.col-offset-m-7[data-v-41684814]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-41684814]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-41684814]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-41684814]:first-child{margin-left:0}.col-offset-m-8[data-v-41684814]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-41684814]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-41684814]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-41684814]:first-child{margin-left:0}.col-offset-m-9[data-v-41684814]{margin-left:78%}.col-no-margin-m-9[data-v-41684814]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-41684814]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-41684814]:first-child{margin-left:0}.col-offset-m-10[data-v-41684814]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-41684814]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-41684814]:first-child{margin-left:0}.col-offset-m-11[data-v-41684814]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-41684814]:first-child{margin-left:0}.col-no-margin-m-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-41684814]{display:none!important}.m-visible[data-v-41684814]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-41684814]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-41684814]:first-child{margin-left:0}.col-offset-l-1[data-v-41684814]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-41684814]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-41684814]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-41684814]:first-child{margin-left:0}.col-offset-l-2[data-v-41684814]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-41684814]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-41684814]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-41684814]:first-child{margin-left:0}.col-offset-l-3[data-v-41684814]{margin-left:26%}.col-no-margin-l-3[data-v-41684814]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-41684814]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-41684814]:first-child{margin-left:0}.col-offset-l-4[data-v-41684814]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-41684814]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-41684814]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-41684814]:first-child{margin-left:0}.col-offset-l-5[data-v-41684814]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-41684814]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-41684814]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-41684814]:first-child{margin-left:0}.col-offset-l-6[data-v-41684814]{margin-left:52%}.col-no-margin-l-6[data-v-41684814]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-41684814]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-41684814]:first-child{margin-left:0}.col-offset-l-7[data-v-41684814]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-41684814]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-41684814]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-41684814]:first-child{margin-left:0}.col-offset-l-8[data-v-41684814]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-41684814]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-41684814]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-41684814]:first-child{margin-left:0}.col-offset-l-9[data-v-41684814]{margin-left:78%}.col-no-margin-l-9[data-v-41684814]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-41684814]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-41684814]:first-child{margin-left:0}.col-offset-l-10[data-v-41684814]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-41684814]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-41684814]:first-child{margin-left:0}.col-offset-l-11[data-v-41684814]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-41684814]:first-child{margin-left:0}.col-no-margin-l-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-41684814]{display:none!important}.l-visible[data-v-41684814]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-41684814]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-1[data-v-41684814]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-41684814]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-41684814]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-2[data-v-41684814]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-41684814]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-41684814]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-3[data-v-41684814]{margin-left:26%}.col-no-margin-xl-3[data-v-41684814]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-41684814]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-4[data-v-41684814]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-41684814]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-41684814]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-5[data-v-41684814]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-41684814]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-41684814]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-6[data-v-41684814]{margin-left:52%}.col-no-margin-xl-6[data-v-41684814]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-41684814]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-7[data-v-41684814]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-41684814]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-41684814]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-8[data-v-41684814]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-41684814]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-41684814]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-9[data-v-41684814]{margin-left:78%}.col-no-margin-xl-9[data-v-41684814]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-41684814]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-10[data-v-41684814]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-41684814]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-41684814]:first-child{margin-left:0}.col-offset-xl-11[data-v-41684814]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-41684814]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-41684814]{display:none!important}.xl-visible[data-v-41684814]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-41684814]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-1[data-v-41684814]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-41684814]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-41684814]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-2[data-v-41684814]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-41684814]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-41684814]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-3[data-v-41684814]{margin-left:26%}.col-no-margin-xxl-3[data-v-41684814]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-41684814]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-4[data-v-41684814]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-41684814]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-41684814]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-5[data-v-41684814]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-41684814]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-41684814]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-6[data-v-41684814]{margin-left:52%}.col-no-margin-xxl-6[data-v-41684814]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-41684814]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-7[data-v-41684814]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-41684814]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-41684814]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-8[data-v-41684814]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-41684814]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-41684814]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-9[data-v-41684814]{margin-left:78%}.col-no-margin-xxl-9[data-v-41684814]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-41684814]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-10[data-v-41684814]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-41684814]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-41684814]:first-child{margin-left:0}.col-offset-xxl-11[data-v-41684814]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-41684814]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-41684814]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-41684814]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-41684814]{display:none!important}.xxl-visible[data-v-41684814]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-41684814]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-41684814]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-41684814]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-41684814]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-41684814]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-41684814]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-41684814]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-41684814]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-41684814]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-41684814]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-41684814]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-41684814]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-41684814]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-41684814]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-41684814]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-41684814]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-41684814]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-41684814]{display:none!important}}.vertical-center[data-v-41684814]{display:flex;align-items:center}.horizontal-center[data-v-41684814]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-41684814]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-41684814]{display:none!important}.no-content[data-v-41684814]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-41684814]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-41684814]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-41684814]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-41684814]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-41684814]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-41684814]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-41684814],.btn[data-v-41684814],button[data-v-41684814]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-41684814],.btn-default[type=submit][data-v-41684814],.btn.btn-primary[data-v-41684814],.btn[type=submit][data-v-41684814],button.btn-primary[data-v-41684814],button[type=submit][data-v-41684814]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-41684814],.btn-default .icon[data-v-41684814],button .icon[data-v-41684814]{margin-right:.5em}input[type=password][data-v-41684814],input[type=text][data-v-41684814]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-41684814]:focus,input[type=text][data-v-41684814]:focus{border:1px solid #35b870}button[data-v-41684814],input[data-v-41684814]{outline:none}input[type=text][data-v-41684814]:hover,textarea[data-v-41684814]:hover{border:1px solid #9cdfb0}ul[data-v-41684814]{margin:0;padding:0;list-style:none}a[data-v-41684814]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-41684814]:hover{color:#35b870}[data-v-41684814]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-41684814]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-41684814]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-41684814]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-41684814]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-41684814] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-41684814] .nav .path{cursor:pointer}.browser[data-v-41684814] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-41684814] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-41684814]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-41684814],input[type=number][data-v-41684814],input[type=password][data-v-41684814],input[type=search][data-v-41684814],input[type=text][data-v-41684814],input[type=time][data-v-41684814]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-41684814]:hover,input[type=number][data-v-41684814]:hover,input[type=password][data-v-41684814]:hover,input[type=search][data-v-41684814]:hover,input[type=text][data-v-41684814]:hover,input[type=time][data-v-41684814]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-41684814]:focus,input[type=number][data-v-41684814]:focus,input[type=password][data-v-41684814]:focus,input[type=search][data-v-41684814]:focus,input[type=text][data-v-41684814]:focus,input[type=time][data-v-41684814]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-41684814],input[type=number].with-icon[data-v-41684814],input[type=password].with-icon[data-v-41684814],input[type=search].with-icon[data-v-41684814],input[type=text].with-icon[data-v-41684814],input[type=time].with-icon[data-v-41684814]{padding-left:.3em}input[type=search][data-v-41684814],input[type=text][data-v-41684814]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-41684814]{animation-fill-mode:both;animation-name:fadeIn-41684814;-webkit-animation-name:fadeIn-41684814}.fade-in[data-v-41684814],.fade-out[data-v-41684814]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-41684814]{animation-fill-mode:both;animation-name:fadeOut-41684814;-webkit-animation-name:fadeOut-41684814}@keyframes fadeIn-41684814{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-41684814{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-41684814]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-41684814;-webkit-animation-name:glow-41684814}.loop[data-v-41684814]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-41684814{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-41684814]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-41684814]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-41684814]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-41684814]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-41684814]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-41684814]{background:#8fefb7}.item.selected[data-v-41684814]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-41684814]{border-top:2px solid #35b870}.item[data-v-41684814]::-moz-selection{background:transparent!important}.item[data-v-41684814]::selection{background:transparent!important}.item .title[data-v-41684814]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-41684814]{display:inline-flex;align-items:center}.item .side.right[data-v-41684814]{display:inline-flex;justify-content:right}.item .actions[data-v-41684814],.item .duration[data-v-41684814]{display:inline-flex;align-items:center}.item .duration[data-v-41684814]{font-size:.85em;opacity:.7}.item .actions[data-v-41684814] button{opacity:.65}.item .icon[data-v-41684814]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-41684814] .dropdown-container .item{box-shadow:none}.item[data-v-41684814] .dropdown-container button{background:none;border:none}.item[data-v-41684814] .dropdown-container button:hover{color:#35b870}[data-v-41684814] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-41684814] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-41684814] .table-row{flex-direction:row;align-items:center}}[data-v-41684814] .table-row .title,[data-v-41684814] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-41684814] .table-row .title,[data-v-41684814] .table-row .value{display:inline-flex}}[data-v-41684814] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-41684814] .table-row .title{width:30%}[data-v-41684814] .table-row .value{justify-content:right}}.media-downloads[data-v-41684814]{height:100%;background:#fff}.media-downloads .no-content[data-v-41684814]{height:100%}.media-downloads .items[data-v-41684814]{display:flex;flex-direction:column;height:100%;flex:1;overflow-y:auto}[data-v-41684814] .modal-body .row{display:flex;border-bottom:1px solid #e1e4e8;padding:.5em .25em;border-radius:.5em}[data-v-41684814] .modal-body .row:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-41684814] .modal-body .row .attr{display:inline-flex}[data-v-41684814] .modal-body .row .value{display:inline-flex;justify-content:right}[data-v-41684814] .modal-body .row .value.nowrap{overflow:hidden;white-space:nowrap;text-overflow:clip}[data-v-41684814] .modal-body .dropdown-container .row{box-shadow:none;border:none}[data-v-41684814] .modal-body .dropdown-container button{border:none;background:none}[data-v-41684814] .modal-body .dropdown-container button:hover{color:#35b870}.col-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c67b72b8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c67b72b8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c67b72b8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c67b72b8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c67b72b8]:first-child{margin-left:26%!important}.col-offset-3[data-v-c67b72b8]:not(first-child){margin-left:30%!important}.col-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c67b72b8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c67b72b8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c67b72b8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c67b72b8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c67b72b8]:first-child{margin-left:52%!important}.col-offset-6[data-v-c67b72b8]:not(first-child){margin-left:56%!important}.col-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c67b72b8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c67b72b8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c67b72b8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c67b72b8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c67b72b8]:first-child{margin-left:78%!important}.col-offset-9[data-v-c67b72b8]:not(first-child){margin-left:82%!important}.col-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c67b72b8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c67b72b8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c67b72b8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c67b72b8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-s-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-s-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-s-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c67b72b8]{display:none!important}.s-visible[data-v-c67b72b8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-m-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-m-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-m-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c67b72b8]{display:none!important}.m-visible[data-v-c67b72b8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-l-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-l-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-l-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c67b72b8]{display:none!important}.l-visible[data-v-c67b72b8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-xl-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-xl-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-xl-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c67b72b8]{display:none!important}.xl-visible[data-v-c67b72b8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-xxl-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-xxl-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-xxl-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c67b72b8]{display:none!important}.xxl-visible[data-v-c67b72b8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c67b72b8]{display:none!important}}.vertical-center[data-v-c67b72b8]{display:flex;align-items:center}.horizontal-center[data-v-c67b72b8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c67b72b8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c67b72b8]{display:none!important}.no-content[data-v-c67b72b8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-c67b72b8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-c67b72b8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-c67b72b8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-c67b72b8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-c67b72b8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-c67b72b8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-c67b72b8],.btn[data-v-c67b72b8],button[data-v-c67b72b8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c67b72b8],.btn-default[type=submit][data-v-c67b72b8],.btn.btn-primary[data-v-c67b72b8],.btn[type=submit][data-v-c67b72b8],button.btn-primary[data-v-c67b72b8],button[type=submit][data-v-c67b72b8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-c67b72b8],.btn-default .icon[data-v-c67b72b8],button .icon[data-v-c67b72b8]{margin-right:.5em}input[type=password][data-v-c67b72b8],input[type=text][data-v-c67b72b8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c67b72b8]:focus,input[type=text][data-v-c67b72b8]:focus{border:1px solid #35b870}button[data-v-c67b72b8],input[data-v-c67b72b8]{outline:none}input[type=text][data-v-c67b72b8]:hover,textarea[data-v-c67b72b8]:hover{border:1px solid #9cdfb0}ul[data-v-c67b72b8]{margin:0;padding:0;list-style:none}a[data-v-c67b72b8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c67b72b8]:hover{color:#35b870}[data-v-c67b72b8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-c67b72b8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-c67b72b8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c67b72b8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-c67b72b8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-c67b72b8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-c67b72b8] .nav .path{cursor:pointer}.browser[data-v-c67b72b8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-c67b72b8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-c67b72b8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-c67b72b8],input[type=number][data-v-c67b72b8],input[type=password][data-v-c67b72b8],input[type=search][data-v-c67b72b8],input[type=text][data-v-c67b72b8],input[type=time][data-v-c67b72b8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-c67b72b8]:hover,input[type=number][data-v-c67b72b8]:hover,input[type=password][data-v-c67b72b8]:hover,input[type=search][data-v-c67b72b8]:hover,input[type=text][data-v-c67b72b8]:hover,input[type=time][data-v-c67b72b8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-c67b72b8]:focus,input[type=number][data-v-c67b72b8]:focus,input[type=password][data-v-c67b72b8]:focus,input[type=search][data-v-c67b72b8]:focus,input[type=text][data-v-c67b72b8]:focus,input[type=time][data-v-c67b72b8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-c67b72b8],input[type=number].with-icon[data-v-c67b72b8],input[type=password].with-icon[data-v-c67b72b8],input[type=search].with-icon[data-v-c67b72b8],input[type=text].with-icon[data-v-c67b72b8],input[type=time].with-icon[data-v-c67b72b8]{padding-left:.3em}input[type=search][data-v-c67b72b8],input[type=text][data-v-c67b72b8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c67b72b8]{animation-fill-mode:both;animation-name:fadeIn-c67b72b8;-webkit-animation-name:fadeIn-c67b72b8}.fade-in[data-v-c67b72b8],.fade-out[data-v-c67b72b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c67b72b8]{animation-fill-mode:both;animation-name:fadeOut-c67b72b8;-webkit-animation-name:fadeOut-c67b72b8}@keyframes fadeIn-c67b72b8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c67b72b8{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-c67b72b8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-c67b72b8;-webkit-animation-name:glow-c67b72b8}.loop[data-v-c67b72b8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-c67b72b8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-c67b72b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c67b72b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c67b72b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-c67b72b8]{color:#d21}nav[data-v-c67b72b8]{width:2.8em;height:100%;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;box-shadow:2.5px 0 4.5px 2px #5e5e5e;margin-left:2.5px;overflow:auto}nav .menu-button[data-v-c67b72b8]{position:absolute;top:.75em;left:0;width:100%;display:inline-flex;justify-content:center;padding:0;margin:0;font-size:1.2em;border:0;background:none;cursor:pointer;z-index:1}nav .menu-button[data-v-c67b72b8]:hover{color:#35b870}nav li[data-v-c67b72b8]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7;border-radius:1.2em;margin:0 .2em}nav li[data-v-c67b72b8]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-c67b72b8]{background:rgba(160,245,178,.95)}nav li.completed[data-v-c67b72b8]{color:#17ad17}.col-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1def516f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1def516f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1def516f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1def516f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1def516f]:first-child{margin-left:26%!important}.col-offset-3[data-v-1def516f]:not(first-child){margin-left:30%!important}.col-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1def516f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1def516f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1def516f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1def516f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1def516f]:first-child{margin-left:52%!important}.col-offset-6[data-v-1def516f]:not(first-child){margin-left:56%!important}.col-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1def516f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1def516f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1def516f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1def516f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1def516f]:first-child{margin-left:78%!important}.col-offset-9[data-v-1def516f]:not(first-child){margin-left:82%!important}.col-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1def516f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1def516f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1def516f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1def516f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-3[data-v-1def516f]{margin-left:26%}.col-no-margin-s-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-6[data-v-1def516f]{margin-left:52%}.col-no-margin-s-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-9[data-v-1def516f]{margin-left:78%}.col-no-margin-s-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1def516f]{display:none!important}.s-visible[data-v-1def516f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-3[data-v-1def516f]{margin-left:26%}.col-no-margin-m-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-6[data-v-1def516f]{margin-left:52%}.col-no-margin-m-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-9[data-v-1def516f]{margin-left:78%}.col-no-margin-m-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1def516f]{display:none!important}.m-visible[data-v-1def516f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-3[data-v-1def516f]{margin-left:26%}.col-no-margin-l-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-6[data-v-1def516f]{margin-left:52%}.col-no-margin-l-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-9[data-v-1def516f]{margin-left:78%}.col-no-margin-l-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1def516f]{display:none!important}.l-visible[data-v-1def516f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-3[data-v-1def516f]{margin-left:26%}.col-no-margin-xl-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-6[data-v-1def516f]{margin-left:52%}.col-no-margin-xl-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-9[data-v-1def516f]{margin-left:78%}.col-no-margin-xl-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1def516f]{display:none!important}.xl-visible[data-v-1def516f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1def516f]{margin-left:26%}.col-no-margin-xxl-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1def516f]{margin-left:52%}.col-no-margin-xxl-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1def516f]{margin-left:78%}.col-no-margin-xxl-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1def516f]{display:none!important}.xxl-visible[data-v-1def516f]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1def516f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1def516f]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1def516f]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1def516f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1def516f]{display:none!important}}.vertical-center[data-v-1def516f]{display:flex;align-items:center}.horizontal-center[data-v-1def516f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1def516f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1def516f]{display:none!important}.no-content[data-v-1def516f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1def516f]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1def516f]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1def516f]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1def516f]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1def516f]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1def516f]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1def516f],.btn[data-v-1def516f],button[data-v-1def516f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1def516f],.btn-default[type=submit][data-v-1def516f],.btn.btn-primary[data-v-1def516f],.btn[type=submit][data-v-1def516f],button.btn-primary[data-v-1def516f],button[type=submit][data-v-1def516f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1def516f],.btn-default .icon[data-v-1def516f],button .icon[data-v-1def516f]{margin-right:.5em}input[type=password][data-v-1def516f],input[type=text][data-v-1def516f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1def516f]:focus,input[type=text][data-v-1def516f]:focus{border:1px solid #35b870}button[data-v-1def516f],input[data-v-1def516f]{outline:none}input[type=text][data-v-1def516f]:hover,textarea[data-v-1def516f]:hover{border:1px solid #9cdfb0}ul[data-v-1def516f]{margin:0;padding:0;list-style:none}a[data-v-1def516f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1def516f]:hover{color:#35b870}[data-v-1def516f]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1def516f]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1def516f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1def516f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1def516f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1def516f] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1def516f] .nav .path{cursor:pointer}.browser[data-v-1def516f] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1def516f] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1def516f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1def516f],input[type=number][data-v-1def516f],input[type=password][data-v-1def516f],input[type=search][data-v-1def516f],input[type=text][data-v-1def516f],input[type=time][data-v-1def516f]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1def516f]:hover,input[type=number][data-v-1def516f]:hover,input[type=password][data-v-1def516f]:hover,input[type=search][data-v-1def516f]:hover,input[type=text][data-v-1def516f]:hover,input[type=time][data-v-1def516f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1def516f]:focus,input[type=number][data-v-1def516f]:focus,input[type=password][data-v-1def516f]:focus,input[type=search][data-v-1def516f]:focus,input[type=text][data-v-1def516f]:focus,input[type=time][data-v-1def516f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1def516f],input[type=number].with-icon[data-v-1def516f],input[type=password].with-icon[data-v-1def516f],input[type=search].with-icon[data-v-1def516f],input[type=text].with-icon[data-v-1def516f],input[type=time].with-icon[data-v-1def516f]{padding-left:.3em}input[type=search][data-v-1def516f],input[type=text][data-v-1def516f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1def516f]{animation-fill-mode:both;animation-name:fadeIn-1def516f;-webkit-animation-name:fadeIn-1def516f}.fade-in[data-v-1def516f],.fade-out[data-v-1def516f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1def516f]{animation-fill-mode:both;animation-name:fadeOut-1def516f;-webkit-animation-name:fadeOut-1def516f}@keyframes fadeIn-1def516f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1def516f{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1def516f]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1def516f;-webkit-animation-name:glow-1def516f}.loop[data-v-1def516f]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1def516f{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1def516f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1def516f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1def516f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.playlist-adder-container[data-v-1def516f]{min-width:300px;height:100%;position:relative;display:flex;flex-direction:column;align-items:center}.playlist-adder-container .playlists[data-v-1def516f]{width:100%;overflow-y:auto}.playlist-adder-container .playlist button[data-v-1def516f]{width:100%;text-align:left;padding:.5em 1em;border:none;background:none;cursor:pointer;transition:background .2s,color .2s}.playlist-adder-container .playlist button[data-v-1def516f]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.playlist-adder-container .playlist button i[data-v-1def516f]{margin-right:.5em}.playlist-adder-container .new-playlist button[data-v-1def516f]{font-weight:700;border-bottom:1px solid #e1e4e8}.col-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-79d1e8b6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-79d1e8b6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-79d1e8b6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-79d1e8b6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-79d1e8b6]:first-child{margin-left:26%!important}.col-offset-3[data-v-79d1e8b6]:not(first-child){margin-left:30%!important}.col-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-79d1e8b6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-79d1e8b6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-79d1e8b6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-79d1e8b6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-79d1e8b6]:first-child{margin-left:52%!important}.col-offset-6[data-v-79d1e8b6]:not(first-child){margin-left:56%!important}.col-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-79d1e8b6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-79d1e8b6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-79d1e8b6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-79d1e8b6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-79d1e8b6]:first-child{margin-left:78%!important}.col-offset-9[data-v-79d1e8b6]:not(first-child){margin-left:82%!important}.col-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-79d1e8b6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-79d1e8b6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-79d1e8b6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-79d1e8b6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-1[data-v-79d1e8b6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-2[data-v-79d1e8b6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-3[data-v-79d1e8b6]{margin-left:26%}.col-no-margin-s-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-4[data-v-79d1e8b6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-5[data-v-79d1e8b6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-6[data-v-79d1e8b6]{margin-left:52%}.col-no-margin-s-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-7[data-v-79d1e8b6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-8[data-v-79d1e8b6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-9[data-v-79d1e8b6]{margin-left:78%}.col-no-margin-s-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-10[data-v-79d1e8b6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-s-11[data-v-79d1e8b6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-79d1e8b6]{display:none!important}.s-visible[data-v-79d1e8b6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-1[data-v-79d1e8b6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-2[data-v-79d1e8b6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-3[data-v-79d1e8b6]{margin-left:26%}.col-no-margin-m-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-4[data-v-79d1e8b6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-5[data-v-79d1e8b6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-6[data-v-79d1e8b6]{margin-left:52%}.col-no-margin-m-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-7[data-v-79d1e8b6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-8[data-v-79d1e8b6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-9[data-v-79d1e8b6]{margin-left:78%}.col-no-margin-m-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-10[data-v-79d1e8b6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-m-11[data-v-79d1e8b6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-79d1e8b6]{display:none!important}.m-visible[data-v-79d1e8b6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-1[data-v-79d1e8b6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-2[data-v-79d1e8b6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-3[data-v-79d1e8b6]{margin-left:26%}.col-no-margin-l-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-4[data-v-79d1e8b6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-5[data-v-79d1e8b6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-6[data-v-79d1e8b6]{margin-left:52%}.col-no-margin-l-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-7[data-v-79d1e8b6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-8[data-v-79d1e8b6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-9[data-v-79d1e8b6]{margin-left:78%}.col-no-margin-l-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-10[data-v-79d1e8b6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-l-11[data-v-79d1e8b6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-79d1e8b6]{display:none!important}.l-visible[data-v-79d1e8b6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-1[data-v-79d1e8b6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-2[data-v-79d1e8b6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-3[data-v-79d1e8b6]{margin-left:26%}.col-no-margin-xl-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-4[data-v-79d1e8b6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-5[data-v-79d1e8b6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-6[data-v-79d1e8b6]{margin-left:52%}.col-no-margin-xl-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-7[data-v-79d1e8b6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-8[data-v-79d1e8b6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-9[data-v-79d1e8b6]{margin-left:78%}.col-no-margin-xl-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-10[data-v-79d1e8b6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xl-11[data-v-79d1e8b6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-79d1e8b6]{display:none!important}.xl-visible[data-v-79d1e8b6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-79d1e8b6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-79d1e8b6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-79d1e8b6]{margin-left:26%}.col-no-margin-xxl-3[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-79d1e8b6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-79d1e8b6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-79d1e8b6]{margin-left:52%}.col-no-margin-xxl-6[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-79d1e8b6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-79d1e8b6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-79d1e8b6]{margin-left:78%}.col-no-margin-xxl-9[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-79d1e8b6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-79d1e8b6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-79d1e8b6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-79d1e8b6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-79d1e8b6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-79d1e8b6]{display:none!important}.xxl-visible[data-v-79d1e8b6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-79d1e8b6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-79d1e8b6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-79d1e8b6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-79d1e8b6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-79d1e8b6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-79d1e8b6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-79d1e8b6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-79d1e8b6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-79d1e8b6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-79d1e8b6]{display:none!important}}.vertical-center[data-v-79d1e8b6]{display:flex;align-items:center}.horizontal-center[data-v-79d1e8b6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-79d1e8b6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-79d1e8b6]{display:none!important}.no-content[data-v-79d1e8b6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-79d1e8b6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-79d1e8b6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-79d1e8b6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-79d1e8b6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-79d1e8b6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-79d1e8b6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-79d1e8b6],.btn[data-v-79d1e8b6],button[data-v-79d1e8b6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-79d1e8b6],.btn-default[type=submit][data-v-79d1e8b6],.btn.btn-primary[data-v-79d1e8b6],.btn[type=submit][data-v-79d1e8b6],button.btn-primary[data-v-79d1e8b6],button[type=submit][data-v-79d1e8b6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-79d1e8b6],.btn-default .icon[data-v-79d1e8b6],button .icon[data-v-79d1e8b6]{margin-right:.5em}input[type=password][data-v-79d1e8b6],input[type=text][data-v-79d1e8b6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-79d1e8b6]:focus,input[type=text][data-v-79d1e8b6]:focus{border:1px solid #35b870}button[data-v-79d1e8b6],input[data-v-79d1e8b6]{outline:none}input[type=text][data-v-79d1e8b6]:hover,textarea[data-v-79d1e8b6]:hover{border:1px solid #9cdfb0}ul[data-v-79d1e8b6]{margin:0;padding:0;list-style:none}a[data-v-79d1e8b6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-79d1e8b6]:hover{color:#35b870}[data-v-79d1e8b6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-79d1e8b6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-79d1e8b6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-79d1e8b6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-79d1e8b6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-79d1e8b6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-79d1e8b6] .nav .path{cursor:pointer}.browser[data-v-79d1e8b6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-79d1e8b6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-79d1e8b6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-79d1e8b6],input[type=number][data-v-79d1e8b6],input[type=password][data-v-79d1e8b6],input[type=search][data-v-79d1e8b6],input[type=text][data-v-79d1e8b6],input[type=time][data-v-79d1e8b6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-79d1e8b6]:hover,input[type=number][data-v-79d1e8b6]:hover,input[type=password][data-v-79d1e8b6]:hover,input[type=search][data-v-79d1e8b6]:hover,input[type=text][data-v-79d1e8b6]:hover,input[type=time][data-v-79d1e8b6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-79d1e8b6]:focus,input[type=number][data-v-79d1e8b6]:focus,input[type=password][data-v-79d1e8b6]:focus,input[type=search][data-v-79d1e8b6]:focus,input[type=text][data-v-79d1e8b6]:focus,input[type=time][data-v-79d1e8b6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-79d1e8b6],input[type=number].with-icon[data-v-79d1e8b6],input[type=password].with-icon[data-v-79d1e8b6],input[type=search].with-icon[data-v-79d1e8b6],input[type=text].with-icon[data-v-79d1e8b6],input[type=time].with-icon[data-v-79d1e8b6]{padding-left:.3em}input[type=search][data-v-79d1e8b6],input[type=text][data-v-79d1e8b6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-79d1e8b6]{animation-fill-mode:both;animation-name:fadeIn-79d1e8b6;-webkit-animation-name:fadeIn-79d1e8b6}.fade-in[data-v-79d1e8b6],.fade-out[data-v-79d1e8b6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-79d1e8b6]{animation-fill-mode:both;animation-name:fadeOut-79d1e8b6;-webkit-animation-name:fadeOut-79d1e8b6}@keyframes fadeIn-79d1e8b6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-79d1e8b6{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-79d1e8b6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-79d1e8b6;-webkit-animation-name:glow-79d1e8b6}.loop[data-v-79d1e8b6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-79d1e8b6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-79d1e8b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-79d1e8b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-79d1e8b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-79d1e8b6]{color:#d21}.icon[data-v-79d1e8b6]{position:absolute;width:30px;height:30px;font-size:30px;background:rgba(0,0,0,.5);border-radius:.25em;color:#fff}.icon a[data-v-79d1e8b6]{width:100%;height:100%;color:#fff}.icon a[data-v-79d1e8b6]:hover{color:#35b870}.icon i[data-v-79d1e8b6]{margin:2.5px}.icon .fa-imdb[data-v-79d1e8b6]{position:absolute;top:0;margin:1px 2.5px 3px 2.5px}.icon .fa-youtube[data-v-79d1e8b6]{margin-left:1px}.imdb-link[data-v-79d1e8b6]{top:0;right:0}.bottom-overlay[data-v-79d1e8b6]{position:absolute;bottom:0;right:0;font-size:.9em;background:rgba(0,0,0,.5);color:#fff;padding:.25em .5em;border-radius:.25em}.type-icon[data-v-79d1e8b6]{top:0;left:0;font-size:25px}.image-container[data-v-79d1e8b6]{max-width:100%;min-height:200px;aspect-ratio:16/9;display:flex;justify-content:center;position:relative}.image-container.with-image[data-v-79d1e8b6]{background:#000}.image-container.with-image .icon[data-v-79d1e8b6]{background:none}.image-container.with-image .play-overlay[data-v-79d1e8b6]{border-radius:0}.image-container img[data-v-79d1e8b6]{height:100%}.image[data-v-79d1e8b6]{max-width:100%}div.image[data-v-79d1e8b6]{width:100%;color:#fff;font-size:5em;display:flex;align-items:center;justify-content:center}div.image .inner[data-v-79d1e8b6]{background:#d0dad8;border-radius:.5em}.play-overlay[data-v-79d1e8b6],div.image .inner[data-v-79d1e8b6]{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.play-overlay[data-v-79d1e8b6]{position:absolute;top:0;left:0;cursor:pointer;background:rgba(0,0,0,.5);border-radius:2em;opacity:0;transition:opacity .2s ease-in-out}.play-overlay[data-v-79d1e8b6]:hover{opacity:1}.play-overlay i[data-v-79d1e8b6]{font-size:5em;color:#fff}.col-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2bd8b847]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2bd8b847]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2bd8b847]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2bd8b847]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2bd8b847]:first-child{margin-left:26%!important}.col-offset-3[data-v-2bd8b847]:not(first-child){margin-left:30%!important}.col-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2bd8b847]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2bd8b847]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2bd8b847]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2bd8b847]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2bd8b847]:first-child{margin-left:52%!important}.col-offset-6[data-v-2bd8b847]:not(first-child){margin-left:56%!important}.col-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2bd8b847]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2bd8b847]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2bd8b847]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2bd8b847]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2bd8b847]:first-child{margin-left:78%!important}.col-offset-9[data-v-2bd8b847]:not(first-child){margin-left:82%!important}.col-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2bd8b847]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2bd8b847]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2bd8b847]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2bd8b847]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-1[data-v-2bd8b847]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-2[data-v-2bd8b847]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-3[data-v-2bd8b847]{margin-left:26%}.col-no-margin-s-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-4[data-v-2bd8b847]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-5[data-v-2bd8b847]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-6[data-v-2bd8b847]{margin-left:52%}.col-no-margin-s-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-7[data-v-2bd8b847]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-8[data-v-2bd8b847]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-9[data-v-2bd8b847]{margin-left:78%}.col-no-margin-s-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-10[data-v-2bd8b847]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-s-11[data-v-2bd8b847]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2bd8b847]{display:none!important}.s-visible[data-v-2bd8b847]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-1[data-v-2bd8b847]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-2[data-v-2bd8b847]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-3[data-v-2bd8b847]{margin-left:26%}.col-no-margin-m-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-4[data-v-2bd8b847]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-5[data-v-2bd8b847]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-6[data-v-2bd8b847]{margin-left:52%}.col-no-margin-m-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-7[data-v-2bd8b847]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-8[data-v-2bd8b847]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-9[data-v-2bd8b847]{margin-left:78%}.col-no-margin-m-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-10[data-v-2bd8b847]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-m-11[data-v-2bd8b847]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2bd8b847]{display:none!important}.m-visible[data-v-2bd8b847]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-1[data-v-2bd8b847]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-2[data-v-2bd8b847]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-3[data-v-2bd8b847]{margin-left:26%}.col-no-margin-l-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-4[data-v-2bd8b847]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-5[data-v-2bd8b847]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-6[data-v-2bd8b847]{margin-left:52%}.col-no-margin-l-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-7[data-v-2bd8b847]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-8[data-v-2bd8b847]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-9[data-v-2bd8b847]{margin-left:78%}.col-no-margin-l-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-10[data-v-2bd8b847]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-l-11[data-v-2bd8b847]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2bd8b847]{display:none!important}.l-visible[data-v-2bd8b847]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-1[data-v-2bd8b847]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-2[data-v-2bd8b847]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-3[data-v-2bd8b847]{margin-left:26%}.col-no-margin-xl-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-4[data-v-2bd8b847]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-5[data-v-2bd8b847]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-6[data-v-2bd8b847]{margin-left:52%}.col-no-margin-xl-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-7[data-v-2bd8b847]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-8[data-v-2bd8b847]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-9[data-v-2bd8b847]{margin-left:78%}.col-no-margin-xl-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-10[data-v-2bd8b847]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xl-11[data-v-2bd8b847]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2bd8b847]{display:none!important}.xl-visible[data-v-2bd8b847]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2bd8b847]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2bd8b847]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2bd8b847]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2bd8b847]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2bd8b847]{margin-left:26%}.col-no-margin-xxl-3[data-v-2bd8b847]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2bd8b847]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2bd8b847]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2bd8b847]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2bd8b847]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2bd8b847]{margin-left:52%}.col-no-margin-xxl-6[data-v-2bd8b847]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2bd8b847]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2bd8b847]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2bd8b847]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2bd8b847]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2bd8b847]{margin-left:78%}.col-no-margin-xxl-9[data-v-2bd8b847]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2bd8b847]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2bd8b847]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2bd8b847]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2bd8b847]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2bd8b847]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2bd8b847]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2bd8b847]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2bd8b847]{display:none!important}.xxl-visible[data-v-2bd8b847]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2bd8b847]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2bd8b847]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2bd8b847]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2bd8b847]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2bd8b847]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2bd8b847]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2bd8b847]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2bd8b847]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2bd8b847]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2bd8b847]{display:none!important}}.vertical-center[data-v-2bd8b847]{display:flex;align-items:center}.horizontal-center[data-v-2bd8b847]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2bd8b847]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2bd8b847]{display:none!important}.no-content[data-v-2bd8b847]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2bd8b847]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2bd8b847]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2bd8b847]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2bd8b847]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2bd8b847]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2bd8b847]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2bd8b847],.btn[data-v-2bd8b847],button[data-v-2bd8b847]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2bd8b847],.btn-default[type=submit][data-v-2bd8b847],.btn.btn-primary[data-v-2bd8b847],.btn[type=submit][data-v-2bd8b847],button.btn-primary[data-v-2bd8b847],button[type=submit][data-v-2bd8b847]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-2bd8b847],.btn-default .icon[data-v-2bd8b847],button .icon[data-v-2bd8b847]{margin-right:.5em}input[type=password][data-v-2bd8b847],input[type=text][data-v-2bd8b847]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2bd8b847]:focus,input[type=text][data-v-2bd8b847]:focus{border:1px solid #35b870}button[data-v-2bd8b847],input[data-v-2bd8b847]{outline:none}input[type=text][data-v-2bd8b847]:hover,textarea[data-v-2bd8b847]:hover{border:1px solid #9cdfb0}ul[data-v-2bd8b847]{margin:0;padding:0;list-style:none}a[data-v-2bd8b847]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2bd8b847]:hover{color:#35b870}[data-v-2bd8b847]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2bd8b847]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2bd8b847]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2bd8b847]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-2bd8b847]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2bd8b847] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2bd8b847] .nav .path{cursor:pointer}.browser[data-v-2bd8b847] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2bd8b847] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-2bd8b847]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2bd8b847],input[type=number][data-v-2bd8b847],input[type=password][data-v-2bd8b847],input[type=search][data-v-2bd8b847],input[type=text][data-v-2bd8b847],input[type=time][data-v-2bd8b847]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-2bd8b847]:hover,input[type=number][data-v-2bd8b847]:hover,input[type=password][data-v-2bd8b847]:hover,input[type=search][data-v-2bd8b847]:hover,input[type=text][data-v-2bd8b847]:hover,input[type=time][data-v-2bd8b847]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2bd8b847]:focus,input[type=number][data-v-2bd8b847]:focus,input[type=password][data-v-2bd8b847]:focus,input[type=search][data-v-2bd8b847]:focus,input[type=text][data-v-2bd8b847]:focus,input[type=time][data-v-2bd8b847]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2bd8b847],input[type=number].with-icon[data-v-2bd8b847],input[type=password].with-icon[data-v-2bd8b847],input[type=search].with-icon[data-v-2bd8b847],input[type=text].with-icon[data-v-2bd8b847],input[type=time].with-icon[data-v-2bd8b847]{padding-left:.3em}input[type=search][data-v-2bd8b847],input[type=text][data-v-2bd8b847]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2bd8b847]{animation-fill-mode:both;animation-name:fadeIn-2bd8b847;-webkit-animation-name:fadeIn-2bd8b847}.fade-in[data-v-2bd8b847],.fade-out[data-v-2bd8b847]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2bd8b847]{animation-fill-mode:both;animation-name:fadeOut-2bd8b847;-webkit-animation-name:fadeOut-2bd8b847}@keyframes fadeIn-2bd8b847{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2bd8b847{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-2bd8b847]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2bd8b847;-webkit-animation-name:glow-2bd8b847}.loop[data-v-2bd8b847]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2bd8b847{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2bd8b847]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2bd8b847]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2bd8b847]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-2bd8b847]{color:#d21}.media-info[data-v-2bd8b847]{width:100%}.row[data-v-2bd8b847]{display:flex;min-height:3em;padding:.5em 1em}@media screen and (max-width:calc(769px - 1px)){.row[data-v-2bd8b847]{flex-direction:column}}@media screen and (min-width:769px){.row[data-v-2bd8b847]{align-items:center}}.row[data-v-2bd8b847]:not(:last-child){border-bottom:1px solid #ddd}.row[data-v-2bd8b847]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);border-radius:.5em}.row .side[data-v-2bd8b847]{align-items:center;display:inline-flex}.row .side.url[data-v-2bd8b847]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media screen and (max-width:calc(769px - 1px)){.row .side[data-v-2bd8b847]{display:flex}.row .side.left[data-v-2bd8b847]{font-weight:700}.row .side.right[data-v-2bd8b847]{justify-content:left}}@media screen and (min-width:769px){.row .side[data-v-2bd8b847]{display:inline-flex}.row .side.left[data-v-2bd8b847]{width:22%;margin-right:3%}.row .side.right[data-v-2bd8b847]{width:75%;justify-content:right}}.direct-url .right.side[data-v-2bd8b847]{position:relative}.direct-url .right.side button[data-v-2bd8b847]{background:none;border:none;padding:0;margin-left:1em}.direct-url .right.side button[data-v-2bd8b847]:hover{color:#35b870;cursor:pointer}.header[data-v-2bd8b847]{width:100%;display:flex;flex-direction:column;position:relative}@media screen and (min-width:1024px){.header .image-container .image-container[data-v-2bd8b847]{width:420px}}.header .title[data-v-2bd8b847]{width:100%;font-size:1.5em;font-weight:700;margin-top:.5em;text-align:center;overflow-wrap:break-word}@media screen and (min-width:1024px){.header .title[data-v-2bd8b847]{flex:1;padding-left:1em}}.header[data-v-2bd8b847]:hover{background:initial}.col-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-35130a9d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-35130a9d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-35130a9d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-35130a9d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-35130a9d]:first-child{margin-left:26%!important}.col-offset-3[data-v-35130a9d]:not(first-child){margin-left:30%!important}.col-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-35130a9d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-35130a9d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-35130a9d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-35130a9d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-35130a9d]:first-child{margin-left:52%!important}.col-offset-6[data-v-35130a9d]:not(first-child){margin-left:56%!important}.col-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-35130a9d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-35130a9d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-35130a9d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-35130a9d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-35130a9d]:first-child{margin-left:78%!important}.col-offset-9[data-v-35130a9d]:not(first-child){margin-left:82%!important}.col-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-35130a9d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-35130a9d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-35130a9d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-35130a9d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-1[data-v-35130a9d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-2[data-v-35130a9d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-3[data-v-35130a9d]{margin-left:26%}.col-no-margin-s-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-4[data-v-35130a9d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-5[data-v-35130a9d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-6[data-v-35130a9d]{margin-left:52%}.col-no-margin-s-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-7[data-v-35130a9d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-8[data-v-35130a9d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-9[data-v-35130a9d]{margin-left:78%}.col-no-margin-s-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-10[data-v-35130a9d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-35130a9d]:first-child{margin-left:0}.col-offset-s-11[data-v-35130a9d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-35130a9d]{display:none!important}.s-visible[data-v-35130a9d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-1[data-v-35130a9d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-2[data-v-35130a9d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-3[data-v-35130a9d]{margin-left:26%}.col-no-margin-m-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-4[data-v-35130a9d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-5[data-v-35130a9d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-6[data-v-35130a9d]{margin-left:52%}.col-no-margin-m-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-7[data-v-35130a9d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-8[data-v-35130a9d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-9[data-v-35130a9d]{margin-left:78%}.col-no-margin-m-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-10[data-v-35130a9d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-35130a9d]:first-child{margin-left:0}.col-offset-m-11[data-v-35130a9d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-35130a9d]{display:none!important}.m-visible[data-v-35130a9d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-1[data-v-35130a9d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-2[data-v-35130a9d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-3[data-v-35130a9d]{margin-left:26%}.col-no-margin-l-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-4[data-v-35130a9d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-5[data-v-35130a9d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-6[data-v-35130a9d]{margin-left:52%}.col-no-margin-l-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-7[data-v-35130a9d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-8[data-v-35130a9d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-9[data-v-35130a9d]{margin-left:78%}.col-no-margin-l-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-10[data-v-35130a9d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-35130a9d]:first-child{margin-left:0}.col-offset-l-11[data-v-35130a9d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-35130a9d]{display:none!important}.l-visible[data-v-35130a9d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-1[data-v-35130a9d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-2[data-v-35130a9d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-3[data-v-35130a9d]{margin-left:26%}.col-no-margin-xl-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-4[data-v-35130a9d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-5[data-v-35130a9d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-6[data-v-35130a9d]{margin-left:52%}.col-no-margin-xl-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-7[data-v-35130a9d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-8[data-v-35130a9d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-9[data-v-35130a9d]{margin-left:78%}.col-no-margin-xl-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-10[data-v-35130a9d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xl-11[data-v-35130a9d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-35130a9d]{display:none!important}.xl-visible[data-v-35130a9d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-35130a9d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-35130a9d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-35130a9d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-35130a9d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-35130a9d]{margin-left:26%}.col-no-margin-xxl-3[data-v-35130a9d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-35130a9d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-35130a9d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-35130a9d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-35130a9d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-35130a9d]{margin-left:52%}.col-no-margin-xxl-6[data-v-35130a9d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-35130a9d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-35130a9d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-35130a9d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-35130a9d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-35130a9d]{margin-left:78%}.col-no-margin-xxl-9[data-v-35130a9d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-35130a9d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-35130a9d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-35130a9d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-35130a9d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-35130a9d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-35130a9d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-35130a9d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-35130a9d]{display:none!important}.xxl-visible[data-v-35130a9d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-35130a9d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-35130a9d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-35130a9d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-35130a9d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-35130a9d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-35130a9d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-35130a9d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-35130a9d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-35130a9d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-35130a9d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-35130a9d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-35130a9d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-35130a9d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-35130a9d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-35130a9d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-35130a9d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-35130a9d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-35130a9d]{display:none!important}}.vertical-center[data-v-35130a9d]{display:flex;align-items:center}.horizontal-center[data-v-35130a9d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-35130a9d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-35130a9d]{display:none!important}.no-content[data-v-35130a9d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-35130a9d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-35130a9d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-35130a9d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-35130a9d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-35130a9d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-35130a9d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-35130a9d],.btn[data-v-35130a9d],button[data-v-35130a9d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-35130a9d],.btn-default[type=submit][data-v-35130a9d],.btn.btn-primary[data-v-35130a9d],.btn[type=submit][data-v-35130a9d],button.btn-primary[data-v-35130a9d],button[type=submit][data-v-35130a9d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-35130a9d],.btn-default .icon[data-v-35130a9d],button .icon[data-v-35130a9d]{margin-right:.5em}input[type=password][data-v-35130a9d],input[type=text][data-v-35130a9d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-35130a9d]:focus,input[type=text][data-v-35130a9d]:focus{border:1px solid #35b870}button[data-v-35130a9d],input[data-v-35130a9d]{outline:none}input[type=text][data-v-35130a9d]:hover,textarea[data-v-35130a9d]:hover{border:1px solid #9cdfb0}ul[data-v-35130a9d]{margin:0;padding:0;list-style:none}a[data-v-35130a9d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-35130a9d]:hover{color:#35b870}[data-v-35130a9d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-35130a9d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-35130a9d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-35130a9d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-35130a9d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-35130a9d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-35130a9d] .nav .path{cursor:pointer}.browser[data-v-35130a9d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-35130a9d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-35130a9d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-35130a9d],input[type=number][data-v-35130a9d],input[type=password][data-v-35130a9d],input[type=search][data-v-35130a9d],input[type=text][data-v-35130a9d],input[type=time][data-v-35130a9d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-35130a9d]:hover,input[type=number][data-v-35130a9d]:hover,input[type=password][data-v-35130a9d]:hover,input[type=search][data-v-35130a9d]:hover,input[type=text][data-v-35130a9d]:hover,input[type=time][data-v-35130a9d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-35130a9d]:focus,input[type=number][data-v-35130a9d]:focus,input[type=password][data-v-35130a9d]:focus,input[type=search][data-v-35130a9d]:focus,input[type=text][data-v-35130a9d]:focus,input[type=time][data-v-35130a9d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-35130a9d],input[type=number].with-icon[data-v-35130a9d],input[type=password].with-icon[data-v-35130a9d],input[type=search].with-icon[data-v-35130a9d],input[type=text].with-icon[data-v-35130a9d],input[type=time].with-icon[data-v-35130a9d]{padding-left:.3em}input[type=search][data-v-35130a9d],input[type=text][data-v-35130a9d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-35130a9d]{animation-fill-mode:both;animation-name:fadeIn-35130a9d;-webkit-animation-name:fadeIn-35130a9d}.fade-in[data-v-35130a9d],.fade-out[data-v-35130a9d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-35130a9d]{animation-fill-mode:both;animation-name:fadeOut-35130a9d;-webkit-animation-name:fadeOut-35130a9d}@keyframes fadeIn-35130a9d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-35130a9d{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-35130a9d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-35130a9d;-webkit-animation-name:glow-35130a9d}.loop[data-v-35130a9d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-35130a9d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-35130a9d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-35130a9d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-35130a9d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-35130a9d]{color:#d21}.media-item[data-v-35130a9d]{display:flex;flex-direction:column;align-items:center;max-height:23.5em;height:100%;cursor:auto!important;margin-bottom:5px;border:1px solid transparent;border-bottom:1px solid transparent!important}.media-item.selected[data-v-35130a9d]{box-shadow:0 3px 2px -1px silver;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.media-item[data-v-35130a9d]:hover{background:none!important;box-shadow:0 0 3px 3px silver;border-radius:.5em}.media-item .thumbnail[data-v-35130a9d]{max-width:100%}.media-item .body[data-v-35130a9d]{width:100%;display:flex;flex-direction:column;align-items:center}.media-item .body .row[data-v-35130a9d]{width:100%;display:flex;flex-direction:row;align-items:center}.media-item .title[data-v-35130a9d]{display:flex;align-items:center;font-size:1.1em;font-weight:700;padding:.5em 0;flex:1;cursor:pointer;overflow:hidden}.media-item .title[data-v-35130a9d]:hover{text-decoration:underline}.media-item .side[data-v-35130a9d]{display:inline-flex;align-items:center}.media-item .side.left[data-v-35130a9d]{max-height:3em;display:flex;align-items:flex-start;flex-direction:column;overflow:hidden;text-overflow:" [...]";margin-right:.5em}.media-item .side.right[data-v-35130a9d]{align-items:flex-end;margin-right:.5em}.media-item .side[data-v-35130a9d] .dropdown-container .item{flex-direction:row;box-shadow:none;cursor:pointer!important}.media-item .side[data-v-35130a9d] .dropdown-container .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important}.media-item .side[data-v-35130a9d] .dropdown-container button{border:0;padding:0;background:none;opacity:.7}.media-item .side[data-v-35130a9d] .dropdown-container button:hover{color:#38cf80}.media-item .subtitle[data-v-35130a9d]{font-size:.9em;color:#23513a;display:flex;align-items:center;margin-top:.5em;flex:1}.media-item .subtitle .channel[data-v-35130a9d]{display:flex;align-items:center}.media-item .subtitle .channel .channel-name[data-v-35130a9d]{display:inline-flex}.media-item .channel-image[data-v-35130a9d]{width:2em;height:2em;border-radius:50%;margin-right:.5em}.media-item .creation-date[data-v-35130a9d]{font-size:.85em;color:#23513a;flex:1}.col-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4a59b038]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4a59b038]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4a59b038]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4a59b038]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4a59b038]:first-child{margin-left:26%!important}.col-offset-3[data-v-4a59b038]:not(first-child){margin-left:30%!important}.col-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4a59b038]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4a59b038]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4a59b038]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4a59b038]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4a59b038]:first-child{margin-left:52%!important}.col-offset-6[data-v-4a59b038]:not(first-child){margin-left:56%!important}.col-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4a59b038]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4a59b038]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4a59b038]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4a59b038]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4a59b038]:first-child{margin-left:78%!important}.col-offset-9[data-v-4a59b038]:not(first-child){margin-left:82%!important}.col-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4a59b038]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4a59b038]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4a59b038]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4a59b038]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-1[data-v-4a59b038]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-2[data-v-4a59b038]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-3[data-v-4a59b038]{margin-left:26%}.col-no-margin-s-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-4[data-v-4a59b038]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-5[data-v-4a59b038]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-6[data-v-4a59b038]{margin-left:52%}.col-no-margin-s-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-7[data-v-4a59b038]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-8[data-v-4a59b038]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-9[data-v-4a59b038]{margin-left:78%}.col-no-margin-s-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-10[data-v-4a59b038]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4a59b038]:first-child{margin-left:0}.col-offset-s-11[data-v-4a59b038]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4a59b038]{display:none!important}.s-visible[data-v-4a59b038]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-1[data-v-4a59b038]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-2[data-v-4a59b038]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-3[data-v-4a59b038]{margin-left:26%}.col-no-margin-m-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-4[data-v-4a59b038]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-5[data-v-4a59b038]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-6[data-v-4a59b038]{margin-left:52%}.col-no-margin-m-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-7[data-v-4a59b038]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-8[data-v-4a59b038]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-9[data-v-4a59b038]{margin-left:78%}.col-no-margin-m-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-10[data-v-4a59b038]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4a59b038]:first-child{margin-left:0}.col-offset-m-11[data-v-4a59b038]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4a59b038]{display:none!important}.m-visible[data-v-4a59b038]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-1[data-v-4a59b038]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-2[data-v-4a59b038]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-3[data-v-4a59b038]{margin-left:26%}.col-no-margin-l-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-4[data-v-4a59b038]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-5[data-v-4a59b038]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-6[data-v-4a59b038]{margin-left:52%}.col-no-margin-l-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-7[data-v-4a59b038]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-8[data-v-4a59b038]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-9[data-v-4a59b038]{margin-left:78%}.col-no-margin-l-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-10[data-v-4a59b038]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4a59b038]:first-child{margin-left:0}.col-offset-l-11[data-v-4a59b038]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4a59b038]{display:none!important}.l-visible[data-v-4a59b038]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-1[data-v-4a59b038]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-2[data-v-4a59b038]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-3[data-v-4a59b038]{margin-left:26%}.col-no-margin-xl-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-4[data-v-4a59b038]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-5[data-v-4a59b038]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-6[data-v-4a59b038]{margin-left:52%}.col-no-margin-xl-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-7[data-v-4a59b038]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-8[data-v-4a59b038]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-9[data-v-4a59b038]{margin-left:78%}.col-no-margin-xl-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-10[data-v-4a59b038]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xl-11[data-v-4a59b038]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4a59b038]{display:none!important}.xl-visible[data-v-4a59b038]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4a59b038]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4a59b038]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4a59b038]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4a59b038]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4a59b038]{margin-left:26%}.col-no-margin-xxl-3[data-v-4a59b038]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4a59b038]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4a59b038]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4a59b038]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4a59b038]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4a59b038]{margin-left:52%}.col-no-margin-xxl-6[data-v-4a59b038]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4a59b038]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4a59b038]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4a59b038]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4a59b038]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4a59b038]{margin-left:78%}.col-no-margin-xxl-9[data-v-4a59b038]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4a59b038]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4a59b038]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4a59b038]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4a59b038]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4a59b038]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4a59b038]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4a59b038]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4a59b038]{display:none!important}.xxl-visible[data-v-4a59b038]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4a59b038]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4a59b038]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4a59b038]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4a59b038]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4a59b038]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4a59b038]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4a59b038]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4a59b038]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4a59b038]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4a59b038]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4a59b038]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4a59b038]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4a59b038]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4a59b038]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4a59b038]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4a59b038]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4a59b038]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4a59b038]{display:none!important}}.vertical-center[data-v-4a59b038]{display:flex;align-items:center}.horizontal-center[data-v-4a59b038]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4a59b038]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4a59b038]{display:none!important}.no-content[data-v-4a59b038]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4a59b038]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4a59b038]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4a59b038]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4a59b038]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4a59b038]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4a59b038]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4a59b038],.btn[data-v-4a59b038],button[data-v-4a59b038]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4a59b038],.btn-default[type=submit][data-v-4a59b038],.btn.btn-primary[data-v-4a59b038],.btn[type=submit][data-v-4a59b038],button.btn-primary[data-v-4a59b038],button[type=submit][data-v-4a59b038]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4a59b038],.btn-default .icon[data-v-4a59b038],button .icon[data-v-4a59b038]{margin-right:.5em}input[type=password][data-v-4a59b038],input[type=text][data-v-4a59b038]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4a59b038]:focus,input[type=text][data-v-4a59b038]:focus{border:1px solid #35b870}button[data-v-4a59b038],input[data-v-4a59b038]{outline:none}input[type=text][data-v-4a59b038]:hover,textarea[data-v-4a59b038]:hover{border:1px solid #9cdfb0}ul[data-v-4a59b038]{margin:0;padding:0;list-style:none}a[data-v-4a59b038]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4a59b038]:hover{color:#35b870}[data-v-4a59b038]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4a59b038]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4a59b038]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4a59b038]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4a59b038]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4a59b038] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4a59b038] .nav .path{cursor:pointer}.browser[data-v-4a59b038] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4a59b038] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4a59b038]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4a59b038],input[type=number][data-v-4a59b038],input[type=password][data-v-4a59b038],input[type=search][data-v-4a59b038],input[type=text][data-v-4a59b038],input[type=time][data-v-4a59b038]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4a59b038]:hover,input[type=number][data-v-4a59b038]:hover,input[type=password][data-v-4a59b038]:hover,input[type=search][data-v-4a59b038]:hover,input[type=text][data-v-4a59b038]:hover,input[type=time][data-v-4a59b038]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4a59b038]:focus,input[type=number][data-v-4a59b038]:focus,input[type=password][data-v-4a59b038]:focus,input[type=search][data-v-4a59b038]:focus,input[type=text][data-v-4a59b038]:focus,input[type=time][data-v-4a59b038]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4a59b038],input[type=number].with-icon[data-v-4a59b038],input[type=password].with-icon[data-v-4a59b038],input[type=search].with-icon[data-v-4a59b038],input[type=text].with-icon[data-v-4a59b038],input[type=time].with-icon[data-v-4a59b038]{padding-left:.3em}input[type=search][data-v-4a59b038],input[type=text][data-v-4a59b038]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4a59b038]{animation-fill-mode:both;animation-name:fadeIn-4a59b038;-webkit-animation-name:fadeIn-4a59b038}.fade-in[data-v-4a59b038],.fade-out[data-v-4a59b038]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4a59b038]{animation-fill-mode:both;animation-name:fadeOut-4a59b038;-webkit-animation-name:fadeOut-4a59b038}@keyframes fadeIn-4a59b038{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4a59b038{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-4a59b038]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4a59b038;-webkit-animation-name:glow-4a59b038}.loop[data-v-4a59b038]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4a59b038{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4a59b038]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4a59b038]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4a59b038]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-4a59b038]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-4a59b038]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-4a59b038]{background:#8fefb7}.item.selected[data-v-4a59b038]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-4a59b038]{border-top:2px solid #35b870}.item[data-v-4a59b038]::-moz-selection{background:transparent!important}.item[data-v-4a59b038]::selection{background:transparent!important}.item .title[data-v-4a59b038]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-4a59b038]{display:inline-flex;align-items:center}.item .side.right[data-v-4a59b038]{display:inline-flex;justify-content:right}.item .actions[data-v-4a59b038],.item .duration[data-v-4a59b038]{display:inline-flex;align-items:center}.item .duration[data-v-4a59b038]{font-size:.85em;opacity:.7}.item .actions[data-v-4a59b038] button{opacity:.65}.item .icon[data-v-4a59b038]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-4a59b038] .dropdown-container .item{box-shadow:none}.item[data-v-4a59b038] .dropdown-container button{background:none;border:none}.item[data-v-4a59b038] .dropdown-container button:hover{color:#35b870}[data-v-4a59b038] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-4a59b038] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-4a59b038] .table-row{flex-direction:row;align-items:center}}[data-v-4a59b038] .table-row .title,[data-v-4a59b038] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-4a59b038] .table-row .title,[data-v-4a59b038] .table-row .value{display:inline-flex}}[data-v-4a59b038] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-4a59b038] .table-row .title{width:30%}[data-v-4a59b038] .table-row .value{justify-content:right}}.fa-youtube[data-v-4a59b038]{color:#d21}.media-results[data-v-4a59b038]{width:100%;height:100%;background:#fff;position:relative}.media-results .grid[data-v-4a59b038]{height:100%;overflow:auto}.media-results .info-container[data-v-4a59b038]{width:100%;cursor:auto}.flag-icon,.flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.flag-icon{position:relative;display:inline-block;width:1.33333333em;line-height:1em}.flag-icon:before{content:"\00a0"}.flag-icon.flag-icon-squared{width:1em}.flag-icon-ad{background-image:url(/static/img/ad.fa8477e6.svg)}.flag-icon-ad.flag-icon-squared{background-image:url(/static/img/ad.cb33f69a.svg)}.flag-icon-ae{background-image:url(/static/img/ae.a3f5e295.svg)}.flag-icon-ae.flag-icon-squared{background-image:url(/static/img/ae.f06e0095.svg)}.flag-icon-af{background-image:url(/static/img/af.89591ab0.svg)}.flag-icon-af.flag-icon-squared{background-image:url(/static/img/af.8ca96393.svg)}.flag-icon-ag{background-image:url(/static/img/ag.4c37bc2e.svg)}.flag-icon-ag.flag-icon-squared{background-image:url(/static/img/ag.56074d55.svg)}.flag-icon-ai{background-image:url(/static/img/ai.893d1179.svg)}.flag-icon-ai.flag-icon-squared{background-image:url(/static/img/ai.70eefdc0.svg)}.flag-icon-al{background-image:url(/static/img/al.e0864b5d.svg)}.flag-icon-al.flag-icon-squared{background-image:url(/static/img/al.b16acdb2.svg)}.flag-icon-am{background-image:url(/static/img/am.00f0fec4.svg)}.flag-icon-am.flag-icon-squared{background-image:url(/static/img/am.a566904f.svg)}.flag-icon-ao{background-image:url(/static/img/ao.3df23f21.svg)}.flag-icon-ao.flag-icon-squared{background-image:url(/static/img/ao.c0c32201.svg)}.flag-icon-aq{background-image:url(/static/img/aq.aa242c4a.svg)}.flag-icon-aq.flag-icon-squared{background-image:url(/static/img/aq.1b8c45a6.svg)}.flag-icon-ar{background-image:url(/static/img/ar.d3238270.svg)}.flag-icon-ar.flag-icon-squared{background-image:url(/static/img/ar.22a3116e.svg)}.flag-icon-as{background-image:url(/static/img/as.10ed1a23.svg)}.flag-icon-as.flag-icon-squared{background-image:url(/static/img/as.4a330654.svg)}.flag-icon-at{background-image:url(/static/img/at.02a64279.svg)}.flag-icon-at.flag-icon-squared{background-image:url(/static/img/at.94cde74c.svg)}.flag-icon-au{background-image:url(/static/img/au.cc65fc07.svg)}.flag-icon-au.flag-icon-squared{background-image:url(/static/img/au.dbcdef2c.svg)}.flag-icon-aw{background-image:url(/static/img/aw.abbad4ac.svg)}.flag-icon-aw.flag-icon-squared{background-image:url(/static/img/aw.be4540eb.svg)}.flag-icon-ax{background-image:url(/static/img/ax.91eea523.svg)}.flag-icon-ax.flag-icon-squared{background-image:url(/static/img/ax.371c7af2.svg)}.flag-icon-az{background-image:url(/static/img/az.0e2f1d1a.svg)}.flag-icon-az.flag-icon-squared{background-image:url(/static/img/az.f399f1c8.svg)}.flag-icon-ba{background-image:url(/static/img/ba.032070d4.svg)}.flag-icon-ba.flag-icon-squared{background-image:url(/static/img/ba.e167b08f.svg)}.flag-icon-bb{background-image:url(/static/img/bb.23a15e67.svg)}.flag-icon-bb.flag-icon-squared{background-image:url(/static/img/bb.b800513b.svg)}.flag-icon-bd{background-image:url(/static/img/bd.c4a5f0e2.svg)}.flag-icon-bd.flag-icon-squared{background-image:url(/static/img/bd.c1abcb00.svg)}.flag-icon-be{background-image:url(/static/img/be.29774a37.svg)}.flag-icon-be.flag-icon-squared{background-image:url(/static/img/be.3eb14701.svg)}.flag-icon-bf{background-image:url(/static/img/bf.4ffd5dc6.svg)}.flag-icon-bf.flag-icon-squared{background-image:url(/static/img/bf.2334e919.svg)}.flag-icon-bg{background-image:url(/static/img/bg.700f100c.svg)}.flag-icon-bg.flag-icon-squared{background-image:url(/static/img/bg.d0a49130.svg)}.flag-icon-bh{background-image:url(/static/img/bh.2a884f6c.svg)}.flag-icon-bh.flag-icon-squared{background-image:url(/static/img/bh.3968dfe0.svg)}.flag-icon-bi{background-image:url(/static/img/bi.ae3bb248.svg)}.flag-icon-bi.flag-icon-squared{background-image:url(/static/img/bi.211d0f9e.svg)}.flag-icon-bj{background-image:url(/static/img/bj.aba95ad2.svg)}.flag-icon-bj.flag-icon-squared{background-image:url(/static/img/bj.2cdc8a62.svg)}.flag-icon-bl{background-image:url(/static/img/bl.04966866.svg)}.flag-icon-bl.flag-icon-squared{background-image:url(/static/img/bl.3e69e968.svg)}.flag-icon-bm{background-image:url(/static/img/bm.e6903c8e.svg)}.flag-icon-bm.flag-icon-squared{background-image:url(/static/img/bm.e69e40c4.svg)}.flag-icon-bn{background-image:url(/static/img/bn.4d91734a.svg)}.flag-icon-bn.flag-icon-squared{background-image:url(/static/img/bn.07911e0c.svg)}.flag-icon-bo{background-image:url(/static/img/bo.03595499.svg)}.flag-icon-bo.flag-icon-squared{background-image:url(/static/img/bo.9c1d9ef8.svg)}.flag-icon-bq{background-image:url(/static/img/bq.747d8177.svg)}.flag-icon-bq.flag-icon-squared{background-image:url(/static/img/bq.b9355bec.svg)}.flag-icon-br,.flag-icon-pb{background-image:url(/static/img/br.fe030c1c.svg)}.flag-icon-br.flag-icon-squared,.flag-icon-pb.flag-icon-squared{background-image:url(/static/img/br.058a5086.svg)}.flag-icon-bs{background-image:url(/static/img/bs.ef0a29ed.svg)}.flag-icon-bs.flag-icon-squared{background-image:url(/static/img/bs.d228cbb2.svg)}.flag-icon-bt{background-image:url(/static/img/bt.fc241981.svg)}.flag-icon-bt.flag-icon-squared{background-image:url(/static/img/bt.3f8ecb9b.svg)}.flag-icon-bv{background-image:url(/static/img/bv.7f7cd26f.svg)}.flag-icon-bv.flag-icon-squared{background-image:url(/static/img/bv.5503f03a.svg)}.flag-icon-bw{background-image:url(/static/img/bw.b767df8c.svg)}.flag-icon-bw.flag-icon-squared{background-image:url(/static/img/bw.494aae64.svg)}.flag-icon-by{background-image:url(/static/img/by.fba98c48.svg)}.flag-icon-by.flag-icon-squared{background-image:url(/static/img/by.78d2c3c9.svg)}.flag-icon-bz{background-image:url(/static/img/bz.5e0ef548.svg)}.flag-icon-bz.flag-icon-squared{background-image:url(/static/img/bz.14c3376a.svg)}.flag-icon-ca{background-image:url(/static/img/ca.a2ab234d.svg)}.flag-icon-ca.flag-icon-squared{background-image:url(/static/img/ca.163ac200.svg)}.flag-icon-cc{background-image:url(/static/img/cc.813adff8.svg)}.flag-icon-cc.flag-icon-squared{background-image:url(/static/img/cc.51960f85.svg)}.flag-icon-cd{background-image:url(/static/img/cd.39186ec2.svg)}.flag-icon-cd.flag-icon-squared{background-image:url(/static/img/cd.b4bd46ee.svg)}.flag-icon-cf{background-image:url(/static/img/cf.b5702729.svg)}.flag-icon-cf.flag-icon-squared{background-image:url(/static/img/cf.fe1120e9.svg)}.flag-icon-cg{background-image:url(/static/img/cg.12414c99.svg)}.flag-icon-cg.flag-icon-squared{background-image:url(/static/img/cg.00603842.svg)}.flag-icon-ch{background-image:url(/static/img/ch.a558d859.svg)}.flag-icon-ch.flag-icon-squared{background-image:url(/static/img/ch.7376c9c3.svg)}.flag-icon-ci{background-image:url(/static/img/ci.1251a8e3.svg)}.flag-icon-ci.flag-icon-squared{background-image:url(/static/img/ci.425a24c2.svg)}.flag-icon-ck{background-image:url(/static/img/ck.6303aa5b.svg)}.flag-icon-ck.flag-icon-squared{background-image:url(/static/img/ck.4e83dd3e.svg)}.flag-icon-cl{background-image:url(/static/img/cl.b5974a35.svg)}.flag-icon-cl.flag-icon-squared{background-image:url(/static/img/cl.0917a91e.svg)}.flag-icon-cm{background-image:url(/static/img/cm.853e2843.svg)}.flag-icon-cm.flag-icon-squared{background-image:url(/static/img/cm.253adb39.svg)}.flag-icon-cn,.flag-icon-zh{background-image:url(/static/img/cn.e1b166eb.svg)}.flag-icon-cn.flag-icon-squared,.flag-icon-zh.flag-icon-squared{background-image:url(/static/img/cn.38f63e1e.svg)}.flag-icon-co{background-image:url(/static/img/co.b5cbc817.svg)}.flag-icon-co.flag-icon-squared{background-image:url(/static/img/co.33e249d8.svg)}.flag-icon-cr{background-image:url(/static/img/cr.2e572846.svg)}.flag-icon-cr.flag-icon-squared{background-image:url(/static/img/cr.336eb7d3.svg)}.flag-icon-cu{background-image:url(/static/img/cu.d6e33f19.svg)}.flag-icon-cu.flag-icon-squared{background-image:url(/static/img/cu.c2a6f0ed.svg)}.flag-icon-cv{background-image:url(/static/img/cv.5ea64968.svg)}.flag-icon-cv.flag-icon-squared{background-image:url(/static/img/cv.b3ab83f5.svg)}.flag-icon-cw{background-image:url(/static/img/cw.0e14b0b7.svg)}.flag-icon-cw.flag-icon-squared{background-image:url(/static/img/cw.9b9b7ed5.svg)}.flag-icon-cx{background-image:url(/static/img/cx.e04e07e8.svg)}.flag-icon-cx.flag-icon-squared{background-image:url(/static/img/cx.da5de6d2.svg)}.flag-icon-cy{background-image:url(/static/img/cy.bfcfd736.svg)}.flag-icon-cy.flag-icon-squared{background-image:url(/static/img/cy.834e6240.svg)}.flag-icon-cs,.flag-icon-cz{background-image:url(/static/img/cz.b5f98a6b.svg)}.flag-icon-cs.flag-icon-squared,.flag-icon-cz.flag-icon-squared{background-image:url(/static/img/cz.aa114964.svg)}.flag-icon-de{background-image:url(/static/img/de.8e159e6e.svg)}.flag-icon-de.flag-icon-squared{background-image:url(/static/img/de.b827ac51.svg)}.flag-icon-dj{background-image:url(/static/img/dj.4197a18a.svg)}.flag-icon-dj.flag-icon-squared{background-image:url(/static/img/dj.925748d5.svg)}.flag-icon-dk{background-image:url(/static/img/dk.3ca1caed.svg)}.flag-icon-dk.flag-icon-squared{background-image:url(/static/img/dk.a867eeef.svg)}.flag-icon-dm{background-image:url(/static/img/dm.bca6d70c.svg)}.flag-icon-dm.flag-icon-squared{background-image:url(/static/img/dm.7ddb00ac.svg)}.flag-icon-do{background-image:url(/static/img/do.954f0f3e.svg)}.flag-icon-do.flag-icon-squared{background-image:url(/static/img/do.81097daa.svg)}.flag-icon-dz{background-image:url(/static/img/dz.b7e2fbce.svg)}.flag-icon-dz.flag-icon-squared{background-image:url(/static/img/dz.76d47b01.svg)}.flag-icon-ec{background-image:url(/static/img/ec.5f387e2f.svg)}.flag-icon-ec.flag-icon-squared{background-image:url(/static/img/ec.0029f514.svg)}.flag-icon-ee{background-image:url(/static/img/ee.1b4839e0.svg)}.flag-icon-ee.flag-icon-squared{background-image:url(/static/img/ee.828384a8.svg)}.flag-icon-eg{background-image:url(/static/img/eg.38443fa6.svg)}.flag-icon-eg.flag-icon-squared{background-image:url(/static/img/eg.5756a758.svg)}.flag-icon-eh{background-image:url(/static/img/eh.f8d7b64f.svg)}.flag-icon-eh.flag-icon-squared{background-image:url(/static/img/eh.82bd1c7b.svg)}.flag-icon-er{background-image:url(/static/img/er.bf5b134b.svg)}.flag-icon-er.flag-icon-squared{background-image:url(/static/img/er.e932abe1.svg)}.flag-icon-es{background-image:url(/static/img/es.de5915e5.svg)}.flag-icon-es.flag-icon-squared{background-image:url(/static/img/es.7dd46df0.svg)}.flag-icon-et{background-image:url(/static/img/et.a998a1b2.svg)}.flag-icon-et.flag-icon-squared{background-image:url(/static/img/et.82e8eb21.svg)}.flag-icon-fi{background-image:url(/static/img/fi.3be6b378.svg)}.flag-icon-fi.flag-icon-squared{background-image:url(/static/img/fi.0cd85b78.svg)}.flag-icon-fj{background-image:url(/static/img/fj.ac9c916f.svg)}.flag-icon-fj.flag-icon-squared{background-image:url(/static/img/fj.e8d3e00b.svg)}.flag-icon-fk{background-image:url(/static/img/fk.af0350f8.svg)}.flag-icon-fk.flag-icon-squared{background-image:url(/static/img/fk.db55fa14.svg)}.flag-icon-fm{background-image:url(/static/img/fm.78d44caa.svg)}.flag-icon-fm.flag-icon-squared{background-image:url(/static/img/fm.3491efc7.svg)}.flag-icon-fo{background-image:url(/static/img/fo.72949ad1.svg)}.flag-icon-fo.flag-icon-squared{background-image:url(/static/img/fo.1da81e3a.svg)}.flag-icon-fr{background-image:url(/static/img/fr.9cb70285.svg)}.flag-icon-fr.flag-icon-squared{background-image:url(/static/img/fr.3565b8f4.svg)}.flag-icon-ga{background-image:url(/static/img/ga.59f7d865.svg)}.flag-icon-ga.flag-icon-squared{background-image:url(/static/img/ga.3e474381.svg)}.flag-icon-en,.flag-icon-gb{background-image:url(/static/img/gb.7a456bb2.svg)}.flag-icon-en.flag-icon-squared,.flag-icon-gb.flag-icon-squared{background-image:url(/static/img/gb.2aafb374.svg)}.flag-icon-gd{background-image:url(/static/img/gd.60b96978.svg)}.flag-icon-gd.flag-icon-squared{background-image:url(/static/img/gd.04ea09b7.svg)}.flag-icon-ge{background-image:url(/static/img/ge.b7b65b55.svg)}.flag-icon-ge.flag-icon-squared{background-image:url(/static/img/ge.c7190912.svg)}.flag-icon-gf{background-image:url(/static/img/gf.90f438a3.svg)}.flag-icon-gf.flag-icon-squared{background-image:url(/static/img/gf.531f9e07.svg)}.flag-icon-gg{background-image:url(/static/img/gg.3aebc3ce.svg)}.flag-icon-gg.flag-icon-squared{background-image:url(/static/img/gg.65174039.svg)}.flag-icon-gh{background-image:url(/static/img/gh.f2b6baac.svg)}.flag-icon-gh.flag-icon-squared{background-image:url(/static/img/gh.af443995.svg)}.flag-icon-gi{background-image:url(/static/img/gi.7beea6ed.svg)}.flag-icon-gi.flag-icon-squared{background-image:url(/static/img/gi.302c2506.svg)}.flag-icon-gl{background-image:url(/static/img/gl.551d0783.svg)}.flag-icon-gl.flag-icon-squared{background-image:url(/static/img/gl.6a5c17b0.svg)}.flag-icon-gm{background-image:url(/static/img/gm.0e00e9d4.svg)}.flag-icon-gm.flag-icon-squared{background-image:url(/static/img/gm.1724dc37.svg)}.flag-icon-gn{background-image:url(/static/img/gn.7c96520b.svg)}.flag-icon-gn.flag-icon-squared{background-image:url(/static/img/gn.54a75b28.svg)}.flag-icon-gp{background-image:url(/static/img/gp.4327060f.svg)}.flag-icon-gp.flag-icon-squared{background-image:url(/static/img/gp.f8adbf5c.svg)}.flag-icon-gq{background-image:url(/static/img/gq.bd7daf33.svg)}.flag-icon-gq.flag-icon-squared{background-image:url(/static/img/gq.b1679302.svg)}.flag-icon-el,.flag-icon-gr{background-image:url(/static/img/gr.07bedadf.svg)}.flag-icon-el.flag-icon-squared,.flag-icon-gr.flag-icon-squared{background-image:url(/static/img/gr.25dd3287.svg)}.flag-icon-gs{background-image:url(/static/img/gs.b2836676.svg)}.flag-icon-gs.flag-icon-squared{background-image:url(/static/img/gs.60368968.svg)}.flag-icon-gt{background-image:url(/static/img/gt.825f7286.svg)}.flag-icon-gt.flag-icon-squared{background-image:url(/static/img/gt.1a24ed67.svg)}.flag-icon-gu{background-image:url(/static/img/gu.19b114eb.svg)}.flag-icon-gu.flag-icon-squared{background-image:url(/static/img/gu.05f0ab85.svg)}.flag-icon-gw{background-image:url(/static/img/gw.c97f3f94.svg)}.flag-icon-gw.flag-icon-squared{background-image:url(/static/img/gw.bcd1eddb.svg)}.flag-icon-gy{background-image:url(/static/img/gy.e11d0234.svg)}.flag-icon-gy.flag-icon-squared{background-image:url(/static/img/gy.6327f72a.svg)}.flag-icon-hk{background-image:url(/static/img/hk.c72bba0e.svg)}.flag-icon-hk.flag-icon-squared{background-image:url(/static/img/hk.b199a9ee.svg)}.flag-icon-hm{background-image:url(/static/img/hm.d4b3d393.svg)}.flag-icon-hm.flag-icon-squared{background-image:url(/static/img/hm.4aa61657.svg)}.flag-icon-hn{background-image:url(/static/img/hn.08ad78b2.svg)}.flag-icon-hn.flag-icon-squared{background-image:url(/static/img/hn.44cee191.svg)}.flag-icon-hr{background-image:url(/static/img/hr.1f4e28b8.svg)}.flag-icon-hr.flag-icon-squared{background-image:url(/static/img/hr.078b1bf9.svg)}.flag-icon-ht{background-image:url(/static/img/ht.7ca68737.svg)}.flag-icon-ht.flag-icon-squared{background-image:url(/static/img/ht.6943447c.svg)}.flag-icon-hu{background-image:url(/static/img/hu.692e97ca.svg)}.flag-icon-hu.flag-icon-squared{background-image:url(/static/img/hu.b10d3f8e.svg)}.flag-icon-id{background-image:url(/static/img/id.a05dc04c.svg)}.flag-icon-id.flag-icon-squared{background-image:url(/static/img/id.94464e47.svg)}.flag-icon-ie{background-image:url(/static/img/ie.5154112a.svg)}.flag-icon-ie.flag-icon-squared{background-image:url(/static/img/ie.e23b25d1.svg)}.flag-icon-il{background-image:url(/static/img/il.e02a66d3.svg)}.flag-icon-il.flag-icon-squared{background-image:url(/static/img/il.150f4c5f.svg)}.flag-icon-im{background-image:url(/static/img/im.942419c5.svg)}.flag-icon-im.flag-icon-squared{background-image:url(/static/img/im.25166c91.svg)}.flag-icon-in{background-image:url(/static/img/in.954929a0.svg)}.flag-icon-in.flag-icon-squared{background-image:url(/static/img/in.bd0d4f19.svg)}.flag-icon-io{background-image:url(/static/img/io.a59923ab.svg)}.flag-icon-io.flag-icon-squared{background-image:url(/static/img/io.fa003484.svg)}.flag-icon-iq{background-image:url(/static/img/iq.1232a5c2.svg)}.flag-icon-iq.flag-icon-squared{background-image:url(/static/img/iq.9a48d678.svg)}.flag-icon-ir{background-image:url(/static/img/ir.1ed24953.svg)}.flag-icon-ir.flag-icon-squared{background-image:url(/static/img/ir.bc7ae9e1.svg)}.flag-icon-is{background-image:url(/static/img/is.cad57f19.svg)}.flag-icon-is.flag-icon-squared{background-image:url(/static/img/is.eea59326.svg)}.flag-icon-it{background-image:url(/static/img/it.e8516fc7.svg)}.flag-icon-it.flag-icon-squared{background-image:url(/static/img/it.039b4527.svg)}.flag-icon-je{background-image:url(/static/img/je.3ed72a25.svg)}.flag-icon-je.flag-icon-squared{background-image:url(/static/img/je.1684dacc.svg)}.flag-icon-jm{background-image:url(/static/img/jm.2357530e.svg)}.flag-icon-jm.flag-icon-squared{background-image:url(/static/img/jm.479f30fe.svg)}.flag-icon-jo{background-image:url(/static/img/jo.7ac45a65.svg)}.flag-icon-jo.flag-icon-squared{background-image:url(/static/img/jo.06fbaa2c.svg)}.flag-icon-jp{background-image:url(/static/img/jp.b6063838.svg)}.flag-icon-jp.flag-icon-squared{background-image:url(/static/img/jp.1795778c.svg)}.flag-icon-ke{background-image:url(/static/img/ke.6dbfffd5.svg)}.flag-icon-ke.flag-icon-squared{background-image:url(/static/img/ke.769bb975.svg)}.flag-icon-kg{background-image:url(/static/img/kg.daded53c.svg)}.flag-icon-kg.flag-icon-squared{background-image:url(/static/img/kg.96c12490.svg)}.flag-icon-kh{background-image:url(/static/img/kh.8eeb1634.svg)}.flag-icon-kh.flag-icon-squared{background-image:url(/static/img/kh.b10339d6.svg)}.flag-icon-ki{background-image:url(/static/img/ki.89e43a21.svg)}.flag-icon-ki.flag-icon-squared{background-image:url(/static/img/ki.033ff9ce.svg)}.flag-icon-km{background-image:url(/static/img/km.1e3bd5fe.svg)}.flag-icon-km.flag-icon-squared{background-image:url(/static/img/km.3ffb0228.svg)}.flag-icon-kn{background-image:url(/static/img/kn.0c16fe68.svg)}.flag-icon-kn.flag-icon-squared{background-image:url(/static/img/kn.8f2e7b29.svg)}.flag-icon-kp{background-image:url(/static/img/kp.0f5253d8.svg)}.flag-icon-kp.flag-icon-squared{background-image:url(/static/img/kp.f4ff9e76.svg)}.flag-icon-kr{background-image:url(/static/img/kr.0f5e1116.svg)}.flag-icon-kr.flag-icon-squared{background-image:url(/static/img/kr.0dc8b972.svg)}.flag-icon-kw{background-image:url(/static/img/kw.3b4f3ea3.svg)}.flag-icon-kw.flag-icon-squared{background-image:url(/static/img/kw.830d3755.svg)}.flag-icon-ky{background-image:url(/static/img/ky.e3b76b32.svg)}.flag-icon-ky.flag-icon-squared{background-image:url(/static/img/ky.be81d90b.svg)}.flag-icon-kz{background-image:url(/static/img/kz.579ac0f9.svg)}.flag-icon-kz.flag-icon-squared{background-image:url(/static/img/kz.32ac1036.svg)}.flag-icon-la{background-image:url(/static/img/la.e583f8ec.svg)}.flag-icon-la.flag-icon-squared{background-image:url(/static/img/la.f71017ef.svg)}.flag-icon-lb{background-image:url(/static/img/lb.bdbeb8f1.svg)}.flag-icon-lb.flag-icon-squared{background-image:url(/static/img/lb.8eea508a.svg)}.flag-icon-lc{background-image:url(/static/img/lc.68bd77ae.svg)}.flag-icon-lc.flag-icon-squared{background-image:url(/static/img/lc.25f644a6.svg)}.flag-icon-li{background-image:url(/static/img/li.8dc1ed79.svg)}.flag-icon-li.flag-icon-squared{background-image:url(/static/img/li.d7e2a871.svg)}.flag-icon-lk{background-image:url(/static/img/lk.42c41c61.svg)}.flag-icon-lk.flag-icon-squared{background-image:url(/static/img/lk.e52240d6.svg)}.flag-icon-lr{background-image:url(/static/img/lr.5b84ff00.svg)}.flag-icon-lr.flag-icon-squared{background-image:url(/static/img/lr.9a67cd3d.svg)}.flag-icon-ls{background-image:url(/static/img/ls.6d444cae.svg)}.flag-icon-ls.flag-icon-squared{background-image:url(/static/img/ls.fe1da403.svg)}.flag-icon-lt{background-image:url(/static/img/lt.b57ea2a8.svg)}.flag-icon-lt.flag-icon-squared{background-image:url(/static/img/lt.03a2e8c1.svg)}.flag-icon-lu{background-image:url(/static/img/lu.93878a1b.svg)}.flag-icon-lu.flag-icon-squared{background-image:url(/static/img/lu.e3bdc6d3.svg)}.flag-icon-lv{background-image:url(/static/img/lv.679c099e.svg)}.flag-icon-lv.flag-icon-squared{background-image:url(/static/img/lv.1853e3a0.svg)}.flag-icon-ly{background-image:url(/static/img/ly.05f8732e.svg)}.flag-icon-ly.flag-icon-squared{background-image:url(/static/img/ly.b9e750ff.svg)}.flag-icon-ma{background-image:url(/static/img/ma.65053fc4.svg)}.flag-icon-ma.flag-icon-squared{background-image:url(/static/img/ma.88ada30c.svg)}.flag-icon-mc{background-image:url(/static/img/mc.2c03ea5c.svg)}.flag-icon-mc.flag-icon-squared{background-image:url(/static/img/mc.89b532e8.svg)}.flag-icon-md{background-image:url(/static/img/md.646818c3.svg)}.flag-icon-md.flag-icon-squared{background-image:url(/static/img/md.a56562ee.svg)}.flag-icon-me{background-image:url(/static/img/me.f05548f2.svg)}.flag-icon-me.flag-icon-squared{background-image:url(/static/img/me.2e71b778.svg)}.flag-icon-mf{background-image:url(/static/img/mf.7da6b3d2.svg)}.flag-icon-mf.flag-icon-squared{background-image:url(/static/img/mf.70d09a4a.svg)}.flag-icon-mg{background-image:url(/static/img/mg.09ca17b2.svg)}.flag-icon-mg.flag-icon-squared{background-image:url(/static/img/mg.b3fff4a6.svg)}.flag-icon-mh{background-image:url(/static/img/mh.3fd69bb2.svg)}.flag-icon-mh.flag-icon-squared{background-image:url(/static/img/mh.f6cbc774.svg)}.flag-icon-mk{background-image:url(/static/img/mk.e5412079.svg)}.flag-icon-mk.flag-icon-squared{background-image:url(/static/img/mk.4234a248.svg)}.flag-icon-ml{background-image:url(/static/img/ml.4f0dba9e.svg)}.flag-icon-ml.flag-icon-squared{background-image:url(/static/img/ml.3fad079e.svg)}.flag-icon-mm{background-image:url(/static/img/mm.adaa2111.svg)}.flag-icon-mm.flag-icon-squared{background-image:url(/static/img/mm.8ac1f094.svg)}.flag-icon-mn{background-image:url(/static/img/mn.78547af0.svg)}.flag-icon-mn.flag-icon-squared{background-image:url(/static/img/mn.a4bcb0e6.svg)}.flag-icon-mo{background-image:url(/static/img/mo.c8198565.svg)}.flag-icon-mo.flag-icon-squared{background-image:url(/static/img/mo.2f0d2c15.svg)}.flag-icon-mp{background-image:url(/static/img/mp.eeeefff6.svg)}.flag-icon-mp.flag-icon-squared{background-image:url(/static/img/mp.2acb5506.svg)}.flag-icon-mq{background-image:url(/static/img/mq.145a7657.svg)}.flag-icon-mq.flag-icon-squared{background-image:url(/static/img/mq.bb36a8fc.svg)}.flag-icon-mr{background-image:url(/static/img/mr.dd34eae8.svg)}.flag-icon-mr.flag-icon-squared{background-image:url(/static/img/mr.e91e06ea.svg)}.flag-icon-ms{background-image:url(/static/img/ms.2025cd7d.svg)}.flag-icon-ms.flag-icon-squared{background-image:url(/static/img/ms.b13001dc.svg)}.flag-icon-mt{background-image:url(/static/img/mt.cff39ee0.svg)}.flag-icon-mt.flag-icon-squared{background-image:url(/static/img/mt.b6f71c85.svg)}.flag-icon-mu{background-image:url(/static/img/mu.51f71163.svg)}.flag-icon-mu.flag-icon-squared{background-image:url(/static/img/mu.a926c232.svg)}.flag-icon-mv{background-image:url(/static/img/mv.ba4de4fd.svg)}.flag-icon-mv.flag-icon-squared{background-image:url(/static/img/mv.2c8b92b5.svg)}.flag-icon-mw{background-image:url(/static/img/mw.0b005148.svg)}.flag-icon-mw.flag-icon-squared{background-image:url(/static/img/mw.f704f4bb.svg)}.flag-icon-mx{background-image:url(/static/img/mx.1b615ec2.svg)}.flag-icon-mx.flag-icon-squared{background-image:url(/static/img/mx.8a36b075.svg)}.flag-icon-my{background-image:url(/static/img/my.4109ae71.svg)}.flag-icon-my.flag-icon-squared{background-image:url(/static/img/my.69c87fc5.svg)}.flag-icon-mz{background-image:url(/static/img/mz.1377650b.svg)}.flag-icon-mz.flag-icon-squared{background-image:url(/static/img/mz.2c96acb1.svg)}.flag-icon-na{background-image:url(/static/img/na.e0503926.svg)}.flag-icon-na.flag-icon-squared{background-image:url(/static/img/na.7adf4344.svg)}.flag-icon-nc{background-image:url(/static/img/nc.96fa6a4b.svg)}.flag-icon-nc.flag-icon-squared{background-image:url(/static/img/nc.b5a5d41b.svg)}.flag-icon-ne{background-image:url(/static/img/ne.d11b82c6.svg)}.flag-icon-ne.flag-icon-squared{background-image:url(/static/img/ne.d4fe4faa.svg)}.flag-icon-nf{background-image:url(/static/img/nf.a7166b00.svg)}.flag-icon-nf.flag-icon-squared{background-image:url(/static/img/nf.1e8c700b.svg)}.flag-icon-ng{background-image:url(/static/img/ng.51059407.svg)}.flag-icon-ng.flag-icon-squared{background-image:url(/static/img/ng.c3b42ad2.svg)}.flag-icon-ni{background-image:url(/static/img/ni.5b80bac0.svg)}.flag-icon-ni.flag-icon-squared{background-image:url(/static/img/ni.cc7eb514.svg)}.flag-icon-nl{background-image:url(/static/img/nl.dd138444.svg)}.flag-icon-nl.flag-icon-squared{background-image:url(/static/img/nl.e415f0e7.svg)}.flag-icon-no{background-image:url(/static/img/no.70157234.svg)}.flag-icon-no.flag-icon-squared{background-image:url(/static/img/no.26996afa.svg)}.flag-icon-np{background-image:url(/static/img/np.954177a0.svg)}.flag-icon-np.flag-icon-squared{background-image:url(/static/img/np.f7b8a5c3.svg)}.flag-icon-nr{background-image:url(/static/img/nr.2c66d218.svg)}.flag-icon-nr.flag-icon-squared{background-image:url(/static/img/nr.a4f0e762.svg)}.flag-icon-nu{background-image:url(/static/img/nu.26551dc2.svg)}.flag-icon-nu.flag-icon-squared{background-image:url(/static/img/nu.860bbe8a.svg)}.flag-icon-nz{background-image:url(/static/img/nz.38d0d690.svg)}.flag-icon-nz.flag-icon-squared{background-image:url(/static/img/nz.c77ae58d.svg)}.flag-icon-om{background-image:url(/static/img/om.ff034f9e.svg)}.flag-icon-om.flag-icon-squared{background-image:url(/static/img/om.3f5691ca.svg)}.flag-icon-pa{background-image:url(/static/img/pa.6dc8212a.svg)}.flag-icon-pa.flag-icon-squared{background-image:url(/static/img/pa.acde3214.svg)}.flag-icon-pe{background-image:url(/static/img/pe.5a3b0bc5.svg)}.flag-icon-pe.flag-icon-squared{background-image:url(/static/img/pe.5c2ced95.svg)}.flag-icon-pf{background-image:url(/static/img/pf.9f06082b.svg)}.flag-icon-pf.flag-icon-squared{background-image:url(/static/img/pf.f6ae1bc8.svg)}.flag-icon-pg{background-image:url(/static/img/pg.26847b33.svg)}.flag-icon-pg.flag-icon-squared{background-image:url(/static/img/pg.66c8dc3b.svg)}.flag-icon-ph{background-image:url(/static/img/ph.12e2b123.svg)}.flag-icon-ph.flag-icon-squared{background-image:url(/static/img/ph.f215833e.svg)}.flag-icon-pk{background-image:url(/static/img/pk.0bbf58be.svg)}.flag-icon-pk.flag-icon-squared{background-image:url(/static/img/pk.32b55f6f.svg)}.flag-icon-pl{background-image:url(/static/img/pl.a1350f0c.svg)}.flag-icon-pl.flag-icon-squared{background-image:url(/static/img/pl.03886843.svg)}.flag-icon-pm{background-image:url(/static/img/pm.a5590fa3.svg)}.flag-icon-pm.flag-icon-squared{background-image:url(/static/img/pm.7a6beab5.svg)}.flag-icon-pn{background-image:url(/static/img/pn.715fd11d.svg)}.flag-icon-pn.flag-icon-squared{background-image:url(/static/img/pn.00a9342b.svg)}.flag-icon-pr{background-image:url(/static/img/pr.b37cbdc4.svg)}.flag-icon-pr.flag-icon-squared{background-image:url(/static/img/pr.391a48e2.svg)}.flag-icon-ps{background-image:url(/static/img/ps.96bcac74.svg)}.flag-icon-ps.flag-icon-squared{background-image:url(/static/img/ps.1af72ed4.svg)}.flag-icon-pt{background-image:url(/static/img/pt.351b87cb.svg)}.flag-icon-pt.flag-icon-squared{background-image:url(/static/img/pt.0703cc3a.svg)}.flag-icon-pw{background-image:url(/static/img/pw.17220ffb.svg)}.flag-icon-pw.flag-icon-squared{background-image:url(/static/img/pw.6d8e7ce0.svg)}.flag-icon-py{background-image:url(/static/img/py.c20318c9.svg)}.flag-icon-py.flag-icon-squared{background-image:url(/static/img/py.25cc39e3.svg)}.flag-icon-qa{background-image:url(/static/img/qa.86452d7a.svg)}.flag-icon-qa.flag-icon-squared{background-image:url(/static/img/qa.7e695788.svg)}.flag-icon-re{background-image:url(/static/img/re.b8140129.svg)}.flag-icon-re.flag-icon-squared{background-image:url(/static/img/re.cf143c2f.svg)}.flag-icon-ro{background-image:url(/static/img/ro.67f8501e.svg)}.flag-icon-ro.flag-icon-squared{background-image:url(/static/img/ro.cab93784.svg)}.flag-icon-rs{background-image:url(/static/img/rs.23638d75.svg)}.flag-icon-rs.flag-icon-squared{background-image:url(/static/img/rs.ae2e3422.svg)}.flag-icon-ru{background-image:url(/static/img/ru.edd8b008.svg)}.flag-icon-ru.flag-icon-squared{background-image:url(/static/img/ru.ccd50623.svg)}.flag-icon-rw{background-image:url(/static/img/rw.d118aacd.svg)}.flag-icon-rw.flag-icon-squared{background-image:url(/static/img/rw.87d5d899.svg)}.flag-icon-sa{background-image:url(/static/img/sa.f0a8997b.svg)}.flag-icon-sa.flag-icon-squared{background-image:url(/static/img/sa.5bfbe72b.svg)}.flag-icon-sb{background-image:url(/static/img/sb.1c406073.svg)}.flag-icon-sb.flag-icon-squared{background-image:url(/static/img/sb.b0db5b0a.svg)}.flag-icon-sc{background-image:url(/static/img/sc.cdc20672.svg)}.flag-icon-sc.flag-icon-squared{background-image:url(/static/img/sc.0452f14c.svg)}.flag-icon-sd{background-image:url(/static/img/sd.0e619868.svg)}.flag-icon-sd.flag-icon-squared{background-image:url(/static/img/sd.da3b68ee.svg)}.flag-icon-se{background-image:url(/static/img/se.7e499d82.svg)}.flag-icon-se.flag-icon-squared{background-image:url(/static/img/se.7ec71700.svg)}.flag-icon-sg{background-image:url(/static/img/sg.8a63b009.svg)}.flag-icon-sg.flag-icon-squared{background-image:url(/static/img/sg.4f0e8eff.svg)}.flag-icon-sh{background-image:url(/static/img/sh.46e2588d.svg)}.flag-icon-sh.flag-icon-squared{background-image:url(/static/img/sh.681f8fff.svg)}.flag-icon-si{background-image:url(/static/img/si.2a428364.svg)}.flag-icon-si.flag-icon-squared{background-image:url(/static/img/si.d9d425c0.svg)}.flag-icon-sj{background-image:url(/static/img/sj.92c583b8.svg)}.flag-icon-sj.flag-icon-squared{background-image:url(/static/img/sj.638e6522.svg)}.flag-icon-sk{background-image:url(/static/img/sk.7998d1f5.svg)}.flag-icon-sk.flag-icon-squared{background-image:url(/static/img/sk.93c91c0b.svg)}.flag-icon-sl{background-image:url(/static/img/sl.d8378c47.svg)}.flag-icon-sl.flag-icon-squared{background-image:url(/static/img/sl.eb9dda3f.svg)}.flag-icon-sm{background-image:url(/static/img/sm.5e2fc188.svg)}.flag-icon-sm.flag-icon-squared{background-image:url(/static/img/sm.0ba901f4.svg)}.flag-icon-sn{background-image:url(/static/img/sn.4247b831.svg)}.flag-icon-sn.flag-icon-squared{background-image:url(/static/img/sn.98923b55.svg)}.flag-icon-so{background-image:url(/static/img/so.2d18a203.svg)}.flag-icon-so.flag-icon-squared{background-image:url(/static/img/so.45f08b28.svg)}.flag-icon-sr{background-image:url(/static/img/sr.cb178d98.svg)}.flag-icon-sr.flag-icon-squared{background-image:url(/static/img/sr.d66c1240.svg)}.flag-icon-ss{background-image:url(/static/img/ss.caedfdf2.svg)}.flag-icon-ss.flag-icon-squared{background-image:url(/static/img/ss.db181f81.svg)}.flag-icon-st{background-image:url(/static/img/st.ecc4827f.svg)}.flag-icon-st.flag-icon-squared{background-image:url(/static/img/st.a70042c6.svg)}.flag-icon-sv{background-image:url(/static/img/sv.f67839a6.svg)}.flag-icon-sv.flag-icon-squared{background-image:url(/static/img/sv.9501935a.svg)}.flag-icon-sx{background-image:url(/static/img/sx.c0e6297a.svg)}.flag-icon-sx.flag-icon-squared{background-image:url(/static/img/sx.77e864f0.svg)}.flag-icon-sy{background-image:url(/static/img/sy.2b3eac89.svg)}.flag-icon-sy.flag-icon-squared{background-image:url(/static/img/sy.7fe894df.svg)}.flag-icon-sz{background-image:url(/static/img/sz.70b6fc50.svg)}.flag-icon-sz.flag-icon-squared{background-image:url(/static/img/sz.eb01cd9f.svg)}.flag-icon-tc{background-image:url(/static/img/tc.651466dd.svg)}.flag-icon-tc.flag-icon-squared{background-image:url(/static/img/tc.30ccd48e.svg)}.flag-icon-td{background-image:url(/static/img/td.5d622e26.svg)}.flag-icon-td.flag-icon-squared{background-image:url(/static/img/td.f1319408.svg)}.flag-icon-tf{background-image:url(/static/img/tf.a1757237.svg)}.flag-icon-tf.flag-icon-squared{background-image:url(/static/img/tf.27cbe00b.svg)}.flag-icon-tg{background-image:url(/static/img/tg.b492a751.svg)}.flag-icon-tg.flag-icon-squared{background-image:url(/static/img/tg.d04f874c.svg)}.flag-icon-th{background-image:url(/static/img/th.b8e24edb.svg)}.flag-icon-th.flag-icon-squared{background-image:url(/static/img/th.79b63a8a.svg)}.flag-icon-tj{background-image:url(/static/img/tj.d3a42312.svg)}.flag-icon-tj.flag-icon-squared{background-image:url(/static/img/tj.b7dafe8d.svg)}.flag-icon-tk{background-image:url(/static/img/tk.6c1f520c.svg)}.flag-icon-tk.flag-icon-squared{background-image:url(/static/img/tk.f87f794b.svg)}.flag-icon-tl{background-image:url(/static/img/tl.85904d79.svg)}.flag-icon-tl.flag-icon-squared{background-image:url(/static/img/tl.ca9af3c0.svg)}.flag-icon-tm{background-image:url(/static/img/tm.e467552c.svg)}.flag-icon-tm.flag-icon-squared{background-image:url(/static/img/tm.762df128.svg)}.flag-icon-tn{background-image:url(/static/img/tn.ff4c5190.svg)}.flag-icon-tn.flag-icon-squared{background-image:url(/static/img/tn.cc3ab493.svg)}.flag-icon-to{background-image:url(/static/img/to.8dd22284.svg)}.flag-icon-to.flag-icon-squared{background-image:url(/static/img/to.9748a967.svg)}.flag-icon-tr{background-image:url(/static/img/tr.87e40d5c.svg)}.flag-icon-tr.flag-icon-squared{background-image:url(/static/img/tr.fc8c91dd.svg)}.flag-icon-tt{background-image:url(/static/img/tt.5a459e81.svg)}.flag-icon-tt.flag-icon-squared{background-image:url(/static/img/tt.4acf6cc2.svg)}.flag-icon-tv{background-image:url(/static/img/tv.9717b553.svg)}.flag-icon-tv.flag-icon-squared{background-image:url(/static/img/tv.a8ff4939.svg)}.flag-icon-tw{background-image:url(/static/img/tw.c0cf9ea7.svg)}.flag-icon-tw.flag-icon-squared{background-image:url(/static/img/tw.45c8a106.svg)}.flag-icon-tz{background-image:url(/static/img/tz.c27fd405.svg)}.flag-icon-tz.flag-icon-squared{background-image:url(/static/img/tz.1abfbb38.svg)}.flag-icon-ua{background-image:url(/static/img/ua.63d75c84.svg)}.flag-icon-ua.flag-icon-squared{background-image:url(/static/img/ua.04fa0e67.svg)}.flag-icon-ug{background-image:url(/static/img/ug.5ac71e98.svg)}.flag-icon-ug.flag-icon-squared{background-image:url(/static/img/ug.5ae165a2.svg)}.flag-icon-um{background-image:url(/static/img/um.b38f913c.svg)}.flag-icon-um.flag-icon-squared{background-image:url(/static/img/um.582dd57b.svg)}.flag-icon-us{background-image:url(/static/img/us.99e04236.svg)}.flag-icon-us.flag-icon-squared{background-image:url(/static/img/us.6c459052.svg)}.flag-icon-uy{background-image:url(/static/img/uy.b70ac310.svg)}.flag-icon-uy.flag-icon-squared{background-image:url(/static/img/uy.69cf8938.svg)}.flag-icon-uz{background-image:url(/static/img/uz.7f8823a2.svg)}.flag-icon-uz.flag-icon-squared{background-image:url(/static/img/uz.d53abc35.svg)}.flag-icon-va{background-image:url(/static/img/va.7efb8ba6.svg)}.flag-icon-va.flag-icon-squared{background-image:url(/static/img/va.abcb42e8.svg)}.flag-icon-vc{background-image:url(/static/img/vc.37cf5ba1.svg)}.flag-icon-vc.flag-icon-squared{background-image:url(/static/img/vc.3e4ac6d4.svg)}.flag-icon-ve{background-image:url(/static/img/ve.4cd0e3ed.svg)}.flag-icon-ve.flag-icon-squared{background-image:url(/static/img/ve.9cd63506.svg)}.flag-icon-vg{background-image:url(/static/img/vg.ae3b6f7e.svg)}.flag-icon-vg.flag-icon-squared{background-image:url(/static/img/vg.025b8b6a.svg)}.flag-icon-vi{background-image:url(/static/img/vi.f920eec7.svg)}.flag-icon-vi.flag-icon-squared{background-image:url(/static/img/vi.293e6f1c.svg)}.flag-icon-vn{background-image:url(/static/img/vn.9ec4ca4d.svg)}.flag-icon-vn.flag-icon-squared{background-image:url(/static/img/vn.11dd1cf6.svg)}.flag-icon-vu{background-image:url(/static/img/vu.5d2d7643.svg)}.flag-icon-vu.flag-icon-squared{background-image:url(/static/img/vu.b7a8d91a.svg)}.flag-icon-wf{background-image:url(/static/img/wf.69c77016.svg)}.flag-icon-wf.flag-icon-squared{background-image:url(/static/img/wf.9ca6f4bc.svg)}.flag-icon-ws{background-image:url(/static/img/ws.15c7a17c.svg)}.flag-icon-ws.flag-icon-squared{background-image:url(/static/img/ws.d2e19e5a.svg)}.flag-icon-ye{background-image:url(/static/img/ye.bb567731.svg)}.flag-icon-ye.flag-icon-squared{background-image:url(/static/img/ye.0b3f3c76.svg)}.flag-icon-yt{background-image:url(/static/img/yt.332bd5d3.svg)}.flag-icon-yt.flag-icon-squared{background-image:url(/static/img/yt.c33641ca.svg)}.flag-icon-za{background-image:url(/static/img/za.42e033a9.svg)}.flag-icon-za.flag-icon-squared{background-image:url(/static/img/za.2fa94205.svg)}.flag-icon-zm{background-image:url(/static/img/zm.92477cab.svg)}.flag-icon-zm.flag-icon-squared{background-image:url(/static/img/zm.ce5363b7.svg)}.flag-icon-zw{background-image:url(/static/img/zw.f488cb8a.svg)}.flag-icon-zw.flag-icon-squared{background-image:url(/static/img/zw.6a535c1e.svg)}.flag-icon-es-ct{background-image:url(/static/img/es-ct.64a68954.svg)}.flag-icon-es-ct.flag-icon-squared{background-image:url(/static/img/es-ct.69469f50.svg)}.flag-icon-eu{background-image:url(/static/img/eu.4c6e130f.svg)}.flag-icon-eu.flag-icon-squared{background-image:url(/static/img/eu.aba724b1.svg)}.flag-icon-gb-eng{background-image:url(/static/img/gb-eng.513dcf1b.svg)}.flag-icon-gb-eng.flag-icon-squared{background-image:url(/static/img/gb-eng.0fac6e79.svg)}.flag-icon-gb-nir{background-image:url(/static/img/gb-nir.f59817d6.svg)}.flag-icon-gb-nir.flag-icon-squared{background-image:url(/static/img/gb-nir.2b7d2c3a.svg)}.flag-icon-gb-sct{background-image:url(/static/img/gb-sct.fee55173.svg)}.flag-icon-gb-sct.flag-icon-squared{background-image:url(/static/img/gb-sct.f5001e5d.svg)}.flag-icon-gb-wls{background-image:url(/static/img/gb-wls.13481560.svg)}.flag-icon-gb-wls.flag-icon-squared{background-image:url(/static/img/gb-wls.95b2cfab.svg)}.flag-icon-un{background-image:url(/static/img/un.2df110d6.svg)}.flag-icon-un.flag-icon-squared{background-image:url(/static/img/un.58a4a02a.svg)}.flag-icon-xk{background-image:url(/static/img/xk.ca7843be.svg)}.flag-icon-xk.flag-icon-squared{background-image:url(/static/img/xk.16b6bb85.svg)}.col-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-77ae3705]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-77ae3705]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-77ae3705]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-77ae3705]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-77ae3705]:first-child{margin-left:26%!important}.col-offset-3[data-v-77ae3705]:not(first-child){margin-left:30%!important}.col-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-77ae3705]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-77ae3705]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-77ae3705]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-77ae3705]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-77ae3705]:first-child{margin-left:52%!important}.col-offset-6[data-v-77ae3705]:not(first-child){margin-left:56%!important}.col-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-77ae3705]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-77ae3705]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-77ae3705]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-77ae3705]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-77ae3705]:first-child{margin-left:78%!important}.col-offset-9[data-v-77ae3705]:not(first-child){margin-left:82%!important}.col-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-77ae3705]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-77ae3705]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-77ae3705]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-77ae3705]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-s-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-s-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-s-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-s-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-77ae3705]{display:none!important}.s-visible[data-v-77ae3705]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-m-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-m-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-m-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-m-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-77ae3705]{display:none!important}.m-visible[data-v-77ae3705]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-l-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-l-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-l-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-l-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-77ae3705]{display:none!important}.l-visible[data-v-77ae3705]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-xl-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-xl-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-xl-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-77ae3705]{display:none!important}.xl-visible[data-v-77ae3705]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-xxl-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-xxl-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-xxl-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-77ae3705]{display:none!important}.xxl-visible[data-v-77ae3705]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-77ae3705]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-77ae3705]{display:none!important}}.vertical-center[data-v-77ae3705]{display:flex;align-items:center}.horizontal-center[data-v-77ae3705]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-77ae3705]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-77ae3705]{display:none!important}.no-content[data-v-77ae3705]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-77ae3705]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-77ae3705]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-77ae3705]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-77ae3705]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-77ae3705]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-77ae3705]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-77ae3705],.btn[data-v-77ae3705],button[data-v-77ae3705]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-77ae3705],.btn-default[type=submit][data-v-77ae3705],.btn.btn-primary[data-v-77ae3705],.btn[type=submit][data-v-77ae3705],button.btn-primary[data-v-77ae3705],button[type=submit][data-v-77ae3705]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-77ae3705],.btn-default .icon[data-v-77ae3705],button .icon[data-v-77ae3705]{margin-right:.5em}input[type=password][data-v-77ae3705],input[type=text][data-v-77ae3705]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-77ae3705]:focus,input[type=text][data-v-77ae3705]:focus{border:1px solid #35b870}button[data-v-77ae3705],input[data-v-77ae3705]{outline:none}input[type=text][data-v-77ae3705]:hover,textarea[data-v-77ae3705]:hover{border:1px solid #9cdfb0}ul[data-v-77ae3705]{margin:0;padding:0;list-style:none}a[data-v-77ae3705]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-77ae3705]:hover{color:#35b870}[data-v-77ae3705]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-77ae3705]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-77ae3705]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-77ae3705]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-77ae3705]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-77ae3705] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-77ae3705] .nav .path{cursor:pointer}.browser[data-v-77ae3705] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-77ae3705] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-77ae3705]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-77ae3705],input[type=number][data-v-77ae3705],input[type=password][data-v-77ae3705],input[type=search][data-v-77ae3705],input[type=text][data-v-77ae3705],input[type=time][data-v-77ae3705]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-77ae3705]:hover,input[type=number][data-v-77ae3705]:hover,input[type=password][data-v-77ae3705]:hover,input[type=search][data-v-77ae3705]:hover,input[type=text][data-v-77ae3705]:hover,input[type=time][data-v-77ae3705]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-77ae3705]:focus,input[type=number][data-v-77ae3705]:focus,input[type=password][data-v-77ae3705]:focus,input[type=search][data-v-77ae3705]:focus,input[type=text][data-v-77ae3705]:focus,input[type=time][data-v-77ae3705]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-77ae3705],input[type=number].with-icon[data-v-77ae3705],input[type=password].with-icon[data-v-77ae3705],input[type=search].with-icon[data-v-77ae3705],input[type=text].with-icon[data-v-77ae3705],input[type=time].with-icon[data-v-77ae3705]{padding-left:.3em}input[type=search][data-v-77ae3705],input[type=text][data-v-77ae3705]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-77ae3705]{animation-fill-mode:both;animation-name:fadeIn-77ae3705;-webkit-animation-name:fadeIn-77ae3705}.fade-in[data-v-77ae3705],.fade-out[data-v-77ae3705]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-77ae3705]{animation-fill-mode:both;animation-name:fadeOut-77ae3705;-webkit-animation-name:fadeOut-77ae3705}@keyframes fadeIn-77ae3705{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-77ae3705{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-77ae3705]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-77ae3705;-webkit-animation-name:glow-77ae3705}.loop[data-v-77ae3705]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-77ae3705{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-77ae3705]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-77ae3705]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-77ae3705]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-77ae3705]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-77ae3705]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-77ae3705]{background:#8fefb7}.item.selected[data-v-77ae3705]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-77ae3705]{border-top:2px solid #35b870}.item[data-v-77ae3705]::-moz-selection{background:transparent!important}.item[data-v-77ae3705]::selection{background:transparent!important}.item .title[data-v-77ae3705]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-77ae3705]{display:inline-flex;align-items:center}.item .side.right[data-v-77ae3705]{display:inline-flex;justify-content:right}.item .actions[data-v-77ae3705],.item .duration[data-v-77ae3705]{display:inline-flex;align-items:center}.item .duration[data-v-77ae3705]{font-size:.85em;opacity:.7}.item .actions[data-v-77ae3705] button{opacity:.65}.item .icon[data-v-77ae3705]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-77ae3705] .dropdown-container .item{box-shadow:none}.item[data-v-77ae3705] .dropdown-container button{background:none;border:none}.item[data-v-77ae3705] .dropdown-container button:hover{color:#35b870}[data-v-77ae3705] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-77ae3705] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-77ae3705] .table-row{flex-direction:row;align-items:center}}[data-v-77ae3705] .table-row .title,[data-v-77ae3705] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-77ae3705] .table-row .title,[data-v-77ae3705] .table-row .value{display:inline-flex}}[data-v-77ae3705] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-77ae3705] .table-row .title{width:30%}[data-v-77ae3705] .table-row .value{justify-content:right}}.subtitles-container .items[data-v-77ae3705]{overflow:auto}.subtitles-container .footer[data-v-77ae3705]{display:flex;justify-content:right;padding:1em;background:#e4eae8;box-shadow:0 -2.5px 4px 0 silver}.col-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6f90e487]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6f90e487]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6f90e487]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6f90e487]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6f90e487]:first-child{margin-left:26%!important}.col-offset-3[data-v-6f90e487]:not(first-child){margin-left:30%!important}.col-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6f90e487]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6f90e487]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6f90e487]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6f90e487]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6f90e487]:first-child{margin-left:52%!important}.col-offset-6[data-v-6f90e487]:not(first-child){margin-left:56%!important}.col-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6f90e487]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6f90e487]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6f90e487]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6f90e487]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6f90e487]:first-child{margin-left:78%!important}.col-offset-9[data-v-6f90e487]:not(first-child){margin-left:82%!important}.col-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6f90e487]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6f90e487]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6f90e487]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6f90e487]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-s-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-s-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-s-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6f90e487]{display:none!important}.s-visible[data-v-6f90e487]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-m-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-m-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-m-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6f90e487]{display:none!important}.m-visible[data-v-6f90e487]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-l-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-l-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-l-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6f90e487]{display:none!important}.l-visible[data-v-6f90e487]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-xl-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-xl-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-xl-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6f90e487]{display:none!important}.xl-visible[data-v-6f90e487]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-xxl-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-xxl-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-xxl-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6f90e487]{display:none!important}.xxl-visible[data-v-6f90e487]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6f90e487]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6f90e487]{display:none!important}}.vertical-center[data-v-6f90e487]{display:flex;align-items:center}.horizontal-center[data-v-6f90e487]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6f90e487]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6f90e487]{display:none!important}.no-content[data-v-6f90e487]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6f90e487]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6f90e487]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6f90e487]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6f90e487]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6f90e487]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6f90e487]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6f90e487],.btn[data-v-6f90e487],button[data-v-6f90e487]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6f90e487],.btn-default[type=submit][data-v-6f90e487],.btn.btn-primary[data-v-6f90e487],.btn[type=submit][data-v-6f90e487],button.btn-primary[data-v-6f90e487],button[type=submit][data-v-6f90e487]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6f90e487],.btn-default .icon[data-v-6f90e487],button .icon[data-v-6f90e487]{margin-right:.5em}input[type=password][data-v-6f90e487],input[type=text][data-v-6f90e487]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6f90e487]:focus,input[type=text][data-v-6f90e487]:focus{border:1px solid #35b870}button[data-v-6f90e487],input[data-v-6f90e487]{outline:none}input[type=text][data-v-6f90e487]:hover,textarea[data-v-6f90e487]:hover{border:1px solid #9cdfb0}ul[data-v-6f90e487]{margin:0;padding:0;list-style:none}a[data-v-6f90e487]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6f90e487]:hover{color:#35b870}[data-v-6f90e487]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6f90e487]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6f90e487]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6f90e487]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6f90e487]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6f90e487] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6f90e487] .nav .path{cursor:pointer}.browser[data-v-6f90e487] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6f90e487] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-6f90e487]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6f90e487],input[type=number][data-v-6f90e487],input[type=password][data-v-6f90e487],input[type=search][data-v-6f90e487],input[type=text][data-v-6f90e487],input[type=time][data-v-6f90e487]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-6f90e487]:hover,input[type=number][data-v-6f90e487]:hover,input[type=password][data-v-6f90e487]:hover,input[type=search][data-v-6f90e487]:hover,input[type=text][data-v-6f90e487]:hover,input[type=time][data-v-6f90e487]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6f90e487]:focus,input[type=number][data-v-6f90e487]:focus,input[type=password][data-v-6f90e487]:focus,input[type=search][data-v-6f90e487]:focus,input[type=text][data-v-6f90e487]:focus,input[type=time][data-v-6f90e487]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6f90e487],input[type=number].with-icon[data-v-6f90e487],input[type=password].with-icon[data-v-6f90e487],input[type=search].with-icon[data-v-6f90e487],input[type=text].with-icon[data-v-6f90e487],input[type=time].with-icon[data-v-6f90e487]{padding-left:.3em}input[type=search][data-v-6f90e487],input[type=text][data-v-6f90e487]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6f90e487]{animation-fill-mode:both;animation-name:fadeIn-6f90e487;-webkit-animation-name:fadeIn-6f90e487}.fade-in[data-v-6f90e487],.fade-out[data-v-6f90e487]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6f90e487]{animation-fill-mode:both;animation-name:fadeOut-6f90e487;-webkit-animation-name:fadeOut-6f90e487}@keyframes fadeIn-6f90e487{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6f90e487{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-6f90e487]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6f90e487;-webkit-animation-name:glow-6f90e487}.loop[data-v-6f90e487]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6f90e487{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6f90e487]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6f90e487]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6f90e487]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.url-player[data-v-6f90e487]{padding:0;margin:0;border:none;border-radius:0;box-shadow:none}.url-player .body[data-v-6f90e487]{padding:1em!important}.url-player input[type=text][data-v-6f90e487]{width:100%}.url-player [type=submit][data-v-6f90e487]{background:initial;border-color:initial;border-radius:1.5em}.url-player [type=submit][data-v-6f90e487]:hover{color:#38cf80}.url-player .footer[data-v-6f90e487]{display:flex;justify-content:right;padding:0;margin-top:1em}.col-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-21eed31c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-21eed31c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-21eed31c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-21eed31c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-21eed31c]:first-child{margin-left:26%!important}.col-offset-3[data-v-21eed31c]:not(first-child){margin-left:30%!important}.col-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-21eed31c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-21eed31c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-21eed31c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-21eed31c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-21eed31c]:first-child{margin-left:52%!important}.col-offset-6[data-v-21eed31c]:not(first-child){margin-left:56%!important}.col-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-21eed31c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-21eed31c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-21eed31c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-21eed31c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-21eed31c]:first-child{margin-left:78%!important}.col-offset-9[data-v-21eed31c]:not(first-child){margin-left:82%!important}.col-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-21eed31c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-21eed31c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-21eed31c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-21eed31c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-1[data-v-21eed31c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-2[data-v-21eed31c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-3[data-v-21eed31c]{margin-left:26%}.col-no-margin-s-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-4[data-v-21eed31c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-5[data-v-21eed31c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-6[data-v-21eed31c]{margin-left:52%}.col-no-margin-s-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-7[data-v-21eed31c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-8[data-v-21eed31c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-9[data-v-21eed31c]{margin-left:78%}.col-no-margin-s-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-10[data-v-21eed31c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-21eed31c]:first-child{margin-left:0}.col-offset-s-11[data-v-21eed31c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-21eed31c]{display:none!important}.s-visible[data-v-21eed31c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-1[data-v-21eed31c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-2[data-v-21eed31c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-3[data-v-21eed31c]{margin-left:26%}.col-no-margin-m-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-4[data-v-21eed31c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-5[data-v-21eed31c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-6[data-v-21eed31c]{margin-left:52%}.col-no-margin-m-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-7[data-v-21eed31c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-8[data-v-21eed31c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-9[data-v-21eed31c]{margin-left:78%}.col-no-margin-m-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-10[data-v-21eed31c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-21eed31c]:first-child{margin-left:0}.col-offset-m-11[data-v-21eed31c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-21eed31c]{display:none!important}.m-visible[data-v-21eed31c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-1[data-v-21eed31c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-2[data-v-21eed31c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-3[data-v-21eed31c]{margin-left:26%}.col-no-margin-l-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-4[data-v-21eed31c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-5[data-v-21eed31c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-6[data-v-21eed31c]{margin-left:52%}.col-no-margin-l-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-7[data-v-21eed31c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-8[data-v-21eed31c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-9[data-v-21eed31c]{margin-left:78%}.col-no-margin-l-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-10[data-v-21eed31c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-21eed31c]:first-child{margin-left:0}.col-offset-l-11[data-v-21eed31c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-21eed31c]{display:none!important}.l-visible[data-v-21eed31c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-1[data-v-21eed31c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-2[data-v-21eed31c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-3[data-v-21eed31c]{margin-left:26%}.col-no-margin-xl-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-4[data-v-21eed31c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-5[data-v-21eed31c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-6[data-v-21eed31c]{margin-left:52%}.col-no-margin-xl-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-7[data-v-21eed31c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-8[data-v-21eed31c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-9[data-v-21eed31c]{margin-left:78%}.col-no-margin-xl-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-10[data-v-21eed31c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xl-11[data-v-21eed31c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-21eed31c]{display:none!important}.xl-visible[data-v-21eed31c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-21eed31c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-21eed31c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-21eed31c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-21eed31c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-21eed31c]{margin-left:26%}.col-no-margin-xxl-3[data-v-21eed31c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-21eed31c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-21eed31c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-21eed31c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-21eed31c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-21eed31c]{margin-left:52%}.col-no-margin-xxl-6[data-v-21eed31c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-21eed31c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-21eed31c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-21eed31c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-21eed31c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-21eed31c]{margin-left:78%}.col-no-margin-xxl-9[data-v-21eed31c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-21eed31c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-21eed31c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-21eed31c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-21eed31c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-21eed31c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-21eed31c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-21eed31c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-21eed31c]{display:none!important}.xxl-visible[data-v-21eed31c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-21eed31c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-21eed31c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-21eed31c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-21eed31c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-21eed31c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-21eed31c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-21eed31c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-21eed31c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-21eed31c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-21eed31c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-21eed31c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-21eed31c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-21eed31c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-21eed31c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-21eed31c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-21eed31c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-21eed31c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-21eed31c]{display:none!important}}.vertical-center[data-v-21eed31c]{display:flex;align-items:center}.horizontal-center[data-v-21eed31c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-21eed31c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-21eed31c]{display:none!important}.no-content[data-v-21eed31c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-21eed31c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-21eed31c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-21eed31c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-21eed31c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-21eed31c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-21eed31c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-21eed31c],.btn[data-v-21eed31c],button[data-v-21eed31c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-21eed31c],.btn-default[type=submit][data-v-21eed31c],.btn.btn-primary[data-v-21eed31c],.btn[type=submit][data-v-21eed31c],button.btn-primary[data-v-21eed31c],button[type=submit][data-v-21eed31c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-21eed31c],.btn-default .icon[data-v-21eed31c],button .icon[data-v-21eed31c]{margin-right:.5em}input[type=password][data-v-21eed31c],input[type=text][data-v-21eed31c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-21eed31c]:focus,input[type=text][data-v-21eed31c]:focus{border:1px solid #35b870}button[data-v-21eed31c],input[data-v-21eed31c]{outline:none}input[type=text][data-v-21eed31c]:hover,textarea[data-v-21eed31c]:hover{border:1px solid #9cdfb0}ul[data-v-21eed31c]{margin:0;padding:0;list-style:none}a[data-v-21eed31c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-21eed31c]:hover{color:#35b870}[data-v-21eed31c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-21eed31c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-21eed31c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-21eed31c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-21eed31c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-21eed31c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-21eed31c] .nav .path{cursor:pointer}.browser[data-v-21eed31c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-21eed31c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-21eed31c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-21eed31c],input[type=number][data-v-21eed31c],input[type=password][data-v-21eed31c],input[type=search][data-v-21eed31c],input[type=text][data-v-21eed31c],input[type=time][data-v-21eed31c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-21eed31c]:hover,input[type=number][data-v-21eed31c]:hover,input[type=password][data-v-21eed31c]:hover,input[type=search][data-v-21eed31c]:hover,input[type=text][data-v-21eed31c]:hover,input[type=time][data-v-21eed31c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-21eed31c]:focus,input[type=number][data-v-21eed31c]:focus,input[type=password][data-v-21eed31c]:focus,input[type=search][data-v-21eed31c]:focus,input[type=text][data-v-21eed31c]:focus,input[type=time][data-v-21eed31c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-21eed31c],input[type=number].with-icon[data-v-21eed31c],input[type=password].with-icon[data-v-21eed31c],input[type=search].with-icon[data-v-21eed31c],input[type=text].with-icon[data-v-21eed31c],input[type=time].with-icon[data-v-21eed31c]{padding-left:.3em}input[type=search][data-v-21eed31c],input[type=text][data-v-21eed31c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-21eed31c]{animation-fill-mode:both;animation-name:fadeIn-21eed31c;-webkit-animation-name:fadeIn-21eed31c}.fade-in[data-v-21eed31c],.fade-out[data-v-21eed31c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-21eed31c]{animation-fill-mode:both;animation-name:fadeOut-21eed31c;-webkit-animation-name:fadeOut-21eed31c}@keyframes fadeIn-21eed31c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-21eed31c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-21eed31c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-21eed31c;-webkit-animation-name:glow-21eed31c}.loop[data-v-21eed31c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-21eed31c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-21eed31c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-21eed31c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-21eed31c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-21eed31c]{color:#d21}.media-plugin[data-v-21eed31c]{width:100%}.media-plugin main[data-v-21eed31c]{width:100%;height:100%;display:flex;flex-direction:row-reverse}.media-plugin main .view-container[data-v-21eed31c]{display:flex;flex-direction:column;flex-grow:1;overflow:auto;background:#fff}.media-plugin main .body-container[data-v-21eed31c]{height:calc(100% - 8.8em);padding-top:.1em;overflow:auto}.media-plugin main .body-container.expanded-header[data-v-21eed31c]{height:calc(100% - 11.8em)}[data-v-21eed31c] .loading{z-index:10}[data-v-21eed31c] .subtitles-container .body{padding:0!important}[data-v-21eed31c] .subtitles-container .body .item{padding:1em}[data-v-21eed31c] .add-to-playlist-container .body{padding:0!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3211.ebc6e651.css b/platypush/backend/http/webapp/dist/static/css/3211.e29a4da3.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/3211.ebc6e651.css rename to platypush/backend/http/webapp/dist/static/css/3211.e29a4da3.css index fc775652ed..e26bb321cb 100644 --- a/platypush/backend/http/webapp/dist/static/css/3211.ebc6e651.css +++ b/platypush/backend/http/webapp/dist/static/css/3211.e29a4da3.css @@ -1 +1 @@ -.col-1[data-v-d7bb5c5e],.entity .head .icon[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d7bb5c5e]:first-child,.entity .head .icon[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d7bb5c5e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d7bb5c5e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d7bb5c5e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d7bb5c5e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d7bb5c5e],.entity .head .value-and-toggler[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d7bb5c5e]:first-child,.entity .head .value-and-toggler[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d7bb5c5e]:first-child{margin-left:26%!important}.col-offset-3[data-v-d7bb5c5e]:not(first-child){margin-left:30%!important}.col-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d7bb5c5e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d7bb5c5e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d7bb5c5e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d7bb5c5e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d7bb5c5e]:first-child{margin-left:52%!important}.col-offset-6[data-v-d7bb5c5e]:not(first-child){margin-left:56%!important}.col-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d7bb5c5e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d7bb5c5e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d7bb5c5e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d7bb5c5e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d7bb5c5e]:first-child{margin-left:78%!important}.col-offset-9[data-v-d7bb5c5e]:not(first-child){margin-left:82%!important}.col-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d7bb5c5e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d7bb5c5e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d7bb5c5e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d7bb5c5e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d7bb5c5e],.entity .head .value-container[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d7bb5c5e]:first-child,.entity .head .value-container[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-s-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-s-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d7bb5c5e],.entity .head .label[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d7bb5c5e]:first-child,.entity .head .label[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-s-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-d7bb5c5e],.attributes .child .value[data-v-d7bb5c5e],.col-s-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-d7bb5c5e]:first-child,.attributes .child .value[data-v-d7bb5c5e]:first-child,.col-s-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d7bb5c5e]{display:none!important}.s-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d7bb5c5e],.entity .head .value-container[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d7bb5c5e]:first-child,.entity .head .value-container[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-m-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-d7bb5c5e],.attributes .child .value[data-v-d7bb5c5e],.col-m-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-d7bb5c5e]:first-child,.attributes .child .value[data-v-d7bb5c5e]:first-child,.col-m-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-m-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d7bb5c5e],.entity .head .label[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d7bb5c5e]:first-child,.entity .head .label[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-m-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d7bb5c5e]{display:none!important}.m-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-l-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-l-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-l-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d7bb5c5e]{display:none!important}.l-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-xl-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-xl-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-xl-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d7bb5c5e]{display:none!important}.xl-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-xxl-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-xxl-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-xxl-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d7bb5c5e]{display:none!important}.xxl-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d7bb5c5e]{display:none!important}}.vertical-center[data-v-d7bb5c5e]{display:flex;align-items:center}.horizontal-center[data-v-d7bb5c5e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-d7bb5c5e],.pull-right[data-v-d7bb5c5e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d7bb5c5e]{display:none!important}.no-content[data-v-d7bb5c5e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d7bb5c5e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d7bb5c5e],.btn[data-v-d7bb5c5e],button[data-v-d7bb5c5e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d7bb5c5e],.btn-default[type=submit][data-v-d7bb5c5e],.btn.btn-primary[data-v-d7bb5c5e],.btn[type=submit][data-v-d7bb5c5e],button.btn-primary[data-v-d7bb5c5e],button[type=submit][data-v-d7bb5c5e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-d7bb5c5e],.btn-default .icon[data-v-d7bb5c5e],button .icon[data-v-d7bb5c5e]{margin-right:.5em}input[type=password][data-v-d7bb5c5e],input[type=text][data-v-d7bb5c5e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d7bb5c5e]:focus,input[type=text][data-v-d7bb5c5e]:focus{border:1px solid #35b870}button[data-v-d7bb5c5e],input[data-v-d7bb5c5e]{outline:none}input[type=text][data-v-d7bb5c5e]:hover,textarea[data-v-d7bb5c5e]:hover{border:1px solid #9cdfb0}ul[data-v-d7bb5c5e]{margin:0;padding:0;list-style:none}a[data-v-d7bb5c5e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d7bb5c5e]:hover{color:#35b870}[data-v-d7bb5c5e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d7bb5c5e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d7bb5c5e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d7bb5c5e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-d7bb5c5e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d7bb5c5e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d7bb5c5e] .nav .path{cursor:pointer}.browser[data-v-d7bb5c5e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d7bb5c5e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-d7bb5c5e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d7bb5c5e],input[type=number][data-v-d7bb5c5e],input[type=password][data-v-d7bb5c5e],input[type=search][data-v-d7bb5c5e],input[type=text][data-v-d7bb5c5e],input[type=time][data-v-d7bb5c5e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-d7bb5c5e]:hover,input[type=number][data-v-d7bb5c5e]:hover,input[type=password][data-v-d7bb5c5e]:hover,input[type=search][data-v-d7bb5c5e]:hover,input[type=text][data-v-d7bb5c5e]:hover,input[type=time][data-v-d7bb5c5e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d7bb5c5e]:focus,input[type=number][data-v-d7bb5c5e]:focus,input[type=password][data-v-d7bb5c5e]:focus,input[type=search][data-v-d7bb5c5e]:focus,input[type=text][data-v-d7bb5c5e]:focus,input[type=time][data-v-d7bb5c5e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d7bb5c5e],input[type=number].with-icon[data-v-d7bb5c5e],input[type=password].with-icon[data-v-d7bb5c5e],input[type=search].with-icon[data-v-d7bb5c5e],input[type=text].with-icon[data-v-d7bb5c5e],input[type=time].with-icon[data-v-d7bb5c5e]{padding-left:.3em}input[type=search][data-v-d7bb5c5e],input[type=text][data-v-d7bb5c5e]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-d7bb5c5e],.fade-in[data-v-d7bb5c5e]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-d7bb5c5e;-webkit-animation-name:fadeIn-d7bb5c5e}.fade-out[data-v-d7bb5c5e]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-d7bb5c5e;-webkit-animation-name:fadeOut-d7bb5c5e}@keyframes fadeIn-d7bb5c5e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d7bb5c5e{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-d7bb5c5e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d7bb5c5e;-webkit-animation-name:glow-d7bb5c5e}.loop[data-v-d7bb5c5e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d7bb5c5e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d7bb5c5e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d7bb5c5e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d7bb5c5e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-d7bb5c5e]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-d7bb5c5e]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-d7bb5c5e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-d7bb5c5e]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-d7bb5c5e]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-d7bb5c5e]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-d7bb5c5e]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-d7bb5c5e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-d7bb5c5e]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-d7bb5c5e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-d7bb5c5e]{margin-right:.5em}.entity .head .icon[data-v-d7bb5c5e]:hover{color:#35b870}.entity .head .label[data-v-d7bb5c5e]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-d7bb5c5e]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-d7bb5c5e]:hover{color:#35b870}.entity .head .value[data-v-d7bb5c5e]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-d7bb5c5e]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-d7bb5c5e]{margin-right:2.5em}.entity .head .value-container[data-v-d7bb5c5e]{min-width:7em}.entity .head .unit[data-v-d7bb5c5e]{margin-left:.2em}.entity .head .pull-right[data-v-d7bb5c5e],.entity .head .value-container[data-v-d7bb5c5e]{padding-right:.5em}.entity .head .pull-right[data-v-d7bb5c5e] .power-switch,.entity .head .value-container[data-v-d7bb5c5e] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-d7bb5c5e]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-d7bb5c5e]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-d7bb5c5e]:hover{color:#35b870}.collapse-toggler[data-v-d7bb5c5e]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-d7bb5c5e]:hover{color:#35b870}.attributes .child[data-v-d7bb5c5e]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-d7bb5c5e]{flex-direction:column}}.attributes .child[data-v-d7bb5c5e]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-d7bb5c5e]:hover{cursor:auto}.attributes .child.head[data-v-d7bb5c5e]{cursor:pointer}.attributes .child.head[data-v-d7bb5c5e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-d7bb5c5e]{font-weight:700}.attributes .child .value[data-v-d7bb5c5e]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-d7bb5c5e]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-d7bb5c5e]:last-child,.entity-container-wrapper.with-children[data-v-d7bb5c5e]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-d7bb5c5e]{animation:blink-animation-d7bb5c5e 1s steps(20,start)}@keyframes blink-animation-d7bb5c5e{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.assistant-container .body[data-v-d7bb5c5e]{padding:0}.assistant-container .row[data-v-d7bb5c5e]{margin:0;padding:1em .5em;display:flex}.assistant-container .row[data-v-d7bb5c5e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.assistant-container .row[data-v-d7bb5c5e]:not(:last-child){border-bottom:1px solid #e1e4e8}.assistant-container .row .icon[data-v-d7bb5c5e]{flex:0 0 2em;display:flex;align-items:center;justify-content:center}.assistant-container .row .label[data-v-d7bb5c5e]{width:calc(100% - 2em)}.assistant-container[data-v-d7bb5c5e] .entity-icon .active{color:#32b646} \ No newline at end of file +.col-1[data-v-d7bb5c5e],.entity .head .icon[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d7bb5c5e]:first-child,.entity .head .icon[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d7bb5c5e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d7bb5c5e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d7bb5c5e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d7bb5c5e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d7bb5c5e],.entity .head .value-and-toggler[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d7bb5c5e]:first-child,.entity .head .value-and-toggler[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d7bb5c5e]:first-child{margin-left:26%!important}.col-offset-3[data-v-d7bb5c5e]:not(first-child){margin-left:30%!important}.col-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d7bb5c5e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d7bb5c5e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d7bb5c5e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d7bb5c5e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d7bb5c5e]:first-child{margin-left:52%!important}.col-offset-6[data-v-d7bb5c5e]:not(first-child){margin-left:56%!important}.col-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d7bb5c5e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d7bb5c5e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d7bb5c5e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d7bb5c5e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d7bb5c5e]:first-child{margin-left:78%!important}.col-offset-9[data-v-d7bb5c5e]:not(first-child){margin-left:82%!important}.col-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d7bb5c5e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d7bb5c5e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d7bb5c5e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d7bb5c5e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d7bb5c5e],.entity .head .value-container[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d7bb5c5e]:first-child,.entity .head .value-container[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-s-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-s-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d7bb5c5e],.entity .head .label[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d7bb5c5e]:first-child,.entity .head .label[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-s-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-s-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-d7bb5c5e],.attributes .child .value[data-v-d7bb5c5e],.col-s-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-d7bb5c5e]:first-child,.attributes .child .value[data-v-d7bb5c5e]:first-child,.col-s-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d7bb5c5e]{display:none!important}.s-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d7bb5c5e],.entity .head .value-container[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d7bb5c5e]:first-child,.entity .head .value-container[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-m-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-d7bb5c5e],.attributes .child .value[data-v-d7bb5c5e],.col-m-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-d7bb5c5e]:first-child,.attributes .child .value[data-v-d7bb5c5e]:first-child,.col-m-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-m-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d7bb5c5e],.entity .head .label[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d7bb5c5e]:first-child,.entity .head .label[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-m-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-m-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d7bb5c5e]{display:none!important}.m-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-l-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-l-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-l-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-l-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d7bb5c5e]{display:none!important}.l-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-xl-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-xl-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-xl-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xl-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d7bb5c5e]{display:none!important}.xl-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d7bb5c5e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d7bb5c5e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d7bb5c5e]{margin-left:26%}.col-no-margin-xxl-3[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d7bb5c5e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d7bb5c5e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d7bb5c5e]{margin-left:52%}.col-no-margin-xxl-6[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d7bb5c5e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d7bb5c5e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d7bb5c5e]{margin-left:78%}.col-no-margin-xxl-9[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d7bb5c5e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d7bb5c5e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d7bb5c5e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d7bb5c5e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d7bb5c5e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d7bb5c5e]{display:none!important}.xxl-visible[data-v-d7bb5c5e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d7bb5c5e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d7bb5c5e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d7bb5c5e]{display:none!important}}.vertical-center[data-v-d7bb5c5e]{display:flex;align-items:center}.horizontal-center[data-v-d7bb5c5e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-d7bb5c5e],.pull-right[data-v-d7bb5c5e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d7bb5c5e]{display:none!important}.no-content[data-v-d7bb5c5e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d7bb5c5e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d7bb5c5e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d7bb5c5e],.btn[data-v-d7bb5c5e],button[data-v-d7bb5c5e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d7bb5c5e],.btn-default[type=submit][data-v-d7bb5c5e],.btn.btn-primary[data-v-d7bb5c5e],.btn[type=submit][data-v-d7bb5c5e],button.btn-primary[data-v-d7bb5c5e],button[type=submit][data-v-d7bb5c5e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-d7bb5c5e]:hover,.btn[data-v-d7bb5c5e]:hover,button[data-v-d7bb5c5e]:hover{color:#35b870}.btn .icon[data-v-d7bb5c5e],.btn-default .icon[data-v-d7bb5c5e],button .icon[data-v-d7bb5c5e]{margin-right:.5em}.btn-default[data-v-d7bb5c5e]:disabled,.btn-default[disabled][data-v-d7bb5c5e],.btn[data-v-d7bb5c5e]:disabled,.btn[disabled][data-v-d7bb5c5e],button[data-v-d7bb5c5e]:disabled,button[disabled][data-v-d7bb5c5e]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-d7bb5c5e]{cursor:grab!important}.dragged[data-v-d7bb5c5e]{opacity:.5!important}input[type=password][data-v-d7bb5c5e],input[type=text][data-v-d7bb5c5e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d7bb5c5e]:focus,input[type=text][data-v-d7bb5c5e]:focus{border:1px solid #35b870}button[data-v-d7bb5c5e],input[data-v-d7bb5c5e]{outline:none}input[type=text][data-v-d7bb5c5e]:hover,textarea[data-v-d7bb5c5e]:hover{border:1px solid #9cdfb0}ul[data-v-d7bb5c5e]{margin:0;padding:0;list-style:none}a[data-v-d7bb5c5e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d7bb5c5e]:hover{color:#35b870}[data-v-d7bb5c5e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d7bb5c5e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d7bb5c5e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d7bb5c5e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-d7bb5c5e]{color:#ad1717}body[data-v-d7bb5c5e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d7bb5c5e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d7bb5c5e] .nav .path{cursor:pointer}.browser[data-v-d7bb5c5e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d7bb5c5e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-d7bb5c5e]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-d7bb5c5e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d7bb5c5e],input[type=number][data-v-d7bb5c5e],input[type=password][data-v-d7bb5c5e],input[type=search][data-v-d7bb5c5e],input[type=text][data-v-d7bb5c5e],input[type=time][data-v-d7bb5c5e]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-d7bb5c5e]:hover,input[type=number][data-v-d7bb5c5e]:hover,input[type=password][data-v-d7bb5c5e]:hover,input[type=search][data-v-d7bb5c5e]:hover,input[type=text][data-v-d7bb5c5e]:hover,input[type=time][data-v-d7bb5c5e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d7bb5c5e]:focus,input[type=number][data-v-d7bb5c5e]:focus,input[type=password][data-v-d7bb5c5e]:focus,input[type=search][data-v-d7bb5c5e]:focus,input[type=text][data-v-d7bb5c5e]:focus,input[type=time][data-v-d7bb5c5e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d7bb5c5e],input[type=number].with-icon[data-v-d7bb5c5e],input[type=password].with-icon[data-v-d7bb5c5e],input[type=search].with-icon[data-v-d7bb5c5e],input[type=text].with-icon[data-v-d7bb5c5e],input[type=time].with-icon[data-v-d7bb5c5e]{padding-left:.3em}input[type=search][data-v-d7bb5c5e],input[type=text][data-v-d7bb5c5e]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-d7bb5c5e],.fade-in[data-v-d7bb5c5e]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-d7bb5c5e;-webkit-animation-name:fadeIn-d7bb5c5e}.fade-out[data-v-d7bb5c5e]{animation-fill-mode:both;animation-name:fadeOut-d7bb5c5e;-webkit-animation-name:fadeOut-d7bb5c5e}.expand[data-v-d7bb5c5e],.fade-out[data-v-d7bb5c5e]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-d7bb5c5e]{animation-fill-mode:both;animation-name:expand-d7bb5c5e;-webkit-animation-name:expand-d7bb5c5e}.shrink[data-v-d7bb5c5e]{animation-fill-mode:both;animation-name:shrink-d7bb5c5e;-webkit-animation-name:shrink-d7bb5c5e}.fold[data-v-d7bb5c5e],.shrink[data-v-d7bb5c5e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-d7bb5c5e]{animation-fill-mode:both;animation-name:fold-d7bb5c5e;-webkit-animation-name:fold-d7bb5c5e}.unfold[data-v-d7bb5c5e]{animation-fill-mode:both;animation-name:unfold-d7bb5c5e;-webkit-animation-name:unfold-d7bb5c5e}.dim[data-v-d7bb5c5e],.unfold[data-v-d7bb5c5e]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-d7bb5c5e]{animation-fill-mode:both;animation-name:dim-d7bb5c5e;-webkit-animation-name:dim-d7bb5c5e}.brighten[data-v-d7bb5c5e]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-d7bb5c5e;-webkit-animation-name:brighten-d7bb5c5e}@keyframes fadeIn-d7bb5c5e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d7bb5c5e{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-d7bb5c5e{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-d7bb5c5e{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-d7bb5c5e{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-d7bb5c5e{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-d7bb5c5e{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-d7bb5c5e{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-d7bb5c5e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d7bb5c5e;-webkit-animation-name:glow-d7bb5c5e}.loop[data-v-d7bb5c5e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d7bb5c5e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d7bb5c5e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d7bb5c5e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d7bb5c5e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-d7bb5c5e]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-d7bb5c5e]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-d7bb5c5e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-d7bb5c5e]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-d7bb5c5e]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-d7bb5c5e]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-d7bb5c5e]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-d7bb5c5e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-d7bb5c5e]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-d7bb5c5e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-d7bb5c5e]{margin-right:.5em}.entity .head .icon[data-v-d7bb5c5e]:hover{color:#35b870}.entity .head .label[data-v-d7bb5c5e]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-d7bb5c5e]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-d7bb5c5e]:hover{color:#35b870}.entity .head .value[data-v-d7bb5c5e]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-d7bb5c5e]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-d7bb5c5e]{margin-right:2.5em}.entity .head .value-container[data-v-d7bb5c5e]{min-width:7em}.entity .head .unit[data-v-d7bb5c5e]{margin-left:.2em}.entity .head .pull-right[data-v-d7bb5c5e],.entity .head .value-container[data-v-d7bb5c5e]{padding-right:.5em}.entity .head .pull-right[data-v-d7bb5c5e] .power-switch,.entity .head .value-container[data-v-d7bb5c5e] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-d7bb5c5e]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-d7bb5c5e]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-d7bb5c5e]:hover{color:#35b870}.collapse-toggler[data-v-d7bb5c5e]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-d7bb5c5e]:hover{color:#35b870}.attributes .child[data-v-d7bb5c5e]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-d7bb5c5e]{flex-direction:column}}.attributes .child[data-v-d7bb5c5e]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-d7bb5c5e]:hover{cursor:auto}.attributes .child.head[data-v-d7bb5c5e]{cursor:pointer}.attributes .child.head[data-v-d7bb5c5e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-d7bb5c5e]{font-weight:700}.attributes .child .value[data-v-d7bb5c5e]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-d7bb5c5e]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-d7bb5c5e]:last-child,.entity-container-wrapper.with-children[data-v-d7bb5c5e]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-d7bb5c5e]{animation:blink-animation-d7bb5c5e 1s steps(20,start)}@keyframes blink-animation-d7bb5c5e{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.assistant-container .body[data-v-d7bb5c5e]{padding:0}.assistant-container .row[data-v-d7bb5c5e]{margin:0;padding:1em .5em;display:flex}.assistant-container .row[data-v-d7bb5c5e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.assistant-container .row[data-v-d7bb5c5e]:not(:last-child){border-bottom:1px solid #e1e4e8}.assistant-container .row .icon[data-v-d7bb5c5e]{flex:0 0 2em;display:flex;align-items:center;justify-content:center}.assistant-container .row .label[data-v-d7bb5c5e]{width:calc(100% - 2em)}.assistant-container[data-v-d7bb5c5e] .entity-icon .active{color:#32b646} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3248.a0e1e73b.css b/platypush/backend/http/webapp/dist/static/css/3248.a0e1e73b.css new file mode 100644 index 0000000000..94867e66fd --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/3248.a0e1e73b.css @@ -0,0 +1 @@ +.col-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f3217d34]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f3217d34]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f3217d34]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f3217d34]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f3217d34]:first-child{margin-left:26%!important}.col-offset-3[data-v-f3217d34]:not(first-child){margin-left:30%!important}.col-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f3217d34]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f3217d34]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f3217d34]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f3217d34]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f3217d34]:first-child{margin-left:52%!important}.col-offset-6[data-v-f3217d34]:not(first-child){margin-left:56%!important}.col-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f3217d34]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f3217d34]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f3217d34]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f3217d34]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f3217d34]:first-child{margin-left:78%!important}.col-offset-9[data-v-f3217d34]:not(first-child){margin-left:82%!important}.col-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f3217d34]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f3217d34]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f3217d34]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f3217d34]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-s-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-s-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-s-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f3217d34]{display:none!important}.s-visible[data-v-f3217d34]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-m-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-m-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-m-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f3217d34]{display:none!important}.m-visible[data-v-f3217d34]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-l-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-l-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-l-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f3217d34]{display:none!important}.l-visible[data-v-f3217d34]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-xl-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-xl-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-xl-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f3217d34]{display:none!important}.xl-visible[data-v-f3217d34]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-xxl-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-xxl-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-xxl-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f3217d34]{display:none!important}.xxl-visible[data-v-f3217d34]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f3217d34]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f3217d34]{display:none!important}}.vertical-center[data-v-f3217d34]{display:flex;align-items:center}.horizontal-center[data-v-f3217d34]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f3217d34]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f3217d34]{display:none!important}.no-content[data-v-f3217d34]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f3217d34]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f3217d34]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f3217d34]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f3217d34]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f3217d34]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f3217d34]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f3217d34],.btn[data-v-f3217d34],button[data-v-f3217d34]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f3217d34],.btn-default[type=submit][data-v-f3217d34],.btn.btn-primary[data-v-f3217d34],.btn[type=submit][data-v-f3217d34],button.btn-primary[data-v-f3217d34],button[type=submit][data-v-f3217d34]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-f3217d34]:hover,.btn[data-v-f3217d34]:hover,button[data-v-f3217d34]:hover{color:#35b870}.btn .icon[data-v-f3217d34],.btn-default .icon[data-v-f3217d34],button .icon[data-v-f3217d34]{margin-right:.5em}.btn-default[data-v-f3217d34]:disabled,.btn-default[disabled][data-v-f3217d34],.btn[data-v-f3217d34]:disabled,.btn[disabled][data-v-f3217d34],button[data-v-f3217d34]:disabled,button[disabled][data-v-f3217d34]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-f3217d34]{cursor:grab!important}.dragged[data-v-f3217d34]{opacity:.5!important}input[type=password][data-v-f3217d34],input[type=text][data-v-f3217d34]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f3217d34]:focus,input[type=text][data-v-f3217d34]:focus{border:1px solid #35b870}button[data-v-f3217d34],input[data-v-f3217d34]{outline:none}input[type=text][data-v-f3217d34]:hover,textarea[data-v-f3217d34]:hover{border:1px solid #9cdfb0}ul[data-v-f3217d34]{margin:0;padding:0;list-style:none}a[data-v-f3217d34]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f3217d34]:hover{color:#35b870}[data-v-f3217d34]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f3217d34]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f3217d34]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f3217d34]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-f3217d34]{color:#ad1717}body[data-v-f3217d34]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f3217d34] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f3217d34] .nav .path{cursor:pointer}.browser[data-v-f3217d34] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f3217d34] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-f3217d34]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-f3217d34]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f3217d34],input[type=number][data-v-f3217d34],input[type=password][data-v-f3217d34],input[type=search][data-v-f3217d34],input[type=text][data-v-f3217d34],input[type=time][data-v-f3217d34]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-f3217d34]:hover,input[type=number][data-v-f3217d34]:hover,input[type=password][data-v-f3217d34]:hover,input[type=search][data-v-f3217d34]:hover,input[type=text][data-v-f3217d34]:hover,input[type=time][data-v-f3217d34]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f3217d34]:focus,input[type=number][data-v-f3217d34]:focus,input[type=password][data-v-f3217d34]:focus,input[type=search][data-v-f3217d34]:focus,input[type=text][data-v-f3217d34]:focus,input[type=time][data-v-f3217d34]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f3217d34],input[type=number].with-icon[data-v-f3217d34],input[type=password].with-icon[data-v-f3217d34],input[type=search].with-icon[data-v-f3217d34],input[type=text].with-icon[data-v-f3217d34],input[type=time].with-icon[data-v-f3217d34]{padding-left:.3em}input[type=search][data-v-f3217d34],input[type=text][data-v-f3217d34]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f3217d34]{animation-fill-mode:both;animation-name:fadeIn-f3217d34;-webkit-animation-name:fadeIn-f3217d34}.fade-in[data-v-f3217d34],.fade-out[data-v-f3217d34]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f3217d34]{animation-fill-mode:both;animation-name:fadeOut-f3217d34;-webkit-animation-name:fadeOut-f3217d34}.expand[data-v-f3217d34]{animation-fill-mode:both;animation-name:expand-f3217d34;-webkit-animation-name:expand-f3217d34}.expand[data-v-f3217d34],.shrink[data-v-f3217d34]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-f3217d34]{animation-fill-mode:both;animation-name:shrink-f3217d34;-webkit-animation-name:shrink-f3217d34}.fold[data-v-f3217d34]{animation-fill-mode:both;animation-name:fold-f3217d34;-webkit-animation-name:fold-f3217d34}.fold[data-v-f3217d34],.unfold[data-v-f3217d34]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-f3217d34]{animation-fill-mode:both;animation-name:unfold-f3217d34;-webkit-animation-name:unfold-f3217d34}.dim[data-v-f3217d34]{animation-fill-mode:both;animation-name:dim-f3217d34;-webkit-animation-name:dim-f3217d34}.brighten[data-v-f3217d34],.dim[data-v-f3217d34]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-f3217d34]{animation-fill-mode:both;animation-name:brighten-f3217d34;-webkit-animation-name:brighten-f3217d34}@keyframes fadeIn-f3217d34{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f3217d34{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-f3217d34{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-f3217d34{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-f3217d34{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-f3217d34{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-f3217d34{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-f3217d34{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-f3217d34]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f3217d34;-webkit-animation-name:glow-f3217d34}.loop[data-v-f3217d34]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f3217d34{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f3217d34]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f3217d34]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f3217d34]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tab[data-v-f3217d34]{height:3.5em;background:linear-gradient(0deg,#ececec,#f6f6f6);display:flex;padding:1em;align-items:center;border-right:1px solid #ddd;cursor:pointer}@media screen and (max-width:calc(769px - 1px)){.tab[data-v-f3217d34]{flex-grow:1;justify-content:center}}.tab.selected[data-v-f3217d34]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.tab[data-v-f3217d34]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.tab[data-v-f3217d34] .icon-container{width:1.5em}.col-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f4300bb0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f4300bb0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f4300bb0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f4300bb0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f4300bb0]:first-child{margin-left:26%!important}.col-offset-3[data-v-f4300bb0]:not(first-child){margin-left:30%!important}.col-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f4300bb0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f4300bb0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f4300bb0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f4300bb0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f4300bb0]:first-child{margin-left:52%!important}.col-offset-6[data-v-f4300bb0]:not(first-child){margin-left:56%!important}.col-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f4300bb0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f4300bb0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f4300bb0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f4300bb0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f4300bb0]:first-child{margin-left:78%!important}.col-offset-9[data-v-f4300bb0]:not(first-child){margin-left:82%!important}.col-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f4300bb0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f4300bb0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f4300bb0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f4300bb0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-s-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-s-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-s-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f4300bb0]{display:none!important}.s-visible[data-v-f4300bb0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-m-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-m-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-m-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f4300bb0]{display:none!important}.m-visible[data-v-f4300bb0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-l-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-l-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-l-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f4300bb0]{display:none!important}.l-visible[data-v-f4300bb0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-xl-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-xl-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-xl-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f4300bb0]{display:none!important}.xl-visible[data-v-f4300bb0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-xxl-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-xxl-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-xxl-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f4300bb0]{display:none!important}.xxl-visible[data-v-f4300bb0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f4300bb0]{display:none!important}}.vertical-center[data-v-f4300bb0]{display:flex;align-items:center}.horizontal-center[data-v-f4300bb0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f4300bb0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f4300bb0]{display:none!important}.no-content[data-v-f4300bb0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f4300bb0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f4300bb0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f4300bb0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f4300bb0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f4300bb0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f4300bb0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f4300bb0],.btn[data-v-f4300bb0],button[data-v-f4300bb0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f4300bb0],.btn-default[type=submit][data-v-f4300bb0],.btn.btn-primary[data-v-f4300bb0],.btn[type=submit][data-v-f4300bb0],button.btn-primary[data-v-f4300bb0],button[type=submit][data-v-f4300bb0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-f4300bb0]:hover,.btn[data-v-f4300bb0]:hover,button[data-v-f4300bb0]:hover{color:#35b870}.btn .icon[data-v-f4300bb0],.btn-default .icon[data-v-f4300bb0],button .icon[data-v-f4300bb0]{margin-right:.5em}.btn-default[data-v-f4300bb0]:disabled,.btn-default[disabled][data-v-f4300bb0],.btn[data-v-f4300bb0]:disabled,.btn[disabled][data-v-f4300bb0],button[data-v-f4300bb0]:disabled,button[disabled][data-v-f4300bb0]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-f4300bb0]{cursor:grab!important}.dragged[data-v-f4300bb0]{opacity:.5!important}input[type=password][data-v-f4300bb0],input[type=text][data-v-f4300bb0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f4300bb0]:focus,input[type=text][data-v-f4300bb0]:focus{border:1px solid #35b870}button[data-v-f4300bb0],input[data-v-f4300bb0]{outline:none}input[type=text][data-v-f4300bb0]:hover,textarea[data-v-f4300bb0]:hover{border:1px solid #9cdfb0}ul[data-v-f4300bb0]{margin:0;padding:0;list-style:none}a[data-v-f4300bb0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f4300bb0]:hover{color:#35b870}[data-v-f4300bb0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f4300bb0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f4300bb0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f4300bb0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-f4300bb0]{color:#ad1717}body[data-v-f4300bb0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f4300bb0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f4300bb0] .nav .path{cursor:pointer}.browser[data-v-f4300bb0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f4300bb0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-f4300bb0]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-f4300bb0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f4300bb0],input[type=number][data-v-f4300bb0],input[type=password][data-v-f4300bb0],input[type=search][data-v-f4300bb0],input[type=text][data-v-f4300bb0],input[type=time][data-v-f4300bb0]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-f4300bb0]:hover,input[type=number][data-v-f4300bb0]:hover,input[type=password][data-v-f4300bb0]:hover,input[type=search][data-v-f4300bb0]:hover,input[type=text][data-v-f4300bb0]:hover,input[type=time][data-v-f4300bb0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f4300bb0]:focus,input[type=number][data-v-f4300bb0]:focus,input[type=password][data-v-f4300bb0]:focus,input[type=search][data-v-f4300bb0]:focus,input[type=text][data-v-f4300bb0]:focus,input[type=time][data-v-f4300bb0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f4300bb0],input[type=number].with-icon[data-v-f4300bb0],input[type=password].with-icon[data-v-f4300bb0],input[type=search].with-icon[data-v-f4300bb0],input[type=text].with-icon[data-v-f4300bb0],input[type=time].with-icon[data-v-f4300bb0]{padding-left:.3em}input[type=search][data-v-f4300bb0],input[type=text][data-v-f4300bb0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f4300bb0]{animation-fill-mode:both;animation-name:fadeIn-f4300bb0;-webkit-animation-name:fadeIn-f4300bb0}.fade-in[data-v-f4300bb0],.fade-out[data-v-f4300bb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f4300bb0]{animation-fill-mode:both;animation-name:fadeOut-f4300bb0;-webkit-animation-name:fadeOut-f4300bb0}.expand[data-v-f4300bb0]{animation-fill-mode:both;animation-name:expand-f4300bb0;-webkit-animation-name:expand-f4300bb0}.expand[data-v-f4300bb0],.shrink[data-v-f4300bb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-f4300bb0]{animation-fill-mode:both;animation-name:shrink-f4300bb0;-webkit-animation-name:shrink-f4300bb0}.fold[data-v-f4300bb0]{animation-fill-mode:both;animation-name:fold-f4300bb0;-webkit-animation-name:fold-f4300bb0}.fold[data-v-f4300bb0],.unfold[data-v-f4300bb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-f4300bb0]{animation-fill-mode:both;animation-name:unfold-f4300bb0;-webkit-animation-name:unfold-f4300bb0}.dim[data-v-f4300bb0]{animation-fill-mode:both;animation-name:dim-f4300bb0;-webkit-animation-name:dim-f4300bb0}.brighten[data-v-f4300bb0],.dim[data-v-f4300bb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-f4300bb0]{animation-fill-mode:both;animation-name:brighten-f4300bb0;-webkit-animation-name:brighten-f4300bb0}@keyframes fadeIn-f4300bb0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f4300bb0{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-f4300bb0{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-f4300bb0{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-f4300bb0{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-f4300bb0{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-f4300bb0{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-f4300bb0{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-f4300bb0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f4300bb0;-webkit-animation-name:glow-f4300bb0}.loop[data-v-f4300bb0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f4300bb0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f4300bb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f4300bb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f4300bb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tabs[data-v-f4300bb0]{background:#f6f6f6;display:flex;flex-direction:row;align-items:flex-end;margin-top:.2em;margin-bottom:.2em;box-shadow:0 3px 2px -1px silver} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3368.545f822b.css b/platypush/backend/http/webapp/dist/static/css/3368.be1ab054.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/3368.545f822b.css rename to platypush/backend/http/webapp/dist/static/css/3368.be1ab054.css index b3a9071c9b..8d07dbb7f1 100644 --- a/platypush/backend/http/webapp/dist/static/css/3368.545f822b.css +++ b/platypush/backend/http/webapp/dist/static/css/3368.be1ab054.css @@ -1 +1 @@ -.col-1[data-v-043593ec],.entity .head .icon[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-043593ec]:first-child,.entity .head .icon[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-043593ec]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-043593ec]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-043593ec]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-043593ec]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-043593ec],.entity .head .value-and-toggler[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-043593ec]:first-child,.entity .head .value-and-toggler[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-043593ec]:first-child{margin-left:26%!important}.col-offset-3[data-v-043593ec]:not(first-child){margin-left:30%!important}.col-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-043593ec]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-043593ec]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-043593ec]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-043593ec]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-043593ec]:first-child{margin-left:52%!important}.col-offset-6[data-v-043593ec]:not(first-child){margin-left:56%!important}.col-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-043593ec]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-043593ec]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-043593ec]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-043593ec]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-043593ec]:first-child{margin-left:78%!important}.col-offset-9[data-v-043593ec]:not(first-child){margin-left:82%!important}.col-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-043593ec]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-043593ec]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-043593ec]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-043593ec]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-043593ec],.entity .head .value-container[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-043593ec]:first-child,.entity .head .value-container[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-3[data-v-043593ec]{margin-left:26%}.col-no-margin-s-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-6[data-v-043593ec]{margin-left:52%}.col-no-margin-s-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-043593ec],.entity .head .label[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-043593ec]:first-child,.entity .head .label[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-9[data-v-043593ec]{margin-left:78%}.col-no-margin-s-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-043593ec],.attributes .child .value[data-v-043593ec],.col-s-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-043593ec]:first-child,.attributes .child .value[data-v-043593ec]:first-child,.col-s-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-s-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-043593ec]{display:none!important}.s-visible[data-v-043593ec]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-043593ec],.entity .head .value-container[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-043593ec]:first-child,.entity .head .value-container[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-3[data-v-043593ec]{margin-left:26%}.col-no-margin-m-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-043593ec],.attributes .child .value[data-v-043593ec],.col-m-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-043593ec]:first-child,.attributes .child .value[data-v-043593ec]:first-child,.col-m-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-6[data-v-043593ec]{margin-left:52%}.col-no-margin-m-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-043593ec],.entity .head .label[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-043593ec]:first-child,.entity .head .label[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-9[data-v-043593ec]{margin-left:78%}.col-no-margin-m-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-m-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-043593ec]{display:none!important}.m-visible[data-v-043593ec]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-3[data-v-043593ec]{margin-left:26%}.col-no-margin-l-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-6[data-v-043593ec]{margin-left:52%}.col-no-margin-l-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-9[data-v-043593ec]{margin-left:78%}.col-no-margin-l-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-l-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-043593ec]{display:none!important}.l-visible[data-v-043593ec]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-3[data-v-043593ec]{margin-left:26%}.col-no-margin-xl-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-6[data-v-043593ec]{margin-left:52%}.col-no-margin-xl-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-9[data-v-043593ec]{margin-left:78%}.col-no-margin-xl-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-043593ec]{display:none!important}.xl-visible[data-v-043593ec]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-3[data-v-043593ec]{margin-left:26%}.col-no-margin-xxl-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-6[data-v-043593ec]{margin-left:52%}.col-no-margin-xxl-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-9[data-v-043593ec]{margin-left:78%}.col-no-margin-xxl-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-043593ec]{display:none!important}.xxl-visible[data-v-043593ec]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-043593ec]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-043593ec]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-043593ec]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-043593ec]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-043593ec]{display:none!important}}.vertical-center[data-v-043593ec]{display:flex;align-items:center}.horizontal-center[data-v-043593ec]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-043593ec],.pull-right[data-v-043593ec]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-043593ec]{display:none!important}.no-content[data-v-043593ec]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-043593ec]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-043593ec]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-043593ec]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-043593ec]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-043593ec]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-043593ec]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-043593ec],.btn[data-v-043593ec],button[data-v-043593ec]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-043593ec],.btn-default[type=submit][data-v-043593ec],.btn.btn-primary[data-v-043593ec],.btn[type=submit][data-v-043593ec],button.btn-primary[data-v-043593ec],button[type=submit][data-v-043593ec]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-043593ec],.btn-default .icon[data-v-043593ec],button .icon[data-v-043593ec]{margin-right:.5em}input[type=password][data-v-043593ec],input[type=text][data-v-043593ec]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-043593ec]:focus,input[type=text][data-v-043593ec]:focus{border:1px solid #35b870}button[data-v-043593ec],input[data-v-043593ec]{outline:none}input[type=text][data-v-043593ec]:hover,textarea[data-v-043593ec]:hover{border:1px solid #9cdfb0}ul[data-v-043593ec]{margin:0;padding:0;list-style:none}a[data-v-043593ec]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-043593ec]:hover{color:#35b870}[data-v-043593ec]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-043593ec]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-043593ec]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-043593ec]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-043593ec]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-043593ec] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-043593ec] .nav .path{cursor:pointer}.browser[data-v-043593ec] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-043593ec] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-043593ec]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-043593ec],input[type=number][data-v-043593ec],input[type=password][data-v-043593ec],input[type=search][data-v-043593ec],input[type=text][data-v-043593ec],input[type=time][data-v-043593ec]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-043593ec]:hover,input[type=number][data-v-043593ec]:hover,input[type=password][data-v-043593ec]:hover,input[type=search][data-v-043593ec]:hover,input[type=text][data-v-043593ec]:hover,input[type=time][data-v-043593ec]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-043593ec]:focus,input[type=number][data-v-043593ec]:focus,input[type=password][data-v-043593ec]:focus,input[type=search][data-v-043593ec]:focus,input[type=text][data-v-043593ec]:focus,input[type=time][data-v-043593ec]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-043593ec],input[type=number].with-icon[data-v-043593ec],input[type=password].with-icon[data-v-043593ec],input[type=search].with-icon[data-v-043593ec],input[type=text].with-icon[data-v-043593ec],input[type=time].with-icon[data-v-043593ec]{padding-left:.3em}input[type=search][data-v-043593ec],input[type=text][data-v-043593ec]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-043593ec],.fade-in[data-v-043593ec]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-043593ec;-webkit-animation-name:fadeIn-043593ec}.fade-out[data-v-043593ec]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-043593ec;-webkit-animation-name:fadeOut-043593ec}@keyframes fadeIn-043593ec{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-043593ec{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-043593ec]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-043593ec;-webkit-animation-name:glow-043593ec}.loop[data-v-043593ec]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-043593ec{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-043593ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-043593ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-043593ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-043593ec]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-043593ec]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-043593ec]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-043593ec]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-043593ec]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-043593ec]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-043593ec]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-043593ec]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-043593ec]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-043593ec]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-043593ec]{margin-right:.5em}.entity .head .icon[data-v-043593ec]:hover{color:#35b870}.entity .head .label[data-v-043593ec]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-043593ec]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-043593ec]:hover{color:#35b870}.entity .head .value[data-v-043593ec]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-043593ec]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-043593ec]{margin-right:2.5em}.entity .head .value-container[data-v-043593ec]{min-width:7em}.entity .head .unit[data-v-043593ec]{margin-left:.2em}.entity .head .pull-right[data-v-043593ec],.entity .head .value-container[data-v-043593ec]{padding-right:.5em}.entity .head .pull-right[data-v-043593ec] .power-switch,.entity .head .value-container[data-v-043593ec] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-043593ec]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-043593ec]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-043593ec]:hover{color:#35b870}.collapse-toggler[data-v-043593ec]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-043593ec]:hover{color:#35b870}.attributes .child[data-v-043593ec]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-043593ec]{flex-direction:column}}.attributes .child[data-v-043593ec]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-043593ec]:hover{cursor:auto}.attributes .child.head[data-v-043593ec]{cursor:pointer}.attributes .child.head[data-v-043593ec]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-043593ec]{font-weight:700}.attributes .child .value[data-v-043593ec]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-043593ec]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-043593ec]:last-child,.entity-container-wrapper.with-children[data-v-043593ec]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-043593ec]{animation:blink-animation-043593ec 1s steps(20,start)}@keyframes blink-animation-043593ec{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.switch-container .head .value-container button[data-v-043593ec]{margin-right:.5em}.switch-container .body[data-v-043593ec]{padding:1em!important;display:flex}.switch-container .body .row[data-v-043593ec]{width:100%;display:flex;text-align:center}.switch-container .body .row .icon[data-v-043593ec]{width:2em;text-align:center}.switch-container .body .row .input select[data-v-043593ec],.switch-container .body .row .input[data-v-043593ec]{width:100%} \ No newline at end of file +.col-1[data-v-043593ec],.entity .head .icon[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-043593ec]:first-child,.entity .head .icon[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-043593ec]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-043593ec]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-043593ec]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-043593ec]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-043593ec],.entity .head .value-and-toggler[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-043593ec]:first-child,.entity .head .value-and-toggler[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-043593ec]:first-child{margin-left:26%!important}.col-offset-3[data-v-043593ec]:not(first-child){margin-left:30%!important}.col-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-043593ec]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-043593ec]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-043593ec]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-043593ec]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-043593ec]:first-child{margin-left:52%!important}.col-offset-6[data-v-043593ec]:not(first-child){margin-left:56%!important}.col-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-043593ec]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-043593ec]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-043593ec]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-043593ec]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-043593ec]:first-child{margin-left:78%!important}.col-offset-9[data-v-043593ec]:not(first-child){margin-left:82%!important}.col-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-043593ec]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-043593ec]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-043593ec]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-043593ec]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-043593ec],.entity .head .value-container[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-043593ec]:first-child,.entity .head .value-container[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-3[data-v-043593ec]{margin-left:26%}.col-no-margin-s-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-6[data-v-043593ec]{margin-left:52%}.col-no-margin-s-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-043593ec],.entity .head .label[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-043593ec]:first-child,.entity .head .label[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-9[data-v-043593ec]{margin-left:78%}.col-no-margin-s-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-s-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-043593ec],.attributes .child .value[data-v-043593ec],.col-s-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-043593ec]:first-child,.attributes .child .value[data-v-043593ec]:first-child,.col-s-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-s-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-043593ec]{display:none!important}.s-visible[data-v-043593ec]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-043593ec],.entity .head .value-container[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-043593ec]:first-child,.entity .head .value-container[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-3[data-v-043593ec]{margin-left:26%}.col-no-margin-m-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-043593ec],.attributes .child .value[data-v-043593ec],.col-m-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-043593ec]:first-child,.attributes .child .value[data-v-043593ec]:first-child,.col-m-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-6[data-v-043593ec]{margin-left:52%}.col-no-margin-m-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-043593ec],.entity .head .label[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-043593ec]:first-child,.entity .head .label[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-9[data-v-043593ec]{margin-left:78%}.col-no-margin-m-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-m-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-m-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-043593ec]{display:none!important}.m-visible[data-v-043593ec]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-3[data-v-043593ec]{margin-left:26%}.col-no-margin-l-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-6[data-v-043593ec]{margin-left:52%}.col-no-margin-l-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-9[data-v-043593ec]{margin-left:78%}.col-no-margin-l-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-l-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-l-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-043593ec]{display:none!important}.l-visible[data-v-043593ec]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-3[data-v-043593ec]{margin-left:26%}.col-no-margin-xl-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-6[data-v-043593ec]{margin-left:52%}.col-no-margin-xl-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-9[data-v-043593ec]{margin-left:78%}.col-no-margin-xl-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-xl-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-043593ec]{display:none!important}.xl-visible[data-v-043593ec]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-043593ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-1[data-v-043593ec]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-043593ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-043593ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-2[data-v-043593ec]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-043593ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-043593ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-3[data-v-043593ec]{margin-left:26%}.col-no-margin-xxl-3[data-v-043593ec]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-043593ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-4[data-v-043593ec]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-043593ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-043593ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-5[data-v-043593ec]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-043593ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-043593ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-6[data-v-043593ec]{margin-left:52%}.col-no-margin-xxl-6[data-v-043593ec]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-043593ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-7[data-v-043593ec]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-043593ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-043593ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-8[data-v-043593ec]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-043593ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-043593ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-9[data-v-043593ec]{margin-left:78%}.col-no-margin-xxl-9[data-v-043593ec]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-043593ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-10[data-v-043593ec]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-043593ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-043593ec]:first-child{margin-left:0}.col-offset-xxl-11[data-v-043593ec]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-043593ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-043593ec]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-043593ec]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-043593ec]{display:none!important}.xxl-visible[data-v-043593ec]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-043593ec]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-043593ec]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-043593ec]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-043593ec]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-043593ec]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-043593ec]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-043593ec]{display:none!important}}.vertical-center[data-v-043593ec]{display:flex;align-items:center}.horizontal-center[data-v-043593ec]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-043593ec],.pull-right[data-v-043593ec]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-043593ec]{display:none!important}.no-content[data-v-043593ec]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-043593ec]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-043593ec]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-043593ec]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-043593ec]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-043593ec]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-043593ec]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-043593ec],.btn[data-v-043593ec],button[data-v-043593ec]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-043593ec],.btn-default[type=submit][data-v-043593ec],.btn.btn-primary[data-v-043593ec],.btn[type=submit][data-v-043593ec],button.btn-primary[data-v-043593ec],button[type=submit][data-v-043593ec]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-043593ec]:hover,.btn[data-v-043593ec]:hover,button[data-v-043593ec]:hover{color:#35b870}.btn .icon[data-v-043593ec],.btn-default .icon[data-v-043593ec],button .icon[data-v-043593ec]{margin-right:.5em}.btn-default[data-v-043593ec]:disabled,.btn-default[disabled][data-v-043593ec],.btn[data-v-043593ec]:disabled,.btn[disabled][data-v-043593ec],button[data-v-043593ec]:disabled,button[disabled][data-v-043593ec]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-043593ec]{cursor:grab!important}.dragged[data-v-043593ec]{opacity:.5!important}input[type=password][data-v-043593ec],input[type=text][data-v-043593ec]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-043593ec]:focus,input[type=text][data-v-043593ec]:focus{border:1px solid #35b870}button[data-v-043593ec],input[data-v-043593ec]{outline:none}input[type=text][data-v-043593ec]:hover,textarea[data-v-043593ec]:hover{border:1px solid #9cdfb0}ul[data-v-043593ec]{margin:0;padding:0;list-style:none}a[data-v-043593ec]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-043593ec]:hover{color:#35b870}[data-v-043593ec]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-043593ec]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-043593ec]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-043593ec]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-043593ec]{color:#ad1717}body[data-v-043593ec]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-043593ec] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-043593ec] .nav .path{cursor:pointer}.browser[data-v-043593ec] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-043593ec] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-043593ec]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-043593ec]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-043593ec],input[type=number][data-v-043593ec],input[type=password][data-v-043593ec],input[type=search][data-v-043593ec],input[type=text][data-v-043593ec],input[type=time][data-v-043593ec]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-043593ec]:hover,input[type=number][data-v-043593ec]:hover,input[type=password][data-v-043593ec]:hover,input[type=search][data-v-043593ec]:hover,input[type=text][data-v-043593ec]:hover,input[type=time][data-v-043593ec]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-043593ec]:focus,input[type=number][data-v-043593ec]:focus,input[type=password][data-v-043593ec]:focus,input[type=search][data-v-043593ec]:focus,input[type=text][data-v-043593ec]:focus,input[type=time][data-v-043593ec]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-043593ec],input[type=number].with-icon[data-v-043593ec],input[type=password].with-icon[data-v-043593ec],input[type=search].with-icon[data-v-043593ec],input[type=text].with-icon[data-v-043593ec],input[type=time].with-icon[data-v-043593ec]{padding-left:.3em}input[type=search][data-v-043593ec],input[type=text][data-v-043593ec]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-043593ec],.fade-in[data-v-043593ec]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-043593ec;-webkit-animation-name:fadeIn-043593ec}.fade-out[data-v-043593ec]{animation-fill-mode:both;animation-name:fadeOut-043593ec;-webkit-animation-name:fadeOut-043593ec}.expand[data-v-043593ec],.fade-out[data-v-043593ec]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-043593ec]{animation-fill-mode:both;animation-name:expand-043593ec;-webkit-animation-name:expand-043593ec}.shrink[data-v-043593ec]{animation-fill-mode:both;animation-name:shrink-043593ec;-webkit-animation-name:shrink-043593ec}.fold[data-v-043593ec],.shrink[data-v-043593ec]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-043593ec]{animation-fill-mode:both;animation-name:fold-043593ec;-webkit-animation-name:fold-043593ec}.unfold[data-v-043593ec]{animation-fill-mode:both;animation-name:unfold-043593ec;-webkit-animation-name:unfold-043593ec}.dim[data-v-043593ec],.unfold[data-v-043593ec]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-043593ec]{animation-fill-mode:both;animation-name:dim-043593ec;-webkit-animation-name:dim-043593ec}.brighten[data-v-043593ec]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-043593ec;-webkit-animation-name:brighten-043593ec}@keyframes fadeIn-043593ec{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-043593ec{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-043593ec{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-043593ec{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-043593ec{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-043593ec{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-043593ec{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-043593ec{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-043593ec]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-043593ec;-webkit-animation-name:glow-043593ec}.loop[data-v-043593ec]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-043593ec{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-043593ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-043593ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-043593ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-043593ec]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-043593ec]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-043593ec]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-043593ec]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-043593ec]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-043593ec]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-043593ec]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-043593ec]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-043593ec]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-043593ec]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-043593ec]{margin-right:.5em}.entity .head .icon[data-v-043593ec]:hover{color:#35b870}.entity .head .label[data-v-043593ec]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-043593ec]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-043593ec]:hover{color:#35b870}.entity .head .value[data-v-043593ec]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-043593ec]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-043593ec]{margin-right:2.5em}.entity .head .value-container[data-v-043593ec]{min-width:7em}.entity .head .unit[data-v-043593ec]{margin-left:.2em}.entity .head .pull-right[data-v-043593ec],.entity .head .value-container[data-v-043593ec]{padding-right:.5em}.entity .head .pull-right[data-v-043593ec] .power-switch,.entity .head .value-container[data-v-043593ec] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-043593ec]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-043593ec]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-043593ec]:hover{color:#35b870}.collapse-toggler[data-v-043593ec]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-043593ec]:hover{color:#35b870}.attributes .child[data-v-043593ec]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-043593ec]{flex-direction:column}}.attributes .child[data-v-043593ec]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-043593ec]:hover{cursor:auto}.attributes .child.head[data-v-043593ec]{cursor:pointer}.attributes .child.head[data-v-043593ec]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-043593ec]{font-weight:700}.attributes .child .value[data-v-043593ec]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-043593ec]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-043593ec]:last-child,.entity-container-wrapper.with-children[data-v-043593ec]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-043593ec]{animation:blink-animation-043593ec 1s steps(20,start)}@keyframes blink-animation-043593ec{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.switch-container .head .value-container button[data-v-043593ec]{margin-right:.5em}.switch-container .body[data-v-043593ec]{padding:1em!important;display:flex}.switch-container .body .row[data-v-043593ec]{width:100%;display:flex;text-align:center}.switch-container .body .row .icon[data-v-043593ec]{width:2em;text-align:center}.switch-container .body .row .input select[data-v-043593ec],.switch-container .body .row .input[data-v-043593ec]{width:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3369.8baddf78.css b/platypush/backend/http/webapp/dist/static/css/3369.5df5b182.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/3369.8baddf78.css rename to platypush/backend/http/webapp/dist/static/css/3369.5df5b182.css index abc70b583b..92a8a493a3 100644 --- a/platypush/backend/http/webapp/dist/static/css/3369.8baddf78.css +++ b/platypush/backend/http/webapp/dist/static/css/3369.5df5b182.css @@ -1 +1 @@ -.col-1[data-v-5c2a37ed],.entity .head .icon[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5c2a37ed]:first-child,.entity .head .icon[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5c2a37ed]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5c2a37ed]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5c2a37ed]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5c2a37ed]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5c2a37ed],.entity .head .value-and-toggler[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5c2a37ed]:first-child,.entity .head .value-and-toggler[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5c2a37ed]:first-child{margin-left:26%!important}.col-offset-3[data-v-5c2a37ed]:not(first-child){margin-left:30%!important}.col-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5c2a37ed]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5c2a37ed]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5c2a37ed]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5c2a37ed]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5c2a37ed]:first-child{margin-left:52%!important}.col-offset-6[data-v-5c2a37ed]:not(first-child){margin-left:56%!important}.col-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5c2a37ed]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5c2a37ed]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5c2a37ed]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5c2a37ed]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5c2a37ed]:first-child{margin-left:78%!important}.col-offset-9[data-v-5c2a37ed]:not(first-child){margin-left:82%!important}.col-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5c2a37ed]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5c2a37ed]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5c2a37ed]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5c2a37ed]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5c2a37ed],.entity .head .value-container[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5c2a37ed]:first-child,.entity .head .value-container[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-s-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-s-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5c2a37ed],.entity .head .label[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5c2a37ed]:first-child,.entity .head .label[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-s-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-5c2a37ed],.attributes .child .value[data-v-5c2a37ed],.col-s-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-5c2a37ed]:first-child,.attributes .child .value[data-v-5c2a37ed]:first-child,.col-s-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5c2a37ed]{display:none!important}.s-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5c2a37ed],.entity .head .value-container[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5c2a37ed]:first-child,.entity .head .value-container[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-m-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-5c2a37ed],.attributes .child .value[data-v-5c2a37ed],.col-m-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-5c2a37ed]:first-child,.attributes .child .value[data-v-5c2a37ed]:first-child,.col-m-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-m-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5c2a37ed],.entity .head .label[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5c2a37ed]:first-child,.entity .head .label[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-m-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5c2a37ed]{display:none!important}.m-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-l-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-l-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-l-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5c2a37ed]{display:none!important}.l-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-xl-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-xl-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-xl-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5c2a37ed]{display:none!important}.xl-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-xxl-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-xxl-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-xxl-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5c2a37ed]{display:none!important}.xxl-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5c2a37ed]{display:none!important}}.vertical-center[data-v-5c2a37ed]{display:flex;align-items:center}.horizontal-center[data-v-5c2a37ed]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-5c2a37ed],.pull-right[data-v-5c2a37ed]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5c2a37ed]{display:none!important}.no-content[data-v-5c2a37ed]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5c2a37ed]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5c2a37ed],.btn[data-v-5c2a37ed],button[data-v-5c2a37ed]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5c2a37ed],.btn-default[type=submit][data-v-5c2a37ed],.btn.btn-primary[data-v-5c2a37ed],.btn[type=submit][data-v-5c2a37ed],button.btn-primary[data-v-5c2a37ed],button[type=submit][data-v-5c2a37ed]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5c2a37ed],.btn-default .icon[data-v-5c2a37ed],button .icon[data-v-5c2a37ed]{margin-right:.5em}input[type=password][data-v-5c2a37ed],input[type=text][data-v-5c2a37ed]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5c2a37ed]:focus,input[type=text][data-v-5c2a37ed]:focus{border:1px solid #35b870}button[data-v-5c2a37ed],input[data-v-5c2a37ed]{outline:none}input[type=text][data-v-5c2a37ed]:hover,textarea[data-v-5c2a37ed]:hover{border:1px solid #9cdfb0}ul[data-v-5c2a37ed]{margin:0;padding:0;list-style:none}a[data-v-5c2a37ed]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5c2a37ed]:hover{color:#35b870}[data-v-5c2a37ed]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5c2a37ed]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5c2a37ed]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5c2a37ed]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5c2a37ed]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5c2a37ed] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5c2a37ed] .nav .path{cursor:pointer}.browser[data-v-5c2a37ed] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5c2a37ed] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-5c2a37ed]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5c2a37ed],input[type=number][data-v-5c2a37ed],input[type=password][data-v-5c2a37ed],input[type=search][data-v-5c2a37ed],input[type=text][data-v-5c2a37ed],input[type=time][data-v-5c2a37ed]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-5c2a37ed]:hover,input[type=number][data-v-5c2a37ed]:hover,input[type=password][data-v-5c2a37ed]:hover,input[type=search][data-v-5c2a37ed]:hover,input[type=text][data-v-5c2a37ed]:hover,input[type=time][data-v-5c2a37ed]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5c2a37ed]:focus,input[type=number][data-v-5c2a37ed]:focus,input[type=password][data-v-5c2a37ed]:focus,input[type=search][data-v-5c2a37ed]:focus,input[type=text][data-v-5c2a37ed]:focus,input[type=time][data-v-5c2a37ed]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5c2a37ed],input[type=number].with-icon[data-v-5c2a37ed],input[type=password].with-icon[data-v-5c2a37ed],input[type=search].with-icon[data-v-5c2a37ed],input[type=text].with-icon[data-v-5c2a37ed],input[type=time].with-icon[data-v-5c2a37ed]{padding-left:.3em}input[type=search][data-v-5c2a37ed],input[type=text][data-v-5c2a37ed]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-5c2a37ed],.fade-in[data-v-5c2a37ed]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-5c2a37ed;-webkit-animation-name:fadeIn-5c2a37ed}.fade-out[data-v-5c2a37ed]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-5c2a37ed;-webkit-animation-name:fadeOut-5c2a37ed}@keyframes fadeIn-5c2a37ed{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5c2a37ed{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-5c2a37ed]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5c2a37ed;-webkit-animation-name:glow-5c2a37ed}.loop[data-v-5c2a37ed]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5c2a37ed{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5c2a37ed]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5c2a37ed]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5c2a37ed]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-5c2a37ed]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-5c2a37ed]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-5c2a37ed]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-5c2a37ed]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-5c2a37ed]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-5c2a37ed]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-5c2a37ed]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-5c2a37ed]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-5c2a37ed]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-5c2a37ed]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-5c2a37ed]{margin-right:.5em}.entity .head .icon[data-v-5c2a37ed]:hover{color:#35b870}.entity .head .label[data-v-5c2a37ed]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-5c2a37ed]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-5c2a37ed]:hover{color:#35b870}.entity .head .value[data-v-5c2a37ed]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-5c2a37ed]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-5c2a37ed]{margin-right:2.5em}.entity .head .value-container[data-v-5c2a37ed]{min-width:7em}.entity .head .unit[data-v-5c2a37ed]{margin-left:.2em}.entity .head .pull-right[data-v-5c2a37ed],.entity .head .value-container[data-v-5c2a37ed]{padding-right:.5em}.entity .head .pull-right[data-v-5c2a37ed] .power-switch,.entity .head .value-container[data-v-5c2a37ed] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-5c2a37ed]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-5c2a37ed]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-5c2a37ed]:hover{color:#35b870}.collapse-toggler[data-v-5c2a37ed]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-5c2a37ed]:hover{color:#35b870}.attributes .child[data-v-5c2a37ed]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-5c2a37ed]{flex-direction:column}}.attributes .child[data-v-5c2a37ed]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-5c2a37ed]:hover{cursor:auto}.attributes .child.head[data-v-5c2a37ed]{cursor:pointer}.attributes .child.head[data-v-5c2a37ed]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-5c2a37ed]{font-weight:700}.attributes .child .value[data-v-5c2a37ed]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-5c2a37ed]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-5c2a37ed]:last-child,.entity-container-wrapper.with-children[data-v-5c2a37ed]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-5c2a37ed]{animation:blink-animation-5c2a37ed 1s steps(20,start)}@keyframes blink-animation-5c2a37ed{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-5c2a37ed],.entity .head .icon[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5c2a37ed]:first-child,.entity .head .icon[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5c2a37ed]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5c2a37ed]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5c2a37ed]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5c2a37ed]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5c2a37ed],.entity .head .value-and-toggler[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5c2a37ed]:first-child,.entity .head .value-and-toggler[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5c2a37ed]:first-child{margin-left:26%!important}.col-offset-3[data-v-5c2a37ed]:not(first-child){margin-left:30%!important}.col-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5c2a37ed]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5c2a37ed]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5c2a37ed]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5c2a37ed]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5c2a37ed]:first-child{margin-left:52%!important}.col-offset-6[data-v-5c2a37ed]:not(first-child){margin-left:56%!important}.col-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5c2a37ed]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5c2a37ed]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5c2a37ed]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5c2a37ed]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5c2a37ed]:first-child{margin-left:78%!important}.col-offset-9[data-v-5c2a37ed]:not(first-child){margin-left:82%!important}.col-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5c2a37ed]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5c2a37ed]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5c2a37ed]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5c2a37ed]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5c2a37ed],.entity .head .value-container[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5c2a37ed]:first-child,.entity .head .value-container[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-s-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-s-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5c2a37ed],.entity .head .label[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5c2a37ed]:first-child,.entity .head .label[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-s-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-s-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-5c2a37ed],.attributes .child .value[data-v-5c2a37ed],.col-s-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-5c2a37ed]:first-child,.attributes .child .value[data-v-5c2a37ed]:first-child,.col-s-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5c2a37ed]{display:none!important}.s-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5c2a37ed],.entity .head .value-container[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5c2a37ed]:first-child,.entity .head .value-container[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-m-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-5c2a37ed],.attributes .child .value[data-v-5c2a37ed],.col-m-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-5c2a37ed]:first-child,.attributes .child .value[data-v-5c2a37ed]:first-child,.col-m-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-m-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5c2a37ed],.entity .head .label[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5c2a37ed]:first-child,.entity .head .label[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-m-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-m-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5c2a37ed]{display:none!important}.m-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-l-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-l-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-l-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-l-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5c2a37ed]{display:none!important}.l-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-xl-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-xl-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-xl-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xl-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5c2a37ed]{display:none!important}.xl-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5c2a37ed]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5c2a37ed]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5c2a37ed]{margin-left:26%}.col-no-margin-xxl-3[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5c2a37ed]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5c2a37ed]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5c2a37ed]{margin-left:52%}.col-no-margin-xxl-6[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5c2a37ed]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5c2a37ed]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5c2a37ed]{margin-left:78%}.col-no-margin-xxl-9[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5c2a37ed]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5c2a37ed]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5c2a37ed]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5c2a37ed]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5c2a37ed]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5c2a37ed]{display:none!important}.xxl-visible[data-v-5c2a37ed]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5c2a37ed]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5c2a37ed]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5c2a37ed]{display:none!important}}.vertical-center[data-v-5c2a37ed]{display:flex;align-items:center}.horizontal-center[data-v-5c2a37ed]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-5c2a37ed],.pull-right[data-v-5c2a37ed]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5c2a37ed]{display:none!important}.no-content[data-v-5c2a37ed]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5c2a37ed]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5c2a37ed]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5c2a37ed],.btn[data-v-5c2a37ed],button[data-v-5c2a37ed]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5c2a37ed],.btn-default[type=submit][data-v-5c2a37ed],.btn.btn-primary[data-v-5c2a37ed],.btn[type=submit][data-v-5c2a37ed],button.btn-primary[data-v-5c2a37ed],button[type=submit][data-v-5c2a37ed]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5c2a37ed]:hover,.btn[data-v-5c2a37ed]:hover,button[data-v-5c2a37ed]:hover{color:#35b870}.btn .icon[data-v-5c2a37ed],.btn-default .icon[data-v-5c2a37ed],button .icon[data-v-5c2a37ed]{margin-right:.5em}.btn-default[data-v-5c2a37ed]:disabled,.btn-default[disabled][data-v-5c2a37ed],.btn[data-v-5c2a37ed]:disabled,.btn[disabled][data-v-5c2a37ed],button[data-v-5c2a37ed]:disabled,button[disabled][data-v-5c2a37ed]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5c2a37ed]{cursor:grab!important}.dragged[data-v-5c2a37ed]{opacity:.5!important}input[type=password][data-v-5c2a37ed],input[type=text][data-v-5c2a37ed]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5c2a37ed]:focus,input[type=text][data-v-5c2a37ed]:focus{border:1px solid #35b870}button[data-v-5c2a37ed],input[data-v-5c2a37ed]{outline:none}input[type=text][data-v-5c2a37ed]:hover,textarea[data-v-5c2a37ed]:hover{border:1px solid #9cdfb0}ul[data-v-5c2a37ed]{margin:0;padding:0;list-style:none}a[data-v-5c2a37ed]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5c2a37ed]:hover{color:#35b870}[data-v-5c2a37ed]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5c2a37ed]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5c2a37ed]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5c2a37ed]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5c2a37ed]{color:#ad1717}body[data-v-5c2a37ed]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5c2a37ed] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5c2a37ed] .nav .path{cursor:pointer}.browser[data-v-5c2a37ed] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5c2a37ed] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5c2a37ed]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5c2a37ed]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5c2a37ed],input[type=number][data-v-5c2a37ed],input[type=password][data-v-5c2a37ed],input[type=search][data-v-5c2a37ed],input[type=text][data-v-5c2a37ed],input[type=time][data-v-5c2a37ed]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5c2a37ed]:hover,input[type=number][data-v-5c2a37ed]:hover,input[type=password][data-v-5c2a37ed]:hover,input[type=search][data-v-5c2a37ed]:hover,input[type=text][data-v-5c2a37ed]:hover,input[type=time][data-v-5c2a37ed]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5c2a37ed]:focus,input[type=number][data-v-5c2a37ed]:focus,input[type=password][data-v-5c2a37ed]:focus,input[type=search][data-v-5c2a37ed]:focus,input[type=text][data-v-5c2a37ed]:focus,input[type=time][data-v-5c2a37ed]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5c2a37ed],input[type=number].with-icon[data-v-5c2a37ed],input[type=password].with-icon[data-v-5c2a37ed],input[type=search].with-icon[data-v-5c2a37ed],input[type=text].with-icon[data-v-5c2a37ed],input[type=time].with-icon[data-v-5c2a37ed]{padding-left:.3em}input[type=search][data-v-5c2a37ed],input[type=text][data-v-5c2a37ed]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-5c2a37ed],.fade-in[data-v-5c2a37ed]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-5c2a37ed;-webkit-animation-name:fadeIn-5c2a37ed}.fade-out[data-v-5c2a37ed]{animation-fill-mode:both;animation-name:fadeOut-5c2a37ed;-webkit-animation-name:fadeOut-5c2a37ed}.expand[data-v-5c2a37ed],.fade-out[data-v-5c2a37ed]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-5c2a37ed]{animation-fill-mode:both;animation-name:expand-5c2a37ed;-webkit-animation-name:expand-5c2a37ed}.shrink[data-v-5c2a37ed]{animation-fill-mode:both;animation-name:shrink-5c2a37ed;-webkit-animation-name:shrink-5c2a37ed}.fold[data-v-5c2a37ed],.shrink[data-v-5c2a37ed]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-5c2a37ed]{animation-fill-mode:both;animation-name:fold-5c2a37ed;-webkit-animation-name:fold-5c2a37ed}.unfold[data-v-5c2a37ed]{animation-fill-mode:both;animation-name:unfold-5c2a37ed;-webkit-animation-name:unfold-5c2a37ed}.dim[data-v-5c2a37ed],.unfold[data-v-5c2a37ed]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-5c2a37ed]{animation-fill-mode:both;animation-name:dim-5c2a37ed;-webkit-animation-name:dim-5c2a37ed}.brighten[data-v-5c2a37ed]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-5c2a37ed;-webkit-animation-name:brighten-5c2a37ed}@keyframes fadeIn-5c2a37ed{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5c2a37ed{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5c2a37ed{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5c2a37ed{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5c2a37ed{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5c2a37ed{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5c2a37ed{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5c2a37ed{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5c2a37ed]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5c2a37ed;-webkit-animation-name:glow-5c2a37ed}.loop[data-v-5c2a37ed]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5c2a37ed{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5c2a37ed]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5c2a37ed]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5c2a37ed]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-5c2a37ed]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-5c2a37ed]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-5c2a37ed]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-5c2a37ed]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-5c2a37ed]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-5c2a37ed]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-5c2a37ed]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-5c2a37ed]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-5c2a37ed]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-5c2a37ed]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-5c2a37ed]{margin-right:.5em}.entity .head .icon[data-v-5c2a37ed]:hover{color:#35b870}.entity .head .label[data-v-5c2a37ed]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-5c2a37ed]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-5c2a37ed]:hover{color:#35b870}.entity .head .value[data-v-5c2a37ed]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-5c2a37ed]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-5c2a37ed]{margin-right:2.5em}.entity .head .value-container[data-v-5c2a37ed]{min-width:7em}.entity .head .unit[data-v-5c2a37ed]{margin-left:.2em}.entity .head .pull-right[data-v-5c2a37ed],.entity .head .value-container[data-v-5c2a37ed]{padding-right:.5em}.entity .head .pull-right[data-v-5c2a37ed] .power-switch,.entity .head .value-container[data-v-5c2a37ed] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-5c2a37ed]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-5c2a37ed]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-5c2a37ed]:hover{color:#35b870}.collapse-toggler[data-v-5c2a37ed]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-5c2a37ed]:hover{color:#35b870}.attributes .child[data-v-5c2a37ed]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-5c2a37ed]{flex-direction:column}}.attributes .child[data-v-5c2a37ed]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-5c2a37ed]:hover{cursor:auto}.attributes .child.head[data-v-5c2a37ed]{cursor:pointer}.attributes .child.head[data-v-5c2a37ed]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-5c2a37ed]{font-weight:700}.attributes .child .value[data-v-5c2a37ed]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-5c2a37ed]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-5c2a37ed]:last-child,.entity-container-wrapper.with-children[data-v-5c2a37ed]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-5c2a37ed]{animation:blink-animation-5c2a37ed 1s steps(20,start)}@keyframes blink-animation-5c2a37ed{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3393.eca14a3e.css b/platypush/backend/http/webapp/dist/static/css/3393.eca14a3e.css deleted file mode 100644 index 4f8eabf1f2..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/3393.eca14a3e.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-97df2e2e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-97df2e2e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-97df2e2e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-97df2e2e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-97df2e2e]:first-child{margin-left:26%!important}.col-offset-3[data-v-97df2e2e]:not(first-child){margin-left:30%!important}.col-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-97df2e2e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-97df2e2e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-97df2e2e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-97df2e2e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-97df2e2e]:first-child{margin-left:52%!important}.col-offset-6[data-v-97df2e2e]:not(first-child){margin-left:56%!important}.col-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-97df2e2e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-97df2e2e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-97df2e2e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-97df2e2e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-97df2e2e]:first-child{margin-left:78%!important}.col-offset-9[data-v-97df2e2e]:not(first-child){margin-left:82%!important}.col-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-97df2e2e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-97df2e2e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-97df2e2e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-97df2e2e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-1[data-v-97df2e2e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-2[data-v-97df2e2e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-3[data-v-97df2e2e]{margin-left:26%}.col-no-margin-s-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-4[data-v-97df2e2e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-5[data-v-97df2e2e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-6[data-v-97df2e2e]{margin-left:52%}.col-no-margin-s-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-7[data-v-97df2e2e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-8[data-v-97df2e2e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-9[data-v-97df2e2e]{margin-left:78%}.col-no-margin-s-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-10[data-v-97df2e2e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-s-11[data-v-97df2e2e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-97df2e2e]{display:none!important}.s-visible[data-v-97df2e2e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-1[data-v-97df2e2e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-2[data-v-97df2e2e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-3[data-v-97df2e2e]{margin-left:26%}.col-no-margin-m-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-4[data-v-97df2e2e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-5[data-v-97df2e2e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-6[data-v-97df2e2e]{margin-left:52%}.col-no-margin-m-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-7[data-v-97df2e2e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-8[data-v-97df2e2e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-9[data-v-97df2e2e]{margin-left:78%}.col-no-margin-m-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-10[data-v-97df2e2e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-m-11[data-v-97df2e2e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-97df2e2e]{display:none!important}.m-visible[data-v-97df2e2e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-1[data-v-97df2e2e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-2[data-v-97df2e2e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-3[data-v-97df2e2e]{margin-left:26%}.col-no-margin-l-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-4[data-v-97df2e2e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-5[data-v-97df2e2e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-6[data-v-97df2e2e]{margin-left:52%}.col-no-margin-l-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-7[data-v-97df2e2e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-8[data-v-97df2e2e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-9[data-v-97df2e2e]{margin-left:78%}.col-no-margin-l-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-10[data-v-97df2e2e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-l-11[data-v-97df2e2e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-97df2e2e]{display:none!important}.l-visible[data-v-97df2e2e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-1[data-v-97df2e2e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-2[data-v-97df2e2e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-3[data-v-97df2e2e]{margin-left:26%}.col-no-margin-xl-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-4[data-v-97df2e2e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-5[data-v-97df2e2e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-6[data-v-97df2e2e]{margin-left:52%}.col-no-margin-xl-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-7[data-v-97df2e2e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-8[data-v-97df2e2e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-9[data-v-97df2e2e]{margin-left:78%}.col-no-margin-xl-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-10[data-v-97df2e2e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xl-11[data-v-97df2e2e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-97df2e2e]{display:none!important}.xl-visible[data-v-97df2e2e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-97df2e2e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-97df2e2e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-97df2e2e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-97df2e2e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-97df2e2e]{margin-left:26%}.col-no-margin-xxl-3[data-v-97df2e2e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-97df2e2e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-97df2e2e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-97df2e2e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-97df2e2e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-97df2e2e]{margin-left:52%}.col-no-margin-xxl-6[data-v-97df2e2e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-97df2e2e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-97df2e2e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-97df2e2e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-97df2e2e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-97df2e2e]{margin-left:78%}.col-no-margin-xxl-9[data-v-97df2e2e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-97df2e2e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-97df2e2e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-97df2e2e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-97df2e2e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-97df2e2e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-97df2e2e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-97df2e2e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-97df2e2e]{display:none!important}.xxl-visible[data-v-97df2e2e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-97df2e2e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-97df2e2e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-97df2e2e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-97df2e2e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-97df2e2e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-97df2e2e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-97df2e2e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-97df2e2e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-97df2e2e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-97df2e2e]{display:none!important}}.vertical-center[data-v-97df2e2e]{display:flex;align-items:center}.horizontal-center[data-v-97df2e2e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-97df2e2e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-97df2e2e]{display:none!important}.no-content[data-v-97df2e2e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-97df2e2e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-97df2e2e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-97df2e2e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-97df2e2e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-97df2e2e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-97df2e2e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-97df2e2e],.btn[data-v-97df2e2e],button[data-v-97df2e2e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-97df2e2e],.btn-default[type=submit][data-v-97df2e2e],.btn.btn-primary[data-v-97df2e2e],.btn[type=submit][data-v-97df2e2e],button.btn-primary[data-v-97df2e2e],button[type=submit][data-v-97df2e2e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-97df2e2e],.btn-default .icon[data-v-97df2e2e],button .icon[data-v-97df2e2e]{margin-right:.5em}input[type=password][data-v-97df2e2e],input[type=text][data-v-97df2e2e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-97df2e2e]:focus,input[type=text][data-v-97df2e2e]:focus{border:1px solid #35b870}button[data-v-97df2e2e],input[data-v-97df2e2e]{outline:none}input[type=text][data-v-97df2e2e]:hover,textarea[data-v-97df2e2e]:hover{border:1px solid #9cdfb0}ul[data-v-97df2e2e]{margin:0;padding:0;list-style:none}a[data-v-97df2e2e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-97df2e2e]:hover{color:#35b870}[data-v-97df2e2e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-97df2e2e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-97df2e2e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-97df2e2e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-97df2e2e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-97df2e2e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-97df2e2e] .nav .path{cursor:pointer}.browser[data-v-97df2e2e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-97df2e2e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-97df2e2e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-97df2e2e],input[type=number][data-v-97df2e2e],input[type=password][data-v-97df2e2e],input[type=search][data-v-97df2e2e],input[type=text][data-v-97df2e2e],input[type=time][data-v-97df2e2e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-97df2e2e]:hover,input[type=number][data-v-97df2e2e]:hover,input[type=password][data-v-97df2e2e]:hover,input[type=search][data-v-97df2e2e]:hover,input[type=text][data-v-97df2e2e]:hover,input[type=time][data-v-97df2e2e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-97df2e2e]:focus,input[type=number][data-v-97df2e2e]:focus,input[type=password][data-v-97df2e2e]:focus,input[type=search][data-v-97df2e2e]:focus,input[type=text][data-v-97df2e2e]:focus,input[type=time][data-v-97df2e2e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-97df2e2e],input[type=number].with-icon[data-v-97df2e2e],input[type=password].with-icon[data-v-97df2e2e],input[type=search].with-icon[data-v-97df2e2e],input[type=text].with-icon[data-v-97df2e2e],input[type=time].with-icon[data-v-97df2e2e]{padding-left:.3em}input[type=search][data-v-97df2e2e],input[type=text][data-v-97df2e2e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-97df2e2e]{animation-fill-mode:both;animation-name:fadeIn-97df2e2e;-webkit-animation-name:fadeIn-97df2e2e}.fade-in[data-v-97df2e2e],.fade-out[data-v-97df2e2e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-97df2e2e]{animation-fill-mode:both;animation-name:fadeOut-97df2e2e;-webkit-animation-name:fadeOut-97df2e2e}@keyframes fadeIn-97df2e2e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-97df2e2e{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-97df2e2e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-97df2e2e;-webkit-animation-name:glow-97df2e2e}.loop[data-v-97df2e2e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-97df2e2e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-97df2e2e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-97df2e2e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-97df2e2e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:768px){nav[data-v-97df2e2e]{width:100%;height:100vh;background:#4c4c4c;color:#fff;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav.collapsed[data-v-97df2e2e]{box-shadow:1px 1px 1px 1px silver;margin-bottom:2px;z-index:1}nav[data-v-97df2e2e]:not(.collapsed){position:absolute;top:0;left:0;z-index:5}nav:not(.collapsed) .icon.status[data-v-97df2e2e]{top:.75em!important;left:2em}}@media screen and (min-width:769px){nav[data-v-97df2e2e]{width:calc(16em - 2vw);min-width:calc(16em - 2vw);height:100%;overflow:auto;background:#4c4c4c;color:#fff;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5);z-index:1}}@media screen and (min-width:1024px){nav[data-v-97df2e2e]{width:20em;min-width:20em}}nav li[data-v-97df2e2e]{border-bottom:1px solid hsla(0,0%,100%,.15);cursor:pointer;list-style:none}nav li a[data-v-97df2e2e]{display:flex;color:#fff;padding:1em .5em;text-decoration:none;align-items:center}nav li a[data-v-97df2e2e]:hover{color:#fff}nav li.selected[data-v-97df2e2e]{background:rgba(80,120,110,.8);border:1px solid transparent}nav li[data-v-97df2e2e]:hover{background:#5a8c78;border:1px solid transparent}nav li .name[data-v-97df2e2e]{margin-left:.5em;flex-grow:1}nav li .icon[data-v-97df2e2e]{margin-right:.5em}nav .toggler[data-v-97df2e2e]{width:100%;height:2em;background:rgba(0,0,0,.25);display:flex;font-size:1.5em;position:relative;cursor:pointer;padding:.4em;align-items:center;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav .toggler .icon.status[data-v-97df2e2e]{position:absolute;top:1.3em;right:.5em;font-size:.5em}nav .toggler .icon.status.ok[data-v-97df2e2e]{color:#17ad17}nav .toggler .icon.status.error[data-v-97df2e2e]{color:#ad1717}nav .hostname[data-v-97df2e2e]{font-size:.7em;margin-top:-.2em}@media screen and (min-width:769px){nav .hostname[data-v-97df2e2e]{margin-left:1em}}@media screen and (max-width:768px){nav .hostname[data-v-97df2e2e]{text-align:right;margin-right:.25em;flex-grow:1}}nav .plugins[data-v-97df2e2e]{height:calc(100% - 14.5em);overflow:auto}nav .plugins[data-v-97df2e2e] .icon{display:inline-flex}nav .plugins[data-v-97df2e2e] .icon .extension-icon{margin-left:0;display:inline-flex}nav .plugins .expander button[data-v-97df2e2e]{background:none;color:#fff;border:none;padding:0}nav .plugins .expander button[data-v-97df2e2e]:hover{color:#35b870}nav .footer[data-v-97df2e2e]{height:11.4em;background:rgba(0,0,0,.25);padding:0;margin:0}nav .footer li[data-v-97df2e2e]:last-child{border:0}nav ul li .icon[data-v-97df2e2e]{margin-right:0}nav ul li .icon i[data-v-97df2e2e],nav ul li .icon img[data-v-97df2e2e]{width:1.5em;height:1em}nav ul li .icon i[data-v-97df2e2e]{padding-left:.25em}nav .icon.status[data-v-97df2e2e]{width:1em}nav.collapsed[data-v-97df2e2e]{display:flex;flex-direction:column;margin-right:1px}@media screen and (min-width:769px){nav.collapsed[data-v-97df2e2e]{width:2.5em;min-width:2.5em;max-width:2.5em;background:#fff;color:#5e5e5e;box-shadow:1px 0 2px 1px #bbb}nav.collapsed .hostname[data-v-97df2e2e]{display:none}}@media screen and (max-width:768px){nav.collapsed[data-v-97df2e2e]{height:auto}}nav.collapsed li a[data-v-97df2e2e]{display:block}nav.collapsed a[data-v-97df2e2e]{color:#5e5e5e;padding:.25em 0}nav.collapsed a[data-v-97df2e2e]:hover{color:#5e5e5e}nav.collapsed .toggler[data-v-97df2e2e]{height:2em;text-align:center;box-shadow:none;background:none}nav.collapsed .toggler .icon.status[data-v-97df2e2e]{top:.75em;left:2em}@media screen and (max-width:calc(769px - 1px)){nav.collapsed .toggler[data-v-97df2e2e]{background:#3c3c3c;color:#fff}nav.collapsed .toggler .icon.status[data-v-97df2e2e]{top:.75em!important}}nav.collapsed .footer[data-v-97df2e2e]{height:7.5em;background:none;padding:0;margin-bottom:.5em;box-shadow:none}@media screen and (max-width:768px){nav.collapsed .footer[data-v-97df2e2e]{display:none}}nav.collapsed ul[data-v-97df2e2e]{display:flex;flex-direction:column;justify-content:center;height:calc(100% - 9.5em);overflow:hidden}@media screen and (min-width:769px)and (max-width:1023px){nav.collapsed ul.plugins[data-v-97df2e2e]{margin:2em 0}}nav.collapsed ul[data-v-97df2e2e]:hover{overflow:auto}nav.collapsed ul li[data-v-97df2e2e]{border:none;padding:0;text-align:center}nav.collapsed ul li.selected[data-v-97df2e2e],nav.collapsed ul li[data-v-97df2e2e]:hover{border-radius:1em;margin:0 .2em}nav.collapsed ul li.selected[data-v-97df2e2e]{background:rgba(160,245,178,.95)}nav.collapsed ul li[data-v-97df2e2e]:hover{background:rgba(160,245,178,.6)}nav.collapsed ul li .icon[data-v-97df2e2e]{margin-right:0}@media screen and (max-width:768px){nav.collapsed ul li[data-v-97df2e2e]{display:none}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/34.111a0e1a.css b/platypush/backend/http/webapp/dist/static/css/34.a44e466f.css similarity index 74% rename from platypush/backend/http/webapp/dist/static/css/34.111a0e1a.css rename to platypush/backend/http/webapp/dist/static/css/34.a44e466f.css index f7bae7bec5..33ffeb60ff 100644 --- a/platypush/backend/http/webapp/dist/static/css/34.111a0e1a.css +++ b/platypush/backend/http/webapp/dist/static/css/34.a44e466f.css @@ -1 +1 @@ -.col-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7aabbd4c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7aabbd4c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7aabbd4c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7aabbd4c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7aabbd4c]:first-child{margin-left:26%!important}.col-offset-3[data-v-7aabbd4c]:not(first-child){margin-left:30%!important}.col-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7aabbd4c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7aabbd4c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7aabbd4c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7aabbd4c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7aabbd4c]:first-child{margin-left:52%!important}.col-offset-6[data-v-7aabbd4c]:not(first-child){margin-left:56%!important}.col-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7aabbd4c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7aabbd4c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7aabbd4c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7aabbd4c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7aabbd4c]:first-child{margin-left:78%!important}.col-offset-9[data-v-7aabbd4c]:not(first-child){margin-left:82%!important}.col-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7aabbd4c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7aabbd4c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7aabbd4c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7aabbd4c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-s-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-s-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-s-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7aabbd4c]{display:none!important}.s-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-m-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-m-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-m-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7aabbd4c]{display:none!important}.m-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-l-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-l-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-l-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7aabbd4c]{display:none!important}.l-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-xl-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-xl-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-xl-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7aabbd4c]{display:none!important}.xl-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-xxl-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-xxl-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-xxl-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7aabbd4c]{display:none!important}.xxl-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7aabbd4c]{display:none!important}}.vertical-center[data-v-7aabbd4c]{display:flex;align-items:center}.horizontal-center[data-v-7aabbd4c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7aabbd4c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7aabbd4c]{display:none!important}.no-content[data-v-7aabbd4c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7aabbd4c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7aabbd4c],.btn[data-v-7aabbd4c],button[data-v-7aabbd4c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7aabbd4c],.btn-default[type=submit][data-v-7aabbd4c],.btn.btn-primary[data-v-7aabbd4c],.btn[type=submit][data-v-7aabbd4c],button.btn-primary[data-v-7aabbd4c],button[type=submit][data-v-7aabbd4c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7aabbd4c],.btn-default .icon[data-v-7aabbd4c],button .icon[data-v-7aabbd4c]{margin-right:.5em}input[type=password][data-v-7aabbd4c],input[type=text][data-v-7aabbd4c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7aabbd4c]:focus,input[type=text][data-v-7aabbd4c]:focus{border:1px solid #35b870}button[data-v-7aabbd4c],input[data-v-7aabbd4c]{outline:none}input[type=text][data-v-7aabbd4c]:hover,textarea[data-v-7aabbd4c]:hover{border:1px solid #9cdfb0}ul[data-v-7aabbd4c]{margin:0;padding:0;list-style:none}a[data-v-7aabbd4c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7aabbd4c]:hover{color:#35b870}[data-v-7aabbd4c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7aabbd4c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7aabbd4c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7aabbd4c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7aabbd4c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7aabbd4c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7aabbd4c] .nav .path{cursor:pointer}.browser[data-v-7aabbd4c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7aabbd4c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7aabbd4c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7aabbd4c],input[type=number][data-v-7aabbd4c],input[type=password][data-v-7aabbd4c],input[type=search][data-v-7aabbd4c],input[type=text][data-v-7aabbd4c],input[type=time][data-v-7aabbd4c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7aabbd4c]:hover,input[type=number][data-v-7aabbd4c]:hover,input[type=password][data-v-7aabbd4c]:hover,input[type=search][data-v-7aabbd4c]:hover,input[type=text][data-v-7aabbd4c]:hover,input[type=time][data-v-7aabbd4c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7aabbd4c]:focus,input[type=number][data-v-7aabbd4c]:focus,input[type=password][data-v-7aabbd4c]:focus,input[type=search][data-v-7aabbd4c]:focus,input[type=text][data-v-7aabbd4c]:focus,input[type=time][data-v-7aabbd4c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7aabbd4c],input[type=number].with-icon[data-v-7aabbd4c],input[type=password].with-icon[data-v-7aabbd4c],input[type=search].with-icon[data-v-7aabbd4c],input[type=text].with-icon[data-v-7aabbd4c],input[type=time].with-icon[data-v-7aabbd4c]{padding-left:.3em}input[type=search][data-v-7aabbd4c],input[type=text][data-v-7aabbd4c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:fadeIn-7aabbd4c;-webkit-animation-name:fadeIn-7aabbd4c}.fade-in[data-v-7aabbd4c],.fade-out[data-v-7aabbd4c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:fadeOut-7aabbd4c;-webkit-animation-name:fadeOut-7aabbd4c}@keyframes fadeIn-7aabbd4c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7aabbd4c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7aabbd4c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7aabbd4c;-webkit-animation-name:glow-7aabbd4c}.loop[data-v-7aabbd4c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7aabbd4c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7aabbd4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7aabbd4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7aabbd4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tv-samsung-ws-container[data-v-7aabbd4c]{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.tv-samsung-ws-container .controls[data-v-7aabbd4c]{width:100%;max-width:300px;height:-moz-max-content;height:max-content;display:flex;align-items:center;flex-direction:column;background:#fff;padding:0 1em;border:1px solid #ddd;border-radius:2em;box-shadow:0 2px 9px 2px #bbb}@media screen and (max-width:calc(769px - 1px)){.tv-samsung-ws-container .controls[data-v-7aabbd4c]{height:calc(100% - 1em);margin:0}}@media screen and (min-width:769px){.tv-samsung-ws-container .controls[data-v-7aabbd4c]{justify-content:center}}@media screen and (min-width:1024px){.tv-samsung-ws-container .controls[data-v-7aabbd4c]{margin-top:2em}}.tv-samsung-ws-container .controls .power[data-v-7aabbd4c]{color:red}.tv-samsung-ws-container .controls button[data-v-7aabbd4c]{margin:.5em 0}.tv-samsung-ws-container .rows[data-v-7aabbd4c]{flex-direction:column}.tv-samsung-ws-container .rows * button[data-v-7aabbd4c]{width:100%}.tv-samsung-ws-container .section[data-v-7aabbd4c]{width:100%;display:flex;margin:.5em 0;padding:.5em 0;border-bottom:1px solid #ddd}.tv-samsung-ws-container .section[data-v-7aabbd4c]:first-child{margin-top:.5em}.tv-samsung-ws-container .section[data-v-7aabbd4c]:last-child{margin-bottom:1em}.tv-samsung-ws-container .directions[data-v-7aabbd4c]{flex-direction:column}.tv-samsung-ws-container .directions * button[data-v-7aabbd4c]{width:5em;height:4em}.tv-samsung-ws-container .channel[data-v-7aabbd4c],.tv-samsung-ws-container .volume[data-v-7aabbd4c]{text-align:center}.tv-samsung-ws-container .colors[data-v-7aabbd4c]{height:4em;text-align:center;border:none;margin-top:-1em}.tv-samsung-ws-container .colors .color[data-v-7aabbd4c]{width:3em;height:3em;padding:0;border-radius:2em}.tv-samsung-ws-container .colors .color.red[data-v-7aabbd4c]{background:red}.tv-samsung-ws-container .colors .color.green[data-v-7aabbd4c]{background:green}.tv-samsung-ws-container .colors .color.yellow[data-v-7aabbd4c]{background:#ff0}.tv-samsung-ws-container .colors .color.blue[data-v-7aabbd4c]{background:blue} \ No newline at end of file +.col-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7aabbd4c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7aabbd4c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7aabbd4c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7aabbd4c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7aabbd4c]:first-child{margin-left:26%!important}.col-offset-3[data-v-7aabbd4c]:not(first-child){margin-left:30%!important}.col-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7aabbd4c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7aabbd4c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7aabbd4c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7aabbd4c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7aabbd4c]:first-child{margin-left:52%!important}.col-offset-6[data-v-7aabbd4c]:not(first-child){margin-left:56%!important}.col-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7aabbd4c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7aabbd4c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7aabbd4c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7aabbd4c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7aabbd4c]:first-child{margin-left:78%!important}.col-offset-9[data-v-7aabbd4c]:not(first-child){margin-left:82%!important}.col-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7aabbd4c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7aabbd4c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7aabbd4c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7aabbd4c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-s-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-s-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-s-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-s-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7aabbd4c]{display:none!important}.s-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-m-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-m-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-m-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-m-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7aabbd4c]{display:none!important}.m-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-l-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-l-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-l-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-l-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7aabbd4c]{display:none!important}.l-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-xl-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-xl-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-xl-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xl-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7aabbd4c]{display:none!important}.xl-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7aabbd4c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7aabbd4c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7aabbd4c]{margin-left:26%}.col-no-margin-xxl-3[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7aabbd4c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7aabbd4c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7aabbd4c]{margin-left:52%}.col-no-margin-xxl-6[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7aabbd4c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7aabbd4c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7aabbd4c]{margin-left:78%}.col-no-margin-xxl-9[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7aabbd4c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7aabbd4c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7aabbd4c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7aabbd4c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7aabbd4c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7aabbd4c]{display:none!important}.xxl-visible[data-v-7aabbd4c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7aabbd4c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7aabbd4c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7aabbd4c]{display:none!important}}.vertical-center[data-v-7aabbd4c]{display:flex;align-items:center}.horizontal-center[data-v-7aabbd4c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7aabbd4c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7aabbd4c]{display:none!important}.no-content[data-v-7aabbd4c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7aabbd4c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7aabbd4c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7aabbd4c],.btn[data-v-7aabbd4c],button[data-v-7aabbd4c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7aabbd4c],.btn-default[type=submit][data-v-7aabbd4c],.btn.btn-primary[data-v-7aabbd4c],.btn[type=submit][data-v-7aabbd4c],button.btn-primary[data-v-7aabbd4c],button[type=submit][data-v-7aabbd4c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7aabbd4c]:hover,.btn[data-v-7aabbd4c]:hover,button[data-v-7aabbd4c]:hover{color:#35b870}.btn .icon[data-v-7aabbd4c],.btn-default .icon[data-v-7aabbd4c],button .icon[data-v-7aabbd4c]{margin-right:.5em}.btn-default[data-v-7aabbd4c]:disabled,.btn-default[disabled][data-v-7aabbd4c],.btn[data-v-7aabbd4c]:disabled,.btn[disabled][data-v-7aabbd4c],button[data-v-7aabbd4c]:disabled,button[disabled][data-v-7aabbd4c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7aabbd4c]{cursor:grab!important}.dragged[data-v-7aabbd4c]{opacity:.5!important}input[type=password][data-v-7aabbd4c],input[type=text][data-v-7aabbd4c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7aabbd4c]:focus,input[type=text][data-v-7aabbd4c]:focus{border:1px solid #35b870}button[data-v-7aabbd4c],input[data-v-7aabbd4c]{outline:none}input[type=text][data-v-7aabbd4c]:hover,textarea[data-v-7aabbd4c]:hover{border:1px solid #9cdfb0}ul[data-v-7aabbd4c]{margin:0;padding:0;list-style:none}a[data-v-7aabbd4c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7aabbd4c]:hover{color:#35b870}[data-v-7aabbd4c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7aabbd4c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7aabbd4c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7aabbd4c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7aabbd4c]{color:#ad1717}body[data-v-7aabbd4c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7aabbd4c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7aabbd4c] .nav .path{cursor:pointer}.browser[data-v-7aabbd4c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7aabbd4c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7aabbd4c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7aabbd4c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7aabbd4c],input[type=number][data-v-7aabbd4c],input[type=password][data-v-7aabbd4c],input[type=search][data-v-7aabbd4c],input[type=text][data-v-7aabbd4c],input[type=time][data-v-7aabbd4c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7aabbd4c]:hover,input[type=number][data-v-7aabbd4c]:hover,input[type=password][data-v-7aabbd4c]:hover,input[type=search][data-v-7aabbd4c]:hover,input[type=text][data-v-7aabbd4c]:hover,input[type=time][data-v-7aabbd4c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7aabbd4c]:focus,input[type=number][data-v-7aabbd4c]:focus,input[type=password][data-v-7aabbd4c]:focus,input[type=search][data-v-7aabbd4c]:focus,input[type=text][data-v-7aabbd4c]:focus,input[type=time][data-v-7aabbd4c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7aabbd4c],input[type=number].with-icon[data-v-7aabbd4c],input[type=password].with-icon[data-v-7aabbd4c],input[type=search].with-icon[data-v-7aabbd4c],input[type=text].with-icon[data-v-7aabbd4c],input[type=time].with-icon[data-v-7aabbd4c]{padding-left:.3em}input[type=search][data-v-7aabbd4c],input[type=text][data-v-7aabbd4c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:fadeIn-7aabbd4c;-webkit-animation-name:fadeIn-7aabbd4c}.fade-in[data-v-7aabbd4c],.fade-out[data-v-7aabbd4c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:fadeOut-7aabbd4c;-webkit-animation-name:fadeOut-7aabbd4c}.expand[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:expand-7aabbd4c;-webkit-animation-name:expand-7aabbd4c}.expand[data-v-7aabbd4c],.shrink[data-v-7aabbd4c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:shrink-7aabbd4c;-webkit-animation-name:shrink-7aabbd4c}.fold[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:fold-7aabbd4c;-webkit-animation-name:fold-7aabbd4c}.fold[data-v-7aabbd4c],.unfold[data-v-7aabbd4c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:unfold-7aabbd4c;-webkit-animation-name:unfold-7aabbd4c}.dim[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:dim-7aabbd4c;-webkit-animation-name:dim-7aabbd4c}.brighten[data-v-7aabbd4c],.dim[data-v-7aabbd4c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7aabbd4c]{animation-fill-mode:both;animation-name:brighten-7aabbd4c;-webkit-animation-name:brighten-7aabbd4c}@keyframes fadeIn-7aabbd4c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7aabbd4c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7aabbd4c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7aabbd4c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7aabbd4c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7aabbd4c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7aabbd4c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7aabbd4c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7aabbd4c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7aabbd4c;-webkit-animation-name:glow-7aabbd4c}.loop[data-v-7aabbd4c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7aabbd4c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7aabbd4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7aabbd4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7aabbd4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tv-samsung-ws-container[data-v-7aabbd4c]{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.tv-samsung-ws-container .controls[data-v-7aabbd4c]{width:100%;max-width:300px;height:-moz-max-content;height:max-content;display:flex;align-items:center;flex-direction:column;background:#fff;padding:0 1em;border:1px solid #ddd;border-radius:2em;box-shadow:0 2px 9px 2px #bbb}@media screen and (max-width:calc(769px - 1px)){.tv-samsung-ws-container .controls[data-v-7aabbd4c]{height:calc(100% - 1em);margin:0}}@media screen and (min-width:769px){.tv-samsung-ws-container .controls[data-v-7aabbd4c]{justify-content:center}}@media screen and (min-width:1024px){.tv-samsung-ws-container .controls[data-v-7aabbd4c]{margin-top:2em}}.tv-samsung-ws-container .controls .power[data-v-7aabbd4c]{color:red}.tv-samsung-ws-container .controls button[data-v-7aabbd4c]{margin:.5em 0}.tv-samsung-ws-container .rows[data-v-7aabbd4c]{flex-direction:column}.tv-samsung-ws-container .rows * button[data-v-7aabbd4c]{width:100%}.tv-samsung-ws-container .section[data-v-7aabbd4c]{width:100%;display:flex;margin:.5em 0;padding:.5em 0;border-bottom:1px solid #ddd}.tv-samsung-ws-container .section[data-v-7aabbd4c]:first-child{margin-top:.5em}.tv-samsung-ws-container .section[data-v-7aabbd4c]:last-child{margin-bottom:1em}.tv-samsung-ws-container .directions[data-v-7aabbd4c]{flex-direction:column}.tv-samsung-ws-container .directions * button[data-v-7aabbd4c]{width:5em;height:4em}.tv-samsung-ws-container .channel[data-v-7aabbd4c],.tv-samsung-ws-container .volume[data-v-7aabbd4c]{text-align:center}.tv-samsung-ws-container .colors[data-v-7aabbd4c]{height:4em;text-align:center;border:none;margin-top:-1em}.tv-samsung-ws-container .colors .color[data-v-7aabbd4c]{width:3em;height:3em;padding:0;border-radius:2em}.tv-samsung-ws-container .colors .color.red[data-v-7aabbd4c]{background:red}.tv-samsung-ws-container .colors .color.green[data-v-7aabbd4c]{background:green}.tv-samsung-ws-container .colors .color.yellow[data-v-7aabbd4c]{background:#ff0}.tv-samsung-ws-container .colors .color.blue[data-v-7aabbd4c]{background:blue} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3426.50cde06e.css b/platypush/backend/http/webapp/dist/static/css/3426.50cde06e.css new file mode 100644 index 0000000000..75a2ed6946 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/3426.50cde06e.css @@ -0,0 +1 @@ +pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#011627;color:#d6deeb}.hljs-keyword{color:#c792ea;font-style:italic}.hljs-built_in{color:#addb67;font-style:italic}.hljs-type{color:#82aaff}.hljs-literal{color:#ff5874}.hljs-number{color:#f78c6c}.hljs-regexp{color:#5ca7e4}.hljs-string{color:#ecc48d}.hljs-subst{color:#d3423e}.hljs-symbol{color:#82aaff}.hljs-class{color:#ffcb8b}.hljs-function{color:#82aaff}.hljs-title{color:#dcdcaa;font-style:italic}.hljs-params{color:#7fdbca}.hljs-comment{color:#637777;font-style:italic}.hljs-doctag{color:#7fdbca}.hljs-meta,.hljs-meta .hljs-keyword{color:#82aaff}.hljs-meta .hljs-string{color:#ecc48d}.hljs-section{color:#82b1ff}.hljs-attr,.hljs-name,.hljs-tag{color:#7fdbca}.hljs-attribute{color:#80cbc4}.hljs-variable{color:#addb67}.hljs-bullet{color:#d9f5dd}.hljs-code{color:#80cbc4}.hljs-emphasis{color:#c792ea;font-style:italic}.hljs-strong{color:#addb67;font-weight:700}.hljs-formula{color:#c792ea}.hljs-link{color:#ff869a}.hljs-quote{color:#697098;font-style:italic}.hljs-selector-tag{color:#ff6363}.hljs-selector-id{color:#fad430}.hljs-selector-class{color:#addb67;font-style:italic}.hljs-selector-attr,.hljs-selector-pseudo{color:#c792ea;font-style:italic}.hljs-template-tag{color:#c792ea}.hljs-template-variable{color:#addb67}.hljs-addition{color:#addb67;font-style:italic}.hljs-deletion{color:#ef535090;font-style:italic}.col-1[data-v-325a3576]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-1[data-v-325a3576]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-325a3576]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-325a3576]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-325a3576]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-2[data-v-325a3576]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-325a3576]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-325a3576]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-325a3576]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-3[data-v-325a3576]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-325a3576]:first-child{margin-left:26%!important}.col-offset-3[data-v-325a3576]:not(first-child){margin-left:30%!important}.col-4[data-v-325a3576]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-4[data-v-325a3576]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-325a3576]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-325a3576]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-325a3576]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-5[data-v-325a3576]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-325a3576]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-325a3576]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-325a3576]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-6[data-v-325a3576]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-325a3576]:first-child{margin-left:52%!important}.col-offset-6[data-v-325a3576]:not(first-child){margin-left:56%!important}.col-7[data-v-325a3576]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-7[data-v-325a3576]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-325a3576]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-325a3576]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-325a3576]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-8[data-v-325a3576]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-325a3576]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-325a3576]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-325a3576]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-9[data-v-325a3576]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-325a3576]:first-child{margin-left:78%!important}.col-offset-9[data-v-325a3576]:not(first-child){margin-left:82%!important}.col-10[data-v-325a3576]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-10[data-v-325a3576]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-325a3576]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-325a3576]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-325a3576]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-325a3576]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-325a3576]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-1[data-v-325a3576]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-325a3576]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-325a3576]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-2[data-v-325a3576]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-325a3576]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-325a3576]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-3[data-v-325a3576]{margin-left:26%}.col-no-margin-s-3[data-v-325a3576]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-325a3576]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-4[data-v-325a3576]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-325a3576]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-325a3576]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-5[data-v-325a3576]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-325a3576]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-325a3576]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-6[data-v-325a3576]{margin-left:52%}.col-no-margin-s-6[data-v-325a3576]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-325a3576]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-7[data-v-325a3576]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-325a3576]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-325a3576]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-8[data-v-325a3576]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-325a3576]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-325a3576]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-9[data-v-325a3576]{margin-left:78%}.col-no-margin-s-9[data-v-325a3576]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-325a3576]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-10[data-v-325a3576]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-325a3576]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-325a3576]:first-child{margin-left:0}.col-offset-s-11[data-v-325a3576]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-s-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-325a3576]{display:none!important}.s-visible[data-v-325a3576]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-325a3576]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-1[data-v-325a3576]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-325a3576]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-325a3576]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-2[data-v-325a3576]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-325a3576]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-325a3576]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-3[data-v-325a3576]{margin-left:26%}.col-no-margin-m-3[data-v-325a3576]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-325a3576]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-4[data-v-325a3576]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-325a3576]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-325a3576]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-5[data-v-325a3576]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-325a3576]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-325a3576]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-6[data-v-325a3576]{margin-left:52%}.col-no-margin-m-6[data-v-325a3576]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-325a3576]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-7[data-v-325a3576]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-325a3576]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-325a3576]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-8[data-v-325a3576]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-325a3576]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-325a3576]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-9[data-v-325a3576]{margin-left:78%}.col-no-margin-m-9[data-v-325a3576]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-325a3576]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-10[data-v-325a3576]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-325a3576]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-325a3576]:first-child{margin-left:0}.col-offset-m-11[data-v-325a3576]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-m-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-325a3576]{display:none!important}.m-visible[data-v-325a3576]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-325a3576]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-1[data-v-325a3576]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-325a3576]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-325a3576]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-2[data-v-325a3576]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-325a3576]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-325a3576]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-3[data-v-325a3576]{margin-left:26%}.col-no-margin-l-3[data-v-325a3576]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-325a3576]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-4[data-v-325a3576]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-325a3576]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-325a3576]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-5[data-v-325a3576]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-325a3576]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-325a3576]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-6[data-v-325a3576]{margin-left:52%}.col-no-margin-l-6[data-v-325a3576]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-325a3576]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-7[data-v-325a3576]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-325a3576]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-325a3576]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-8[data-v-325a3576]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-325a3576]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-325a3576]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-9[data-v-325a3576]{margin-left:78%}.col-no-margin-l-9[data-v-325a3576]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-325a3576]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-10[data-v-325a3576]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-325a3576]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-325a3576]:first-child{margin-left:0}.col-offset-l-11[data-v-325a3576]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-l-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-325a3576]{display:none!important}.l-visible[data-v-325a3576]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-325a3576]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-1[data-v-325a3576]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-325a3576]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-325a3576]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-2[data-v-325a3576]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-325a3576]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-325a3576]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-3[data-v-325a3576]{margin-left:26%}.col-no-margin-xl-3[data-v-325a3576]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-325a3576]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-4[data-v-325a3576]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-325a3576]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-325a3576]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-5[data-v-325a3576]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-325a3576]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-325a3576]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-6[data-v-325a3576]{margin-left:52%}.col-no-margin-xl-6[data-v-325a3576]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-325a3576]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-7[data-v-325a3576]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-325a3576]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-325a3576]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-8[data-v-325a3576]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-325a3576]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-325a3576]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-9[data-v-325a3576]{margin-left:78%}.col-no-margin-xl-9[data-v-325a3576]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-325a3576]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-10[data-v-325a3576]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-325a3576]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-325a3576]:first-child{margin-left:0}.col-offset-xl-11[data-v-325a3576]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-325a3576]{display:none!important}.xl-visible[data-v-325a3576]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-325a3576]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-1[data-v-325a3576]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-325a3576]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-325a3576]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-2[data-v-325a3576]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-325a3576]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-325a3576]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-3[data-v-325a3576]{margin-left:26%}.col-no-margin-xxl-3[data-v-325a3576]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-325a3576]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-4[data-v-325a3576]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-325a3576]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-325a3576]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-5[data-v-325a3576]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-325a3576]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-325a3576]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-6[data-v-325a3576]{margin-left:52%}.col-no-margin-xxl-6[data-v-325a3576]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-325a3576]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-7[data-v-325a3576]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-325a3576]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-325a3576]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-8[data-v-325a3576]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-325a3576]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-325a3576]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-9[data-v-325a3576]{margin-left:78%}.col-no-margin-xxl-9[data-v-325a3576]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-325a3576]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-10[data-v-325a3576]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-325a3576]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-325a3576]:first-child{margin-left:0}.col-offset-xxl-11[data-v-325a3576]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-325a3576]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-325a3576]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-325a3576]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-325a3576]{display:none!important}.xxl-visible[data-v-325a3576]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-325a3576]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-325a3576]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-325a3576]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-325a3576]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-325a3576]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-325a3576]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-325a3576]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-325a3576]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-325a3576]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-325a3576]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-325a3576]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-325a3576]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-325a3576]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-325a3576]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-325a3576]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-325a3576]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-325a3576]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-325a3576]{display:none!important}}.vertical-center[data-v-325a3576]{display:flex;align-items:center}.horizontal-center[data-v-325a3576]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-325a3576]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-325a3576]{display:none!important}.no-content[data-v-325a3576]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-325a3576]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-325a3576]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-325a3576]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-325a3576]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-325a3576]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-325a3576]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-325a3576],.btn[data-v-325a3576],button[data-v-325a3576]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-325a3576],.btn-default[type=submit][data-v-325a3576],.btn.btn-primary[data-v-325a3576],.btn[type=submit][data-v-325a3576],button.btn-primary[data-v-325a3576],button[type=submit][data-v-325a3576]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-325a3576]:hover,.btn[data-v-325a3576]:hover,button[data-v-325a3576]:hover{color:#35b870}.btn .icon[data-v-325a3576],.btn-default .icon[data-v-325a3576],button .icon[data-v-325a3576]{margin-right:.5em}.btn-default[data-v-325a3576]:disabled,.btn-default[disabled][data-v-325a3576],.btn[data-v-325a3576]:disabled,.btn[disabled][data-v-325a3576],button[data-v-325a3576]:disabled,button[disabled][data-v-325a3576]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-325a3576]{cursor:grab!important}.dragged[data-v-325a3576]{opacity:.5!important}input[type=password][data-v-325a3576],input[type=text][data-v-325a3576]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-325a3576]:focus,input[type=text][data-v-325a3576]:focus{border:1px solid #35b870}button[data-v-325a3576],input[data-v-325a3576]{outline:none}input[type=text][data-v-325a3576]:hover,textarea[data-v-325a3576]:hover{border:1px solid #9cdfb0}ul[data-v-325a3576]{margin:0;padding:0;list-style:none}a[data-v-325a3576]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-325a3576]:hover{color:#35b870}[data-v-325a3576]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-325a3576]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-325a3576]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-325a3576]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-325a3576]{color:#ad1717}body[data-v-325a3576]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-325a3576] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-325a3576] .nav .path{cursor:pointer}.browser[data-v-325a3576] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-325a3576] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-325a3576]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-325a3576]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-325a3576],input[type=number][data-v-325a3576],input[type=password][data-v-325a3576],input[type=search][data-v-325a3576],input[type=text][data-v-325a3576],input[type=time][data-v-325a3576]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-325a3576]:hover,input[type=number][data-v-325a3576]:hover,input[type=password][data-v-325a3576]:hover,input[type=search][data-v-325a3576]:hover,input[type=text][data-v-325a3576]:hover,input[type=time][data-v-325a3576]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-325a3576]:focus,input[type=number][data-v-325a3576]:focus,input[type=password][data-v-325a3576]:focus,input[type=search][data-v-325a3576]:focus,input[type=text][data-v-325a3576]:focus,input[type=time][data-v-325a3576]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-325a3576],input[type=number].with-icon[data-v-325a3576],input[type=password].with-icon[data-v-325a3576],input[type=search].with-icon[data-v-325a3576],input[type=text].with-icon[data-v-325a3576],input[type=time].with-icon[data-v-325a3576]{padding-left:.3em}input[type=search][data-v-325a3576],input[type=text][data-v-325a3576]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-325a3576]{animation-fill-mode:both;animation-name:fadeIn-325a3576;-webkit-animation-name:fadeIn-325a3576}.fade-in[data-v-325a3576],.fade-out[data-v-325a3576]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-325a3576]{animation-fill-mode:both;animation-name:fadeOut-325a3576;-webkit-animation-name:fadeOut-325a3576}.expand[data-v-325a3576]{animation-fill-mode:both;animation-name:expand-325a3576;-webkit-animation-name:expand-325a3576}.expand[data-v-325a3576],.shrink[data-v-325a3576]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-325a3576]{animation-fill-mode:both;animation-name:shrink-325a3576;-webkit-animation-name:shrink-325a3576}.fold[data-v-325a3576]{animation-fill-mode:both;animation-name:fold-325a3576;-webkit-animation-name:fold-325a3576}.fold[data-v-325a3576],.unfold[data-v-325a3576]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-325a3576]{animation-fill-mode:both;animation-name:unfold-325a3576;-webkit-animation-name:unfold-325a3576}.dim[data-v-325a3576]{animation-fill-mode:both;animation-name:dim-325a3576;-webkit-animation-name:dim-325a3576}.brighten[data-v-325a3576],.dim[data-v-325a3576]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-325a3576]{animation-fill-mode:both;animation-name:brighten-325a3576;-webkit-animation-name:brighten-325a3576}@keyframes fadeIn-325a3576{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-325a3576{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-325a3576{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-325a3576{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-325a3576{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-325a3576{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-325a3576{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-325a3576{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-325a3576]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-325a3576;-webkit-animation-name:glow-325a3576}.loop[data-v-325a3576]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-325a3576{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-325a3576]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-325a3576]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-325a3576]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}pre[data-v-325a3576]{width:100%;margin:0;background:#0b0b0d;color:#f3f3fa;font-size:.9em;padding:.5em;overflow:auto}.config-container[data-v-325a3576]{width:100%;max-height:100%;position:relative;display:flex;flex-grow:1;overflow:auto}.config-container pre[data-v-325a3576]{border-radius:1em}.config-container.current[data-v-325a3576]{height:34%;margin-bottom:1.5em}.config-container.snippet[data-v-325a3576]{height:66%}.config-container.fullscreen[data-v-325a3576]{height:100%}.config-container.fullscreen pre[data-v-325a3576]{border-radius:0}.col-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-49986d05]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-49986d05]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-49986d05]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-49986d05]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-49986d05]:first-child{margin-left:26%!important}.col-offset-3[data-v-49986d05]:not(first-child){margin-left:30%!important}.col-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-49986d05]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-49986d05]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-49986d05]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-49986d05]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-49986d05]:first-child{margin-left:52%!important}.col-offset-6[data-v-49986d05]:not(first-child){margin-left:56%!important}.col-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-49986d05]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-49986d05]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-49986d05]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-49986d05]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-49986d05]:first-child{margin-left:78%!important}.col-offset-9[data-v-49986d05]:not(first-child){margin-left:82%!important}.col-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-49986d05]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-49986d05]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-49986d05]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-49986d05]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-3[data-v-49986d05]{margin-left:26%}.col-no-margin-s-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-6[data-v-49986d05]{margin-left:52%}.col-no-margin-s-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-9[data-v-49986d05]{margin-left:78%}.col-no-margin-s-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-s-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-s-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-49986d05]{display:none!important}.s-visible[data-v-49986d05]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-3[data-v-49986d05]{margin-left:26%}.col-no-margin-m-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-6[data-v-49986d05]{margin-left:52%}.col-no-margin-m-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-9[data-v-49986d05]{margin-left:78%}.col-no-margin-m-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-m-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-m-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-49986d05]{display:none!important}.m-visible[data-v-49986d05]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-3[data-v-49986d05]{margin-left:26%}.col-no-margin-l-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-6[data-v-49986d05]{margin-left:52%}.col-no-margin-l-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-9[data-v-49986d05]{margin-left:78%}.col-no-margin-l-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-l-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-l-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-49986d05]{display:none!important}.l-visible[data-v-49986d05]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-3[data-v-49986d05]{margin-left:26%}.col-no-margin-xl-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-6[data-v-49986d05]{margin-left:52%}.col-no-margin-xl-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-9[data-v-49986d05]{margin-left:78%}.col-no-margin-xl-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-xl-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-49986d05]{display:none!important}.xl-visible[data-v-49986d05]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-49986d05]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-1[data-v-49986d05]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-49986d05]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-49986d05]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-2[data-v-49986d05]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-49986d05]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-49986d05]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-3[data-v-49986d05]{margin-left:26%}.col-no-margin-xxl-3[data-v-49986d05]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-49986d05]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-4[data-v-49986d05]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-49986d05]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-49986d05]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-5[data-v-49986d05]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-49986d05]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-49986d05]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-6[data-v-49986d05]{margin-left:52%}.col-no-margin-xxl-6[data-v-49986d05]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-49986d05]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-7[data-v-49986d05]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-49986d05]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-49986d05]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-8[data-v-49986d05]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-49986d05]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-49986d05]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-9[data-v-49986d05]{margin-left:78%}.col-no-margin-xxl-9[data-v-49986d05]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-49986d05]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-10[data-v-49986d05]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-49986d05]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-49986d05]:first-child{margin-left:0}.col-offset-xxl-11[data-v-49986d05]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-49986d05]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-49986d05]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-49986d05]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-49986d05]{display:none!important}.xxl-visible[data-v-49986d05]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-49986d05]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-49986d05]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-49986d05]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-49986d05]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-49986d05]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-49986d05]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-49986d05]{display:none!important}}.vertical-center[data-v-49986d05]{display:flex;align-items:center}.horizontal-center[data-v-49986d05]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-49986d05]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-49986d05]{display:none!important}.no-content[data-v-49986d05]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-49986d05]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-49986d05]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-49986d05]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-49986d05]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-49986d05]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-49986d05]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-49986d05],.btn[data-v-49986d05],button[data-v-49986d05]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-49986d05],.btn-default[type=submit][data-v-49986d05],.btn.btn-primary[data-v-49986d05],.btn[type=submit][data-v-49986d05],button.btn-primary[data-v-49986d05],button[type=submit][data-v-49986d05]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-49986d05]:hover,.btn[data-v-49986d05]:hover,button[data-v-49986d05]:hover{color:#35b870}.btn .icon[data-v-49986d05],.btn-default .icon[data-v-49986d05],button .icon[data-v-49986d05]{margin-right:.5em}.btn-default[data-v-49986d05]:disabled,.btn-default[disabled][data-v-49986d05],.btn[data-v-49986d05]:disabled,.btn[disabled][data-v-49986d05],button[data-v-49986d05]:disabled,button[disabled][data-v-49986d05]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-49986d05]{cursor:grab!important}.dragged[data-v-49986d05]{opacity:.5!important}input[type=password][data-v-49986d05],input[type=text][data-v-49986d05]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-49986d05]:focus,input[type=text][data-v-49986d05]:focus{border:1px solid #35b870}button[data-v-49986d05],input[data-v-49986d05]{outline:none}input[type=text][data-v-49986d05]:hover,textarea[data-v-49986d05]:hover{border:1px solid #9cdfb0}ul[data-v-49986d05]{margin:0;padding:0;list-style:none}a[data-v-49986d05]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-49986d05]:hover{color:#35b870}[data-v-49986d05]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-49986d05]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-49986d05]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-49986d05]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-49986d05]{color:#ad1717}body[data-v-49986d05]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-49986d05] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-49986d05] .nav .path{cursor:pointer}.browser[data-v-49986d05] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-49986d05] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-49986d05]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-49986d05]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-49986d05],input[type=number][data-v-49986d05],input[type=password][data-v-49986d05],input[type=search][data-v-49986d05],input[type=text][data-v-49986d05],input[type=time][data-v-49986d05]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-49986d05]:hover,input[type=number][data-v-49986d05]:hover,input[type=password][data-v-49986d05]:hover,input[type=search][data-v-49986d05]:hover,input[type=text][data-v-49986d05]:hover,input[type=time][data-v-49986d05]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-49986d05]:focus,input[type=number][data-v-49986d05]:focus,input[type=password][data-v-49986d05]:focus,input[type=search][data-v-49986d05]:focus,input[type=text][data-v-49986d05]:focus,input[type=time][data-v-49986d05]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-49986d05],input[type=number].with-icon[data-v-49986d05],input[type=password].with-icon[data-v-49986d05],input[type=search].with-icon[data-v-49986d05],input[type=text].with-icon[data-v-49986d05],input[type=time].with-icon[data-v-49986d05]{padding-left:.3em}input[type=search][data-v-49986d05],input[type=text][data-v-49986d05]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-49986d05]{animation-fill-mode:both;animation-name:fadeIn-49986d05;-webkit-animation-name:fadeIn-49986d05}.fade-in[data-v-49986d05],.fade-out[data-v-49986d05]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-49986d05]{animation-fill-mode:both;animation-name:fadeOut-49986d05;-webkit-animation-name:fadeOut-49986d05}.expand[data-v-49986d05]{animation-fill-mode:both;animation-name:expand-49986d05;-webkit-animation-name:expand-49986d05}.expand[data-v-49986d05],.shrink[data-v-49986d05]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-49986d05]{animation-fill-mode:both;animation-name:shrink-49986d05;-webkit-animation-name:shrink-49986d05}.fold[data-v-49986d05]{animation-fill-mode:both;animation-name:fold-49986d05;-webkit-animation-name:fold-49986d05}.fold[data-v-49986d05],.unfold[data-v-49986d05]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-49986d05]{animation-fill-mode:both;animation-name:unfold-49986d05;-webkit-animation-name:unfold-49986d05}.dim[data-v-49986d05]{animation-fill-mode:both;animation-name:dim-49986d05;-webkit-animation-name:dim-49986d05}.brighten[data-v-49986d05],.dim[data-v-49986d05]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-49986d05]{animation-fill-mode:both;animation-name:brighten-49986d05;-webkit-animation-name:brighten-49986d05}@keyframes fadeIn-49986d05{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-49986d05{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-49986d05{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-49986d05{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-49986d05{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-49986d05{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-49986d05{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-49986d05{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-49986d05]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-49986d05;-webkit-animation-name:glow-49986d05}.loop[data-v-49986d05]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-49986d05{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-49986d05]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-49986d05]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-49986d05]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}section[data-v-49986d05]{height:100%}section header[data-v-49986d05]{height:3.5em;padding:.5em;border-bottom:1px solid #ddd}section header h2[data-v-49986d05]{margin:0;padding:0;font-size:1.25em}section header .title[data-v-49986d05]{display:flex;align-items:center}section header .title .name[data-v-49986d05]{margin-left:.5em}section article[data-v-49986d05]{height:calc(100% - 3.5em);padding:.5em;overflow:auto}section article[data-v-49986d05] ul{margin-left:1em}section article[data-v-49986d05] ul li{list-style:disc}section .actions[data-v-49986d05],section .events[data-v-49986d05]{padding:.5em;overflow:auto}section .actions h3[data-v-49986d05],section .events h3[data-v-49986d05]{width:calc(100% - 1em);margin:0 -.5em;padding:0 .5em;font-size:1.25em;opacity:.85;border-bottom:1px solid #e1e4e8}section .actions ul[data-v-49986d05],section .events ul[data-v-49986d05]{display:flex;flex-direction:column;margin:0}section .actions ul li[data-v-49986d05],section .events ul li[data-v-49986d05]{width:100%;display:block;margin:.5em 0;list-style:none}section .actions ul li a[data-v-49986d05],section .events ul li a[data-v-49986d05]{width:100%;display:block}section .actions pre[data-v-49986d05],section .events pre[data-v-49986d05]{margin:0}.col-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-8b2323ae]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-8b2323ae]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-8b2323ae]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-8b2323ae]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-8b2323ae]:first-child{margin-left:26%!important}.col-offset-3[data-v-8b2323ae]:not(first-child){margin-left:30%!important}.col-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-8b2323ae]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-8b2323ae]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-8b2323ae]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-8b2323ae]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-8b2323ae]:first-child{margin-left:52%!important}.col-offset-6[data-v-8b2323ae]:not(first-child){margin-left:56%!important}.col-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-8b2323ae]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-8b2323ae]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-8b2323ae]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-8b2323ae]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-8b2323ae]:first-child{margin-left:78%!important}.col-offset-9[data-v-8b2323ae]:not(first-child){margin-left:82%!important}.col-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-8b2323ae]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-8b2323ae]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-8b2323ae]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-8b2323ae]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-1[data-v-8b2323ae]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-2[data-v-8b2323ae]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-3[data-v-8b2323ae]{margin-left:26%}.col-no-margin-s-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-4[data-v-8b2323ae]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-5[data-v-8b2323ae]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-6[data-v-8b2323ae]{margin-left:52%}.col-no-margin-s-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-7[data-v-8b2323ae]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-8[data-v-8b2323ae]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-9[data-v-8b2323ae]{margin-left:78%}.col-no-margin-s-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-10[data-v-8b2323ae]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-s-11[data-v-8b2323ae]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-s-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-8b2323ae]{display:none!important}.s-visible[data-v-8b2323ae]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-1[data-v-8b2323ae]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-2[data-v-8b2323ae]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-3[data-v-8b2323ae]{margin-left:26%}.col-no-margin-m-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-4[data-v-8b2323ae]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-5[data-v-8b2323ae]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-6[data-v-8b2323ae]{margin-left:52%}.col-no-margin-m-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-7[data-v-8b2323ae]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-8[data-v-8b2323ae]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-9[data-v-8b2323ae]{margin-left:78%}.col-no-margin-m-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-10[data-v-8b2323ae]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-m-11[data-v-8b2323ae]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-m-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-8b2323ae]{display:none!important}.m-visible[data-v-8b2323ae]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-1[data-v-8b2323ae]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-2[data-v-8b2323ae]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-3[data-v-8b2323ae]{margin-left:26%}.col-no-margin-l-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-4[data-v-8b2323ae]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-5[data-v-8b2323ae]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-6[data-v-8b2323ae]{margin-left:52%}.col-no-margin-l-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-7[data-v-8b2323ae]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-8[data-v-8b2323ae]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-9[data-v-8b2323ae]{margin-left:78%}.col-no-margin-l-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-10[data-v-8b2323ae]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-l-11[data-v-8b2323ae]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-l-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-8b2323ae]{display:none!important}.l-visible[data-v-8b2323ae]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-1[data-v-8b2323ae]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-2[data-v-8b2323ae]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-3[data-v-8b2323ae]{margin-left:26%}.col-no-margin-xl-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-4[data-v-8b2323ae]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-5[data-v-8b2323ae]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-6[data-v-8b2323ae]{margin-left:52%}.col-no-margin-xl-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-7[data-v-8b2323ae]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-8[data-v-8b2323ae]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-9[data-v-8b2323ae]{margin-left:78%}.col-no-margin-xl-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-10[data-v-8b2323ae]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xl-11[data-v-8b2323ae]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-8b2323ae]{display:none!important}.xl-visible[data-v-8b2323ae]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-1[data-v-8b2323ae]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-8b2323ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-2[data-v-8b2323ae]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-8b2323ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-3[data-v-8b2323ae]{margin-left:26%}.col-no-margin-xxl-3[data-v-8b2323ae]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-4[data-v-8b2323ae]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-8b2323ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-5[data-v-8b2323ae]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-8b2323ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-6[data-v-8b2323ae]{margin-left:52%}.col-no-margin-xxl-6[data-v-8b2323ae]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-7[data-v-8b2323ae]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-8b2323ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-8[data-v-8b2323ae]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-8b2323ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-9[data-v-8b2323ae]{margin-left:78%}.col-no-margin-xxl-9[data-v-8b2323ae]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-10[data-v-8b2323ae]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-8b2323ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-8b2323ae]:first-child{margin-left:0}.col-offset-xxl-11[data-v-8b2323ae]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-8b2323ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-8b2323ae]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-8b2323ae]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-8b2323ae]{display:none!important}.xxl-visible[data-v-8b2323ae]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-8b2323ae]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-8b2323ae]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-8b2323ae]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-8b2323ae]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-8b2323ae]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-8b2323ae]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-8b2323ae]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-8b2323ae]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-8b2323ae]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-8b2323ae]{display:none!important}}.vertical-center[data-v-8b2323ae]{display:flex;align-items:center}.horizontal-center[data-v-8b2323ae]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-8b2323ae]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-8b2323ae]{display:none!important}.no-content[data-v-8b2323ae]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-8b2323ae]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-8b2323ae]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-8b2323ae]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-8b2323ae]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-8b2323ae]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-8b2323ae]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-8b2323ae],.btn[data-v-8b2323ae],button[data-v-8b2323ae]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-8b2323ae],.btn-default[type=submit][data-v-8b2323ae],.btn.btn-primary[data-v-8b2323ae],.btn[type=submit][data-v-8b2323ae],button.btn-primary[data-v-8b2323ae],button[type=submit][data-v-8b2323ae]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-8b2323ae]:hover,.btn[data-v-8b2323ae]:hover,button[data-v-8b2323ae]:hover{color:#35b870}.btn .icon[data-v-8b2323ae],.btn-default .icon[data-v-8b2323ae],button .icon[data-v-8b2323ae]{margin-right:.5em}.btn-default[data-v-8b2323ae]:disabled,.btn-default[disabled][data-v-8b2323ae],.btn[data-v-8b2323ae]:disabled,.btn[disabled][data-v-8b2323ae],button[data-v-8b2323ae]:disabled,button[disabled][data-v-8b2323ae]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-8b2323ae]{cursor:grab!important}.dragged[data-v-8b2323ae]{opacity:.5!important}input[type=password][data-v-8b2323ae],input[type=text][data-v-8b2323ae]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-8b2323ae]:focus,input[type=text][data-v-8b2323ae]:focus{border:1px solid #35b870}button[data-v-8b2323ae],input[data-v-8b2323ae]{outline:none}input[type=text][data-v-8b2323ae]:hover,textarea[data-v-8b2323ae]:hover{border:1px solid #9cdfb0}ul[data-v-8b2323ae]{margin:0;padding:0;list-style:none}a[data-v-8b2323ae]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-8b2323ae]:hover{color:#35b870}[data-v-8b2323ae]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-8b2323ae]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-8b2323ae]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-8b2323ae]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-8b2323ae]{color:#ad1717}body[data-v-8b2323ae]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-8b2323ae] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-8b2323ae] .nav .path{cursor:pointer}.browser[data-v-8b2323ae] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-8b2323ae] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-8b2323ae]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-8b2323ae]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-8b2323ae],input[type=number][data-v-8b2323ae],input[type=password][data-v-8b2323ae],input[type=search][data-v-8b2323ae],input[type=text][data-v-8b2323ae],input[type=time][data-v-8b2323ae]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-8b2323ae]:hover,input[type=number][data-v-8b2323ae]:hover,input[type=password][data-v-8b2323ae]:hover,input[type=search][data-v-8b2323ae]:hover,input[type=text][data-v-8b2323ae]:hover,input[type=time][data-v-8b2323ae]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-8b2323ae]:focus,input[type=number][data-v-8b2323ae]:focus,input[type=password][data-v-8b2323ae]:focus,input[type=search][data-v-8b2323ae]:focus,input[type=text][data-v-8b2323ae]:focus,input[type=time][data-v-8b2323ae]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-8b2323ae],input[type=number].with-icon[data-v-8b2323ae],input[type=password].with-icon[data-v-8b2323ae],input[type=search].with-icon[data-v-8b2323ae],input[type=text].with-icon[data-v-8b2323ae],input[type=time].with-icon[data-v-8b2323ae]{padding-left:.3em}input[type=search][data-v-8b2323ae],input[type=text][data-v-8b2323ae]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-8b2323ae]{animation-fill-mode:both;animation-name:fadeIn-8b2323ae;-webkit-animation-name:fadeIn-8b2323ae}.fade-in[data-v-8b2323ae],.fade-out[data-v-8b2323ae]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-8b2323ae]{animation-fill-mode:both;animation-name:fadeOut-8b2323ae;-webkit-animation-name:fadeOut-8b2323ae}.expand[data-v-8b2323ae]{animation-fill-mode:both;animation-name:expand-8b2323ae;-webkit-animation-name:expand-8b2323ae}.expand[data-v-8b2323ae],.shrink[data-v-8b2323ae]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-8b2323ae]{animation-fill-mode:both;animation-name:shrink-8b2323ae;-webkit-animation-name:shrink-8b2323ae}.fold[data-v-8b2323ae]{animation-fill-mode:both;animation-name:fold-8b2323ae;-webkit-animation-name:fold-8b2323ae}.fold[data-v-8b2323ae],.unfold[data-v-8b2323ae]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-8b2323ae]{animation-fill-mode:both;animation-name:unfold-8b2323ae;-webkit-animation-name:unfold-8b2323ae}.dim[data-v-8b2323ae]{animation-fill-mode:both;animation-name:dim-8b2323ae;-webkit-animation-name:dim-8b2323ae}.brighten[data-v-8b2323ae],.dim[data-v-8b2323ae]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-8b2323ae]{animation-fill-mode:both;animation-name:brighten-8b2323ae;-webkit-animation-name:brighten-8b2323ae}@keyframes fadeIn-8b2323ae{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-8b2323ae{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-8b2323ae{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-8b2323ae{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-8b2323ae{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-8b2323ae{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-8b2323ae{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-8b2323ae{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-8b2323ae]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-8b2323ae;-webkit-animation-name:glow-8b2323ae}.loop[data-v-8b2323ae]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-8b2323ae{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-8b2323ae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-8b2323ae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-8b2323ae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}pre[data-v-8b2323ae]{width:100%;margin:0;background:#0b0b0d;color:#f3f3fa;font-size:.9em;padding:.5em;overflow:auto}.install-container[data-v-8b2323ae]{width:100%;height:100%;display:flex;flex-direction:column}.install-container section.top[data-v-8b2323ae]{height:33.3333%!important}.install-container section.bottom[data-v-8b2323ae]{height:66.6666%!important}.install-container section header[data-v-8b2323ae]{height:3.5em;padding-left:.5em;border-top:1px solid #e1e4e8;border-bottom:1px solid #e1e4e8}.install-container section .body[data-v-8b2323ae]{height:calc(100% - 3.5em);display:flex;flex-direction:column;padding:1em}.install-container section h2[data-v-8b2323ae]{font-size:1.3em;opacity:.9}.install-container .container[data-v-8b2323ae]{width:100%;height:100%;position:relative;display:flex;flex-direction:column}.install-container pre[data-v-8b2323ae]{height:100%;position:relative;border-radius:1em}.install-container[data-v-8b2323ae] .install-btn{width:100%;margin-top:1em;display:flex;justify-content:right}.install-container[data-v-8b2323ae] .install-btn button{border-radius:.5em;margin-right:.5em}.install-container .loading-container[data-v-8b2323ae]{width:100%;position:relative}.install-container .loading-container[data-v-8b2323ae] .loading{background:none}.col-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3fa6b036]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3fa6b036]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3fa6b036]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3fa6b036]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3fa6b036]:first-child{margin-left:26%!important}.col-offset-3[data-v-3fa6b036]:not(first-child){margin-left:30%!important}.col-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3fa6b036]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3fa6b036]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3fa6b036]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3fa6b036]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3fa6b036]:first-child{margin-left:52%!important}.col-offset-6[data-v-3fa6b036]:not(first-child){margin-left:56%!important}.col-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3fa6b036]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3fa6b036]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3fa6b036]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3fa6b036]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3fa6b036]:first-child{margin-left:78%!important}.col-offset-9[data-v-3fa6b036]:not(first-child){margin-left:82%!important}.col-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3fa6b036]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3fa6b036]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3fa6b036]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3fa6b036]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-s-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-s-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-s-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-s-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3fa6b036]{display:none!important}.s-visible[data-v-3fa6b036]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-m-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-m-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-m-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-m-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3fa6b036]{display:none!important}.m-visible[data-v-3fa6b036]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-l-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-l-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-l-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-l-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3fa6b036]{display:none!important}.l-visible[data-v-3fa6b036]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-xl-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-xl-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-xl-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xl-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3fa6b036]{display:none!important}.xl-visible[data-v-3fa6b036]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3fa6b036]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3fa6b036]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3fa6b036]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3fa6b036]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3fa6b036]{margin-left:26%}.col-no-margin-xxl-3[data-v-3fa6b036]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3fa6b036]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3fa6b036]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3fa6b036]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3fa6b036]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3fa6b036]{margin-left:52%}.col-no-margin-xxl-6[data-v-3fa6b036]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3fa6b036]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3fa6b036]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3fa6b036]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3fa6b036]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3fa6b036]{margin-left:78%}.col-no-margin-xxl-9[data-v-3fa6b036]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3fa6b036]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3fa6b036]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3fa6b036]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3fa6b036]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3fa6b036]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3fa6b036]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3fa6b036]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3fa6b036]{display:none!important}.xxl-visible[data-v-3fa6b036]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3fa6b036]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3fa6b036]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3fa6b036]{display:none!important}}.vertical-center[data-v-3fa6b036]{display:flex;align-items:center}.horizontal-center[data-v-3fa6b036]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3fa6b036]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3fa6b036]{display:none!important}.no-content[data-v-3fa6b036]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3fa6b036]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3fa6b036]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3fa6b036]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3fa6b036]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3fa6b036]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3fa6b036]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3fa6b036],.btn[data-v-3fa6b036],button[data-v-3fa6b036]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3fa6b036],.btn-default[type=submit][data-v-3fa6b036],.btn.btn-primary[data-v-3fa6b036],.btn[type=submit][data-v-3fa6b036],button.btn-primary[data-v-3fa6b036],button[type=submit][data-v-3fa6b036]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3fa6b036]:hover,.btn[data-v-3fa6b036]:hover,button[data-v-3fa6b036]:hover{color:#35b870}.btn .icon[data-v-3fa6b036],.btn-default .icon[data-v-3fa6b036],button .icon[data-v-3fa6b036]{margin-right:.5em}.btn-default[data-v-3fa6b036]:disabled,.btn-default[disabled][data-v-3fa6b036],.btn[data-v-3fa6b036]:disabled,.btn[disabled][data-v-3fa6b036],button[data-v-3fa6b036]:disabled,button[disabled][data-v-3fa6b036]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3fa6b036]{cursor:grab!important}.dragged[data-v-3fa6b036]{opacity:.5!important}input[type=password][data-v-3fa6b036],input[type=text][data-v-3fa6b036]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3fa6b036]:focus,input[type=text][data-v-3fa6b036]:focus{border:1px solid #35b870}button[data-v-3fa6b036],input[data-v-3fa6b036]{outline:none}input[type=text][data-v-3fa6b036]:hover,textarea[data-v-3fa6b036]:hover{border:1px solid #9cdfb0}ul[data-v-3fa6b036]{margin:0;padding:0;list-style:none}a[data-v-3fa6b036]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3fa6b036]:hover{color:#35b870}[data-v-3fa6b036]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3fa6b036]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3fa6b036]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3fa6b036]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3fa6b036]{color:#ad1717}body[data-v-3fa6b036]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3fa6b036] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3fa6b036] .nav .path{cursor:pointer}.browser[data-v-3fa6b036] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3fa6b036] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3fa6b036]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3fa6b036]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3fa6b036],input[type=number][data-v-3fa6b036],input[type=password][data-v-3fa6b036],input[type=search][data-v-3fa6b036],input[type=text][data-v-3fa6b036],input[type=time][data-v-3fa6b036]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3fa6b036]:hover,input[type=number][data-v-3fa6b036]:hover,input[type=password][data-v-3fa6b036]:hover,input[type=search][data-v-3fa6b036]:hover,input[type=text][data-v-3fa6b036]:hover,input[type=time][data-v-3fa6b036]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3fa6b036]:focus,input[type=number][data-v-3fa6b036]:focus,input[type=password][data-v-3fa6b036]:focus,input[type=search][data-v-3fa6b036]:focus,input[type=text][data-v-3fa6b036]:focus,input[type=time][data-v-3fa6b036]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3fa6b036],input[type=number].with-icon[data-v-3fa6b036],input[type=password].with-icon[data-v-3fa6b036],input[type=search].with-icon[data-v-3fa6b036],input[type=text].with-icon[data-v-3fa6b036],input[type=time].with-icon[data-v-3fa6b036]{padding-left:.3em}input[type=search][data-v-3fa6b036],input[type=text][data-v-3fa6b036]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3fa6b036]{animation-fill-mode:both;animation-name:fadeIn-3fa6b036;-webkit-animation-name:fadeIn-3fa6b036}.fade-in[data-v-3fa6b036],.fade-out[data-v-3fa6b036]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3fa6b036]{animation-fill-mode:both;animation-name:fadeOut-3fa6b036;-webkit-animation-name:fadeOut-3fa6b036}.expand[data-v-3fa6b036]{animation-fill-mode:both;animation-name:expand-3fa6b036;-webkit-animation-name:expand-3fa6b036}.expand[data-v-3fa6b036],.shrink[data-v-3fa6b036]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-3fa6b036]{animation-fill-mode:both;animation-name:shrink-3fa6b036;-webkit-animation-name:shrink-3fa6b036}.fold[data-v-3fa6b036]{animation-fill-mode:both;animation-name:fold-3fa6b036;-webkit-animation-name:fold-3fa6b036}.fold[data-v-3fa6b036],.unfold[data-v-3fa6b036]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-3fa6b036]{animation-fill-mode:both;animation-name:unfold-3fa6b036;-webkit-animation-name:unfold-3fa6b036}.dim[data-v-3fa6b036]{animation-fill-mode:both;animation-name:dim-3fa6b036;-webkit-animation-name:dim-3fa6b036}.brighten[data-v-3fa6b036],.dim[data-v-3fa6b036]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-3fa6b036]{animation-fill-mode:both;animation-name:brighten-3fa6b036;-webkit-animation-name:brighten-3fa6b036}@keyframes fadeIn-3fa6b036{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3fa6b036{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3fa6b036{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3fa6b036{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3fa6b036{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3fa6b036{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3fa6b036{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3fa6b036{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3fa6b036]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3fa6b036;-webkit-animation-name:glow-3fa6b036}.loop[data-v-3fa6b036]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3fa6b036{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3fa6b036]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3fa6b036]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3fa6b036]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-3fa6b036]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-3fa6b036]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-3fa6b036]{background:#8fefb7}.item.selected[data-v-3fa6b036]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-3fa6b036]{border-top:2px solid #35b870}.item[data-v-3fa6b036]::-moz-selection{background:transparent!important}.item[data-v-3fa6b036]::selection{background:transparent!important}.item .title[data-v-3fa6b036]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-3fa6b036]{display:inline-flex;align-items:center}.item .side.right[data-v-3fa6b036]{display:inline-flex;justify-content:right}.item .actions[data-v-3fa6b036],.item .duration[data-v-3fa6b036]{display:inline-flex;align-items:center}.item .duration[data-v-3fa6b036]{font-size:.85em;opacity:.7}.item .actions[data-v-3fa6b036] button{opacity:.65}.item .icon[data-v-3fa6b036]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-3fa6b036] .dropdown-container .item{box-shadow:none}.item[data-v-3fa6b036] .dropdown-container button{background:none;border:none}.item[data-v-3fa6b036] .dropdown-container button:hover{color:#35b870}[data-v-3fa6b036] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-3fa6b036] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-3fa6b036] .table-row{flex-direction:row;align-items:center}}[data-v-3fa6b036] .table-row .title,[data-v-3fa6b036] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-3fa6b036] .table-row .title,[data-v-3fa6b036] .table-row .value{display:inline-flex}}[data-v-3fa6b036] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-3fa6b036] .table-row .title{width:30%}[data-v-3fa6b036] .table-row .value{justify-content:right}}.extension[data-v-3fa6b036]{width:100%;height:100%;background:#fff;display:flex;flex-direction:column;border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver}.extension header[data-v-3fa6b036]{height:3.6em}.extension header[data-v-3fa6b036] .tabs{margin:0}.extension .extension-body[data-v-3fa6b036]{height:calc(100% - 3.6em);display:flex;flex-direction:column;overflow:auto}.extension .extension-body[data-v-3fa6b036] section{height:calc(100% - 3.6em)}.col-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-74d75ec7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-74d75ec7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-74d75ec7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-74d75ec7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-74d75ec7]:first-child{margin-left:26%!important}.col-offset-3[data-v-74d75ec7]:not(first-child){margin-left:30%!important}.col-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-74d75ec7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-74d75ec7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-74d75ec7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-74d75ec7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-74d75ec7]:first-child{margin-left:52%!important}.col-offset-6[data-v-74d75ec7]:not(first-child){margin-left:56%!important}.col-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-74d75ec7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-74d75ec7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-74d75ec7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-74d75ec7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-74d75ec7]:first-child{margin-left:78%!important}.col-offset-9[data-v-74d75ec7]:not(first-child){margin-left:82%!important}.col-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-74d75ec7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-74d75ec7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-74d75ec7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-74d75ec7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-s-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-s-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-s-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-s-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-74d75ec7]{display:none!important}.s-visible[data-v-74d75ec7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-m-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-m-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-m-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-m-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-74d75ec7]{display:none!important}.m-visible[data-v-74d75ec7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-l-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-l-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-l-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-l-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-74d75ec7]{display:none!important}.l-visible[data-v-74d75ec7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-xl-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-xl-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-xl-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xl-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-74d75ec7]{display:none!important}.xl-visible[data-v-74d75ec7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-74d75ec7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-74d75ec7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-74d75ec7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-74d75ec7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-74d75ec7]{margin-left:26%}.col-no-margin-xxl-3[data-v-74d75ec7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-74d75ec7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-74d75ec7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-74d75ec7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-74d75ec7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-74d75ec7]{margin-left:52%}.col-no-margin-xxl-6[data-v-74d75ec7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-74d75ec7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-74d75ec7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-74d75ec7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-74d75ec7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-74d75ec7]{margin-left:78%}.col-no-margin-xxl-9[data-v-74d75ec7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-74d75ec7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-74d75ec7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-74d75ec7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-74d75ec7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-74d75ec7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-74d75ec7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-74d75ec7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-74d75ec7]{display:none!important}.xxl-visible[data-v-74d75ec7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-74d75ec7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-74d75ec7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-74d75ec7]{display:none!important}}.vertical-center[data-v-74d75ec7]{display:flex;align-items:center}.horizontal-center[data-v-74d75ec7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-74d75ec7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-74d75ec7]{display:none!important}.no-content[data-v-74d75ec7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-74d75ec7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-74d75ec7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-74d75ec7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-74d75ec7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-74d75ec7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-74d75ec7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-74d75ec7],.btn[data-v-74d75ec7],button[data-v-74d75ec7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-74d75ec7],.btn-default[type=submit][data-v-74d75ec7],.btn.btn-primary[data-v-74d75ec7],.btn[type=submit][data-v-74d75ec7],button.btn-primary[data-v-74d75ec7],button[type=submit][data-v-74d75ec7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-74d75ec7]:hover,.btn[data-v-74d75ec7]:hover,button[data-v-74d75ec7]:hover{color:#35b870}.btn .icon[data-v-74d75ec7],.btn-default .icon[data-v-74d75ec7],button .icon[data-v-74d75ec7]{margin-right:.5em}.btn-default[data-v-74d75ec7]:disabled,.btn-default[disabled][data-v-74d75ec7],.btn[data-v-74d75ec7]:disabled,.btn[disabled][data-v-74d75ec7],button[data-v-74d75ec7]:disabled,button[disabled][data-v-74d75ec7]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-74d75ec7]{cursor:grab!important}.dragged[data-v-74d75ec7]{opacity:.5!important}input[type=password][data-v-74d75ec7],input[type=text][data-v-74d75ec7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-74d75ec7]:focus,input[type=text][data-v-74d75ec7]:focus{border:1px solid #35b870}button[data-v-74d75ec7],input[data-v-74d75ec7]{outline:none}input[type=text][data-v-74d75ec7]:hover,textarea[data-v-74d75ec7]:hover{border:1px solid #9cdfb0}ul[data-v-74d75ec7]{margin:0;padding:0;list-style:none}a[data-v-74d75ec7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-74d75ec7]:hover{color:#35b870}[data-v-74d75ec7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-74d75ec7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-74d75ec7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-74d75ec7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-74d75ec7]{color:#ad1717}body[data-v-74d75ec7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-74d75ec7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-74d75ec7] .nav .path{cursor:pointer}.browser[data-v-74d75ec7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-74d75ec7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-74d75ec7]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-74d75ec7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-74d75ec7],input[type=number][data-v-74d75ec7],input[type=password][data-v-74d75ec7],input[type=search][data-v-74d75ec7],input[type=text][data-v-74d75ec7],input[type=time][data-v-74d75ec7]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-74d75ec7]:hover,input[type=number][data-v-74d75ec7]:hover,input[type=password][data-v-74d75ec7]:hover,input[type=search][data-v-74d75ec7]:hover,input[type=text][data-v-74d75ec7]:hover,input[type=time][data-v-74d75ec7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-74d75ec7]:focus,input[type=number][data-v-74d75ec7]:focus,input[type=password][data-v-74d75ec7]:focus,input[type=search][data-v-74d75ec7]:focus,input[type=text][data-v-74d75ec7]:focus,input[type=time][data-v-74d75ec7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-74d75ec7],input[type=number].with-icon[data-v-74d75ec7],input[type=password].with-icon[data-v-74d75ec7],input[type=search].with-icon[data-v-74d75ec7],input[type=text].with-icon[data-v-74d75ec7],input[type=time].with-icon[data-v-74d75ec7]{padding-left:.3em}input[type=search][data-v-74d75ec7],input[type=text][data-v-74d75ec7]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-74d75ec7]{animation-fill-mode:both;animation-name:fadeIn-74d75ec7;-webkit-animation-name:fadeIn-74d75ec7}.fade-in[data-v-74d75ec7],.fade-out[data-v-74d75ec7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-74d75ec7]{animation-fill-mode:both;animation-name:fadeOut-74d75ec7;-webkit-animation-name:fadeOut-74d75ec7}.expand[data-v-74d75ec7]{animation-fill-mode:both;animation-name:expand-74d75ec7;-webkit-animation-name:expand-74d75ec7}.expand[data-v-74d75ec7],.shrink[data-v-74d75ec7]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-74d75ec7]{animation-fill-mode:both;animation-name:shrink-74d75ec7;-webkit-animation-name:shrink-74d75ec7}.fold[data-v-74d75ec7]{animation-fill-mode:both;animation-name:fold-74d75ec7;-webkit-animation-name:fold-74d75ec7}.fold[data-v-74d75ec7],.unfold[data-v-74d75ec7]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-74d75ec7]{animation-fill-mode:both;animation-name:unfold-74d75ec7;-webkit-animation-name:unfold-74d75ec7}.dim[data-v-74d75ec7]{animation-fill-mode:both;animation-name:dim-74d75ec7;-webkit-animation-name:dim-74d75ec7}.brighten[data-v-74d75ec7],.dim[data-v-74d75ec7]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-74d75ec7]{animation-fill-mode:both;animation-name:brighten-74d75ec7;-webkit-animation-name:brighten-74d75ec7}@keyframes fadeIn-74d75ec7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-74d75ec7{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-74d75ec7{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-74d75ec7{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-74d75ec7{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-74d75ec7{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-74d75ec7{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-74d75ec7{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-74d75ec7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-74d75ec7;-webkit-animation-name:glow-74d75ec7}.loop[data-v-74d75ec7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-74d75ec7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-74d75ec7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-74d75ec7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-74d75ec7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-74d75ec7]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-74d75ec7]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-74d75ec7]{background:#8fefb7}.item.selected[data-v-74d75ec7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-74d75ec7]{border-top:2px solid #35b870}.item[data-v-74d75ec7]::-moz-selection{background:transparent!important}.item[data-v-74d75ec7]::selection{background:transparent!important}.item .title[data-v-74d75ec7]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-74d75ec7]{display:inline-flex;align-items:center}.item .side.right[data-v-74d75ec7]{display:inline-flex;justify-content:right}.item .actions[data-v-74d75ec7],.item .duration[data-v-74d75ec7]{display:inline-flex;align-items:center}.item .duration[data-v-74d75ec7]{font-size:.85em;opacity:.7}.item .actions[data-v-74d75ec7] button{opacity:.65}.item .icon[data-v-74d75ec7]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-74d75ec7] .dropdown-container .item{box-shadow:none}.item[data-v-74d75ec7] .dropdown-container button{background:none;border:none}.item[data-v-74d75ec7] .dropdown-container button:hover{color:#35b870}[data-v-74d75ec7] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-74d75ec7] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-74d75ec7] .table-row{flex-direction:row;align-items:center}}[data-v-74d75ec7] .table-row .title,[data-v-74d75ec7] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-74d75ec7] .table-row .title,[data-v-74d75ec7] .table-row .value{display:inline-flex}}[data-v-74d75ec7] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-74d75ec7] .table-row .title{width:30%}[data-v-74d75ec7] .table-row .value{justify-content:right}}main[data-v-74d75ec7]{min-height:calc(100vh - 2em)}button[data-v-74d75ec7]{background:none;border:none;box-shadow:none}button[data-v-74d75ec7]:hover{color:#35b870}hgroup[data-v-74d75ec7]{flex-grow:1}h1[data-v-74d75ec7]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-74d75ec7]{border-radius:.5em .5em 0 0}}h2[data-v-74d75ec7]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-74d75ec7]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-74d75ec7]{margin-top:.5em;padding-top:.5em}section.response[data-v-74d75ec7]{flex-grow:1;max-height:40em}section.response .output[data-v-74d75ec7]{overflow:auto}.buttons[data-v-74d75ec7]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-74d75ec7]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-74d75ec7]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-74d75ec7]{background:#fff}header .buttons[data-v-74d75ec7]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-74d75ec7]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-74d75ec7] .doc blockquote{margin-left:0}textarea[data-v-74d75ec7]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-74d75ec7]:hover{border:1px solid #38cf80}textarea[data-v-74d75ec7]:focus{border:1px solid #32b646}form[data-v-74d75ec7]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-74d75ec7]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-74d75ec7]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-74d75ec7]{width:80%;max-width:60em}}.raw .first-row button[data-v-74d75ec7]{margin-left:0}[data-v-74d75ec7] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-74d75ec7] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-74d75ec7] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-74d75ec7] .args-body .args-list{width:30em}}[data-v-74d75ec7] .args-body .args-list label{display:flex;align-items:center}[data-v-74d75ec7] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-74d75ec7] .args-body .args-list .arg{width:100%}}[data-v-74d75ec7] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-74d75ec7] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-74d75ec7] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-74d75ec7]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-74d75ec7]{flex-direction:column}}.add-arg[data-v-74d75ec7]{width:100%}.add-arg button[data-v-74d75ec7]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-74d75ec7]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-74d75ec7]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-74d75ec7]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-74d75ec7]{width:100%}.doc-container[data-v-74d75ec7],.response[data-v-74d75ec7]{flex-grow:1}.doc-container h2[data-v-74d75ec7],.response h2[data-v-74d75ec7]{display:inline-flex}.doc-container h2 .title[data-v-74d75ec7],.response h2 .title[data-v-74d75ec7]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-74d75ec7],.response h2 .buttons[data-v-74d75ec7]{width:2em}.doc-container h2 .buttons button[data-v-74d75ec7],.response h2 .buttons button[data-v-74d75ec7]{padding:0}.output[data-v-74d75ec7]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-74d75ec7]{color:red}textarea.curl-snippet[data-v-74d75ec7]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.extensions-container[data-v-74d75ec7]{width:100%;display:flex;flex-direction:column;margin-top:.15em}.extensions-container header[data-v-74d75ec7]{height:3.25em;padding:.5em;margin-bottom:2px;box-shadow:0 3px 2px -1px silver}.extensions-container header .filter-container input[data-v-74d75ec7],.extensions-container header .filter-container[data-v-74d75ec7]{width:100%}.extensions-container main[data-v-74d75ec7]{height:calc(100% - 3.5em);min-height:calc(100% - 3.5em);background:#fff;display:flex;flex-direction:row}.extensions-container .items[data-v-74d75ec7]{height:100%;flex-grow:1;overflow:auto;border-bottom:1px solid #ddd}.extensions-container .extension-container .extension[data-v-74d75ec7]{display:flex;flex-direction:column}.extensions-container .extension-container .extension[data-v-74d75ec7] .item .extension-icon{margin-right:.5em}.extensions-container .extension-container .extension .item[data-v-74d75ec7]{width:100%;display:flex;padding:1em;position:relative}.extensions-container .extension-container .extension .item .icon[data-v-74d75ec7]{width:2.5em;position:absolute;right:-1em;top:.65em}.extensions-container .extension-container .extension .item.selected[data-v-74d75ec7]{font-weight:700}.extensions-container .extension-body-container.desktop[data-v-74d75ec7]{width:70%;height:100%;min-height:100%;border-left:1px solid #ddd;border-bottom:1px solid #ddd}.extensions-container .extension-body-container.desktop[data-v-74d75ec7] article{height:100%;overflow:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3559.84280be4.css b/platypush/backend/http/webapp/dist/static/css/3559.ea018a19.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/3559.84280be4.css rename to platypush/backend/http/webapp/dist/static/css/3559.ea018a19.css index 3d82d44bab..b35288e8d7 100644 --- a/platypush/backend/http/webapp/dist/static/css/3559.84280be4.css +++ b/platypush/backend/http/webapp/dist/static/css/3559.ea018a19.css @@ -1 +1 @@ -.col-1[data-v-66f207d9],.entity .head .icon[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-66f207d9]:first-child,.entity .head .icon[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-66f207d9]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-66f207d9]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-66f207d9]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-66f207d9]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-66f207d9],.entity .head .value-and-toggler[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-66f207d9]:first-child,.entity .head .value-and-toggler[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-66f207d9]:first-child{margin-left:26%!important}.col-offset-3[data-v-66f207d9]:not(first-child){margin-left:30%!important}.col-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-66f207d9]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-66f207d9]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-66f207d9]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-66f207d9]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-66f207d9]:first-child{margin-left:52%!important}.col-offset-6[data-v-66f207d9]:not(first-child){margin-left:56%!important}.col-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-66f207d9]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-66f207d9]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-66f207d9]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-66f207d9]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-66f207d9]:first-child{margin-left:78%!important}.col-offset-9[data-v-66f207d9]:not(first-child){margin-left:82%!important}.col-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-66f207d9]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-66f207d9]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-66f207d9]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-66f207d9]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-66f207d9],.entity .head .value-container[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-66f207d9]:first-child,.entity .head .value-container[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-s-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-s-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-66f207d9],.entity .head .label[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-66f207d9]:first-child,.entity .head .label[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-s-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-66f207d9],.attributes .child .value[data-v-66f207d9],.col-s-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-66f207d9]:first-child,.attributes .child .value[data-v-66f207d9]:first-child,.col-s-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-s-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-66f207d9]{display:none!important}.s-visible[data-v-66f207d9]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-66f207d9],.entity .head .value-container[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-66f207d9]:first-child,.entity .head .value-container[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-m-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-66f207d9],.attributes .child .value[data-v-66f207d9],.col-m-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-66f207d9]:first-child,.attributes .child .value[data-v-66f207d9]:first-child,.col-m-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-m-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-66f207d9],.entity .head .label[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-66f207d9]:first-child,.entity .head .label[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-m-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-m-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-66f207d9]{display:none!important}.m-visible[data-v-66f207d9]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-l-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-l-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-l-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-l-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-66f207d9]{display:none!important}.l-visible[data-v-66f207d9]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-xl-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-xl-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-xl-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-66f207d9]{display:none!important}.xl-visible[data-v-66f207d9]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-xxl-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-xxl-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-xxl-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-66f207d9]{display:none!important}.xxl-visible[data-v-66f207d9]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-66f207d9]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-66f207d9]{display:none!important}}.vertical-center[data-v-66f207d9]{display:flex;align-items:center}.horizontal-center[data-v-66f207d9]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-66f207d9],.pull-right[data-v-66f207d9]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-66f207d9]{display:none!important}.no-content[data-v-66f207d9]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-66f207d9]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-66f207d9]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-66f207d9]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-66f207d9]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-66f207d9]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-66f207d9]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-66f207d9],.btn[data-v-66f207d9],button[data-v-66f207d9]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-66f207d9],.btn-default[type=submit][data-v-66f207d9],.btn.btn-primary[data-v-66f207d9],.btn[type=submit][data-v-66f207d9],button.btn-primary[data-v-66f207d9],button[type=submit][data-v-66f207d9]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-66f207d9],.btn-default .icon[data-v-66f207d9],button .icon[data-v-66f207d9]{margin-right:.5em}input[type=password][data-v-66f207d9],input[type=text][data-v-66f207d9]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-66f207d9]:focus,input[type=text][data-v-66f207d9]:focus{border:1px solid #35b870}button[data-v-66f207d9],input[data-v-66f207d9]{outline:none}input[type=text][data-v-66f207d9]:hover,textarea[data-v-66f207d9]:hover{border:1px solid #9cdfb0}ul[data-v-66f207d9]{margin:0;padding:0;list-style:none}a[data-v-66f207d9]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-66f207d9]:hover{color:#35b870}[data-v-66f207d9]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-66f207d9]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-66f207d9]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-66f207d9]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-66f207d9]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-66f207d9] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-66f207d9] .nav .path{cursor:pointer}.browser[data-v-66f207d9] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-66f207d9] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-66f207d9]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-66f207d9],input[type=number][data-v-66f207d9],input[type=password][data-v-66f207d9],input[type=search][data-v-66f207d9],input[type=text][data-v-66f207d9],input[type=time][data-v-66f207d9]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-66f207d9]:hover,input[type=number][data-v-66f207d9]:hover,input[type=password][data-v-66f207d9]:hover,input[type=search][data-v-66f207d9]:hover,input[type=text][data-v-66f207d9]:hover,input[type=time][data-v-66f207d9]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-66f207d9]:focus,input[type=number][data-v-66f207d9]:focus,input[type=password][data-v-66f207d9]:focus,input[type=search][data-v-66f207d9]:focus,input[type=text][data-v-66f207d9]:focus,input[type=time][data-v-66f207d9]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-66f207d9],input[type=number].with-icon[data-v-66f207d9],input[type=password].with-icon[data-v-66f207d9],input[type=search].with-icon[data-v-66f207d9],input[type=text].with-icon[data-v-66f207d9],input[type=time].with-icon[data-v-66f207d9]{padding-left:.3em}input[type=search][data-v-66f207d9],input[type=text][data-v-66f207d9]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-66f207d9],.fade-in[data-v-66f207d9]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-66f207d9;-webkit-animation-name:fadeIn-66f207d9}.fade-out[data-v-66f207d9]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-66f207d9;-webkit-animation-name:fadeOut-66f207d9}@keyframes fadeIn-66f207d9{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-66f207d9{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-66f207d9]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-66f207d9;-webkit-animation-name:glow-66f207d9}.loop[data-v-66f207d9]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-66f207d9{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-66f207d9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-66f207d9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-66f207d9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-66f207d9]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-66f207d9]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-66f207d9]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-66f207d9]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-66f207d9]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-66f207d9]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-66f207d9]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-66f207d9]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-66f207d9]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-66f207d9]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-66f207d9]{margin-right:.5em}.entity .head .icon[data-v-66f207d9]:hover{color:#35b870}.entity .head .label[data-v-66f207d9]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-66f207d9]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-66f207d9]:hover{color:#35b870}.entity .head .value[data-v-66f207d9]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-66f207d9]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-66f207d9]{margin-right:2.5em}.entity .head .value-container[data-v-66f207d9]{min-width:7em}.entity .head .unit[data-v-66f207d9]{margin-left:.2em}.entity .head .pull-right[data-v-66f207d9],.entity .head .value-container[data-v-66f207d9]{padding-right:.5em}.entity .head .pull-right[data-v-66f207d9] .power-switch,.entity .head .value-container[data-v-66f207d9] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-66f207d9]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-66f207d9]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-66f207d9]:hover{color:#35b870}.collapse-toggler[data-v-66f207d9]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-66f207d9]:hover{color:#35b870}.attributes .child[data-v-66f207d9]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-66f207d9]{flex-direction:column}}.attributes .child[data-v-66f207d9]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-66f207d9]:hover{cursor:auto}.attributes .child.head[data-v-66f207d9]{cursor:pointer}.attributes .child.head[data-v-66f207d9]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-66f207d9]{font-weight:700}.attributes .child .value[data-v-66f207d9]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-66f207d9]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-66f207d9]:last-child,.entity-container-wrapper.with-children[data-v-66f207d9]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-66f207d9]{animation:blink-animation-66f207d9 1s steps(20,start)}@keyframes blink-animation-66f207d9{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-66f207d9],.entity .head .icon[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-66f207d9]:first-child,.entity .head .icon[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-66f207d9]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-66f207d9]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-66f207d9]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-66f207d9]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-66f207d9],.entity .head .value-and-toggler[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-66f207d9]:first-child,.entity .head .value-and-toggler[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-66f207d9]:first-child{margin-left:26%!important}.col-offset-3[data-v-66f207d9]:not(first-child){margin-left:30%!important}.col-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-66f207d9]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-66f207d9]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-66f207d9]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-66f207d9]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-66f207d9]:first-child{margin-left:52%!important}.col-offset-6[data-v-66f207d9]:not(first-child){margin-left:56%!important}.col-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-66f207d9]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-66f207d9]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-66f207d9]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-66f207d9]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-66f207d9]:first-child{margin-left:78%!important}.col-offset-9[data-v-66f207d9]:not(first-child){margin-left:82%!important}.col-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-66f207d9]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-66f207d9]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-66f207d9]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-66f207d9]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-66f207d9],.entity .head .value-container[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-66f207d9]:first-child,.entity .head .value-container[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-s-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-s-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-66f207d9],.entity .head .label[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-66f207d9]:first-child,.entity .head .label[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-s-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-s-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-66f207d9],.attributes .child .value[data-v-66f207d9],.col-s-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-66f207d9]:first-child,.attributes .child .value[data-v-66f207d9]:first-child,.col-s-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-s-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-66f207d9]{display:none!important}.s-visible[data-v-66f207d9]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-66f207d9],.entity .head .value-container[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-66f207d9]:first-child,.entity .head .value-container[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-m-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-66f207d9],.attributes .child .value[data-v-66f207d9],.col-m-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-66f207d9]:first-child,.attributes .child .value[data-v-66f207d9]:first-child,.col-m-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-m-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-66f207d9],.entity .head .label[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-66f207d9]:first-child,.entity .head .label[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-m-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-m-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-m-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-66f207d9]{display:none!important}.m-visible[data-v-66f207d9]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-l-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-l-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-l-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-l-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-l-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-66f207d9]{display:none!important}.l-visible[data-v-66f207d9]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-xl-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-xl-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-xl-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xl-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-66f207d9]{display:none!important}.xl-visible[data-v-66f207d9]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-1[data-v-66f207d9]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-66f207d9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-2[data-v-66f207d9]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-66f207d9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-3[data-v-66f207d9]{margin-left:26%}.col-no-margin-xxl-3[data-v-66f207d9]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-4[data-v-66f207d9]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-66f207d9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-5[data-v-66f207d9]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-66f207d9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-6[data-v-66f207d9]{margin-left:52%}.col-no-margin-xxl-6[data-v-66f207d9]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-7[data-v-66f207d9]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-66f207d9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-8[data-v-66f207d9]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-66f207d9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-9[data-v-66f207d9]{margin-left:78%}.col-no-margin-xxl-9[data-v-66f207d9]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-10[data-v-66f207d9]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-66f207d9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-66f207d9]:first-child{margin-left:0}.col-offset-xxl-11[data-v-66f207d9]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-66f207d9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-66f207d9]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-66f207d9]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-66f207d9]{display:none!important}.xxl-visible[data-v-66f207d9]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-66f207d9]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-66f207d9]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-66f207d9]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-66f207d9]{display:none!important}}.vertical-center[data-v-66f207d9]{display:flex;align-items:center}.horizontal-center[data-v-66f207d9]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-66f207d9],.pull-right[data-v-66f207d9]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-66f207d9]{display:none!important}.no-content[data-v-66f207d9]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-66f207d9]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-66f207d9]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-66f207d9]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-66f207d9]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-66f207d9]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-66f207d9]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-66f207d9],.btn[data-v-66f207d9],button[data-v-66f207d9]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-66f207d9],.btn-default[type=submit][data-v-66f207d9],.btn.btn-primary[data-v-66f207d9],.btn[type=submit][data-v-66f207d9],button.btn-primary[data-v-66f207d9],button[type=submit][data-v-66f207d9]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-66f207d9]:hover,.btn[data-v-66f207d9]:hover,button[data-v-66f207d9]:hover{color:#35b870}.btn .icon[data-v-66f207d9],.btn-default .icon[data-v-66f207d9],button .icon[data-v-66f207d9]{margin-right:.5em}.btn-default[data-v-66f207d9]:disabled,.btn-default[disabled][data-v-66f207d9],.btn[data-v-66f207d9]:disabled,.btn[disabled][data-v-66f207d9],button[data-v-66f207d9]:disabled,button[disabled][data-v-66f207d9]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-66f207d9]{cursor:grab!important}.dragged[data-v-66f207d9]{opacity:.5!important}input[type=password][data-v-66f207d9],input[type=text][data-v-66f207d9]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-66f207d9]:focus,input[type=text][data-v-66f207d9]:focus{border:1px solid #35b870}button[data-v-66f207d9],input[data-v-66f207d9]{outline:none}input[type=text][data-v-66f207d9]:hover,textarea[data-v-66f207d9]:hover{border:1px solid #9cdfb0}ul[data-v-66f207d9]{margin:0;padding:0;list-style:none}a[data-v-66f207d9]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-66f207d9]:hover{color:#35b870}[data-v-66f207d9]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-66f207d9]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-66f207d9]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-66f207d9]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-66f207d9]{color:#ad1717}body[data-v-66f207d9]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-66f207d9] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-66f207d9] .nav .path{cursor:pointer}.browser[data-v-66f207d9] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-66f207d9] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-66f207d9]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-66f207d9]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-66f207d9],input[type=number][data-v-66f207d9],input[type=password][data-v-66f207d9],input[type=search][data-v-66f207d9],input[type=text][data-v-66f207d9],input[type=time][data-v-66f207d9]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-66f207d9]:hover,input[type=number][data-v-66f207d9]:hover,input[type=password][data-v-66f207d9]:hover,input[type=search][data-v-66f207d9]:hover,input[type=text][data-v-66f207d9]:hover,input[type=time][data-v-66f207d9]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-66f207d9]:focus,input[type=number][data-v-66f207d9]:focus,input[type=password][data-v-66f207d9]:focus,input[type=search][data-v-66f207d9]:focus,input[type=text][data-v-66f207d9]:focus,input[type=time][data-v-66f207d9]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-66f207d9],input[type=number].with-icon[data-v-66f207d9],input[type=password].with-icon[data-v-66f207d9],input[type=search].with-icon[data-v-66f207d9],input[type=text].with-icon[data-v-66f207d9],input[type=time].with-icon[data-v-66f207d9]{padding-left:.3em}input[type=search][data-v-66f207d9],input[type=text][data-v-66f207d9]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-66f207d9],.fade-in[data-v-66f207d9]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-66f207d9;-webkit-animation-name:fadeIn-66f207d9}.fade-out[data-v-66f207d9]{animation-fill-mode:both;animation-name:fadeOut-66f207d9;-webkit-animation-name:fadeOut-66f207d9}.expand[data-v-66f207d9],.fade-out[data-v-66f207d9]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-66f207d9]{animation-fill-mode:both;animation-name:expand-66f207d9;-webkit-animation-name:expand-66f207d9}.shrink[data-v-66f207d9]{animation-fill-mode:both;animation-name:shrink-66f207d9;-webkit-animation-name:shrink-66f207d9}.fold[data-v-66f207d9],.shrink[data-v-66f207d9]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-66f207d9]{animation-fill-mode:both;animation-name:fold-66f207d9;-webkit-animation-name:fold-66f207d9}.unfold[data-v-66f207d9]{animation-fill-mode:both;animation-name:unfold-66f207d9;-webkit-animation-name:unfold-66f207d9}.dim[data-v-66f207d9],.unfold[data-v-66f207d9]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-66f207d9]{animation-fill-mode:both;animation-name:dim-66f207d9;-webkit-animation-name:dim-66f207d9}.brighten[data-v-66f207d9]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-66f207d9;-webkit-animation-name:brighten-66f207d9}@keyframes fadeIn-66f207d9{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-66f207d9{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-66f207d9{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-66f207d9{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-66f207d9{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-66f207d9{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-66f207d9{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-66f207d9{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-66f207d9]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-66f207d9;-webkit-animation-name:glow-66f207d9}.loop[data-v-66f207d9]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-66f207d9{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-66f207d9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-66f207d9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-66f207d9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-66f207d9]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-66f207d9]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-66f207d9]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-66f207d9]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-66f207d9]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-66f207d9]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-66f207d9]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-66f207d9]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-66f207d9]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-66f207d9]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-66f207d9]{margin-right:.5em}.entity .head .icon[data-v-66f207d9]:hover{color:#35b870}.entity .head .label[data-v-66f207d9]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-66f207d9]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-66f207d9]:hover{color:#35b870}.entity .head .value[data-v-66f207d9]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-66f207d9]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-66f207d9]{margin-right:2.5em}.entity .head .value-container[data-v-66f207d9]{min-width:7em}.entity .head .unit[data-v-66f207d9]{margin-left:.2em}.entity .head .pull-right[data-v-66f207d9],.entity .head .value-container[data-v-66f207d9]{padding-right:.5em}.entity .head .pull-right[data-v-66f207d9] .power-switch,.entity .head .value-container[data-v-66f207d9] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-66f207d9]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-66f207d9]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-66f207d9]:hover{color:#35b870}.collapse-toggler[data-v-66f207d9]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-66f207d9]:hover{color:#35b870}.attributes .child[data-v-66f207d9]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-66f207d9]{flex-direction:column}}.attributes .child[data-v-66f207d9]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-66f207d9]:hover{cursor:auto}.attributes .child.head[data-v-66f207d9]{cursor:pointer}.attributes .child.head[data-v-66f207d9]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-66f207d9]{font-weight:700}.attributes .child .value[data-v-66f207d9]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-66f207d9]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-66f207d9]:last-child,.entity-container-wrapper.with-children[data-v-66f207d9]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-66f207d9]{animation:blink-animation-66f207d9 1s steps(20,start)}@keyframes blink-animation-66f207d9{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/38.b93403c3.css b/platypush/backend/http/webapp/dist/static/css/38.b93403c3.css new file mode 100644 index 0000000000..448958e558 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/38.b93403c3.css @@ -0,0 +1 @@ +.col-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5adf10b7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5adf10b7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5adf10b7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5adf10b7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5adf10b7]:first-child{margin-left:26%!important}.col-offset-3[data-v-5adf10b7]:not(first-child){margin-left:30%!important}.col-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5adf10b7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5adf10b7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5adf10b7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5adf10b7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5adf10b7]:first-child{margin-left:52%!important}.col-offset-6[data-v-5adf10b7]:not(first-child){margin-left:56%!important}.col-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5adf10b7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5adf10b7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5adf10b7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5adf10b7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5adf10b7]:first-child{margin-left:78%!important}.col-offset-9[data-v-5adf10b7]:not(first-child){margin-left:82%!important}.col-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5adf10b7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5adf10b7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5adf10b7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5adf10b7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-1[data-v-5adf10b7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-2[data-v-5adf10b7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-3[data-v-5adf10b7]{margin-left:26%}.col-no-margin-s-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-4[data-v-5adf10b7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-5[data-v-5adf10b7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-6[data-v-5adf10b7]{margin-left:52%}.col-no-margin-s-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-7[data-v-5adf10b7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-8[data-v-5adf10b7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-9[data-v-5adf10b7]{margin-left:78%}.col-no-margin-s-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-10[data-v-5adf10b7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-s-11[data-v-5adf10b7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5adf10b7]{display:none!important}.s-visible[data-v-5adf10b7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-1[data-v-5adf10b7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-2[data-v-5adf10b7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-3[data-v-5adf10b7]{margin-left:26%}.col-no-margin-m-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-4[data-v-5adf10b7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-5[data-v-5adf10b7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-6[data-v-5adf10b7]{margin-left:52%}.col-no-margin-m-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-7[data-v-5adf10b7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-8[data-v-5adf10b7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-9[data-v-5adf10b7]{margin-left:78%}.col-no-margin-m-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-10[data-v-5adf10b7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-m-11[data-v-5adf10b7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5adf10b7]{display:none!important}.m-visible[data-v-5adf10b7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-1[data-v-5adf10b7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-2[data-v-5adf10b7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-3[data-v-5adf10b7]{margin-left:26%}.col-no-margin-l-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-4[data-v-5adf10b7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-5[data-v-5adf10b7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-6[data-v-5adf10b7]{margin-left:52%}.col-no-margin-l-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-7[data-v-5adf10b7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-8[data-v-5adf10b7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-9[data-v-5adf10b7]{margin-left:78%}.col-no-margin-l-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-10[data-v-5adf10b7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-l-11[data-v-5adf10b7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5adf10b7]{display:none!important}.l-visible[data-v-5adf10b7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-1[data-v-5adf10b7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-2[data-v-5adf10b7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-3[data-v-5adf10b7]{margin-left:26%}.col-no-margin-xl-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-4[data-v-5adf10b7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-5[data-v-5adf10b7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-6[data-v-5adf10b7]{margin-left:52%}.col-no-margin-xl-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-7[data-v-5adf10b7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-8[data-v-5adf10b7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-9[data-v-5adf10b7]{margin-left:78%}.col-no-margin-xl-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-10[data-v-5adf10b7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xl-11[data-v-5adf10b7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5adf10b7]{display:none!important}.xl-visible[data-v-5adf10b7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5adf10b7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5adf10b7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5adf10b7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5adf10b7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5adf10b7]{margin-left:26%}.col-no-margin-xxl-3[data-v-5adf10b7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5adf10b7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5adf10b7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5adf10b7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5adf10b7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5adf10b7]{margin-left:52%}.col-no-margin-xxl-6[data-v-5adf10b7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5adf10b7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5adf10b7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5adf10b7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5adf10b7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5adf10b7]{margin-left:78%}.col-no-margin-xxl-9[data-v-5adf10b7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5adf10b7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5adf10b7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5adf10b7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5adf10b7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5adf10b7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5adf10b7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5adf10b7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5adf10b7]{display:none!important}.xxl-visible[data-v-5adf10b7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5adf10b7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5adf10b7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5adf10b7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5adf10b7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5adf10b7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5adf10b7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5adf10b7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5adf10b7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5adf10b7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5adf10b7]{display:none!important}}.vertical-center[data-v-5adf10b7]{display:flex;align-items:center}.horizontal-center[data-v-5adf10b7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5adf10b7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5adf10b7]{display:none!important}.no-content[data-v-5adf10b7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5adf10b7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5adf10b7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5adf10b7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5adf10b7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5adf10b7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5adf10b7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5adf10b7],.btn[data-v-5adf10b7],button[data-v-5adf10b7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5adf10b7],.btn-default[type=submit][data-v-5adf10b7],.btn.btn-primary[data-v-5adf10b7],.btn[type=submit][data-v-5adf10b7],button.btn-primary[data-v-5adf10b7],button[type=submit][data-v-5adf10b7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5adf10b7]:hover,.btn[data-v-5adf10b7]:hover,button[data-v-5adf10b7]:hover{color:#35b870}.btn .icon[data-v-5adf10b7],.btn-default .icon[data-v-5adf10b7],button .icon[data-v-5adf10b7]{margin-right:.5em}.btn-default[data-v-5adf10b7]:disabled,.btn-default[disabled][data-v-5adf10b7],.btn[data-v-5adf10b7]:disabled,.btn[disabled][data-v-5adf10b7],button[data-v-5adf10b7]:disabled,button[disabled][data-v-5adf10b7]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5adf10b7]{cursor:grab!important}.dragged[data-v-5adf10b7]{opacity:.5!important}input[type=password][data-v-5adf10b7],input[type=text][data-v-5adf10b7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5adf10b7]:focus,input[type=text][data-v-5adf10b7]:focus{border:1px solid #35b870}button[data-v-5adf10b7],input[data-v-5adf10b7]{outline:none}input[type=text][data-v-5adf10b7]:hover,textarea[data-v-5adf10b7]:hover{border:1px solid #9cdfb0}ul[data-v-5adf10b7]{margin:0;padding:0;list-style:none}a[data-v-5adf10b7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5adf10b7]:hover{color:#35b870}[data-v-5adf10b7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5adf10b7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5adf10b7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5adf10b7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5adf10b7]{color:#ad1717}body[data-v-5adf10b7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5adf10b7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5adf10b7] .nav .path{cursor:pointer}.browser[data-v-5adf10b7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5adf10b7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5adf10b7]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5adf10b7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5adf10b7],input[type=number][data-v-5adf10b7],input[type=password][data-v-5adf10b7],input[type=search][data-v-5adf10b7],input[type=text][data-v-5adf10b7],input[type=time][data-v-5adf10b7]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5adf10b7]:hover,input[type=number][data-v-5adf10b7]:hover,input[type=password][data-v-5adf10b7]:hover,input[type=search][data-v-5adf10b7]:hover,input[type=text][data-v-5adf10b7]:hover,input[type=time][data-v-5adf10b7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5adf10b7]:focus,input[type=number][data-v-5adf10b7]:focus,input[type=password][data-v-5adf10b7]:focus,input[type=search][data-v-5adf10b7]:focus,input[type=text][data-v-5adf10b7]:focus,input[type=time][data-v-5adf10b7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5adf10b7],input[type=number].with-icon[data-v-5adf10b7],input[type=password].with-icon[data-v-5adf10b7],input[type=search].with-icon[data-v-5adf10b7],input[type=text].with-icon[data-v-5adf10b7],input[type=time].with-icon[data-v-5adf10b7]{padding-left:.3em}input[type=search][data-v-5adf10b7],input[type=text][data-v-5adf10b7]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5adf10b7]{animation-fill-mode:both;animation-name:fadeIn-5adf10b7;-webkit-animation-name:fadeIn-5adf10b7}.fade-in[data-v-5adf10b7],.fade-out[data-v-5adf10b7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5adf10b7]{animation-fill-mode:both;animation-name:fadeOut-5adf10b7;-webkit-animation-name:fadeOut-5adf10b7}.expand[data-v-5adf10b7]{animation-fill-mode:both;animation-name:expand-5adf10b7;-webkit-animation-name:expand-5adf10b7}.expand[data-v-5adf10b7],.shrink[data-v-5adf10b7]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-5adf10b7]{animation-fill-mode:both;animation-name:shrink-5adf10b7;-webkit-animation-name:shrink-5adf10b7}.fold[data-v-5adf10b7]{animation-fill-mode:both;animation-name:fold-5adf10b7;-webkit-animation-name:fold-5adf10b7}.fold[data-v-5adf10b7],.unfold[data-v-5adf10b7]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-5adf10b7]{animation-fill-mode:both;animation-name:unfold-5adf10b7;-webkit-animation-name:unfold-5adf10b7}.dim[data-v-5adf10b7],.index .item[data-v-5adf10b7]:hover{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:dim-5adf10b7;-webkit-animation-name:dim-5adf10b7}.brighten[data-v-5adf10b7]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-5adf10b7;-webkit-animation-name:brighten-5adf10b7}@keyframes fadeIn-5adf10b7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5adf10b7{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5adf10b7{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5adf10b7{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5adf10b7{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5adf10b7{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5adf10b7{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5adf10b7{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5adf10b7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5adf10b7;-webkit-animation-name:glow-5adf10b7}.loop[data-v-5adf10b7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5adf10b7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5adf10b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5adf10b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5adf10b7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-5adf10b7] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-5adf10b7] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-5adf10b7] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-5adf10b7] .item .icon i{font-size:40px}.grid[data-v-5adf10b7] .item .icon img{width:40px;height:40px}[data-v-5adf10b7] .nav{height:2.5em}.index[data-v-5adf10b7]{height:100%;margin:2px 0 -2px 0}.index .items[data-v-5adf10b7]{height:100%;display:grid;gap:1em;grid-template-columns:repeat(auto-fill,minmax(20em,1fr));overflow-y:auto;padding:1em}.index .item[data-v-5adf10b7]{width:100%;height:15em;flex:1;position:relative;cursor:pointer}.index .item .image[data-v-5adf10b7]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;overflow:hidden}.index .item .image img[data-v-5adf10b7]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;margin:0}.index .item .image i[data-v-5adf10b7]{font-size:5em}.index .item .name[data-v-5adf10b7]{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;text-align:center;background-color:rgba(0,0,0,.75);color:#fff;font-size:1.75em;font-weight:700;padding:.5em}.index[data-v-5adf10b7]{position:relative} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3826.6a236247.css b/platypush/backend/http/webapp/dist/static/css/3826.eb2047be.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/3826.6a236247.css rename to platypush/backend/http/webapp/dist/static/css/3826.eb2047be.css index 50628169ca..d33f191b93 100644 --- a/platypush/backend/http/webapp/dist/static/css/3826.6a236247.css +++ b/platypush/backend/http/webapp/dist/static/css/3826.eb2047be.css @@ -1 +1 @@ -.col-1[data-v-3b38610c],.entity .head .icon[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3b38610c]:first-child,.entity .head .icon[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3b38610c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3b38610c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3b38610c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3b38610c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3b38610c],.entity .head .value-and-toggler[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3b38610c]:first-child,.entity .head .value-and-toggler[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3b38610c]:first-child{margin-left:26%!important}.col-offset-3[data-v-3b38610c]:not(first-child){margin-left:30%!important}.col-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3b38610c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3b38610c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3b38610c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3b38610c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3b38610c]:first-child{margin-left:52%!important}.col-offset-6[data-v-3b38610c]:not(first-child){margin-left:56%!important}.col-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3b38610c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3b38610c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3b38610c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3b38610c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3b38610c]:first-child{margin-left:78%!important}.col-offset-9[data-v-3b38610c]:not(first-child){margin-left:82%!important}.col-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3b38610c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3b38610c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3b38610c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3b38610c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3b38610c],.entity .head .value-container[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3b38610c]:first-child,.entity .head .value-container[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-s-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-s-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3b38610c],.entity .head .label[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3b38610c]:first-child,.entity .head .label[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-s-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-3b38610c],.attributes .child .value[data-v-3b38610c],.col-s-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-3b38610c]:first-child,.attributes .child .value[data-v-3b38610c]:first-child,.col-s-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3b38610c]{display:none!important}.s-visible[data-v-3b38610c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3b38610c],.entity .head .value-container[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3b38610c]:first-child,.entity .head .value-container[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-m-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-3b38610c],.attributes .child .value[data-v-3b38610c],.col-m-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-3b38610c]:first-child,.attributes .child .value[data-v-3b38610c]:first-child,.col-m-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-m-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3b38610c],.entity .head .label[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3b38610c]:first-child,.entity .head .label[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-m-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3b38610c]{display:none!important}.m-visible[data-v-3b38610c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-l-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-l-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-l-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3b38610c]{display:none!important}.l-visible[data-v-3b38610c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-xl-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-xl-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-xl-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3b38610c]{display:none!important}.xl-visible[data-v-3b38610c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-xxl-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-xxl-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-xxl-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3b38610c]{display:none!important}.xxl-visible[data-v-3b38610c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3b38610c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3b38610c]{display:none!important}}.vertical-center[data-v-3b38610c]{display:flex;align-items:center}.horizontal-center[data-v-3b38610c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-3b38610c],.pull-right[data-v-3b38610c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3b38610c]{display:none!important}.no-content[data-v-3b38610c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3b38610c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3b38610c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3b38610c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3b38610c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3b38610c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3b38610c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3b38610c],.btn[data-v-3b38610c],button[data-v-3b38610c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3b38610c],.btn-default[type=submit][data-v-3b38610c],.btn.btn-primary[data-v-3b38610c],.btn[type=submit][data-v-3b38610c],button.btn-primary[data-v-3b38610c],button[type=submit][data-v-3b38610c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3b38610c],.btn-default .icon[data-v-3b38610c],button .icon[data-v-3b38610c]{margin-right:.5em}input[type=password][data-v-3b38610c],input[type=text][data-v-3b38610c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3b38610c]:focus,input[type=text][data-v-3b38610c]:focus{border:1px solid #35b870}button[data-v-3b38610c],input[data-v-3b38610c]{outline:none}input[type=text][data-v-3b38610c]:hover,textarea[data-v-3b38610c]:hover{border:1px solid #9cdfb0}ul[data-v-3b38610c]{margin:0;padding:0;list-style:none}a[data-v-3b38610c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3b38610c]:hover{color:#35b870}[data-v-3b38610c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3b38610c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3b38610c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3b38610c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3b38610c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3b38610c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3b38610c] .nav .path{cursor:pointer}.browser[data-v-3b38610c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3b38610c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3b38610c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3b38610c],input[type=number][data-v-3b38610c],input[type=password][data-v-3b38610c],input[type=search][data-v-3b38610c],input[type=text][data-v-3b38610c],input[type=time][data-v-3b38610c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3b38610c]:hover,input[type=number][data-v-3b38610c]:hover,input[type=password][data-v-3b38610c]:hover,input[type=search][data-v-3b38610c]:hover,input[type=text][data-v-3b38610c]:hover,input[type=time][data-v-3b38610c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3b38610c]:focus,input[type=number][data-v-3b38610c]:focus,input[type=password][data-v-3b38610c]:focus,input[type=search][data-v-3b38610c]:focus,input[type=text][data-v-3b38610c]:focus,input[type=time][data-v-3b38610c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3b38610c],input[type=number].with-icon[data-v-3b38610c],input[type=password].with-icon[data-v-3b38610c],input[type=search].with-icon[data-v-3b38610c],input[type=text].with-icon[data-v-3b38610c],input[type=time].with-icon[data-v-3b38610c]{padding-left:.3em}input[type=search][data-v-3b38610c],input[type=text][data-v-3b38610c]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-3b38610c],.fade-in[data-v-3b38610c]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-3b38610c;-webkit-animation-name:fadeIn-3b38610c}.fade-out[data-v-3b38610c]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-3b38610c;-webkit-animation-name:fadeOut-3b38610c}@keyframes fadeIn-3b38610c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3b38610c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3b38610c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3b38610c;-webkit-animation-name:glow-3b38610c}.loop[data-v-3b38610c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3b38610c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3b38610c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3b38610c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3b38610c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-3b38610c]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-3b38610c]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-3b38610c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-3b38610c]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-3b38610c]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-3b38610c]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-3b38610c]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-3b38610c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-3b38610c]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-3b38610c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-3b38610c]{margin-right:.5em}.entity .head .icon[data-v-3b38610c]:hover{color:#35b870}.entity .head .label[data-v-3b38610c]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-3b38610c]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-3b38610c]:hover{color:#35b870}.entity .head .value[data-v-3b38610c]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-3b38610c]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-3b38610c]{margin-right:2.5em}.entity .head .value-container[data-v-3b38610c]{min-width:7em}.entity .head .unit[data-v-3b38610c]{margin-left:.2em}.entity .head .pull-right[data-v-3b38610c],.entity .head .value-container[data-v-3b38610c]{padding-right:.5em}.entity .head .pull-right[data-v-3b38610c] .power-switch,.entity .head .value-container[data-v-3b38610c] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-3b38610c]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-3b38610c]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-3b38610c]:hover{color:#35b870}.collapse-toggler[data-v-3b38610c]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-3b38610c]:hover{color:#35b870}.attributes .child[data-v-3b38610c]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-3b38610c]{flex-direction:column}}.attributes .child[data-v-3b38610c]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-3b38610c]:hover{cursor:auto}.attributes .child.head[data-v-3b38610c]{cursor:pointer}.attributes .child.head[data-v-3b38610c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-3b38610c]{font-weight:700}.attributes .child .value[data-v-3b38610c]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-3b38610c]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-3b38610c]:last-child,.entity-container-wrapper.with-children[data-v-3b38610c]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-3b38610c]{animation:blink-animation-3b38610c 1s steps(20,start)}@keyframes blink-animation-3b38610c{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-3b38610c],.entity .head .icon[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3b38610c]:first-child,.entity .head .icon[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3b38610c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3b38610c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3b38610c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3b38610c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3b38610c],.entity .head .value-and-toggler[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3b38610c]:first-child,.entity .head .value-and-toggler[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3b38610c]:first-child{margin-left:26%!important}.col-offset-3[data-v-3b38610c]:not(first-child){margin-left:30%!important}.col-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3b38610c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3b38610c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3b38610c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3b38610c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3b38610c]:first-child{margin-left:52%!important}.col-offset-6[data-v-3b38610c]:not(first-child){margin-left:56%!important}.col-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3b38610c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3b38610c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3b38610c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3b38610c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3b38610c]:first-child{margin-left:78%!important}.col-offset-9[data-v-3b38610c]:not(first-child){margin-left:82%!important}.col-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3b38610c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3b38610c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3b38610c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3b38610c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3b38610c],.entity .head .value-container[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3b38610c]:first-child,.entity .head .value-container[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-s-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-s-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3b38610c],.entity .head .label[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3b38610c]:first-child,.entity .head .label[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-s-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-s-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-3b38610c],.attributes .child .value[data-v-3b38610c],.col-s-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-3b38610c]:first-child,.attributes .child .value[data-v-3b38610c]:first-child,.col-s-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3b38610c]{display:none!important}.s-visible[data-v-3b38610c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3b38610c],.entity .head .value-container[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3b38610c]:first-child,.entity .head .value-container[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-m-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-3b38610c],.attributes .child .value[data-v-3b38610c],.col-m-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-3b38610c]:first-child,.attributes .child .value[data-v-3b38610c]:first-child,.col-m-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-m-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3b38610c],.entity .head .label[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3b38610c]:first-child,.entity .head .label[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-m-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-m-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3b38610c]{display:none!important}.m-visible[data-v-3b38610c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-l-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-l-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-l-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-l-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3b38610c]{display:none!important}.l-visible[data-v-3b38610c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-xl-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-xl-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-xl-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xl-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3b38610c]{display:none!important}.xl-visible[data-v-3b38610c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3b38610c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3b38610c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3b38610c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3b38610c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3b38610c]{margin-left:26%}.col-no-margin-xxl-3[data-v-3b38610c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3b38610c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3b38610c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3b38610c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3b38610c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3b38610c]{margin-left:52%}.col-no-margin-xxl-6[data-v-3b38610c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3b38610c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3b38610c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3b38610c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3b38610c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3b38610c]{margin-left:78%}.col-no-margin-xxl-9[data-v-3b38610c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3b38610c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3b38610c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3b38610c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3b38610c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3b38610c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3b38610c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3b38610c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3b38610c]{display:none!important}.xxl-visible[data-v-3b38610c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3b38610c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3b38610c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3b38610c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3b38610c]{display:none!important}}.vertical-center[data-v-3b38610c]{display:flex;align-items:center}.horizontal-center[data-v-3b38610c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-3b38610c],.pull-right[data-v-3b38610c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3b38610c]{display:none!important}.no-content[data-v-3b38610c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3b38610c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3b38610c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3b38610c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3b38610c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3b38610c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3b38610c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3b38610c],.btn[data-v-3b38610c],button[data-v-3b38610c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3b38610c],.btn-default[type=submit][data-v-3b38610c],.btn.btn-primary[data-v-3b38610c],.btn[type=submit][data-v-3b38610c],button.btn-primary[data-v-3b38610c],button[type=submit][data-v-3b38610c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3b38610c]:hover,.btn[data-v-3b38610c]:hover,button[data-v-3b38610c]:hover{color:#35b870}.btn .icon[data-v-3b38610c],.btn-default .icon[data-v-3b38610c],button .icon[data-v-3b38610c]{margin-right:.5em}.btn-default[data-v-3b38610c]:disabled,.btn-default[disabled][data-v-3b38610c],.btn[data-v-3b38610c]:disabled,.btn[disabled][data-v-3b38610c],button[data-v-3b38610c]:disabled,button[disabled][data-v-3b38610c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3b38610c]{cursor:grab!important}.dragged[data-v-3b38610c]{opacity:.5!important}input[type=password][data-v-3b38610c],input[type=text][data-v-3b38610c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3b38610c]:focus,input[type=text][data-v-3b38610c]:focus{border:1px solid #35b870}button[data-v-3b38610c],input[data-v-3b38610c]{outline:none}input[type=text][data-v-3b38610c]:hover,textarea[data-v-3b38610c]:hover{border:1px solid #9cdfb0}ul[data-v-3b38610c]{margin:0;padding:0;list-style:none}a[data-v-3b38610c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3b38610c]:hover{color:#35b870}[data-v-3b38610c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3b38610c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3b38610c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3b38610c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3b38610c]{color:#ad1717}body[data-v-3b38610c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3b38610c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3b38610c] .nav .path{cursor:pointer}.browser[data-v-3b38610c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3b38610c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3b38610c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3b38610c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3b38610c],input[type=number][data-v-3b38610c],input[type=password][data-v-3b38610c],input[type=search][data-v-3b38610c],input[type=text][data-v-3b38610c],input[type=time][data-v-3b38610c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3b38610c]:hover,input[type=number][data-v-3b38610c]:hover,input[type=password][data-v-3b38610c]:hover,input[type=search][data-v-3b38610c]:hover,input[type=text][data-v-3b38610c]:hover,input[type=time][data-v-3b38610c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3b38610c]:focus,input[type=number][data-v-3b38610c]:focus,input[type=password][data-v-3b38610c]:focus,input[type=search][data-v-3b38610c]:focus,input[type=text][data-v-3b38610c]:focus,input[type=time][data-v-3b38610c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3b38610c],input[type=number].with-icon[data-v-3b38610c],input[type=password].with-icon[data-v-3b38610c],input[type=search].with-icon[data-v-3b38610c],input[type=text].with-icon[data-v-3b38610c],input[type=time].with-icon[data-v-3b38610c]{padding-left:.3em}input[type=search][data-v-3b38610c],input[type=text][data-v-3b38610c]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-3b38610c],.fade-in[data-v-3b38610c]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-3b38610c;-webkit-animation-name:fadeIn-3b38610c}.fade-out[data-v-3b38610c]{animation-fill-mode:both;animation-name:fadeOut-3b38610c;-webkit-animation-name:fadeOut-3b38610c}.expand[data-v-3b38610c],.fade-out[data-v-3b38610c]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-3b38610c]{animation-fill-mode:both;animation-name:expand-3b38610c;-webkit-animation-name:expand-3b38610c}.shrink[data-v-3b38610c]{animation-fill-mode:both;animation-name:shrink-3b38610c;-webkit-animation-name:shrink-3b38610c}.fold[data-v-3b38610c],.shrink[data-v-3b38610c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-3b38610c]{animation-fill-mode:both;animation-name:fold-3b38610c;-webkit-animation-name:fold-3b38610c}.unfold[data-v-3b38610c]{animation-fill-mode:both;animation-name:unfold-3b38610c;-webkit-animation-name:unfold-3b38610c}.dim[data-v-3b38610c],.unfold[data-v-3b38610c]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-3b38610c]{animation-fill-mode:both;animation-name:dim-3b38610c;-webkit-animation-name:dim-3b38610c}.brighten[data-v-3b38610c]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-3b38610c;-webkit-animation-name:brighten-3b38610c}@keyframes fadeIn-3b38610c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3b38610c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3b38610c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3b38610c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3b38610c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3b38610c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3b38610c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3b38610c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3b38610c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3b38610c;-webkit-animation-name:glow-3b38610c}.loop[data-v-3b38610c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3b38610c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3b38610c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3b38610c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3b38610c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-3b38610c]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-3b38610c]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-3b38610c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-3b38610c]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-3b38610c]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-3b38610c]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-3b38610c]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-3b38610c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-3b38610c]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-3b38610c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-3b38610c]{margin-right:.5em}.entity .head .icon[data-v-3b38610c]:hover{color:#35b870}.entity .head .label[data-v-3b38610c]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-3b38610c]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-3b38610c]:hover{color:#35b870}.entity .head .value[data-v-3b38610c]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-3b38610c]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-3b38610c]{margin-right:2.5em}.entity .head .value-container[data-v-3b38610c]{min-width:7em}.entity .head .unit[data-v-3b38610c]{margin-left:.2em}.entity .head .pull-right[data-v-3b38610c],.entity .head .value-container[data-v-3b38610c]{padding-right:.5em}.entity .head .pull-right[data-v-3b38610c] .power-switch,.entity .head .value-container[data-v-3b38610c] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-3b38610c]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-3b38610c]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-3b38610c]:hover{color:#35b870}.collapse-toggler[data-v-3b38610c]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-3b38610c]:hover{color:#35b870}.attributes .child[data-v-3b38610c]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-3b38610c]{flex-direction:column}}.attributes .child[data-v-3b38610c]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-3b38610c]:hover{cursor:auto}.attributes .child.head[data-v-3b38610c]{cursor:pointer}.attributes .child.head[data-v-3b38610c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-3b38610c]{font-weight:700}.attributes .child .value[data-v-3b38610c]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-3b38610c]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-3b38610c]:last-child,.entity-container-wrapper.with-children[data-v-3b38610c]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-3b38610c]{animation:blink-animation-3b38610c 1s steps(20,start)}@keyframes blink-animation-3b38610c{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3835.9eceb93e.css b/platypush/backend/http/webapp/dist/static/css/3835.bc057f22.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/3835.9eceb93e.css rename to platypush/backend/http/webapp/dist/static/css/3835.bc057f22.css index bd972b9366..57b5e87948 100644 --- a/platypush/backend/http/webapp/dist/static/css/3835.9eceb93e.css +++ b/platypush/backend/http/webapp/dist/static/css/3835.bc057f22.css @@ -1 +1 @@ -.col-1[data-v-6aff1eff],.entity .head .icon[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6aff1eff]:first-child,.entity .head .icon[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6aff1eff]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6aff1eff]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6aff1eff]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6aff1eff]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6aff1eff],.entity .head .value-and-toggler[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6aff1eff]:first-child,.entity .head .value-and-toggler[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6aff1eff]:first-child{margin-left:26%!important}.col-offset-3[data-v-6aff1eff]:not(first-child){margin-left:30%!important}.col-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6aff1eff]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6aff1eff]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6aff1eff]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6aff1eff]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6aff1eff]:first-child{margin-left:52%!important}.col-offset-6[data-v-6aff1eff]:not(first-child){margin-left:56%!important}.col-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6aff1eff]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6aff1eff]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6aff1eff]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6aff1eff]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6aff1eff]:first-child{margin-left:78%!important}.col-offset-9[data-v-6aff1eff]:not(first-child){margin-left:82%!important}.col-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6aff1eff]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6aff1eff]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6aff1eff]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6aff1eff]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6aff1eff],.entity .head .value-container[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6aff1eff]:first-child,.entity .head .value-container[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-s-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-s-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6aff1eff],.entity .head .label[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6aff1eff]:first-child,.entity .head .label[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-s-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-6aff1eff],.attributes .child .value[data-v-6aff1eff],.col-s-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-6aff1eff]:first-child,.attributes .child .value[data-v-6aff1eff]:first-child,.col-s-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6aff1eff]{display:none!important}.s-visible[data-v-6aff1eff]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6aff1eff],.entity .head .value-container[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6aff1eff]:first-child,.entity .head .value-container[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-m-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-6aff1eff],.attributes .child .value[data-v-6aff1eff],.col-m-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-6aff1eff]:first-child,.attributes .child .value[data-v-6aff1eff]:first-child,.col-m-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-m-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6aff1eff],.entity .head .label[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6aff1eff]:first-child,.entity .head .label[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-m-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6aff1eff]{display:none!important}.m-visible[data-v-6aff1eff]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-l-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-l-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-l-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6aff1eff]{display:none!important}.l-visible[data-v-6aff1eff]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-xl-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-xl-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-xl-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6aff1eff]{display:none!important}.xl-visible[data-v-6aff1eff]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-xxl-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-xxl-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-xxl-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6aff1eff]{display:none!important}.xxl-visible[data-v-6aff1eff]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6aff1eff]{display:none!important}}.vertical-center[data-v-6aff1eff]{display:flex;align-items:center}.horizontal-center[data-v-6aff1eff]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-6aff1eff],.pull-right[data-v-6aff1eff]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6aff1eff]{display:none!important}.no-content[data-v-6aff1eff]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6aff1eff]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6aff1eff]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6aff1eff]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6aff1eff]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6aff1eff]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6aff1eff]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6aff1eff],.btn[data-v-6aff1eff],button[data-v-6aff1eff]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6aff1eff],.btn-default[type=submit][data-v-6aff1eff],.btn.btn-primary[data-v-6aff1eff],.btn[type=submit][data-v-6aff1eff],button.btn-primary[data-v-6aff1eff],button[type=submit][data-v-6aff1eff]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6aff1eff],.btn-default .icon[data-v-6aff1eff],button .icon[data-v-6aff1eff]{margin-right:.5em}input[type=password][data-v-6aff1eff],input[type=text][data-v-6aff1eff]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6aff1eff]:focus,input[type=text][data-v-6aff1eff]:focus{border:1px solid #35b870}button[data-v-6aff1eff],input[data-v-6aff1eff]{outline:none}input[type=text][data-v-6aff1eff]:hover,textarea[data-v-6aff1eff]:hover{border:1px solid #9cdfb0}ul[data-v-6aff1eff]{margin:0;padding:0;list-style:none}a[data-v-6aff1eff]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6aff1eff]:hover{color:#35b870}[data-v-6aff1eff]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6aff1eff]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6aff1eff]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6aff1eff]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6aff1eff]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6aff1eff] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6aff1eff] .nav .path{cursor:pointer}.browser[data-v-6aff1eff] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6aff1eff] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-6aff1eff]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6aff1eff],input[type=number][data-v-6aff1eff],input[type=password][data-v-6aff1eff],input[type=search][data-v-6aff1eff],input[type=text][data-v-6aff1eff],input[type=time][data-v-6aff1eff]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-6aff1eff]:hover,input[type=number][data-v-6aff1eff]:hover,input[type=password][data-v-6aff1eff]:hover,input[type=search][data-v-6aff1eff]:hover,input[type=text][data-v-6aff1eff]:hover,input[type=time][data-v-6aff1eff]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6aff1eff]:focus,input[type=number][data-v-6aff1eff]:focus,input[type=password][data-v-6aff1eff]:focus,input[type=search][data-v-6aff1eff]:focus,input[type=text][data-v-6aff1eff]:focus,input[type=time][data-v-6aff1eff]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6aff1eff],input[type=number].with-icon[data-v-6aff1eff],input[type=password].with-icon[data-v-6aff1eff],input[type=search].with-icon[data-v-6aff1eff],input[type=text].with-icon[data-v-6aff1eff],input[type=time].with-icon[data-v-6aff1eff]{padding-left:.3em}input[type=search][data-v-6aff1eff],input[type=text][data-v-6aff1eff]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-6aff1eff],.fade-in[data-v-6aff1eff]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-6aff1eff;-webkit-animation-name:fadeIn-6aff1eff}.fade-out[data-v-6aff1eff]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-6aff1eff;-webkit-animation-name:fadeOut-6aff1eff}@keyframes fadeIn-6aff1eff{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6aff1eff{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-6aff1eff]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6aff1eff;-webkit-animation-name:glow-6aff1eff}.loop[data-v-6aff1eff]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6aff1eff{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6aff1eff]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6aff1eff]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6aff1eff]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-6aff1eff]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-6aff1eff]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-6aff1eff]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-6aff1eff]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-6aff1eff]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-6aff1eff]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-6aff1eff]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-6aff1eff]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-6aff1eff]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-6aff1eff]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-6aff1eff]{margin-right:.5em}.entity .head .icon[data-v-6aff1eff]:hover{color:#35b870}.entity .head .label[data-v-6aff1eff]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-6aff1eff]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-6aff1eff]:hover{color:#35b870}.entity .head .value[data-v-6aff1eff]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-6aff1eff]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-6aff1eff]{margin-right:2.5em}.entity .head .value-container[data-v-6aff1eff]{min-width:7em}.entity .head .unit[data-v-6aff1eff]{margin-left:.2em}.entity .head .pull-right[data-v-6aff1eff],.entity .head .value-container[data-v-6aff1eff]{padding-right:.5em}.entity .head .pull-right[data-v-6aff1eff] .power-switch,.entity .head .value-container[data-v-6aff1eff] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-6aff1eff]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-6aff1eff]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-6aff1eff]:hover{color:#35b870}.collapse-toggler[data-v-6aff1eff]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-6aff1eff]:hover{color:#35b870}.attributes .child[data-v-6aff1eff]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-6aff1eff]{flex-direction:column}}.attributes .child[data-v-6aff1eff]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-6aff1eff]:hover{cursor:auto}.attributes .child.head[data-v-6aff1eff]{cursor:pointer}.attributes .child.head[data-v-6aff1eff]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-6aff1eff]{font-weight:700}.attributes .child .value[data-v-6aff1eff]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-6aff1eff]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-6aff1eff]:last-child,.entity-container-wrapper.with-children[data-v-6aff1eff]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-6aff1eff]{animation:blink-animation-6aff1eff 1s steps(20,start)}@keyframes blink-animation-6aff1eff{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.device-container[data-v-6aff1eff]{display:flex;justify-content:center}.device-container .value-container[data-v-6aff1eff]:not(.with-children){margin-right:2.5em} \ No newline at end of file +.col-1[data-v-6aff1eff],.entity .head .icon[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6aff1eff]:first-child,.entity .head .icon[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6aff1eff]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6aff1eff]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6aff1eff]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6aff1eff]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6aff1eff],.entity .head .value-and-toggler[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6aff1eff]:first-child,.entity .head .value-and-toggler[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6aff1eff]:first-child{margin-left:26%!important}.col-offset-3[data-v-6aff1eff]:not(first-child){margin-left:30%!important}.col-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6aff1eff]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6aff1eff]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6aff1eff]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6aff1eff]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6aff1eff]:first-child{margin-left:52%!important}.col-offset-6[data-v-6aff1eff]:not(first-child){margin-left:56%!important}.col-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6aff1eff]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6aff1eff]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6aff1eff]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6aff1eff]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6aff1eff]:first-child{margin-left:78%!important}.col-offset-9[data-v-6aff1eff]:not(first-child){margin-left:82%!important}.col-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6aff1eff]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6aff1eff]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6aff1eff]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6aff1eff]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6aff1eff],.entity .head .value-container[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6aff1eff]:first-child,.entity .head .value-container[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-s-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-s-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6aff1eff],.entity .head .label[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6aff1eff]:first-child,.entity .head .label[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-s-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-s-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-6aff1eff],.attributes .child .value[data-v-6aff1eff],.col-s-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-6aff1eff]:first-child,.attributes .child .value[data-v-6aff1eff]:first-child,.col-s-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6aff1eff]{display:none!important}.s-visible[data-v-6aff1eff]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6aff1eff],.entity .head .value-container[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6aff1eff]:first-child,.entity .head .value-container[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-m-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-6aff1eff],.attributes .child .value[data-v-6aff1eff],.col-m-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-6aff1eff]:first-child,.attributes .child .value[data-v-6aff1eff]:first-child,.col-m-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-m-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6aff1eff],.entity .head .label[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6aff1eff]:first-child,.entity .head .label[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-m-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-m-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6aff1eff]{display:none!important}.m-visible[data-v-6aff1eff]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-l-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-l-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-l-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-l-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6aff1eff]{display:none!important}.l-visible[data-v-6aff1eff]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-xl-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-xl-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-xl-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xl-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6aff1eff]{display:none!important}.xl-visible[data-v-6aff1eff]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6aff1eff]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6aff1eff]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6aff1eff]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6aff1eff]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6aff1eff]{margin-left:26%}.col-no-margin-xxl-3[data-v-6aff1eff]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6aff1eff]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6aff1eff]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6aff1eff]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6aff1eff]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6aff1eff]{margin-left:52%}.col-no-margin-xxl-6[data-v-6aff1eff]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6aff1eff]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6aff1eff]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6aff1eff]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6aff1eff]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6aff1eff]{margin-left:78%}.col-no-margin-xxl-9[data-v-6aff1eff]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6aff1eff]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6aff1eff]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6aff1eff]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6aff1eff]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6aff1eff]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6aff1eff]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6aff1eff]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6aff1eff]{display:none!important}.xxl-visible[data-v-6aff1eff]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6aff1eff]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6aff1eff]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6aff1eff]{display:none!important}}.vertical-center[data-v-6aff1eff]{display:flex;align-items:center}.horizontal-center[data-v-6aff1eff]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-6aff1eff],.pull-right[data-v-6aff1eff]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6aff1eff]{display:none!important}.no-content[data-v-6aff1eff]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6aff1eff]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6aff1eff]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6aff1eff]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6aff1eff]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6aff1eff]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6aff1eff]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6aff1eff],.btn[data-v-6aff1eff],button[data-v-6aff1eff]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6aff1eff],.btn-default[type=submit][data-v-6aff1eff],.btn.btn-primary[data-v-6aff1eff],.btn[type=submit][data-v-6aff1eff],button.btn-primary[data-v-6aff1eff],button[type=submit][data-v-6aff1eff]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-6aff1eff]:hover,.btn[data-v-6aff1eff]:hover,button[data-v-6aff1eff]:hover{color:#35b870}.btn .icon[data-v-6aff1eff],.btn-default .icon[data-v-6aff1eff],button .icon[data-v-6aff1eff]{margin-right:.5em}.btn-default[data-v-6aff1eff]:disabled,.btn-default[disabled][data-v-6aff1eff],.btn[data-v-6aff1eff]:disabled,.btn[disabled][data-v-6aff1eff],button[data-v-6aff1eff]:disabled,button[disabled][data-v-6aff1eff]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-6aff1eff]{cursor:grab!important}.dragged[data-v-6aff1eff]{opacity:.5!important}input[type=password][data-v-6aff1eff],input[type=text][data-v-6aff1eff]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6aff1eff]:focus,input[type=text][data-v-6aff1eff]:focus{border:1px solid #35b870}button[data-v-6aff1eff],input[data-v-6aff1eff]{outline:none}input[type=text][data-v-6aff1eff]:hover,textarea[data-v-6aff1eff]:hover{border:1px solid #9cdfb0}ul[data-v-6aff1eff]{margin:0;padding:0;list-style:none}a[data-v-6aff1eff]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6aff1eff]:hover{color:#35b870}[data-v-6aff1eff]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6aff1eff]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6aff1eff]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6aff1eff]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-6aff1eff]{color:#ad1717}body[data-v-6aff1eff]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6aff1eff] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6aff1eff] .nav .path{cursor:pointer}.browser[data-v-6aff1eff] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6aff1eff] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-6aff1eff]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-6aff1eff]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6aff1eff],input[type=number][data-v-6aff1eff],input[type=password][data-v-6aff1eff],input[type=search][data-v-6aff1eff],input[type=text][data-v-6aff1eff],input[type=time][data-v-6aff1eff]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-6aff1eff]:hover,input[type=number][data-v-6aff1eff]:hover,input[type=password][data-v-6aff1eff]:hover,input[type=search][data-v-6aff1eff]:hover,input[type=text][data-v-6aff1eff]:hover,input[type=time][data-v-6aff1eff]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6aff1eff]:focus,input[type=number][data-v-6aff1eff]:focus,input[type=password][data-v-6aff1eff]:focus,input[type=search][data-v-6aff1eff]:focus,input[type=text][data-v-6aff1eff]:focus,input[type=time][data-v-6aff1eff]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6aff1eff],input[type=number].with-icon[data-v-6aff1eff],input[type=password].with-icon[data-v-6aff1eff],input[type=search].with-icon[data-v-6aff1eff],input[type=text].with-icon[data-v-6aff1eff],input[type=time].with-icon[data-v-6aff1eff]{padding-left:.3em}input[type=search][data-v-6aff1eff],input[type=text][data-v-6aff1eff]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-6aff1eff],.fade-in[data-v-6aff1eff]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-6aff1eff;-webkit-animation-name:fadeIn-6aff1eff}.fade-out[data-v-6aff1eff]{animation-fill-mode:both;animation-name:fadeOut-6aff1eff;-webkit-animation-name:fadeOut-6aff1eff}.expand[data-v-6aff1eff],.fade-out[data-v-6aff1eff]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-6aff1eff]{animation-fill-mode:both;animation-name:expand-6aff1eff;-webkit-animation-name:expand-6aff1eff}.shrink[data-v-6aff1eff]{animation-fill-mode:both;animation-name:shrink-6aff1eff;-webkit-animation-name:shrink-6aff1eff}.fold[data-v-6aff1eff],.shrink[data-v-6aff1eff]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-6aff1eff]{animation-fill-mode:both;animation-name:fold-6aff1eff;-webkit-animation-name:fold-6aff1eff}.unfold[data-v-6aff1eff]{animation-fill-mode:both;animation-name:unfold-6aff1eff;-webkit-animation-name:unfold-6aff1eff}.dim[data-v-6aff1eff],.unfold[data-v-6aff1eff]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-6aff1eff]{animation-fill-mode:both;animation-name:dim-6aff1eff;-webkit-animation-name:dim-6aff1eff}.brighten[data-v-6aff1eff]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-6aff1eff;-webkit-animation-name:brighten-6aff1eff}@keyframes fadeIn-6aff1eff{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6aff1eff{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-6aff1eff{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-6aff1eff{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-6aff1eff{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-6aff1eff{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-6aff1eff{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-6aff1eff{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-6aff1eff]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6aff1eff;-webkit-animation-name:glow-6aff1eff}.loop[data-v-6aff1eff]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6aff1eff{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6aff1eff]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6aff1eff]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6aff1eff]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-6aff1eff]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-6aff1eff]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-6aff1eff]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-6aff1eff]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-6aff1eff]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-6aff1eff]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-6aff1eff]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-6aff1eff]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-6aff1eff]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-6aff1eff]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-6aff1eff]{margin-right:.5em}.entity .head .icon[data-v-6aff1eff]:hover{color:#35b870}.entity .head .label[data-v-6aff1eff]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-6aff1eff]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-6aff1eff]:hover{color:#35b870}.entity .head .value[data-v-6aff1eff]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-6aff1eff]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-6aff1eff]{margin-right:2.5em}.entity .head .value-container[data-v-6aff1eff]{min-width:7em}.entity .head .unit[data-v-6aff1eff]{margin-left:.2em}.entity .head .pull-right[data-v-6aff1eff],.entity .head .value-container[data-v-6aff1eff]{padding-right:.5em}.entity .head .pull-right[data-v-6aff1eff] .power-switch,.entity .head .value-container[data-v-6aff1eff] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-6aff1eff]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-6aff1eff]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-6aff1eff]:hover{color:#35b870}.collapse-toggler[data-v-6aff1eff]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-6aff1eff]:hover{color:#35b870}.attributes .child[data-v-6aff1eff]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-6aff1eff]{flex-direction:column}}.attributes .child[data-v-6aff1eff]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-6aff1eff]:hover{cursor:auto}.attributes .child.head[data-v-6aff1eff]{cursor:pointer}.attributes .child.head[data-v-6aff1eff]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-6aff1eff]{font-weight:700}.attributes .child .value[data-v-6aff1eff]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-6aff1eff]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-6aff1eff]:last-child,.entity-container-wrapper.with-children[data-v-6aff1eff]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-6aff1eff]{animation:blink-animation-6aff1eff 1s steps(20,start)}@keyframes blink-animation-6aff1eff{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.device-container[data-v-6aff1eff]{display:flex;justify-content:center}.device-container .value-container[data-v-6aff1eff]:not(.with-children){margin-right:2.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3865.8b16d712.css b/platypush/backend/http/webapp/dist/static/css/3865.8b16d712.css new file mode 100644 index 0000000000..abda217b1c --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/3865.8b16d712.css @@ -0,0 +1 @@ +.col-1[data-v-627349c3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-1[data-v-627349c3]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-627349c3]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-627349c3]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-627349c3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-2[data-v-627349c3]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-627349c3]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-627349c3]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-627349c3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-3[data-v-627349c3]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-627349c3]:first-child{margin-left:26%!important}.col-offset-3[data-v-627349c3]:not(first-child){margin-left:30%!important}.col-4[data-v-627349c3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-4[data-v-627349c3]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-627349c3]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-627349c3]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-627349c3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-5[data-v-627349c3]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-627349c3]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-627349c3]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-627349c3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-6[data-v-627349c3]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-627349c3]:first-child{margin-left:52%!important}.col-offset-6[data-v-627349c3]:not(first-child){margin-left:56%!important}.col-7[data-v-627349c3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-7[data-v-627349c3]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-627349c3]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-627349c3]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-627349c3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-8[data-v-627349c3]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-627349c3]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-627349c3]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-627349c3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-9[data-v-627349c3]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-627349c3]:first-child{margin-left:78%!important}.col-offset-9[data-v-627349c3]:not(first-child){margin-left:82%!important}.col-10[data-v-627349c3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-10[data-v-627349c3]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-627349c3]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-627349c3]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-627349c3]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-627349c3]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-627349c3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-1[data-v-627349c3]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-627349c3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-627349c3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-2[data-v-627349c3]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-627349c3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-627349c3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-3[data-v-627349c3]{margin-left:26%}.col-no-margin-s-3[data-v-627349c3]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-627349c3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-4[data-v-627349c3]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-627349c3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-627349c3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-5[data-v-627349c3]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-627349c3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-627349c3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-6[data-v-627349c3]{margin-left:52%}.col-no-margin-s-6[data-v-627349c3]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-627349c3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-7[data-v-627349c3]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-627349c3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-627349c3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-8[data-v-627349c3]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-627349c3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-627349c3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-9[data-v-627349c3]{margin-left:78%}.col-no-margin-s-9[data-v-627349c3]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-627349c3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-10[data-v-627349c3]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-627349c3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-627349c3]:first-child{margin-left:0}.col-offset-s-11[data-v-627349c3]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-s-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-627349c3]{display:none!important}.s-visible[data-v-627349c3]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-627349c3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-1[data-v-627349c3]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-627349c3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-627349c3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-2[data-v-627349c3]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-627349c3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-627349c3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-3[data-v-627349c3]{margin-left:26%}.col-no-margin-m-3[data-v-627349c3]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-627349c3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-4[data-v-627349c3]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-627349c3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-627349c3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-5[data-v-627349c3]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-627349c3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-627349c3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-6[data-v-627349c3]{margin-left:52%}.col-no-margin-m-6[data-v-627349c3]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-627349c3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-7[data-v-627349c3]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-627349c3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-627349c3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-8[data-v-627349c3]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-627349c3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-627349c3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-9[data-v-627349c3]{margin-left:78%}.col-no-margin-m-9[data-v-627349c3]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-627349c3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-10[data-v-627349c3]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-627349c3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-627349c3]:first-child{margin-left:0}.col-offset-m-11[data-v-627349c3]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-m-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-627349c3]{display:none!important}.m-visible[data-v-627349c3]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-627349c3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-1[data-v-627349c3]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-627349c3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-627349c3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-2[data-v-627349c3]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-627349c3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-627349c3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-3[data-v-627349c3]{margin-left:26%}.col-no-margin-l-3[data-v-627349c3]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-627349c3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-4[data-v-627349c3]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-627349c3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-627349c3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-5[data-v-627349c3]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-627349c3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-627349c3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-6[data-v-627349c3]{margin-left:52%}.col-no-margin-l-6[data-v-627349c3]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-627349c3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-7[data-v-627349c3]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-627349c3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-627349c3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-8[data-v-627349c3]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-627349c3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-627349c3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-9[data-v-627349c3]{margin-left:78%}.col-no-margin-l-9[data-v-627349c3]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-627349c3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-10[data-v-627349c3]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-627349c3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-627349c3]:first-child{margin-left:0}.col-offset-l-11[data-v-627349c3]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-l-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-627349c3]{display:none!important}.l-visible[data-v-627349c3]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-627349c3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-1[data-v-627349c3]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-627349c3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-627349c3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-2[data-v-627349c3]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-627349c3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-627349c3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-3[data-v-627349c3]{margin-left:26%}.col-no-margin-xl-3[data-v-627349c3]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-627349c3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-4[data-v-627349c3]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-627349c3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-627349c3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-5[data-v-627349c3]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-627349c3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-627349c3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-6[data-v-627349c3]{margin-left:52%}.col-no-margin-xl-6[data-v-627349c3]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-627349c3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-7[data-v-627349c3]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-627349c3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-627349c3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-8[data-v-627349c3]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-627349c3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-627349c3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-9[data-v-627349c3]{margin-left:78%}.col-no-margin-xl-9[data-v-627349c3]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-627349c3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-10[data-v-627349c3]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-627349c3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-627349c3]:first-child{margin-left:0}.col-offset-xl-11[data-v-627349c3]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-627349c3]{display:none!important}.xl-visible[data-v-627349c3]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-627349c3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-1[data-v-627349c3]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-627349c3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-627349c3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-2[data-v-627349c3]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-627349c3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-627349c3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-3[data-v-627349c3]{margin-left:26%}.col-no-margin-xxl-3[data-v-627349c3]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-627349c3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-4[data-v-627349c3]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-627349c3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-627349c3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-5[data-v-627349c3]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-627349c3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-627349c3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-6[data-v-627349c3]{margin-left:52%}.col-no-margin-xxl-6[data-v-627349c3]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-627349c3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-7[data-v-627349c3]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-627349c3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-627349c3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-8[data-v-627349c3]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-627349c3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-627349c3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-9[data-v-627349c3]{margin-left:78%}.col-no-margin-xxl-9[data-v-627349c3]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-627349c3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-10[data-v-627349c3]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-627349c3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-627349c3]:first-child{margin-left:0}.col-offset-xxl-11[data-v-627349c3]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-627349c3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-627349c3]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-627349c3]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-627349c3]{display:none!important}.xxl-visible[data-v-627349c3]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-627349c3]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-627349c3]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-627349c3]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-627349c3]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-627349c3]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-627349c3]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-627349c3]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-627349c3]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-627349c3]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-627349c3]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-627349c3]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-627349c3]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-627349c3]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-627349c3]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-627349c3]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-627349c3]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-627349c3]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-627349c3]{display:none!important}}.vertical-center[data-v-627349c3]{display:flex;align-items:center}.horizontal-center[data-v-627349c3]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-627349c3]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-627349c3]{display:none!important}.no-content[data-v-627349c3]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-627349c3]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-627349c3]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-627349c3]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-627349c3]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-627349c3]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-627349c3]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-627349c3],.btn[data-v-627349c3],button[data-v-627349c3]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-627349c3],.btn-default[type=submit][data-v-627349c3],.btn.btn-primary[data-v-627349c3],.btn[type=submit][data-v-627349c3],button.btn-primary[data-v-627349c3],button[type=submit][data-v-627349c3]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-627349c3]:hover,.btn[data-v-627349c3]:hover,button[data-v-627349c3]:hover{color:#35b870}.btn .icon[data-v-627349c3],.btn-default .icon[data-v-627349c3],button .icon[data-v-627349c3]{margin-right:.5em}.btn-default[data-v-627349c3]:disabled,.btn-default[disabled][data-v-627349c3],.btn[data-v-627349c3]:disabled,.btn[disabled][data-v-627349c3],button[data-v-627349c3]:disabled,button[disabled][data-v-627349c3]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-627349c3]{cursor:grab!important}.dragged[data-v-627349c3]{opacity:.5!important}input[type=password][data-v-627349c3],input[type=text][data-v-627349c3]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-627349c3]:focus,input[type=text][data-v-627349c3]:focus{border:1px solid #35b870}button[data-v-627349c3],input[data-v-627349c3]{outline:none}input[type=text][data-v-627349c3]:hover,textarea[data-v-627349c3]:hover{border:1px solid #9cdfb0}ul[data-v-627349c3]{margin:0;padding:0;list-style:none}a[data-v-627349c3]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-627349c3]:hover{color:#35b870}[data-v-627349c3]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-627349c3]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-627349c3]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-627349c3]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-627349c3]{color:#ad1717}body[data-v-627349c3]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-627349c3] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-627349c3] .nav .path{cursor:pointer}.browser[data-v-627349c3] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-627349c3] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-627349c3]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-627349c3]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-627349c3],input[type=number][data-v-627349c3],input[type=password][data-v-627349c3],input[type=search][data-v-627349c3],input[type=text][data-v-627349c3],input[type=time][data-v-627349c3]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-627349c3]:hover,input[type=number][data-v-627349c3]:hover,input[type=password][data-v-627349c3]:hover,input[type=search][data-v-627349c3]:hover,input[type=text][data-v-627349c3]:hover,input[type=time][data-v-627349c3]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-627349c3]:focus,input[type=number][data-v-627349c3]:focus,input[type=password][data-v-627349c3]:focus,input[type=search][data-v-627349c3]:focus,input[type=text][data-v-627349c3]:focus,input[type=time][data-v-627349c3]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-627349c3],input[type=number].with-icon[data-v-627349c3],input[type=password].with-icon[data-v-627349c3],input[type=search].with-icon[data-v-627349c3],input[type=text].with-icon[data-v-627349c3],input[type=time].with-icon[data-v-627349c3]{padding-left:.3em}input[type=search][data-v-627349c3],input[type=text][data-v-627349c3]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-627349c3]{animation-fill-mode:both;animation-name:fadeIn-627349c3;-webkit-animation-name:fadeIn-627349c3}.fade-in[data-v-627349c3],.fade-out[data-v-627349c3]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-627349c3]{animation-fill-mode:both;animation-name:fadeOut-627349c3;-webkit-animation-name:fadeOut-627349c3}.expand[data-v-627349c3]{animation-fill-mode:both;animation-name:expand-627349c3;-webkit-animation-name:expand-627349c3}.expand[data-v-627349c3],.shrink[data-v-627349c3]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-627349c3]{animation-fill-mode:both;animation-name:shrink-627349c3;-webkit-animation-name:shrink-627349c3}.fold[data-v-627349c3]{animation-fill-mode:both;animation-name:fold-627349c3;-webkit-animation-name:fold-627349c3}.fold[data-v-627349c3],.unfold[data-v-627349c3]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-627349c3]{animation-fill-mode:both;animation-name:unfold-627349c3;-webkit-animation-name:unfold-627349c3}.dim[data-v-627349c3]{animation-fill-mode:both;animation-name:dim-627349c3;-webkit-animation-name:dim-627349c3}.brighten[data-v-627349c3],.dim[data-v-627349c3]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-627349c3]{animation-fill-mode:both;animation-name:brighten-627349c3;-webkit-animation-name:brighten-627349c3}@keyframes fadeIn-627349c3{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-627349c3{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-627349c3{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-627349c3{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-627349c3{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-627349c3{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-627349c3{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-627349c3{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-627349c3]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-627349c3;-webkit-animation-name:glow-627349c3}.loop[data-v-627349c3]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-627349c3{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-627349c3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-627349c3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-627349c3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-627349c3]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-627349c3]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-627349c3]{background:#8fefb7}.item.selected[data-v-627349c3]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-627349c3]{border-top:2px solid #35b870}.item[data-v-627349c3]::-moz-selection{background:transparent!important}.item[data-v-627349c3]::selection{background:transparent!important}.item .title[data-v-627349c3]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-627349c3]{display:inline-flex;align-items:center}.item .side.right[data-v-627349c3]{display:inline-flex;justify-content:right}.item .actions[data-v-627349c3],.item .duration[data-v-627349c3]{display:inline-flex;align-items:center}.item .duration[data-v-627349c3]{font-size:.85em;opacity:.7}.item .actions[data-v-627349c3] button{opacity:.65}.item .icon[data-v-627349c3]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-627349c3] .dropdown-container .item{box-shadow:none}.item[data-v-627349c3] .dropdown-container button{background:none;border:none}.item[data-v-627349c3] .dropdown-container button:hover{color:#35b870}[data-v-627349c3] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-627349c3] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-627349c3] .table-row{flex-direction:row;align-items:center}}[data-v-627349c3] .table-row .title,[data-v-627349c3] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-627349c3] .table-row .title,[data-v-627349c3] .table-row .value{display:inline-flex}}[data-v-627349c3] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-627349c3] .table-row .title{width:30%}[data-v-627349c3] .table-row .value{justify-content:right}}.procedures-container[data-v-627349c3]{width:100%;height:100%;display:flex;flex-direction:column;flex-grow:1}.procedures-container header[data-v-627349c3]{width:100%;height:3em;background:linear-gradient(0deg,#ececec,#f6f6f6);display:flex;align-items:center;justify-content:center;border-bottom:1px solid silver}.procedures-container header input.filter[data-v-627349c3]{max-width:600px}@media screen and (max-width:calc(769px - 1px)){.procedures-container header input.filter[data-v-627349c3]{width:calc(100% - 2em)}}@media screen and (min-width:769px){.procedures-container header input.filter[data-v-627349c3]{width:600px}}.procedures-container main[data-v-627349c3]{width:100%;height:calc(100% - 3em);overflow:auto;margin-bottom:2em}.procedures-container .procedures-list[data-v-627349c3]{width:100%;height:100%;display:flex;background:#e4eae8;flex-grow:1;justify-content:center}.procedures-container .procedures[data-v-627349c3]{max-width:800px;background:#f8f8f8;display:flex;flex-direction:column;margin-bottom:auto;box-shadow:2.5px 2.5px 3px 0 silver}@media screen and (max-width:calc(769px - 1px)){.procedures-container .procedures[data-v-627349c3]{width:100%}}@media screen and (min-width:769px){.procedures-container .procedures[data-v-627349c3]{width:calc(100% - 2em);margin-top:1em;border-radius:1em}}.procedures-container .procedures .item[data-v-627349c3]{padding:0}.procedures-container .procedures .item[data-v-627349c3]:first-child{border-top-left-radius:1em;border-top-right-radius:1em}.procedures-container .procedures .item[data-v-627349c3]:last-child{border-bottom-left-radius:1em;border-bottom-right-radius:1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3924.548d44ae.css b/platypush/backend/http/webapp/dist/static/css/3924.a0990b57.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/3924.548d44ae.css rename to platypush/backend/http/webapp/dist/static/css/3924.a0990b57.css index 60e832a54c..c8feb4dc6e 100644 --- a/platypush/backend/http/webapp/dist/static/css/3924.548d44ae.css +++ b/platypush/backend/http/webapp/dist/static/css/3924.a0990b57.css @@ -1 +1 @@ -.col-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1334f746]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1334f746]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1334f746]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1334f746]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1334f746]:first-child{margin-left:26%!important}.col-offset-3[data-v-1334f746]:not(first-child){margin-left:30%!important}.col-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1334f746]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1334f746]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1334f746]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1334f746]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1334f746]:first-child{margin-left:52%!important}.col-offset-6[data-v-1334f746]:not(first-child){margin-left:56%!important}.col-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1334f746]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1334f746]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1334f746]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1334f746]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1334f746]:first-child{margin-left:78%!important}.col-offset-9[data-v-1334f746]:not(first-child){margin-left:82%!important}.col-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1334f746]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1334f746]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1334f746]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1334f746]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-3[data-v-1334f746]{margin-left:26%}.col-no-margin-s-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-6[data-v-1334f746]{margin-left:52%}.col-no-margin-s-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-9[data-v-1334f746]{margin-left:78%}.col-no-margin-s-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1334f746]{display:none!important}.s-visible[data-v-1334f746]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-3[data-v-1334f746]{margin-left:26%}.col-no-margin-m-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-6[data-v-1334f746]{margin-left:52%}.col-no-margin-m-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-9[data-v-1334f746]{margin-left:78%}.col-no-margin-m-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1334f746]{display:none!important}.m-visible[data-v-1334f746]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-3[data-v-1334f746]{margin-left:26%}.col-no-margin-l-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-6[data-v-1334f746]{margin-left:52%}.col-no-margin-l-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-9[data-v-1334f746]{margin-left:78%}.col-no-margin-l-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1334f746]{display:none!important}.l-visible[data-v-1334f746]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-3[data-v-1334f746]{margin-left:26%}.col-no-margin-xl-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-6[data-v-1334f746]{margin-left:52%}.col-no-margin-xl-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-9[data-v-1334f746]{margin-left:78%}.col-no-margin-xl-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1334f746]{display:none!important}.xl-visible[data-v-1334f746]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1334f746]{margin-left:26%}.col-no-margin-xxl-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1334f746]{margin-left:52%}.col-no-margin-xxl-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1334f746]{margin-left:78%}.col-no-margin-xxl-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1334f746]{display:none!important}.xxl-visible[data-v-1334f746]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1334f746]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1334f746]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1334f746]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1334f746]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1334f746]{display:none!important}}.vertical-center[data-v-1334f746]{display:flex;align-items:center}.horizontal-center[data-v-1334f746]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1334f746]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1334f746]{display:none!important}.no-content[data-v-1334f746]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1334f746]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1334f746]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1334f746]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1334f746]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1334f746]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1334f746]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1334f746],.btn[data-v-1334f746],button[data-v-1334f746]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1334f746],.btn-default[type=submit][data-v-1334f746],.btn.btn-primary[data-v-1334f746],.btn[type=submit][data-v-1334f746],button.btn-primary[data-v-1334f746],button[type=submit][data-v-1334f746]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1334f746],.btn-default .icon[data-v-1334f746],button .icon[data-v-1334f746]{margin-right:.5em}input[type=password][data-v-1334f746],input[type=text][data-v-1334f746]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1334f746]:focus,input[type=text][data-v-1334f746]:focus{border:1px solid #35b870}button[data-v-1334f746],input[data-v-1334f746]{outline:none}input[type=text][data-v-1334f746]:hover,textarea[data-v-1334f746]:hover{border:1px solid #9cdfb0}ul[data-v-1334f746]{margin:0;padding:0;list-style:none}a[data-v-1334f746]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1334f746]:hover{color:#35b870}[data-v-1334f746]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1334f746]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1334f746]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1334f746]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1334f746]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1334f746] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1334f746] .nav .path{cursor:pointer}.browser[data-v-1334f746] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1334f746] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1334f746]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1334f746],input[type=number][data-v-1334f746],input[type=password][data-v-1334f746],input[type=search][data-v-1334f746],input[type=text][data-v-1334f746],input[type=time][data-v-1334f746]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1334f746]:hover,input[type=number][data-v-1334f746]:hover,input[type=password][data-v-1334f746]:hover,input[type=search][data-v-1334f746]:hover,input[type=text][data-v-1334f746]:hover,input[type=time][data-v-1334f746]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1334f746]:focus,input[type=number][data-v-1334f746]:focus,input[type=password][data-v-1334f746]:focus,input[type=search][data-v-1334f746]:focus,input[type=text][data-v-1334f746]:focus,input[type=time][data-v-1334f746]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1334f746],input[type=number].with-icon[data-v-1334f746],input[type=password].with-icon[data-v-1334f746],input[type=search].with-icon[data-v-1334f746],input[type=text].with-icon[data-v-1334f746],input[type=time].with-icon[data-v-1334f746]{padding-left:.3em}input[type=search][data-v-1334f746],input[type=text][data-v-1334f746]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1334f746]{animation-fill-mode:both;animation-name:fadeIn-1334f746;-webkit-animation-name:fadeIn-1334f746}.fade-in[data-v-1334f746],.fade-out[data-v-1334f746]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1334f746]{animation-fill-mode:both;animation-name:fadeOut-1334f746;-webkit-animation-name:fadeOut-1334f746}@keyframes fadeIn-1334f746{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1334f746{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1334f746]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1334f746;-webkit-animation-name:glow-1334f746}.loop[data-v-1334f746]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1334f746{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1334f746]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1334f746]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1334f746]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.camera[data-v-1334f746]{width:100%;height:100%;background:#fff;overflow:auto;display:flex;flex-direction:column;align-items:center;padding-top:3em;position:relative}.camera .camera-container[data-v-1334f746]{display:flex;flex-direction:column;align-items:center;background:#101520}.camera .camera-container .frame-canvas[data-v-1334f746]{position:relative;display:flex;justify-content:center;align-items:center;background:#000}.camera .camera-container .frame-container[data-v-1334f746]{max-width:100%;max-height:100%;position:relative}.camera .camera-container.fullscreen[data-v-1334f746]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1000}.camera .camera-container.fullscreen .frame-canvas[data-v-1334f746]{width:100%;height:calc(100% - 3.5em)}.camera .camera-container .frame[data-v-1334f746],.camera .camera-container .no-frame[data-v-1334f746]{position:absolute;top:0;width:100%;height:100%}.camera .camera-container .frame[data-v-1334f746]{z-index:1}.camera .camera-container .no-frame[data-v-1334f746]{display:flex;color:#fff;align-items:center;justify-content:center;z-index:2;background:#000}.camera .camera-container .controls[data-v-1334f746]{width:100%;display:flex;border-top:1px solid #202530;padding:.5em .25em}.camera .camera-container .controls .left[data-v-1334f746],.camera .camera-container .controls .right[data-v-1334f746]{width:50%}.camera .camera-container .controls .right[data-v-1334f746]{text-align:right}.camera .camera-container .controls button[data-v-1334f746]{background:none;color:#fff;border:none}.camera .camera-container .controls button[data-v-1334f746]:hover{color:#38cf80}.camera .url[data-v-1334f746]{display:flex;margin:1em}@media screen and (max-width:calc(769px - 1px)){.camera .url[data-v-1334f746]{width:80%}}@media screen and (min-width:769px){.camera .url[data-v-1334f746]{width:640px}}.camera .url .row[data-v-1334f746]{width:100%;display:flex;align-items:center}.camera .url .name[data-v-1334f746]{width:140px}.camera .url input[data-v-1334f746]{width:500px;font-weight:400}.camera .params[data-v-1334f746]{display:flex;flex-direction:column;margin:-2em}@media screen and (min-width:769px){.camera .params[data-v-1334f746]{width:640px}}.camera .params label[data-v-1334f746]{font-weight:400}.camera .params .head[data-v-1334f746]{display:flex;justify-content:center}.camera .params .head label[data-v-1334f746]{width:100%;display:flex;justify-content:right}.camera .params .head label .name[data-v-1334f746]{margin-right:1em}.camera .params .row[data-v-1334f746]{width:100%;display:flex;align-items:center;padding:.5em 1em}.camera .params .row .name[data-v-1334f746]{width:30%}.camera .params .row input[data-v-1334f746]{width:70%}.camera .params .row[data-v-1334f746]:nth-child(2n){background:#f1f3f2}.camera .params .row[data-v-1334f746]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.camera .modal-container[data-v-1334f746]{z-index:1000}@media screen and (max-width:calc(769px - 1px)){.camera .modal .content[data-v-1334f746]{width:90%!important}}.camera .camera-selector[data-v-1334f746]{width:100%;height:3.5em;margin-top:-3em;box-shadow:0 3px 2px -1px silver;display:flex;align-items:center}.camera .camera-selector .left[data-v-1334f746],.camera .camera-selector .right[data-v-1334f746]{display:flex}.camera .camera-selector .left[data-v-1334f746]{width:90%}.camera .camera-selector .right[data-v-1334f746]{width:10%;justify-content:right}.camera .camera-selector label[data-v-1334f746]{width:100%;padding-left:1em}.camera .camera-selector label select[data-v-1334f746]{width:100%}.camera .camera-selector button[data-v-1334f746]{background:none;border:none}.camera .camera-selector button[data-v-1334f746]:hover{color:#35b870}.camera .camera-container[data-v-1334f746]{margin-top:2em;min-width:640px;min-height:calc(480px + 3.5em)}.camera .camera-container .frame-container[data-v-1334f746]{min-width:640px;min-height:480px}.camera .camera-container .controls[data-v-1334f746]{height:3.5em} \ No newline at end of file +.col-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1334f746]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1334f746]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1334f746]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1334f746]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1334f746]:first-child{margin-left:26%!important}.col-offset-3[data-v-1334f746]:not(first-child){margin-left:30%!important}.col-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1334f746]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1334f746]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1334f746]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1334f746]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1334f746]:first-child{margin-left:52%!important}.col-offset-6[data-v-1334f746]:not(first-child){margin-left:56%!important}.col-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1334f746]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1334f746]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1334f746]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1334f746]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1334f746]:first-child{margin-left:78%!important}.col-offset-9[data-v-1334f746]:not(first-child){margin-left:82%!important}.col-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1334f746]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1334f746]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1334f746]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1334f746]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-3[data-v-1334f746]{margin-left:26%}.col-no-margin-s-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-6[data-v-1334f746]{margin-left:52%}.col-no-margin-s-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-9[data-v-1334f746]{margin-left:78%}.col-no-margin-s-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-s-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1334f746]{display:none!important}.s-visible[data-v-1334f746]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-3[data-v-1334f746]{margin-left:26%}.col-no-margin-m-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-6[data-v-1334f746]{margin-left:52%}.col-no-margin-m-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-9[data-v-1334f746]{margin-left:78%}.col-no-margin-m-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-m-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1334f746]{display:none!important}.m-visible[data-v-1334f746]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-3[data-v-1334f746]{margin-left:26%}.col-no-margin-l-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-6[data-v-1334f746]{margin-left:52%}.col-no-margin-l-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-9[data-v-1334f746]{margin-left:78%}.col-no-margin-l-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-l-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1334f746]{display:none!important}.l-visible[data-v-1334f746]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-3[data-v-1334f746]{margin-left:26%}.col-no-margin-xl-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-6[data-v-1334f746]{margin-left:52%}.col-no-margin-xl-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-9[data-v-1334f746]{margin-left:78%}.col-no-margin-xl-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-xl-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1334f746]{display:none!important}.xl-visible[data-v-1334f746]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1334f746]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1334f746]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1334f746]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1334f746]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1334f746]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1334f746]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1334f746]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1334f746]{margin-left:26%}.col-no-margin-xxl-3[data-v-1334f746]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1334f746]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1334f746]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1334f746]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1334f746]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1334f746]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1334f746]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1334f746]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1334f746]{margin-left:52%}.col-no-margin-xxl-6[data-v-1334f746]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1334f746]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1334f746]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1334f746]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1334f746]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1334f746]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1334f746]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1334f746]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1334f746]{margin-left:78%}.col-no-margin-xxl-9[data-v-1334f746]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1334f746]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1334f746]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1334f746]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1334f746]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1334f746]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1334f746]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1334f746]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1334f746]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1334f746]{display:none!important}.xxl-visible[data-v-1334f746]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1334f746]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1334f746]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1334f746]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1334f746]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1334f746]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1334f746]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1334f746]{display:none!important}}.vertical-center[data-v-1334f746]{display:flex;align-items:center}.horizontal-center[data-v-1334f746]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1334f746]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1334f746]{display:none!important}.no-content[data-v-1334f746]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1334f746]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1334f746]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1334f746]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1334f746]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1334f746]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1334f746]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1334f746],.btn[data-v-1334f746],button[data-v-1334f746]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1334f746],.btn-default[type=submit][data-v-1334f746],.btn.btn-primary[data-v-1334f746],.btn[type=submit][data-v-1334f746],button.btn-primary[data-v-1334f746],button[type=submit][data-v-1334f746]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1334f746]:hover,.btn[data-v-1334f746]:hover,button[data-v-1334f746]:hover{color:#35b870}.btn .icon[data-v-1334f746],.btn-default .icon[data-v-1334f746],button .icon[data-v-1334f746]{margin-right:.5em}.btn-default[data-v-1334f746]:disabled,.btn-default[disabled][data-v-1334f746],.btn[data-v-1334f746]:disabled,.btn[disabled][data-v-1334f746],button[data-v-1334f746]:disabled,button[disabled][data-v-1334f746]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1334f746]{cursor:grab!important}.dragged[data-v-1334f746]{opacity:.5!important}input[type=password][data-v-1334f746],input[type=text][data-v-1334f746]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1334f746]:focus,input[type=text][data-v-1334f746]:focus{border:1px solid #35b870}button[data-v-1334f746],input[data-v-1334f746]{outline:none}input[type=text][data-v-1334f746]:hover,textarea[data-v-1334f746]:hover{border:1px solid #9cdfb0}ul[data-v-1334f746]{margin:0;padding:0;list-style:none}a[data-v-1334f746]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1334f746]:hover{color:#35b870}[data-v-1334f746]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1334f746]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1334f746]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1334f746]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1334f746]{color:#ad1717}body[data-v-1334f746]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1334f746] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1334f746] .nav .path{cursor:pointer}.browser[data-v-1334f746] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1334f746] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1334f746]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1334f746]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1334f746],input[type=number][data-v-1334f746],input[type=password][data-v-1334f746],input[type=search][data-v-1334f746],input[type=text][data-v-1334f746],input[type=time][data-v-1334f746]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1334f746]:hover,input[type=number][data-v-1334f746]:hover,input[type=password][data-v-1334f746]:hover,input[type=search][data-v-1334f746]:hover,input[type=text][data-v-1334f746]:hover,input[type=time][data-v-1334f746]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1334f746]:focus,input[type=number][data-v-1334f746]:focus,input[type=password][data-v-1334f746]:focus,input[type=search][data-v-1334f746]:focus,input[type=text][data-v-1334f746]:focus,input[type=time][data-v-1334f746]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1334f746],input[type=number].with-icon[data-v-1334f746],input[type=password].with-icon[data-v-1334f746],input[type=search].with-icon[data-v-1334f746],input[type=text].with-icon[data-v-1334f746],input[type=time].with-icon[data-v-1334f746]{padding-left:.3em}input[type=search][data-v-1334f746],input[type=text][data-v-1334f746]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1334f746]{animation-fill-mode:both;animation-name:fadeIn-1334f746;-webkit-animation-name:fadeIn-1334f746}.fade-in[data-v-1334f746],.fade-out[data-v-1334f746]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1334f746]{animation-fill-mode:both;animation-name:fadeOut-1334f746;-webkit-animation-name:fadeOut-1334f746}.expand[data-v-1334f746]{animation-fill-mode:both;animation-name:expand-1334f746;-webkit-animation-name:expand-1334f746}.expand[data-v-1334f746],.shrink[data-v-1334f746]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1334f746]{animation-fill-mode:both;animation-name:shrink-1334f746;-webkit-animation-name:shrink-1334f746}.fold[data-v-1334f746]{animation-fill-mode:both;animation-name:fold-1334f746;-webkit-animation-name:fold-1334f746}.fold[data-v-1334f746],.unfold[data-v-1334f746]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1334f746]{animation-fill-mode:both;animation-name:unfold-1334f746;-webkit-animation-name:unfold-1334f746}.dim[data-v-1334f746]{animation-fill-mode:both;animation-name:dim-1334f746;-webkit-animation-name:dim-1334f746}.brighten[data-v-1334f746],.dim[data-v-1334f746]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1334f746]{animation-fill-mode:both;animation-name:brighten-1334f746;-webkit-animation-name:brighten-1334f746}@keyframes fadeIn-1334f746{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1334f746{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1334f746{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1334f746{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1334f746{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1334f746{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1334f746{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1334f746{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1334f746]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1334f746;-webkit-animation-name:glow-1334f746}.loop[data-v-1334f746]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1334f746{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1334f746]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1334f746]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1334f746]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.camera[data-v-1334f746]{width:100%;height:100%;background:#fff;overflow:auto;display:flex;flex-direction:column;align-items:center;padding-top:3em;position:relative}.camera .camera-container[data-v-1334f746]{display:flex;flex-direction:column;align-items:center;background:#101520}.camera .camera-container .frame-canvas[data-v-1334f746]{position:relative;display:flex;justify-content:center;align-items:center;background:#000}.camera .camera-container .frame-container[data-v-1334f746]{max-width:100%;max-height:100%;position:relative}.camera .camera-container.fullscreen[data-v-1334f746]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1000}.camera .camera-container.fullscreen .frame-canvas[data-v-1334f746]{width:100%;height:calc(100% - 3.5em)}.camera .camera-container .frame[data-v-1334f746],.camera .camera-container .no-frame[data-v-1334f746]{position:absolute;top:0;width:100%;height:100%}.camera .camera-container .frame[data-v-1334f746]{z-index:1}.camera .camera-container .no-frame[data-v-1334f746]{display:flex;color:#fff;align-items:center;justify-content:center;z-index:2;background:#000}.camera .camera-container .controls[data-v-1334f746]{width:100%;display:flex;border-top:1px solid #202530;padding:.5em .25em}.camera .camera-container .controls .left[data-v-1334f746],.camera .camera-container .controls .right[data-v-1334f746]{width:50%}.camera .camera-container .controls .right[data-v-1334f746]{text-align:right}.camera .camera-container .controls button[data-v-1334f746]{background:none;color:#fff;border:none}.camera .camera-container .controls button[data-v-1334f746]:hover{color:#38cf80}.camera .url[data-v-1334f746]{display:flex;margin:1em}@media screen and (max-width:calc(769px - 1px)){.camera .url[data-v-1334f746]{width:80%}}@media screen and (min-width:769px){.camera .url[data-v-1334f746]{width:640px}}.camera .url .row[data-v-1334f746]{width:100%;display:flex;align-items:center}.camera .url .name[data-v-1334f746]{width:140px}.camera .url input[data-v-1334f746]{width:500px;font-weight:400}.camera .params[data-v-1334f746]{display:flex;flex-direction:column;margin:-2em}@media screen and (min-width:769px){.camera .params[data-v-1334f746]{width:640px}}.camera .params label[data-v-1334f746]{font-weight:400}.camera .params .head[data-v-1334f746]{display:flex;justify-content:center}.camera .params .head label[data-v-1334f746]{width:100%;display:flex;justify-content:right}.camera .params .head label .name[data-v-1334f746]{margin-right:1em}.camera .params .row[data-v-1334f746]{width:100%;display:flex;align-items:center;padding:.5em 1em}.camera .params .row .name[data-v-1334f746]{width:30%}.camera .params .row input[data-v-1334f746]{width:70%}.camera .params .row[data-v-1334f746]:nth-child(2n){background:#f1f3f2}.camera .params .row[data-v-1334f746]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.camera .modal-container[data-v-1334f746]{z-index:1000}@media screen and (max-width:calc(769px - 1px)){.camera .modal .content[data-v-1334f746]{width:90%!important}}.camera .camera-selector[data-v-1334f746]{width:100%;height:3.5em;margin-top:-3em;box-shadow:0 3px 2px -1px silver;display:flex;align-items:center}.camera .camera-selector .left[data-v-1334f746],.camera .camera-selector .right[data-v-1334f746]{display:flex}.camera .camera-selector .left[data-v-1334f746]{width:90%}.camera .camera-selector .right[data-v-1334f746]{width:10%;justify-content:right}.camera .camera-selector label[data-v-1334f746]{width:100%;padding-left:1em}.camera .camera-selector label select[data-v-1334f746]{width:100%}.camera .camera-selector button[data-v-1334f746]{background:none;border:none}.camera .camera-selector button[data-v-1334f746]:hover{color:#35b870}.camera .camera-container[data-v-1334f746]{margin-top:2em;min-width:640px;min-height:calc(480px + 3.5em)}.camera .camera-container .frame-container[data-v-1334f746]{min-width:640px;min-height:480px}.camera .camera-container .controls[data-v-1334f746]{height:3.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4015.b27ff6b3.css b/platypush/backend/http/webapp/dist/static/css/4015.b27ff6b3.css new file mode 100644 index 0000000000..64af390b64 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/4015.b27ff6b3.css @@ -0,0 +1 @@ +.col-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2495ce8a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2495ce8a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2495ce8a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2495ce8a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2495ce8a]:first-child{margin-left:26%!important}.col-offset-3[data-v-2495ce8a]:not(first-child){margin-left:30%!important}.col-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2495ce8a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2495ce8a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2495ce8a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2495ce8a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2495ce8a]:first-child{margin-left:52%!important}.col-offset-6[data-v-2495ce8a]:not(first-child){margin-left:56%!important}.col-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2495ce8a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2495ce8a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2495ce8a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2495ce8a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2495ce8a]:first-child{margin-left:78%!important}.col-offset-9[data-v-2495ce8a]:not(first-child){margin-left:82%!important}.col-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2495ce8a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2495ce8a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2495ce8a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2495ce8a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-s-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-s-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-s-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-s-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2495ce8a]{display:none!important}.s-visible[data-v-2495ce8a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-m-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-m-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-m-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-m-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2495ce8a]{display:none!important}.m-visible[data-v-2495ce8a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-l-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-l-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-l-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-l-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2495ce8a]{display:none!important}.l-visible[data-v-2495ce8a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-xl-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-xl-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-xl-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xl-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2495ce8a]{display:none!important}.xl-visible[data-v-2495ce8a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2495ce8a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2495ce8a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2495ce8a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2495ce8a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2495ce8a]{margin-left:26%}.col-no-margin-xxl-3[data-v-2495ce8a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2495ce8a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2495ce8a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2495ce8a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2495ce8a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2495ce8a]{margin-left:52%}.col-no-margin-xxl-6[data-v-2495ce8a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2495ce8a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2495ce8a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2495ce8a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2495ce8a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2495ce8a]{margin-left:78%}.col-no-margin-xxl-9[data-v-2495ce8a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2495ce8a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2495ce8a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2495ce8a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2495ce8a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2495ce8a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2495ce8a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2495ce8a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2495ce8a]{display:none!important}.xxl-visible[data-v-2495ce8a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2495ce8a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2495ce8a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2495ce8a]{display:none!important}}.vertical-center[data-v-2495ce8a]{display:flex;align-items:center}.horizontal-center[data-v-2495ce8a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2495ce8a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2495ce8a]{display:none!important}.no-content[data-v-2495ce8a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2495ce8a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2495ce8a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2495ce8a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2495ce8a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2495ce8a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2495ce8a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2495ce8a],.btn[data-v-2495ce8a],button[data-v-2495ce8a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2495ce8a],.btn-default[type=submit][data-v-2495ce8a],.btn.btn-primary[data-v-2495ce8a],.btn[type=submit][data-v-2495ce8a],button.btn-primary[data-v-2495ce8a],button[type=submit][data-v-2495ce8a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2495ce8a]:hover,.btn[data-v-2495ce8a]:hover,button[data-v-2495ce8a]:hover{color:#35b870}.btn .icon[data-v-2495ce8a],.btn-default .icon[data-v-2495ce8a],button .icon[data-v-2495ce8a]{margin-right:.5em}.btn-default[data-v-2495ce8a]:disabled,.btn-default[disabled][data-v-2495ce8a],.btn[data-v-2495ce8a]:disabled,.btn[disabled][data-v-2495ce8a],button[data-v-2495ce8a]:disabled,button[disabled][data-v-2495ce8a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2495ce8a]{cursor:grab!important}.dragged[data-v-2495ce8a]{opacity:.5!important}input[type=password][data-v-2495ce8a],input[type=text][data-v-2495ce8a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2495ce8a]:focus,input[type=text][data-v-2495ce8a]:focus{border:1px solid #35b870}button[data-v-2495ce8a],input[data-v-2495ce8a]{outline:none}input[type=text][data-v-2495ce8a]:hover,textarea[data-v-2495ce8a]:hover{border:1px solid #9cdfb0}ul[data-v-2495ce8a]{margin:0;padding:0;list-style:none}a[data-v-2495ce8a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2495ce8a]:hover{color:#35b870}[data-v-2495ce8a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2495ce8a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2495ce8a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2495ce8a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2495ce8a]{color:#ad1717}body[data-v-2495ce8a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2495ce8a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2495ce8a] .nav .path{cursor:pointer}.browser[data-v-2495ce8a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2495ce8a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2495ce8a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2495ce8a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2495ce8a],input[type=number][data-v-2495ce8a],input[type=password][data-v-2495ce8a],input[type=search][data-v-2495ce8a],input[type=text][data-v-2495ce8a],input[type=time][data-v-2495ce8a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2495ce8a]:hover,input[type=number][data-v-2495ce8a]:hover,input[type=password][data-v-2495ce8a]:hover,input[type=search][data-v-2495ce8a]:hover,input[type=text][data-v-2495ce8a]:hover,input[type=time][data-v-2495ce8a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2495ce8a]:focus,input[type=number][data-v-2495ce8a]:focus,input[type=password][data-v-2495ce8a]:focus,input[type=search][data-v-2495ce8a]:focus,input[type=text][data-v-2495ce8a]:focus,input[type=time][data-v-2495ce8a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2495ce8a],input[type=number].with-icon[data-v-2495ce8a],input[type=password].with-icon[data-v-2495ce8a],input[type=search].with-icon[data-v-2495ce8a],input[type=text].with-icon[data-v-2495ce8a],input[type=time].with-icon[data-v-2495ce8a]{padding-left:.3em}input[type=search][data-v-2495ce8a],input[type=text][data-v-2495ce8a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2495ce8a]{animation-fill-mode:both;animation-name:fadeIn-2495ce8a;-webkit-animation-name:fadeIn-2495ce8a}.fade-in[data-v-2495ce8a],.fade-out[data-v-2495ce8a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2495ce8a]{animation-fill-mode:both;animation-name:fadeOut-2495ce8a;-webkit-animation-name:fadeOut-2495ce8a}.expand[data-v-2495ce8a]{animation-fill-mode:both;animation-name:expand-2495ce8a;-webkit-animation-name:expand-2495ce8a}.expand[data-v-2495ce8a],.shrink[data-v-2495ce8a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2495ce8a]{animation-fill-mode:both;animation-name:shrink-2495ce8a;-webkit-animation-name:shrink-2495ce8a}.fold[data-v-2495ce8a]{animation-fill-mode:both;animation-name:fold-2495ce8a;-webkit-animation-name:fold-2495ce8a}.fold[data-v-2495ce8a],.unfold[data-v-2495ce8a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2495ce8a]{animation-fill-mode:both;animation-name:unfold-2495ce8a;-webkit-animation-name:unfold-2495ce8a}.dim[data-v-2495ce8a]{animation-fill-mode:both;animation-name:dim-2495ce8a;-webkit-animation-name:dim-2495ce8a}.brighten[data-v-2495ce8a],.dim[data-v-2495ce8a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2495ce8a]{animation-fill-mode:both;animation-name:brighten-2495ce8a;-webkit-animation-name:brighten-2495ce8a}@keyframes fadeIn-2495ce8a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2495ce8a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2495ce8a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2495ce8a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2495ce8a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2495ce8a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2495ce8a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2495ce8a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2495ce8a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2495ce8a;-webkit-animation-name:glow-2495ce8a}.loop[data-v-2495ce8a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2495ce8a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2495ce8a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2495ce8a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2495ce8a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.form-footer[data-v-2495ce8a]{height:5em;padding:1em;text-align:right;border-top:1px solid #ddd}.col-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0896abbc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0896abbc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0896abbc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0896abbc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0896abbc]:first-child{margin-left:26%!important}.col-offset-3[data-v-0896abbc]:not(first-child){margin-left:30%!important}.col-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0896abbc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0896abbc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0896abbc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0896abbc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0896abbc]:first-child{margin-left:52%!important}.col-offset-6[data-v-0896abbc]:not(first-child){margin-left:56%!important}.col-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0896abbc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0896abbc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0896abbc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0896abbc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0896abbc]:first-child{margin-left:78%!important}.col-offset-9[data-v-0896abbc]:not(first-child){margin-left:82%!important}.col-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0896abbc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0896abbc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0896abbc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0896abbc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-s-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-s-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-s-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-s-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0896abbc]{display:none!important}.s-visible[data-v-0896abbc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-m-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-m-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-m-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-m-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0896abbc]{display:none!important}.m-visible[data-v-0896abbc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-l-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-l-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-l-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-l-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0896abbc]{display:none!important}.l-visible[data-v-0896abbc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-xl-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-xl-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-xl-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xl-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0896abbc]{display:none!important}.xl-visible[data-v-0896abbc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0896abbc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0896abbc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0896abbc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0896abbc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0896abbc]{margin-left:26%}.col-no-margin-xxl-3[data-v-0896abbc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0896abbc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0896abbc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0896abbc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0896abbc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0896abbc]{margin-left:52%}.col-no-margin-xxl-6[data-v-0896abbc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0896abbc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0896abbc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0896abbc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0896abbc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0896abbc]{margin-left:78%}.col-no-margin-xxl-9[data-v-0896abbc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0896abbc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0896abbc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0896abbc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0896abbc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0896abbc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0896abbc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0896abbc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0896abbc]{display:none!important}.xxl-visible[data-v-0896abbc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0896abbc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0896abbc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0896abbc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0896abbc]{display:none!important}}.vertical-center[data-v-0896abbc]{display:flex;align-items:center}.horizontal-center[data-v-0896abbc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0896abbc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0896abbc]{display:none!important}.no-content[data-v-0896abbc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0896abbc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0896abbc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0896abbc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0896abbc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0896abbc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0896abbc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0896abbc],.btn[data-v-0896abbc],button[data-v-0896abbc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0896abbc],.btn-default[type=submit][data-v-0896abbc],.btn.btn-primary[data-v-0896abbc],.btn[type=submit][data-v-0896abbc],button.btn-primary[data-v-0896abbc],button[type=submit][data-v-0896abbc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-0896abbc]:hover,.btn[data-v-0896abbc]:hover,button[data-v-0896abbc]:hover{color:#35b870}.btn .icon[data-v-0896abbc],.btn-default .icon[data-v-0896abbc],button .icon[data-v-0896abbc]{margin-right:.5em}.btn-default[data-v-0896abbc]:disabled,.btn-default[disabled][data-v-0896abbc],.btn[data-v-0896abbc]:disabled,.btn[disabled][data-v-0896abbc],button[data-v-0896abbc]:disabled,button[disabled][data-v-0896abbc]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-0896abbc]{cursor:grab!important}.dragged[data-v-0896abbc]{opacity:.5!important}input[type=password][data-v-0896abbc],input[type=text][data-v-0896abbc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0896abbc]:focus,input[type=text][data-v-0896abbc]:focus{border:1px solid #35b870}button[data-v-0896abbc],input[data-v-0896abbc]{outline:none}input[type=text][data-v-0896abbc]:hover,textarea[data-v-0896abbc]:hover{border:1px solid #9cdfb0}ul[data-v-0896abbc]{margin:0;padding:0;list-style:none}a[data-v-0896abbc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0896abbc]:hover{color:#35b870}[data-v-0896abbc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0896abbc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0896abbc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0896abbc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-0896abbc]{color:#ad1717}body[data-v-0896abbc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0896abbc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0896abbc] .nav .path{cursor:pointer}.browser[data-v-0896abbc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0896abbc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-0896abbc]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-0896abbc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0896abbc],input[type=number][data-v-0896abbc],input[type=password][data-v-0896abbc],input[type=search][data-v-0896abbc],input[type=text][data-v-0896abbc],input[type=time][data-v-0896abbc]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-0896abbc]:hover,input[type=number][data-v-0896abbc]:hover,input[type=password][data-v-0896abbc]:hover,input[type=search][data-v-0896abbc]:hover,input[type=text][data-v-0896abbc]:hover,input[type=time][data-v-0896abbc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0896abbc]:focus,input[type=number][data-v-0896abbc]:focus,input[type=password][data-v-0896abbc]:focus,input[type=search][data-v-0896abbc]:focus,input[type=text][data-v-0896abbc]:focus,input[type=time][data-v-0896abbc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0896abbc],input[type=number].with-icon[data-v-0896abbc],input[type=password].with-icon[data-v-0896abbc],input[type=search].with-icon[data-v-0896abbc],input[type=text].with-icon[data-v-0896abbc],input[type=time].with-icon[data-v-0896abbc]{padding-left:.3em}input[type=search][data-v-0896abbc],input[type=text][data-v-0896abbc]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0896abbc]{animation-fill-mode:both;animation-name:fadeIn-0896abbc;-webkit-animation-name:fadeIn-0896abbc}.fade-in[data-v-0896abbc],.fade-out[data-v-0896abbc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0896abbc]{animation-fill-mode:both;animation-name:fadeOut-0896abbc;-webkit-animation-name:fadeOut-0896abbc}.expand[data-v-0896abbc]{animation-fill-mode:both;animation-name:expand-0896abbc;-webkit-animation-name:expand-0896abbc}.expand[data-v-0896abbc],.shrink[data-v-0896abbc]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-0896abbc]{animation-fill-mode:both;animation-name:shrink-0896abbc;-webkit-animation-name:shrink-0896abbc}.fold[data-v-0896abbc]{animation-fill-mode:both;animation-name:fold-0896abbc;-webkit-animation-name:fold-0896abbc}.fold[data-v-0896abbc],.unfold[data-v-0896abbc]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-0896abbc]{animation-fill-mode:both;animation-name:unfold-0896abbc;-webkit-animation-name:unfold-0896abbc}.dim[data-v-0896abbc]{animation-fill-mode:both;animation-name:dim-0896abbc;-webkit-animation-name:dim-0896abbc}.brighten[data-v-0896abbc],.dim[data-v-0896abbc]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-0896abbc]{animation-fill-mode:both;animation-name:brighten-0896abbc;-webkit-animation-name:brighten-0896abbc}@keyframes fadeIn-0896abbc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0896abbc{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-0896abbc{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-0896abbc{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-0896abbc{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-0896abbc{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-0896abbc{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-0896abbc{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-0896abbc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0896abbc;-webkit-animation-name:glow-0896abbc}.loop[data-v-0896abbc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0896abbc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0896abbc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0896abbc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0896abbc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}nav[data-v-0896abbc]{width:2.8em;height:100%;position:relative;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;box-shadow:2.5px 0 4.5px 2px #5e5e5e;margin-left:2.5px;overflow:hidden}nav .menu-button[data-v-0896abbc]{position:absolute;top:.75em;left:0;width:100%;display:inline-flex;justify-content:center;padding:0;margin:0;font-size:1.2em;border:0;background:none;cursor:pointer;z-index:1}nav .menu-button[data-v-0896abbc]:hover{color:#35b870}nav li[data-v-0896abbc]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7}nav li.selected[data-v-0896abbc],nav li[data-v-0896abbc]:hover{border-radius:1.2em;margin:0 .2em}nav li[data-v-0896abbc]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-0896abbc]{background:rgba(160,245,178,.95)}.col-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7e4bd102]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7e4bd102]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7e4bd102]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7e4bd102]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7e4bd102]:first-child{margin-left:26%!important}.col-offset-3[data-v-7e4bd102]:not(first-child){margin-left:30%!important}.col-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7e4bd102]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7e4bd102]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7e4bd102]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7e4bd102]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7e4bd102]:first-child{margin-left:52%!important}.col-offset-6[data-v-7e4bd102]:not(first-child){margin-left:56%!important}.col-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7e4bd102]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7e4bd102]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7e4bd102]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7e4bd102]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7e4bd102]:first-child{margin-left:78%!important}.col-offset-9[data-v-7e4bd102]:not(first-child){margin-left:82%!important}.col-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7e4bd102]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7e4bd102]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7e4bd102]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7e4bd102]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-s-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-s-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-s-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-s-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7e4bd102]{display:none!important}.s-visible[data-v-7e4bd102]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-m-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-m-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-m-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-m-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7e4bd102]{display:none!important}.m-visible[data-v-7e4bd102]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-l-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-l-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-l-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-l-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7e4bd102]{display:none!important}.l-visible[data-v-7e4bd102]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-xl-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-xl-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-xl-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xl-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7e4bd102]{display:none!important}.xl-visible[data-v-7e4bd102]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7e4bd102]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7e4bd102]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7e4bd102]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7e4bd102]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7e4bd102]{margin-left:26%}.col-no-margin-xxl-3[data-v-7e4bd102]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7e4bd102]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7e4bd102]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7e4bd102]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7e4bd102]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7e4bd102]{margin-left:52%}.col-no-margin-xxl-6[data-v-7e4bd102]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7e4bd102]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7e4bd102]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7e4bd102]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7e4bd102]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7e4bd102]{margin-left:78%}.col-no-margin-xxl-9[data-v-7e4bd102]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7e4bd102]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7e4bd102]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7e4bd102]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7e4bd102]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7e4bd102]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7e4bd102]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7e4bd102]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7e4bd102]{display:none!important}.xxl-visible[data-v-7e4bd102]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7e4bd102]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7e4bd102]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7e4bd102]{display:none!important}}.vertical-center[data-v-7e4bd102]{display:flex;align-items:center}.horizontal-center[data-v-7e4bd102]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7e4bd102]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7e4bd102]{display:none!important}.no-content[data-v-7e4bd102]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7e4bd102]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7e4bd102]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7e4bd102]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7e4bd102]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7e4bd102]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7e4bd102]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7e4bd102],.btn[data-v-7e4bd102],button[data-v-7e4bd102]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7e4bd102],.btn-default[type=submit][data-v-7e4bd102],.btn.btn-primary[data-v-7e4bd102],.btn[type=submit][data-v-7e4bd102],button.btn-primary[data-v-7e4bd102],button[type=submit][data-v-7e4bd102]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7e4bd102]:hover,.btn[data-v-7e4bd102]:hover,button[data-v-7e4bd102]:hover{color:#35b870}.btn .icon[data-v-7e4bd102],.btn-default .icon[data-v-7e4bd102],button .icon[data-v-7e4bd102]{margin-right:.5em}.btn-default[data-v-7e4bd102]:disabled,.btn-default[disabled][data-v-7e4bd102],.btn[data-v-7e4bd102]:disabled,.btn[disabled][data-v-7e4bd102],button[data-v-7e4bd102]:disabled,button[disabled][data-v-7e4bd102]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7e4bd102]{cursor:grab!important}.dragged[data-v-7e4bd102]{opacity:.5!important}input[type=password][data-v-7e4bd102],input[type=text][data-v-7e4bd102]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7e4bd102]:focus,input[type=text][data-v-7e4bd102]:focus{border:1px solid #35b870}button[data-v-7e4bd102],input[data-v-7e4bd102]{outline:none}input[type=text][data-v-7e4bd102]:hover,textarea[data-v-7e4bd102]:hover{border:1px solid #9cdfb0}ul[data-v-7e4bd102]{margin:0;padding:0;list-style:none}a[data-v-7e4bd102]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7e4bd102]:hover{color:#35b870}[data-v-7e4bd102]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7e4bd102]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7e4bd102]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7e4bd102]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7e4bd102]{color:#ad1717}body[data-v-7e4bd102]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7e4bd102] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7e4bd102] .nav .path{cursor:pointer}.browser[data-v-7e4bd102] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7e4bd102] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7e4bd102]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7e4bd102]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7e4bd102],input[type=number][data-v-7e4bd102],input[type=password][data-v-7e4bd102],input[type=search][data-v-7e4bd102],input[type=text][data-v-7e4bd102],input[type=time][data-v-7e4bd102]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7e4bd102]:hover,input[type=number][data-v-7e4bd102]:hover,input[type=password][data-v-7e4bd102]:hover,input[type=search][data-v-7e4bd102]:hover,input[type=text][data-v-7e4bd102]:hover,input[type=time][data-v-7e4bd102]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7e4bd102]:focus,input[type=number][data-v-7e4bd102]:focus,input[type=password][data-v-7e4bd102]:focus,input[type=search][data-v-7e4bd102]:focus,input[type=text][data-v-7e4bd102]:focus,input[type=time][data-v-7e4bd102]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7e4bd102],input[type=number].with-icon[data-v-7e4bd102],input[type=password].with-icon[data-v-7e4bd102],input[type=search].with-icon[data-v-7e4bd102],input[type=text].with-icon[data-v-7e4bd102],input[type=time].with-icon[data-v-7e4bd102]{padding-left:.3em}input[type=search][data-v-7e4bd102],input[type=text][data-v-7e4bd102]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7e4bd102]{animation-fill-mode:both;animation-name:fadeIn-7e4bd102;-webkit-animation-name:fadeIn-7e4bd102}.fade-in[data-v-7e4bd102],.fade-out[data-v-7e4bd102]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7e4bd102]{animation-fill-mode:both;animation-name:fadeOut-7e4bd102;-webkit-animation-name:fadeOut-7e4bd102}.expand[data-v-7e4bd102]{animation-fill-mode:both;animation-name:expand-7e4bd102;-webkit-animation-name:expand-7e4bd102}.expand[data-v-7e4bd102],.shrink[data-v-7e4bd102]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7e4bd102]{animation-fill-mode:both;animation-name:shrink-7e4bd102;-webkit-animation-name:shrink-7e4bd102}.fold[data-v-7e4bd102]{animation-fill-mode:both;animation-name:fold-7e4bd102;-webkit-animation-name:fold-7e4bd102}.fold[data-v-7e4bd102],.unfold[data-v-7e4bd102]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7e4bd102]{animation-fill-mode:both;animation-name:unfold-7e4bd102;-webkit-animation-name:unfold-7e4bd102}.dim[data-v-7e4bd102]{animation-fill-mode:both;animation-name:dim-7e4bd102;-webkit-animation-name:dim-7e4bd102}.brighten[data-v-7e4bd102],.dim[data-v-7e4bd102]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7e4bd102]{animation-fill-mode:both;animation-name:brighten-7e4bd102;-webkit-animation-name:brighten-7e4bd102}@keyframes fadeIn-7e4bd102{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7e4bd102{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7e4bd102{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7e4bd102{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7e4bd102{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7e4bd102{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7e4bd102{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7e4bd102{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7e4bd102]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7e4bd102;-webkit-animation-name:glow-7e4bd102}.loop[data-v-7e4bd102]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7e4bd102{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7e4bd102]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7e4bd102]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7e4bd102]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-7e4bd102]{width:100%;height:3.3em;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header[data-v-7e4bd102] .dropdown .item.active{color:#35b870}.header[data-v-7e4bd102] .dropdown .item.selected{font-weight:700}.col-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2e7a5aae]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2e7a5aae]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2e7a5aae]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2e7a5aae]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2e7a5aae]:first-child{margin-left:26%!important}.col-offset-3[data-v-2e7a5aae]:not(first-child){margin-left:30%!important}.col-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2e7a5aae]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2e7a5aae]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2e7a5aae]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2e7a5aae]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2e7a5aae]:first-child{margin-left:52%!important}.col-offset-6[data-v-2e7a5aae]:not(first-child){margin-left:56%!important}.col-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2e7a5aae]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2e7a5aae]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2e7a5aae]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2e7a5aae]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2e7a5aae]:first-child{margin-left:78%!important}.col-offset-9[data-v-2e7a5aae]:not(first-child){margin-left:82%!important}.col-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2e7a5aae]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2e7a5aae]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2e7a5aae]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2e7a5aae]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-1[data-v-2e7a5aae]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-2[data-v-2e7a5aae]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-3[data-v-2e7a5aae]{margin-left:26%}.col-no-margin-s-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-4[data-v-2e7a5aae]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-5[data-v-2e7a5aae]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-6[data-v-2e7a5aae]{margin-left:52%}.col-no-margin-s-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-7[data-v-2e7a5aae]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-8[data-v-2e7a5aae]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-9[data-v-2e7a5aae]{margin-left:78%}.col-no-margin-s-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-10[data-v-2e7a5aae]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-s-11[data-v-2e7a5aae]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2e7a5aae]{display:none!important}.s-visible[data-v-2e7a5aae]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-1[data-v-2e7a5aae]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-2[data-v-2e7a5aae]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-3[data-v-2e7a5aae]{margin-left:26%}.col-no-margin-m-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-4[data-v-2e7a5aae]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-5[data-v-2e7a5aae]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-6[data-v-2e7a5aae]{margin-left:52%}.col-no-margin-m-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-7[data-v-2e7a5aae]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-8[data-v-2e7a5aae]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-9[data-v-2e7a5aae]{margin-left:78%}.col-no-margin-m-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-10[data-v-2e7a5aae]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-m-11[data-v-2e7a5aae]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2e7a5aae]{display:none!important}.m-visible[data-v-2e7a5aae]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-1[data-v-2e7a5aae]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-2[data-v-2e7a5aae]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-3[data-v-2e7a5aae]{margin-left:26%}.col-no-margin-l-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-4[data-v-2e7a5aae]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-5[data-v-2e7a5aae]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-6[data-v-2e7a5aae]{margin-left:52%}.col-no-margin-l-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-7[data-v-2e7a5aae]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-8[data-v-2e7a5aae]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-9[data-v-2e7a5aae]{margin-left:78%}.col-no-margin-l-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-10[data-v-2e7a5aae]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-l-11[data-v-2e7a5aae]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2e7a5aae]{display:none!important}.l-visible[data-v-2e7a5aae]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-1[data-v-2e7a5aae]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-2[data-v-2e7a5aae]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-3[data-v-2e7a5aae]{margin-left:26%}.col-no-margin-xl-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-4[data-v-2e7a5aae]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-5[data-v-2e7a5aae]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-6[data-v-2e7a5aae]{margin-left:52%}.col-no-margin-xl-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-7[data-v-2e7a5aae]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-8[data-v-2e7a5aae]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-9[data-v-2e7a5aae]{margin-left:78%}.col-no-margin-xl-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-10[data-v-2e7a5aae]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xl-11[data-v-2e7a5aae]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2e7a5aae]{display:none!important}.xl-visible[data-v-2e7a5aae]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2e7a5aae]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2e7a5aae]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2e7a5aae]{margin-left:26%}.col-no-margin-xxl-3[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2e7a5aae]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2e7a5aae]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2e7a5aae]{margin-left:52%}.col-no-margin-xxl-6[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2e7a5aae]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2e7a5aae]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2e7a5aae]{margin-left:78%}.col-no-margin-xxl-9[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2e7a5aae]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2e7a5aae]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2e7a5aae]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2e7a5aae]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2e7a5aae]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2e7a5aae]{display:none!important}.xxl-visible[data-v-2e7a5aae]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2e7a5aae]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2e7a5aae]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2e7a5aae]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2e7a5aae]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2e7a5aae]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2e7a5aae]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2e7a5aae]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2e7a5aae]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2e7a5aae]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2e7a5aae]{display:none!important}}.vertical-center[data-v-2e7a5aae]{display:flex;align-items:center}.horizontal-center[data-v-2e7a5aae]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2e7a5aae]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2e7a5aae]{display:none!important}.no-content[data-v-2e7a5aae]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2e7a5aae]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2e7a5aae]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2e7a5aae]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2e7a5aae]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2e7a5aae]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2e7a5aae]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2e7a5aae],.btn[data-v-2e7a5aae],button[data-v-2e7a5aae]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2e7a5aae],.btn-default[type=submit][data-v-2e7a5aae],.btn.btn-primary[data-v-2e7a5aae],.btn[type=submit][data-v-2e7a5aae],button.btn-primary[data-v-2e7a5aae],button[type=submit][data-v-2e7a5aae]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2e7a5aae]:hover,.btn[data-v-2e7a5aae]:hover,button[data-v-2e7a5aae]:hover{color:#35b870}.btn .icon[data-v-2e7a5aae],.btn-default .icon[data-v-2e7a5aae],button .icon[data-v-2e7a5aae]{margin-right:.5em}.btn-default[data-v-2e7a5aae]:disabled,.btn-default[disabled][data-v-2e7a5aae],.btn[data-v-2e7a5aae]:disabled,.btn[disabled][data-v-2e7a5aae],button[data-v-2e7a5aae]:disabled,button[disabled][data-v-2e7a5aae]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2e7a5aae]{cursor:grab!important}.dragged[data-v-2e7a5aae]{opacity:.5!important}input[type=password][data-v-2e7a5aae],input[type=text][data-v-2e7a5aae]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2e7a5aae]:focus,input[type=text][data-v-2e7a5aae]:focus{border:1px solid #35b870}button[data-v-2e7a5aae],input[data-v-2e7a5aae]{outline:none}input[type=text][data-v-2e7a5aae]:hover,textarea[data-v-2e7a5aae]:hover{border:1px solid #9cdfb0}ul[data-v-2e7a5aae]{margin:0;padding:0;list-style:none}a[data-v-2e7a5aae]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2e7a5aae]:hover{color:#35b870}[data-v-2e7a5aae]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2e7a5aae]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2e7a5aae]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2e7a5aae]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2e7a5aae]{color:#ad1717}body[data-v-2e7a5aae]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2e7a5aae] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2e7a5aae] .nav .path{cursor:pointer}.browser[data-v-2e7a5aae] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2e7a5aae] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2e7a5aae]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2e7a5aae]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2e7a5aae],input[type=number][data-v-2e7a5aae],input[type=password][data-v-2e7a5aae],input[type=search][data-v-2e7a5aae],input[type=text][data-v-2e7a5aae],input[type=time][data-v-2e7a5aae]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2e7a5aae]:hover,input[type=number][data-v-2e7a5aae]:hover,input[type=password][data-v-2e7a5aae]:hover,input[type=search][data-v-2e7a5aae]:hover,input[type=text][data-v-2e7a5aae]:hover,input[type=time][data-v-2e7a5aae]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2e7a5aae]:focus,input[type=number][data-v-2e7a5aae]:focus,input[type=password][data-v-2e7a5aae]:focus,input[type=search][data-v-2e7a5aae]:focus,input[type=text][data-v-2e7a5aae]:focus,input[type=time][data-v-2e7a5aae]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2e7a5aae],input[type=number].with-icon[data-v-2e7a5aae],input[type=password].with-icon[data-v-2e7a5aae],input[type=search].with-icon[data-v-2e7a5aae],input[type=text].with-icon[data-v-2e7a5aae],input[type=time].with-icon[data-v-2e7a5aae]{padding-left:.3em}input[type=search][data-v-2e7a5aae],input[type=text][data-v-2e7a5aae]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2e7a5aae]{animation-fill-mode:both;animation-name:fadeIn-2e7a5aae;-webkit-animation-name:fadeIn-2e7a5aae}.fade-in[data-v-2e7a5aae],.fade-out[data-v-2e7a5aae]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2e7a5aae]{animation-fill-mode:both;animation-name:fadeOut-2e7a5aae;-webkit-animation-name:fadeOut-2e7a5aae}.expand[data-v-2e7a5aae]{animation-fill-mode:both;animation-name:expand-2e7a5aae;-webkit-animation-name:expand-2e7a5aae}.expand[data-v-2e7a5aae],.shrink[data-v-2e7a5aae]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2e7a5aae]{animation-fill-mode:both;animation-name:shrink-2e7a5aae;-webkit-animation-name:shrink-2e7a5aae}.fold[data-v-2e7a5aae]{animation-fill-mode:both;animation-name:fold-2e7a5aae;-webkit-animation-name:fold-2e7a5aae}.fold[data-v-2e7a5aae],.unfold[data-v-2e7a5aae]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2e7a5aae]{animation-fill-mode:both;animation-name:unfold-2e7a5aae;-webkit-animation-name:unfold-2e7a5aae}.dim[data-v-2e7a5aae]{animation-fill-mode:both;animation-name:dim-2e7a5aae;-webkit-animation-name:dim-2e7a5aae}.brighten[data-v-2e7a5aae],.dim[data-v-2e7a5aae]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2e7a5aae]{animation-fill-mode:both;animation-name:brighten-2e7a5aae;-webkit-animation-name:brighten-2e7a5aae}@keyframes fadeIn-2e7a5aae{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2e7a5aae{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2e7a5aae{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2e7a5aae{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2e7a5aae{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2e7a5aae{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2e7a5aae{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2e7a5aae{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2e7a5aae]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2e7a5aae;-webkit-animation-name:glow-2e7a5aae}.loop[data-v-2e7a5aae]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2e7a5aae{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2e7a5aae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2e7a5aae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2e7a5aae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-2e7a5aae]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-2e7a5aae]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-2e7a5aae]{background:#8fefb7}.track.selected[data-v-2e7a5aae]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover.top[data-v-2e7a5aae]{border-top:2px solid #35b870}.track.dragover.bottom[data-v-2e7a5aae]{border-bottom:2px solid #35b870}.track.dragging[data-v-2e7a5aae]{opacity:.5}.track[data-v-2e7a5aae]::-moz-selection{background:transparent!important}.track[data-v-2e7a5aae]::selection{background:transparent!important}.track .title[data-v-2e7a5aae]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-2e7a5aae],.track .artist[data-v-2e7a5aae]{display:inline-flex;font-size:.9em}.track .artist[data-v-2e7a5aae]{opacity:.85}.track .album[data-v-2e7a5aae]{opacity:.7}.track .artist[data-v-2e7a5aae]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-2e7a5aae]{display:none}}.track .album[data-v-2e7a5aae]:before{content:"•";margin-right:.25em}.track .right-side[data-v-2e7a5aae]{display:flex;justify-content:flex-end}.track .actions[data-v-2e7a5aae],.track .duration[data-v-2e7a5aae]{display:inline-flex;align-items:center}.track .duration[data-v-2e7a5aae]{font-size:.85em;opacity:.7}.track .actions[data-v-2e7a5aae] button{opacity:.7}.fa-youtube[data-v-2e7a5aae]{color:#d21}.playlist[data-v-2e7a5aae]{width:100%;height:100%;display:flex;flex-direction:column}.playlist .header-container button[data-v-2e7a5aae]{border:0;background:none}.playlist .header-container .filter[data-v-2e7a5aae]{display:flex;flex-direction:row;align-items:center}.playlist .header-container .filter label[data-v-2e7a5aae]{flex-grow:1}.playlist .header-container .filter label input[type=search][data-v-2e7a5aae]{width:100%}.playlist .header-container .buttons[data-v-2e7a5aae]{direction:rtl}.playlist .header-container .buttons .dropdown-container[data-v-2e7a5aae]{direction:ltr}.playlist[data-v-2e7a5aae] .header .back-btn{padding-left:.25em}.playlist .body[data-v-2e7a5aae]{height:calc(100% - 8.8em);overflow:auto}.playlist .no-content[data-v-2e7a5aae]{height:100%}.playing-icon[data-v-2e7a5aae]{display:inline-block;position:relative;margin-left:.75em;width:1.5em;height:1em}@keyframes playing_bar-2e7a5aae{0%{height:0}12.5%{height:75%}25%{height:100%}37.5%{height:10%}50%{height:40%}62.5%{height:50%}75%{height:30%}87.5%{height:55%}to{height:0}}.playing-icon span[data-v-2e7a5aae]{animation:.2s;display:block;position:absolute;bottom:0;width:.25em;height:100%;background:#38cf80;animation-name:playing_bar-2e7a5aae;animation-iteration-count:infinite}.playing-icon span[data-v-2e7a5aae]:first-child{left:0;animation-duration:2s}.playing-icon span[data-v-2e7a5aae]:nth-child(2){left:6px;animation-duration:4s}.playing-icon span[data-v-2e7a5aae]:nth-child(3){left:12px;animation-duration:1s}.playing-icon.paused span[data-v-2e7a5aae]{animation-play-state:paused}[data-v-2e7a5aae] .track-info-content .attr{opacity:.75}[data-v-2e7a5aae] .track-info-content .value{text-align:right}.col-1[data-v-557666b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-1[data-v-557666b2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-557666b2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-557666b2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-557666b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-2[data-v-557666b2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-557666b2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-557666b2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-557666b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-3[data-v-557666b2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-557666b2]:first-child{margin-left:26%!important}.col-offset-3[data-v-557666b2]:not(first-child){margin-left:30%!important}.col-4[data-v-557666b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-4[data-v-557666b2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-557666b2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-557666b2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-557666b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-5[data-v-557666b2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-557666b2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-557666b2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-557666b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-6[data-v-557666b2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-557666b2]:first-child{margin-left:52%!important}.col-offset-6[data-v-557666b2]:not(first-child){margin-left:56%!important}.col-7[data-v-557666b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-7[data-v-557666b2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-557666b2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-557666b2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-557666b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-8[data-v-557666b2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-557666b2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-557666b2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-557666b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-9[data-v-557666b2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-557666b2]:first-child{margin-left:78%!important}.col-offset-9[data-v-557666b2]:not(first-child){margin-left:82%!important}.col-10[data-v-557666b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-10[data-v-557666b2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-557666b2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-557666b2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-557666b2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-557666b2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-557666b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-1[data-v-557666b2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-557666b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-557666b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-2[data-v-557666b2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-557666b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-557666b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-3[data-v-557666b2]{margin-left:26%}.col-no-margin-s-3[data-v-557666b2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-557666b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-4[data-v-557666b2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-557666b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-557666b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-5[data-v-557666b2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-557666b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-557666b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-6[data-v-557666b2]{margin-left:52%}.col-no-margin-s-6[data-v-557666b2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-557666b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-7[data-v-557666b2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-557666b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-557666b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-8[data-v-557666b2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-557666b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-557666b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-9[data-v-557666b2]{margin-left:78%}.col-no-margin-s-9[data-v-557666b2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-557666b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-10[data-v-557666b2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-557666b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-557666b2]:first-child{margin-left:0}.col-offset-s-11[data-v-557666b2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-557666b2]{display:none!important}.s-visible[data-v-557666b2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-557666b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-1[data-v-557666b2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-557666b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-557666b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-2[data-v-557666b2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-557666b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-557666b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-3[data-v-557666b2]{margin-left:26%}.col-no-margin-m-3[data-v-557666b2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-557666b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-4[data-v-557666b2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-557666b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-557666b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-5[data-v-557666b2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-557666b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-557666b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-6[data-v-557666b2]{margin-left:52%}.col-no-margin-m-6[data-v-557666b2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-557666b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-7[data-v-557666b2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-557666b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-557666b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-8[data-v-557666b2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-557666b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-557666b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-9[data-v-557666b2]{margin-left:78%}.col-no-margin-m-9[data-v-557666b2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-557666b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-10[data-v-557666b2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-557666b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-557666b2]:first-child{margin-left:0}.col-offset-m-11[data-v-557666b2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-557666b2]{display:none!important}.m-visible[data-v-557666b2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-557666b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-1[data-v-557666b2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-557666b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-557666b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-2[data-v-557666b2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-557666b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-557666b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-3[data-v-557666b2]{margin-left:26%}.col-no-margin-l-3[data-v-557666b2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-557666b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-4[data-v-557666b2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-557666b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-557666b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-5[data-v-557666b2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-557666b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-557666b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-6[data-v-557666b2]{margin-left:52%}.col-no-margin-l-6[data-v-557666b2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-557666b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-7[data-v-557666b2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-557666b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-557666b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-8[data-v-557666b2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-557666b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-557666b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-9[data-v-557666b2]{margin-left:78%}.col-no-margin-l-9[data-v-557666b2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-557666b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-10[data-v-557666b2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-557666b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-557666b2]:first-child{margin-left:0}.col-offset-l-11[data-v-557666b2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-557666b2]{display:none!important}.l-visible[data-v-557666b2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-557666b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-1[data-v-557666b2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-557666b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-557666b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-2[data-v-557666b2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-557666b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-557666b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-3[data-v-557666b2]{margin-left:26%}.col-no-margin-xl-3[data-v-557666b2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-557666b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-4[data-v-557666b2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-557666b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-557666b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-5[data-v-557666b2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-557666b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-557666b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-6[data-v-557666b2]{margin-left:52%}.col-no-margin-xl-6[data-v-557666b2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-557666b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-7[data-v-557666b2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-557666b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-557666b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-8[data-v-557666b2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-557666b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-557666b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-9[data-v-557666b2]{margin-left:78%}.col-no-margin-xl-9[data-v-557666b2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-557666b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-10[data-v-557666b2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-557666b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-557666b2]:first-child{margin-left:0}.col-offset-xl-11[data-v-557666b2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-557666b2]{display:none!important}.xl-visible[data-v-557666b2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-557666b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-557666b2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-557666b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-557666b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-557666b2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-557666b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-557666b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-557666b2]{margin-left:26%}.col-no-margin-xxl-3[data-v-557666b2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-557666b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-557666b2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-557666b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-557666b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-557666b2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-557666b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-557666b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-557666b2]{margin-left:52%}.col-no-margin-xxl-6[data-v-557666b2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-557666b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-557666b2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-557666b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-557666b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-557666b2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-557666b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-557666b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-557666b2]{margin-left:78%}.col-no-margin-xxl-9[data-v-557666b2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-557666b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-557666b2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-557666b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-557666b2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-557666b2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-557666b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-557666b2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-557666b2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-557666b2]{display:none!important}.xxl-visible[data-v-557666b2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-557666b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-557666b2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-557666b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-557666b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-557666b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-557666b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-557666b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-557666b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-557666b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-557666b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-557666b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-557666b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-557666b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-557666b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-557666b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-557666b2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-557666b2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-557666b2]{display:none!important}}.vertical-center[data-v-557666b2]{display:flex;align-items:center}.horizontal-center[data-v-557666b2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-557666b2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-557666b2]{display:none!important}.no-content[data-v-557666b2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-557666b2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-557666b2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-557666b2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-557666b2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-557666b2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-557666b2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-557666b2],.btn[data-v-557666b2],button[data-v-557666b2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-557666b2],.btn-default[type=submit][data-v-557666b2],.btn.btn-primary[data-v-557666b2],.btn[type=submit][data-v-557666b2],button.btn-primary[data-v-557666b2],button[type=submit][data-v-557666b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-557666b2]:hover,.btn[data-v-557666b2]:hover,button[data-v-557666b2]:hover{color:#35b870}.btn .icon[data-v-557666b2],.btn-default .icon[data-v-557666b2],button .icon[data-v-557666b2]{margin-right:.5em}.btn-default[data-v-557666b2]:disabled,.btn-default[disabled][data-v-557666b2],.btn[data-v-557666b2]:disabled,.btn[disabled][data-v-557666b2],button[data-v-557666b2]:disabled,button[disabled][data-v-557666b2]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-557666b2]{cursor:grab!important}.dragged[data-v-557666b2]{opacity:.5!important}input[type=password][data-v-557666b2],input[type=text][data-v-557666b2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-557666b2]:focus,input[type=text][data-v-557666b2]:focus{border:1px solid #35b870}button[data-v-557666b2],input[data-v-557666b2]{outline:none}input[type=text][data-v-557666b2]:hover,textarea[data-v-557666b2]:hover{border:1px solid #9cdfb0}ul[data-v-557666b2]{margin:0;padding:0;list-style:none}a[data-v-557666b2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-557666b2]:hover{color:#35b870}[data-v-557666b2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-557666b2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-557666b2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-557666b2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-557666b2]{color:#ad1717}body[data-v-557666b2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-557666b2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-557666b2] .nav .path{cursor:pointer}.browser[data-v-557666b2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-557666b2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-557666b2]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-557666b2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-557666b2],input[type=number][data-v-557666b2],input[type=password][data-v-557666b2],input[type=search][data-v-557666b2],input[type=text][data-v-557666b2],input[type=time][data-v-557666b2]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-557666b2]:hover,input[type=number][data-v-557666b2]:hover,input[type=password][data-v-557666b2]:hover,input[type=search][data-v-557666b2]:hover,input[type=text][data-v-557666b2]:hover,input[type=time][data-v-557666b2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-557666b2]:focus,input[type=number][data-v-557666b2]:focus,input[type=password][data-v-557666b2]:focus,input[type=search][data-v-557666b2]:focus,input[type=text][data-v-557666b2]:focus,input[type=time][data-v-557666b2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-557666b2],input[type=number].with-icon[data-v-557666b2],input[type=password].with-icon[data-v-557666b2],input[type=search].with-icon[data-v-557666b2],input[type=text].with-icon[data-v-557666b2],input[type=time].with-icon[data-v-557666b2]{padding-left:.3em}input[type=search][data-v-557666b2],input[type=text][data-v-557666b2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-557666b2]{animation-fill-mode:both;animation-name:fadeIn-557666b2;-webkit-animation-name:fadeIn-557666b2}.fade-in[data-v-557666b2],.fade-out[data-v-557666b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-557666b2]{animation-fill-mode:both;animation-name:fadeOut-557666b2;-webkit-animation-name:fadeOut-557666b2}.expand[data-v-557666b2]{animation-fill-mode:both;animation-name:expand-557666b2;-webkit-animation-name:expand-557666b2}.expand[data-v-557666b2],.shrink[data-v-557666b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-557666b2]{animation-fill-mode:both;animation-name:shrink-557666b2;-webkit-animation-name:shrink-557666b2}.fold[data-v-557666b2]{animation-fill-mode:both;animation-name:fold-557666b2;-webkit-animation-name:fold-557666b2}.fold[data-v-557666b2],.unfold[data-v-557666b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-557666b2]{animation-fill-mode:both;animation-name:unfold-557666b2;-webkit-animation-name:unfold-557666b2}.dim[data-v-557666b2]{animation-fill-mode:both;animation-name:dim-557666b2;-webkit-animation-name:dim-557666b2}.brighten[data-v-557666b2],.dim[data-v-557666b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-557666b2]{animation-fill-mode:both;animation-name:brighten-557666b2;-webkit-animation-name:brighten-557666b2}@keyframes fadeIn-557666b2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-557666b2{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-557666b2{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-557666b2{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-557666b2{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-557666b2{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-557666b2{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-557666b2{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-557666b2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-557666b2;-webkit-animation-name:glow-557666b2}.loop[data-v-557666b2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-557666b2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-557666b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-557666b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-557666b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-557666b2]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-557666b2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-557666b2]{background:#8fefb7}.track.selected[data-v-557666b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover.top[data-v-557666b2]{border-top:2px solid #35b870}.track.dragover.bottom[data-v-557666b2]{border-bottom:2px solid #35b870}.track.dragging[data-v-557666b2]{opacity:.5}.track[data-v-557666b2]::-moz-selection{background:transparent!important}.track[data-v-557666b2]::selection{background:transparent!important}.track .title[data-v-557666b2]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-557666b2],.track .artist[data-v-557666b2]{display:inline-flex;font-size:.9em}.track .artist[data-v-557666b2]{opacity:.85}.track .album[data-v-557666b2]{opacity:.7}.track .artist[data-v-557666b2]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-557666b2]{display:none}}.track .album[data-v-557666b2]:before{content:"•";margin-right:.25em}.track .right-side[data-v-557666b2]{display:flex;justify-content:flex-end}.track .actions[data-v-557666b2],.track .duration[data-v-557666b2]{display:inline-flex;align-items:center}.track .duration[data-v-557666b2]{font-size:.85em;opacity:.7}.track .actions[data-v-557666b2] button{opacity:.7}.fa-youtube[data-v-557666b2]{color:#d21}.playlists[data-v-557666b2]{width:100%;display:flex;flex-direction:column}.playlists .header-container .filter input[data-v-557666b2]{width:100%}.playlists .body[data-v-557666b2]{height:calc(100% - 8.8em);overflow:auto}.playlists .no-content[data-v-557666b2]{height:100%}.playlists .playlist[data-v-557666b2]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.playlists .playlist .name-container[data-v-557666b2]{display:flex;align-items:center}.playlists .playlist .name-container .icon[data-v-557666b2]{margin-right:.5em;opacity:.85}.playlists .playlist .name-container .name[data-v-557666b2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.playlists .playlist[data-v-557666b2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.playlists .playlist.active[data-v-557666b2]{background:#8fefb7}.playlists .playlist.selected[data-v-557666b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.playlists .playlist .right-side[data-v-557666b2]{display:flex;justify-content:flex-end}.playlists .header .buttons[data-v-557666b2]{display:flex;align-items:flex-end;justify-content:flex-end}.editor-container[data-v-557666b2]{width:100%;height:100%;display:flex;flex-direction:column}.editor-container .header-container[data-v-557666b2]{width:100%}.editor-container[data-v-557666b2] .header .back-btn{padding-left:.25em}.editor-container[data-v-557666b2] .header .search-box input{width:65%}.editor-container .editor[data-v-557666b2]{width:100%;height:calc(100% - 8.8em);display:flex;flex-direction:column;overflow:auto}.col-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-45f74ccb]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-45f74ccb]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-45f74ccb]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-45f74ccb]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-45f74ccb]:first-child{margin-left:26%!important}.col-offset-3[data-v-45f74ccb]:not(first-child){margin-left:30%!important}.col-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-45f74ccb]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-45f74ccb]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-45f74ccb]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-45f74ccb]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-45f74ccb]:first-child{margin-left:52%!important}.col-offset-6[data-v-45f74ccb]:not(first-child){margin-left:56%!important}.col-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-45f74ccb]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-45f74ccb]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-45f74ccb]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-45f74ccb]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-45f74ccb]:first-child{margin-left:78%!important}.col-offset-9[data-v-45f74ccb]:not(first-child){margin-left:82%!important}.col-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-45f74ccb]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-45f74ccb]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-45f74ccb]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-45f74ccb]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-1[data-v-45f74ccb]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-2[data-v-45f74ccb]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-3[data-v-45f74ccb]{margin-left:26%}.col-no-margin-s-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-4[data-v-45f74ccb]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-5[data-v-45f74ccb]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-6[data-v-45f74ccb]{margin-left:52%}.col-no-margin-s-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-7[data-v-45f74ccb]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-8[data-v-45f74ccb]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-9[data-v-45f74ccb]{margin-left:78%}.col-no-margin-s-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-10[data-v-45f74ccb]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-s-11[data-v-45f74ccb]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-s-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-45f74ccb]{display:none!important}.s-visible[data-v-45f74ccb]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-1[data-v-45f74ccb]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-2[data-v-45f74ccb]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-3[data-v-45f74ccb]{margin-left:26%}.col-no-margin-m-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-4[data-v-45f74ccb]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-5[data-v-45f74ccb]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-6[data-v-45f74ccb]{margin-left:52%}.col-no-margin-m-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-7[data-v-45f74ccb]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-8[data-v-45f74ccb]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-9[data-v-45f74ccb]{margin-left:78%}.col-no-margin-m-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-10[data-v-45f74ccb]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-m-11[data-v-45f74ccb]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-m-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-45f74ccb]{display:none!important}.m-visible[data-v-45f74ccb]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-1[data-v-45f74ccb]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-2[data-v-45f74ccb]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-3[data-v-45f74ccb]{margin-left:26%}.col-no-margin-l-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-4[data-v-45f74ccb]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-5[data-v-45f74ccb]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-6[data-v-45f74ccb]{margin-left:52%}.col-no-margin-l-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-7[data-v-45f74ccb]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-8[data-v-45f74ccb]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-9[data-v-45f74ccb]{margin-left:78%}.col-no-margin-l-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-10[data-v-45f74ccb]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-l-11[data-v-45f74ccb]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-l-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-45f74ccb]{display:none!important}.l-visible[data-v-45f74ccb]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-1[data-v-45f74ccb]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-2[data-v-45f74ccb]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-3[data-v-45f74ccb]{margin-left:26%}.col-no-margin-xl-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-4[data-v-45f74ccb]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-5[data-v-45f74ccb]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-6[data-v-45f74ccb]{margin-left:52%}.col-no-margin-xl-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-7[data-v-45f74ccb]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-8[data-v-45f74ccb]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-9[data-v-45f74ccb]{margin-left:78%}.col-no-margin-xl-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-10[data-v-45f74ccb]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xl-11[data-v-45f74ccb]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-45f74ccb]{display:none!important}.xl-visible[data-v-45f74ccb]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-1[data-v-45f74ccb]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-45f74ccb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-2[data-v-45f74ccb]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-45f74ccb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-3[data-v-45f74ccb]{margin-left:26%}.col-no-margin-xxl-3[data-v-45f74ccb]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-4[data-v-45f74ccb]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-45f74ccb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-5[data-v-45f74ccb]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-45f74ccb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-6[data-v-45f74ccb]{margin-left:52%}.col-no-margin-xxl-6[data-v-45f74ccb]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-7[data-v-45f74ccb]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-45f74ccb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-8[data-v-45f74ccb]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-45f74ccb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-9[data-v-45f74ccb]{margin-left:78%}.col-no-margin-xxl-9[data-v-45f74ccb]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-10[data-v-45f74ccb]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-45f74ccb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-45f74ccb]:first-child{margin-left:0}.col-offset-xxl-11[data-v-45f74ccb]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-45f74ccb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-45f74ccb]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-45f74ccb]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-45f74ccb]{display:none!important}.xxl-visible[data-v-45f74ccb]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-45f74ccb]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-45f74ccb]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-45f74ccb]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-45f74ccb]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-45f74ccb]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-45f74ccb]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-45f74ccb]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-45f74ccb]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-45f74ccb]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-45f74ccb]{display:none!important}}.vertical-center[data-v-45f74ccb]{display:flex;align-items:center}.horizontal-center[data-v-45f74ccb]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-45f74ccb]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-45f74ccb]{display:none!important}.no-content[data-v-45f74ccb]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-45f74ccb]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-45f74ccb]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-45f74ccb]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-45f74ccb]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-45f74ccb]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-45f74ccb]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-45f74ccb],.btn[data-v-45f74ccb],button[data-v-45f74ccb]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-45f74ccb],.btn-default[type=submit][data-v-45f74ccb],.btn.btn-primary[data-v-45f74ccb],.btn[type=submit][data-v-45f74ccb],button.btn-primary[data-v-45f74ccb],button[type=submit][data-v-45f74ccb]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-45f74ccb]:hover,.btn[data-v-45f74ccb]:hover,button[data-v-45f74ccb]:hover{color:#35b870}.btn .icon[data-v-45f74ccb],.btn-default .icon[data-v-45f74ccb],button .icon[data-v-45f74ccb]{margin-right:.5em}.btn-default[data-v-45f74ccb]:disabled,.btn-default[disabled][data-v-45f74ccb],.btn[data-v-45f74ccb]:disabled,.btn[disabled][data-v-45f74ccb],button[data-v-45f74ccb]:disabled,button[disabled][data-v-45f74ccb]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-45f74ccb]{cursor:grab!important}.dragged[data-v-45f74ccb]{opacity:.5!important}input[type=password][data-v-45f74ccb],input[type=text][data-v-45f74ccb]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-45f74ccb]:focus,input[type=text][data-v-45f74ccb]:focus{border:1px solid #35b870}button[data-v-45f74ccb],input[data-v-45f74ccb]{outline:none}input[type=text][data-v-45f74ccb]:hover,textarea[data-v-45f74ccb]:hover{border:1px solid #9cdfb0}ul[data-v-45f74ccb]{margin:0;padding:0;list-style:none}a[data-v-45f74ccb]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-45f74ccb]:hover{color:#35b870}[data-v-45f74ccb]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-45f74ccb]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-45f74ccb]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-45f74ccb]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-45f74ccb]{color:#ad1717}body[data-v-45f74ccb]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-45f74ccb] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-45f74ccb] .nav .path{cursor:pointer}.browser[data-v-45f74ccb] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-45f74ccb] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-45f74ccb]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-45f74ccb]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-45f74ccb],input[type=number][data-v-45f74ccb],input[type=password][data-v-45f74ccb],input[type=search][data-v-45f74ccb],input[type=text][data-v-45f74ccb],input[type=time][data-v-45f74ccb]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-45f74ccb]:hover,input[type=number][data-v-45f74ccb]:hover,input[type=password][data-v-45f74ccb]:hover,input[type=search][data-v-45f74ccb]:hover,input[type=text][data-v-45f74ccb]:hover,input[type=time][data-v-45f74ccb]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-45f74ccb]:focus,input[type=number][data-v-45f74ccb]:focus,input[type=password][data-v-45f74ccb]:focus,input[type=search][data-v-45f74ccb]:focus,input[type=text][data-v-45f74ccb]:focus,input[type=time][data-v-45f74ccb]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-45f74ccb],input[type=number].with-icon[data-v-45f74ccb],input[type=password].with-icon[data-v-45f74ccb],input[type=search].with-icon[data-v-45f74ccb],input[type=text].with-icon[data-v-45f74ccb],input[type=time].with-icon[data-v-45f74ccb]{padding-left:.3em}input[type=search][data-v-45f74ccb],input[type=text][data-v-45f74ccb]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-45f74ccb]{animation-fill-mode:both;animation-name:fadeIn-45f74ccb;-webkit-animation-name:fadeIn-45f74ccb}.fade-in[data-v-45f74ccb],.fade-out[data-v-45f74ccb]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-45f74ccb]{animation-fill-mode:both;animation-name:fadeOut-45f74ccb;-webkit-animation-name:fadeOut-45f74ccb}.expand[data-v-45f74ccb]{animation-fill-mode:both;animation-name:expand-45f74ccb;-webkit-animation-name:expand-45f74ccb}.expand[data-v-45f74ccb],.shrink[data-v-45f74ccb]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-45f74ccb]{animation-fill-mode:both;animation-name:shrink-45f74ccb;-webkit-animation-name:shrink-45f74ccb}.fold[data-v-45f74ccb]{animation-fill-mode:both;animation-name:fold-45f74ccb;-webkit-animation-name:fold-45f74ccb}.fold[data-v-45f74ccb],.unfold[data-v-45f74ccb]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-45f74ccb]{animation-fill-mode:both;animation-name:unfold-45f74ccb;-webkit-animation-name:unfold-45f74ccb}.dim[data-v-45f74ccb]{animation-fill-mode:both;animation-name:dim-45f74ccb;-webkit-animation-name:dim-45f74ccb}.brighten[data-v-45f74ccb],.dim[data-v-45f74ccb]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-45f74ccb]{animation-fill-mode:both;animation-name:brighten-45f74ccb;-webkit-animation-name:brighten-45f74ccb}@keyframes fadeIn-45f74ccb{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-45f74ccb{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-45f74ccb{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-45f74ccb{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-45f74ccb{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-45f74ccb{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-45f74ccb{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-45f74ccb{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-45f74ccb]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-45f74ccb;-webkit-animation-name:glow-45f74ccb}.loop[data-v-45f74ccb]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-45f74ccb{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-45f74ccb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-45f74ccb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-45f74ccb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-45f74ccb]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-45f74ccb]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-45f74ccb]{background:#8fefb7}.track.selected[data-v-45f74ccb]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover.top[data-v-45f74ccb]{border-top:2px solid #35b870}.track.dragover.bottom[data-v-45f74ccb]{border-bottom:2px solid #35b870}.track.dragging[data-v-45f74ccb]{opacity:.5}.track[data-v-45f74ccb]::-moz-selection{background:transparent!important}.track[data-v-45f74ccb]::selection{background:transparent!important}.track .title[data-v-45f74ccb]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-45f74ccb],.track .artist[data-v-45f74ccb]{display:inline-flex;font-size:.9em}.track .artist[data-v-45f74ccb]{opacity:.85}.track .album[data-v-45f74ccb]{opacity:.7}.track .artist[data-v-45f74ccb]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-45f74ccb]{display:none}}.track .album[data-v-45f74ccb]:before{content:"•";margin-right:.25em}.track .right-side[data-v-45f74ccb]{display:flex;justify-content:flex-end}.track .actions[data-v-45f74ccb],.track .duration[data-v-45f74ccb]{display:inline-flex;align-items:center}.track .duration[data-v-45f74ccb]{font-size:.85em;opacity:.7}.track .actions[data-v-45f74ccb] button{opacity:.7}.fa-youtube[data-v-45f74ccb]{color:#d21}.search[data-v-45f74ccb]{width:100%;height:calc(100% - 5.5em);display:flex;flex-direction:column;position:relative}.search .nav-toggler.floating[data-v-45f74ccb]{position:absolute;top:0;right:0;z-index:1}.search .form-container[data-v-45f74ccb],.search[data-v-45f74ccb]:not(.form-collapsed){justify-content:center;align-items:center}.search .form-container[data-v-45f74ccb]{width:100%;height:100%;display:flex;flex-grow:1}.search form[data-v-45f74ccb]{width:calc(100% - 2em);max-width:30em;height:17em;background:#edf0ee;display:flex;flex-direction:column;padding:2em;border-radius:1.5em}.search form .row[data-v-45f74ccb]{margin:.25em 0}.search form input[type=text][data-v-45f74ccb]{width:100%}.search form[data-v-45f74ccb] .form-footer{height:3em;padding-right:0;border:0}.search form[data-v-45f74ccb] button{border:0}.search form[data-v-45f74ccb] button[type=submit]{background:none}.search form[data-v-45f74ccb] button:hover{border:0;color:#38cf80}.search .results[data-v-45f74ccb]{height:calc(100% - 3.3em);flex-grow:1;overflow:auto}.search .results .title-container[data-v-45f74ccb]{display:flex;align-items:center}.search .results .title-container .type[data-v-45f74ccb]{opacity:.85;margin-right:.5em}.search[data-v-45f74ccb] .header{display:flex;width:100%;align-items:center}.search[data-v-45f74ccb] .header .search-box{width:70%;display:flex;align-items:center}.search[data-v-45f74ccb] .header .search-box .back-btn{margin-left:0;padding-left:0}.search[data-v-45f74ccb] .header .search-box input[type=search]{width:100%}.search[data-v-45f74ccb] .header .buttons{width:30%;display:inline-flex;justify-content:flex-end;margin:0}.col-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-9ace6422]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-9ace6422]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-9ace6422]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-9ace6422]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-9ace6422]:first-child{margin-left:26%!important}.col-offset-3[data-v-9ace6422]:not(first-child){margin-left:30%!important}.col-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-9ace6422]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-9ace6422]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-9ace6422]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-9ace6422]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-9ace6422]:first-child{margin-left:52%!important}.col-offset-6[data-v-9ace6422]:not(first-child){margin-left:56%!important}.col-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-9ace6422]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-9ace6422]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-9ace6422]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-9ace6422]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-9ace6422]:first-child{margin-left:78%!important}.col-offset-9[data-v-9ace6422]:not(first-child){margin-left:82%!important}.col-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-9ace6422]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-9ace6422]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-9ace6422]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-9ace6422]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-1[data-v-9ace6422]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-2[data-v-9ace6422]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-3[data-v-9ace6422]{margin-left:26%}.col-no-margin-s-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-4[data-v-9ace6422]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-5[data-v-9ace6422]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-6[data-v-9ace6422]{margin-left:52%}.col-no-margin-s-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-7[data-v-9ace6422]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-8[data-v-9ace6422]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-9[data-v-9ace6422]{margin-left:78%}.col-no-margin-s-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-10[data-v-9ace6422]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-9ace6422]:first-child{margin-left:0}.col-offset-s-11[data-v-9ace6422]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-s-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-9ace6422]{display:none!important}.s-visible[data-v-9ace6422]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-1[data-v-9ace6422]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-2[data-v-9ace6422]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-3[data-v-9ace6422]{margin-left:26%}.col-no-margin-m-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-4[data-v-9ace6422]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-5[data-v-9ace6422]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-6[data-v-9ace6422]{margin-left:52%}.col-no-margin-m-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-7[data-v-9ace6422]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-8[data-v-9ace6422]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-9[data-v-9ace6422]{margin-left:78%}.col-no-margin-m-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-10[data-v-9ace6422]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-9ace6422]:first-child{margin-left:0}.col-offset-m-11[data-v-9ace6422]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-m-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-9ace6422]{display:none!important}.m-visible[data-v-9ace6422]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-1[data-v-9ace6422]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-2[data-v-9ace6422]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-3[data-v-9ace6422]{margin-left:26%}.col-no-margin-l-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-4[data-v-9ace6422]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-5[data-v-9ace6422]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-6[data-v-9ace6422]{margin-left:52%}.col-no-margin-l-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-7[data-v-9ace6422]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-8[data-v-9ace6422]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-9[data-v-9ace6422]{margin-left:78%}.col-no-margin-l-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-10[data-v-9ace6422]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-9ace6422]:first-child{margin-left:0}.col-offset-l-11[data-v-9ace6422]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-l-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-9ace6422]{display:none!important}.l-visible[data-v-9ace6422]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-1[data-v-9ace6422]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-2[data-v-9ace6422]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-3[data-v-9ace6422]{margin-left:26%}.col-no-margin-xl-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-4[data-v-9ace6422]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-5[data-v-9ace6422]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-6[data-v-9ace6422]{margin-left:52%}.col-no-margin-xl-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-7[data-v-9ace6422]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-8[data-v-9ace6422]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-9[data-v-9ace6422]{margin-left:78%}.col-no-margin-xl-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-10[data-v-9ace6422]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xl-11[data-v-9ace6422]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-9ace6422]{display:none!important}.xl-visible[data-v-9ace6422]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-1[data-v-9ace6422]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-9ace6422]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-2[data-v-9ace6422]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-9ace6422]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-3[data-v-9ace6422]{margin-left:26%}.col-no-margin-xxl-3[data-v-9ace6422]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-4[data-v-9ace6422]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-9ace6422]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-5[data-v-9ace6422]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-9ace6422]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-6[data-v-9ace6422]{margin-left:52%}.col-no-margin-xxl-6[data-v-9ace6422]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-7[data-v-9ace6422]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-9ace6422]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-8[data-v-9ace6422]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-9ace6422]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-9[data-v-9ace6422]{margin-left:78%}.col-no-margin-xxl-9[data-v-9ace6422]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-10[data-v-9ace6422]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-9ace6422]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-9ace6422]:first-child{margin-left:0}.col-offset-xxl-11[data-v-9ace6422]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-9ace6422]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-9ace6422]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-9ace6422]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-9ace6422]{display:none!important}.xxl-visible[data-v-9ace6422]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-9ace6422]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-9ace6422]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-9ace6422]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-9ace6422]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-9ace6422]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-9ace6422]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-9ace6422]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-9ace6422]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-9ace6422]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-9ace6422]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-9ace6422]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-9ace6422]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-9ace6422]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-9ace6422]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-9ace6422]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-9ace6422]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-9ace6422]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-9ace6422]{display:none!important}}.vertical-center[data-v-9ace6422]{display:flex;align-items:center}.horizontal-center[data-v-9ace6422]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-9ace6422]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-9ace6422]{display:none!important}.no-content[data-v-9ace6422]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-9ace6422]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-9ace6422]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-9ace6422]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-9ace6422]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-9ace6422]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-9ace6422]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-9ace6422],.btn[data-v-9ace6422],button[data-v-9ace6422]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-9ace6422],.btn-default[type=submit][data-v-9ace6422],.btn.btn-primary[data-v-9ace6422],.btn[type=submit][data-v-9ace6422],button.btn-primary[data-v-9ace6422],button[type=submit][data-v-9ace6422]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-9ace6422]:hover,.btn[data-v-9ace6422]:hover,button[data-v-9ace6422]:hover{color:#35b870}.btn .icon[data-v-9ace6422],.btn-default .icon[data-v-9ace6422],button .icon[data-v-9ace6422]{margin-right:.5em}.btn-default[data-v-9ace6422]:disabled,.btn-default[disabled][data-v-9ace6422],.btn[data-v-9ace6422]:disabled,.btn[disabled][data-v-9ace6422],button[data-v-9ace6422]:disabled,button[disabled][data-v-9ace6422]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-9ace6422]{cursor:grab!important}.dragged[data-v-9ace6422]{opacity:.5!important}input[type=password][data-v-9ace6422],input[type=text][data-v-9ace6422]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-9ace6422]:focus,input[type=text][data-v-9ace6422]:focus{border:1px solid #35b870}button[data-v-9ace6422],input[data-v-9ace6422]{outline:none}input[type=text][data-v-9ace6422]:hover,textarea[data-v-9ace6422]:hover{border:1px solid #9cdfb0}ul[data-v-9ace6422]{margin:0;padding:0;list-style:none}a[data-v-9ace6422]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-9ace6422]:hover{color:#35b870}[data-v-9ace6422]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-9ace6422]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-9ace6422]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-9ace6422]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-9ace6422]{color:#ad1717}body[data-v-9ace6422]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-9ace6422] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-9ace6422] .nav .path{cursor:pointer}.browser[data-v-9ace6422] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-9ace6422] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-9ace6422]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-9ace6422]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-9ace6422],input[type=number][data-v-9ace6422],input[type=password][data-v-9ace6422],input[type=search][data-v-9ace6422],input[type=text][data-v-9ace6422],input[type=time][data-v-9ace6422]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-9ace6422]:hover,input[type=number][data-v-9ace6422]:hover,input[type=password][data-v-9ace6422]:hover,input[type=search][data-v-9ace6422]:hover,input[type=text][data-v-9ace6422]:hover,input[type=time][data-v-9ace6422]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-9ace6422]:focus,input[type=number][data-v-9ace6422]:focus,input[type=password][data-v-9ace6422]:focus,input[type=search][data-v-9ace6422]:focus,input[type=text][data-v-9ace6422]:focus,input[type=time][data-v-9ace6422]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-9ace6422],input[type=number].with-icon[data-v-9ace6422],input[type=password].with-icon[data-v-9ace6422],input[type=search].with-icon[data-v-9ace6422],input[type=text].with-icon[data-v-9ace6422],input[type=time].with-icon[data-v-9ace6422]{padding-left:.3em}input[type=search][data-v-9ace6422],input[type=text][data-v-9ace6422]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-9ace6422]{animation-fill-mode:both;animation-name:fadeIn-9ace6422;-webkit-animation-name:fadeIn-9ace6422}.fade-in[data-v-9ace6422],.fade-out[data-v-9ace6422]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-9ace6422]{animation-fill-mode:both;animation-name:fadeOut-9ace6422;-webkit-animation-name:fadeOut-9ace6422}.expand[data-v-9ace6422]{animation-fill-mode:both;animation-name:expand-9ace6422;-webkit-animation-name:expand-9ace6422}.expand[data-v-9ace6422],.shrink[data-v-9ace6422]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-9ace6422]{animation-fill-mode:both;animation-name:shrink-9ace6422;-webkit-animation-name:shrink-9ace6422}.fold[data-v-9ace6422]{animation-fill-mode:both;animation-name:fold-9ace6422;-webkit-animation-name:fold-9ace6422}.fold[data-v-9ace6422],.unfold[data-v-9ace6422]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-9ace6422]{animation-fill-mode:both;animation-name:unfold-9ace6422;-webkit-animation-name:unfold-9ace6422}.dim[data-v-9ace6422]{animation-fill-mode:both;animation-name:dim-9ace6422;-webkit-animation-name:dim-9ace6422}.brighten[data-v-9ace6422],.dim[data-v-9ace6422]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-9ace6422]{animation-fill-mode:both;animation-name:brighten-9ace6422;-webkit-animation-name:brighten-9ace6422}@keyframes fadeIn-9ace6422{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-9ace6422{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-9ace6422{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-9ace6422{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-9ace6422{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-9ace6422{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-9ace6422{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-9ace6422{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-9ace6422]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-9ace6422;-webkit-animation-name:glow-9ace6422}.loop[data-v-9ace6422]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-9ace6422{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-9ace6422]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-9ace6422]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-9ace6422]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-9ace6422]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-9ace6422]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-9ace6422]{background:#8fefb7}.track.selected[data-v-9ace6422]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover.top[data-v-9ace6422]{border-top:2px solid #35b870}.track.dragover.bottom[data-v-9ace6422]{border-bottom:2px solid #35b870}.track.dragging[data-v-9ace6422]{opacity:.5}.track[data-v-9ace6422]::-moz-selection{background:transparent!important}.track[data-v-9ace6422]::selection{background:transparent!important}.track .title[data-v-9ace6422]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-9ace6422],.track .artist[data-v-9ace6422]{display:inline-flex;font-size:.9em}.track .artist[data-v-9ace6422]{opacity:.85}.track .album[data-v-9ace6422]{opacity:.7}.track .artist[data-v-9ace6422]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-9ace6422]{display:none}}.track .album[data-v-9ace6422]:before{content:"•";margin-right:.25em}.track .right-side[data-v-9ace6422]{display:flex;justify-content:flex-end}.track .actions[data-v-9ace6422],.track .duration[data-v-9ace6422]{display:inline-flex;align-items:center}.track .duration[data-v-9ace6422]{font-size:.85em;opacity:.7}.track .actions[data-v-9ace6422] button{opacity:.7}.library[data-v-9ace6422]{width:100%;display:flex;flex-direction:column}.library .results[data-v-9ace6422]{overflow:auto;height:100%}.library .results .track[data-v-9ace6422]{display:flex;align-items:center;justify-content:left}.library .results .track .left-side[data-v-9ace6422]{display:inline-flex;align-items:center}.library .results .icon[data-v-9ace6422]{opacity:.5;margin-right:.75em}.library[data-v-9ace6422] .header{display:flex;width:100%;align-items:center}.library[data-v-9ace6422] .header .search-box{width:70%}.library[data-v-9ace6422] .header .search-box input[type=search]{width:100%}.library[data-v-9ace6422] .header .buttons{width:30%;display:inline-flex;justify-content:right;margin:0}.col-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5a75ab98]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5a75ab98]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5a75ab98]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5a75ab98]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5a75ab98]:first-child{margin-left:26%!important}.col-offset-3[data-v-5a75ab98]:not(first-child){margin-left:30%!important}.col-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5a75ab98]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5a75ab98]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5a75ab98]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5a75ab98]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5a75ab98]:first-child{margin-left:52%!important}.col-offset-6[data-v-5a75ab98]:not(first-child){margin-left:56%!important}.col-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5a75ab98]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5a75ab98]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5a75ab98]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5a75ab98]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5a75ab98]:first-child{margin-left:78%!important}.col-offset-9[data-v-5a75ab98]:not(first-child){margin-left:82%!important}.col-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5a75ab98]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5a75ab98]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5a75ab98]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5a75ab98]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-s-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-s-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-s-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-s-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5a75ab98]{display:none!important}.s-visible[data-v-5a75ab98]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-m-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-m-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-m-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-m-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5a75ab98]{display:none!important}.m-visible[data-v-5a75ab98]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-l-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-l-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-l-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-l-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5a75ab98]{display:none!important}.l-visible[data-v-5a75ab98]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-xl-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-xl-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-xl-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xl-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5a75ab98]{display:none!important}.xl-visible[data-v-5a75ab98]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5a75ab98]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5a75ab98]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5a75ab98]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5a75ab98]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5a75ab98]{margin-left:26%}.col-no-margin-xxl-3[data-v-5a75ab98]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5a75ab98]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5a75ab98]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5a75ab98]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5a75ab98]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5a75ab98]{margin-left:52%}.col-no-margin-xxl-6[data-v-5a75ab98]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5a75ab98]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5a75ab98]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5a75ab98]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5a75ab98]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5a75ab98]{margin-left:78%}.col-no-margin-xxl-9[data-v-5a75ab98]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5a75ab98]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5a75ab98]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5a75ab98]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5a75ab98]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5a75ab98]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5a75ab98]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5a75ab98]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5a75ab98]{display:none!important}.xxl-visible[data-v-5a75ab98]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5a75ab98]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5a75ab98]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5a75ab98]{display:none!important}}.vertical-center[data-v-5a75ab98]{display:flex;align-items:center}.horizontal-center[data-v-5a75ab98]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5a75ab98]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5a75ab98]{display:none!important}.no-content[data-v-5a75ab98]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5a75ab98]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5a75ab98]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5a75ab98]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5a75ab98]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5a75ab98]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5a75ab98]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5a75ab98],.btn[data-v-5a75ab98],button[data-v-5a75ab98]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5a75ab98],.btn-default[type=submit][data-v-5a75ab98],.btn.btn-primary[data-v-5a75ab98],.btn[type=submit][data-v-5a75ab98],button.btn-primary[data-v-5a75ab98],button[type=submit][data-v-5a75ab98]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5a75ab98]:hover,.btn[data-v-5a75ab98]:hover,button[data-v-5a75ab98]:hover{color:#35b870}.btn .icon[data-v-5a75ab98],.btn-default .icon[data-v-5a75ab98],button .icon[data-v-5a75ab98]{margin-right:.5em}.btn-default[data-v-5a75ab98]:disabled,.btn-default[disabled][data-v-5a75ab98],.btn[data-v-5a75ab98]:disabled,.btn[disabled][data-v-5a75ab98],button[data-v-5a75ab98]:disabled,button[disabled][data-v-5a75ab98]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5a75ab98]{cursor:grab!important}.dragged[data-v-5a75ab98]{opacity:.5!important}input[type=password][data-v-5a75ab98],input[type=text][data-v-5a75ab98]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5a75ab98]:focus,input[type=text][data-v-5a75ab98]:focus{border:1px solid #35b870}button[data-v-5a75ab98],input[data-v-5a75ab98]{outline:none}input[type=text][data-v-5a75ab98]:hover,textarea[data-v-5a75ab98]:hover{border:1px solid #9cdfb0}ul[data-v-5a75ab98]{margin:0;padding:0;list-style:none}a[data-v-5a75ab98]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5a75ab98]:hover{color:#35b870}[data-v-5a75ab98]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5a75ab98]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5a75ab98]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5a75ab98]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5a75ab98]{color:#ad1717}body[data-v-5a75ab98]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5a75ab98] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5a75ab98] .nav .path{cursor:pointer}.browser[data-v-5a75ab98] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5a75ab98] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5a75ab98]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5a75ab98]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5a75ab98],input[type=number][data-v-5a75ab98],input[type=password][data-v-5a75ab98],input[type=search][data-v-5a75ab98],input[type=text][data-v-5a75ab98],input[type=time][data-v-5a75ab98]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5a75ab98]:hover,input[type=number][data-v-5a75ab98]:hover,input[type=password][data-v-5a75ab98]:hover,input[type=search][data-v-5a75ab98]:hover,input[type=text][data-v-5a75ab98]:hover,input[type=time][data-v-5a75ab98]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5a75ab98]:focus,input[type=number][data-v-5a75ab98]:focus,input[type=password][data-v-5a75ab98]:focus,input[type=search][data-v-5a75ab98]:focus,input[type=text][data-v-5a75ab98]:focus,input[type=time][data-v-5a75ab98]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5a75ab98],input[type=number].with-icon[data-v-5a75ab98],input[type=password].with-icon[data-v-5a75ab98],input[type=search].with-icon[data-v-5a75ab98],input[type=text].with-icon[data-v-5a75ab98],input[type=time].with-icon[data-v-5a75ab98]{padding-left:.3em}input[type=search][data-v-5a75ab98],input[type=text][data-v-5a75ab98]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5a75ab98]{animation-fill-mode:both;animation-name:fadeIn-5a75ab98;-webkit-animation-name:fadeIn-5a75ab98}.fade-in[data-v-5a75ab98],.fade-out[data-v-5a75ab98]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5a75ab98]{animation-fill-mode:both;animation-name:fadeOut-5a75ab98;-webkit-animation-name:fadeOut-5a75ab98}.expand[data-v-5a75ab98]{animation-fill-mode:both;animation-name:expand-5a75ab98;-webkit-animation-name:expand-5a75ab98}.expand[data-v-5a75ab98],.shrink[data-v-5a75ab98]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-5a75ab98]{animation-fill-mode:both;animation-name:shrink-5a75ab98;-webkit-animation-name:shrink-5a75ab98}.fold[data-v-5a75ab98]{animation-fill-mode:both;animation-name:fold-5a75ab98;-webkit-animation-name:fold-5a75ab98}.fold[data-v-5a75ab98],.unfold[data-v-5a75ab98]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-5a75ab98]{animation-fill-mode:both;animation-name:unfold-5a75ab98;-webkit-animation-name:unfold-5a75ab98}.dim[data-v-5a75ab98]{animation-fill-mode:both;animation-name:dim-5a75ab98;-webkit-animation-name:dim-5a75ab98}.brighten[data-v-5a75ab98],.dim[data-v-5a75ab98]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-5a75ab98]{animation-fill-mode:both;animation-name:brighten-5a75ab98;-webkit-animation-name:brighten-5a75ab98}@keyframes fadeIn-5a75ab98{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5a75ab98{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5a75ab98{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5a75ab98{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5a75ab98{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5a75ab98{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5a75ab98{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5a75ab98{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5a75ab98]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5a75ab98;-webkit-animation-name:glow-5a75ab98}.loop[data-v-5a75ab98]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5a75ab98{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5a75ab98]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5a75ab98]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5a75ab98]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-5a75ab98]{height:100%;background:#fff;display:flex;flex-direction:row-reverse}main .view-container[data-v-5a75ab98]{display:flex;flex-grow:1;overflow:auto}main[data-v-5a75ab98] button{background:none;padding:.5em .75em;border:0}main[data-v-5a75ab98] button:hover{border:0;color:#35b870}main[data-v-5a75ab98] a{color:#000;opacity:.65}main[data-v-5a75ab98] a:hover{opacity:.75;border-bottom:1px dotted}.playlists-modal-container[data-v-5a75ab98] .body{display:flex;flex-direction:column;padding:0!important}.playlists-modal-container[data-v-5a75ab98] .filter{padding:.33em;background-color:#e4eae8;border-bottom:1px solid #ddd}.playlists-modal-container[data-v-5a75ab98] .filter input{width:90%}.playlists-modal-container[data-v-5a75ab98] .playlists{overflow:auto;padding:1.5em}.playlists-modal-container[data-v-5a75ab98] .playlists label{display:flex;align-items:center}.playlists-modal-container[data-v-5a75ab98] .playlists label:not(:last-child){margin-bottom:.5em}.playlists-modal-container[data-v-5a75ab98] .playlists label .name{margin-left:.5em}.track-info-container[data-v-5a75ab98] .body{height:15em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.track-info-container[data-v-5a75ab98] .body{width:25em}}@media screen and (min-width:769px){.track-info-container[data-v-5a75ab98] .body{width:35em}}.track-info-container[data-v-5a75ab98] .body .file{-webkit-user-select:text;-moz-user-select:text;user-select:text} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4084.0a0db151.css b/platypush/backend/http/webapp/dist/static/css/4084.0a0db151.css deleted file mode 100644 index 7ca5bd41f6..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/4084.0a0db151.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1eab04fa]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1eab04fa]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1eab04fa]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1eab04fa]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1eab04fa]:first-child{margin-left:26%!important}.col-offset-3[data-v-1eab04fa]:not(first-child){margin-left:30%!important}.col-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1eab04fa]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1eab04fa]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1eab04fa]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1eab04fa]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1eab04fa]:first-child{margin-left:52%!important}.col-offset-6[data-v-1eab04fa]:not(first-child){margin-left:56%!important}.col-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1eab04fa]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1eab04fa]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1eab04fa]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1eab04fa]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1eab04fa]:first-child{margin-left:78%!important}.col-offset-9[data-v-1eab04fa]:not(first-child){margin-left:82%!important}.col-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1eab04fa]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1eab04fa]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1eab04fa]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1eab04fa]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-s-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-s-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-s-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-s-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1eab04fa]{display:none!important}.s-visible[data-v-1eab04fa]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-m-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-m-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-m-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-m-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1eab04fa]{display:none!important}.m-visible[data-v-1eab04fa]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-l-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-l-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-l-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-l-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1eab04fa]{display:none!important}.l-visible[data-v-1eab04fa]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-xl-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-xl-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-xl-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xl-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1eab04fa]{display:none!important}.xl-visible[data-v-1eab04fa]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1eab04fa]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1eab04fa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1eab04fa]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1eab04fa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1eab04fa]{margin-left:26%}.col-no-margin-xxl-3[data-v-1eab04fa]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1eab04fa]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1eab04fa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1eab04fa]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1eab04fa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1eab04fa]{margin-left:52%}.col-no-margin-xxl-6[data-v-1eab04fa]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1eab04fa]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1eab04fa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1eab04fa]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1eab04fa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1eab04fa]{margin-left:78%}.col-no-margin-xxl-9[data-v-1eab04fa]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1eab04fa]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1eab04fa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1eab04fa]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1eab04fa]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1eab04fa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1eab04fa]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1eab04fa]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1eab04fa]{display:none!important}.xxl-visible[data-v-1eab04fa]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1eab04fa]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1eab04fa]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1eab04fa]{display:none!important}}.vertical-center[data-v-1eab04fa]{display:flex;align-items:center}.horizontal-center[data-v-1eab04fa]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1eab04fa]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1eab04fa]{display:none!important}.no-content[data-v-1eab04fa]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1eab04fa]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1eab04fa]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1eab04fa]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1eab04fa]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1eab04fa]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1eab04fa]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1eab04fa],.btn[data-v-1eab04fa],button[data-v-1eab04fa]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1eab04fa],.btn-default[type=submit][data-v-1eab04fa],.btn.btn-primary[data-v-1eab04fa],.btn[type=submit][data-v-1eab04fa],button.btn-primary[data-v-1eab04fa],button[type=submit][data-v-1eab04fa]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1eab04fa],.btn-default .icon[data-v-1eab04fa],button .icon[data-v-1eab04fa]{margin-right:.5em}input[type=password][data-v-1eab04fa],input[type=text][data-v-1eab04fa]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1eab04fa]:focus,input[type=text][data-v-1eab04fa]:focus{border:1px solid #35b870}button[data-v-1eab04fa],input[data-v-1eab04fa]{outline:none}input[type=text][data-v-1eab04fa]:hover,textarea[data-v-1eab04fa]:hover{border:1px solid #9cdfb0}ul[data-v-1eab04fa]{margin:0;padding:0;list-style:none}a[data-v-1eab04fa]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1eab04fa]:hover{color:#35b870}[data-v-1eab04fa]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1eab04fa]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1eab04fa]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1eab04fa]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1eab04fa]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1eab04fa] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1eab04fa] .nav .path{cursor:pointer}.browser[data-v-1eab04fa] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1eab04fa] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1eab04fa]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1eab04fa],input[type=number][data-v-1eab04fa],input[type=password][data-v-1eab04fa],input[type=search][data-v-1eab04fa],input[type=text][data-v-1eab04fa],input[type=time][data-v-1eab04fa]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1eab04fa]:hover,input[type=number][data-v-1eab04fa]:hover,input[type=password][data-v-1eab04fa]:hover,input[type=search][data-v-1eab04fa]:hover,input[type=text][data-v-1eab04fa]:hover,input[type=time][data-v-1eab04fa]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1eab04fa]:focus,input[type=number][data-v-1eab04fa]:focus,input[type=password][data-v-1eab04fa]:focus,input[type=search][data-v-1eab04fa]:focus,input[type=text][data-v-1eab04fa]:focus,input[type=time][data-v-1eab04fa]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1eab04fa],input[type=number].with-icon[data-v-1eab04fa],input[type=password].with-icon[data-v-1eab04fa],input[type=search].with-icon[data-v-1eab04fa],input[type=text].with-icon[data-v-1eab04fa],input[type=time].with-icon[data-v-1eab04fa]{padding-left:.3em}input[type=search][data-v-1eab04fa],input[type=text][data-v-1eab04fa]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1eab04fa]{animation-fill-mode:both;animation-name:fadeIn-1eab04fa;-webkit-animation-name:fadeIn-1eab04fa}.fade-in[data-v-1eab04fa],.fade-out[data-v-1eab04fa]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1eab04fa]{animation-fill-mode:both;animation-name:fadeOut-1eab04fa;-webkit-animation-name:fadeOut-1eab04fa}@keyframes fadeIn-1eab04fa{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1eab04fa{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1eab04fa]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1eab04fa;-webkit-animation-name:glow-1eab04fa}.loop[data-v-1eab04fa]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1eab04fa{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1eab04fa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1eab04fa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1eab04fa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.text-danger[data-v-1eab04fa]{color:#ad1717}.col-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-40365cea]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-40365cea]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-40365cea]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-40365cea]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-40365cea]:first-child{margin-left:26%!important}.col-offset-3[data-v-40365cea]:not(first-child){margin-left:30%!important}.col-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-40365cea]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-40365cea]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-40365cea]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-40365cea]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-40365cea]:first-child{margin-left:52%!important}.col-offset-6[data-v-40365cea]:not(first-child){margin-left:56%!important}.col-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-40365cea]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-40365cea]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-40365cea]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-40365cea]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-40365cea]:first-child{margin-left:78%!important}.col-offset-9[data-v-40365cea]:not(first-child){margin-left:82%!important}.col-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-40365cea]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-40365cea]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-40365cea]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-40365cea]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-3[data-v-40365cea]{margin-left:26%}.col-no-margin-s-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-6[data-v-40365cea]{margin-left:52%}.col-no-margin-s-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-9[data-v-40365cea]{margin-left:78%}.col-no-margin-s-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-s-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-s-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-40365cea]{display:none!important}.s-visible[data-v-40365cea]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-3[data-v-40365cea]{margin-left:26%}.col-no-margin-m-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-6[data-v-40365cea]{margin-left:52%}.col-no-margin-m-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-9[data-v-40365cea]{margin-left:78%}.col-no-margin-m-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-m-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-m-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-40365cea]{display:none!important}.m-visible[data-v-40365cea]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-3[data-v-40365cea]{margin-left:26%}.col-no-margin-l-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-6[data-v-40365cea]{margin-left:52%}.col-no-margin-l-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-9[data-v-40365cea]{margin-left:78%}.col-no-margin-l-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-l-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-l-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-40365cea]{display:none!important}.l-visible[data-v-40365cea]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-3[data-v-40365cea]{margin-left:26%}.col-no-margin-xl-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-6[data-v-40365cea]{margin-left:52%}.col-no-margin-xl-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-9[data-v-40365cea]{margin-left:78%}.col-no-margin-xl-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-xl-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-40365cea]{display:none!important}.xl-visible[data-v-40365cea]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-40365cea]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-1[data-v-40365cea]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-40365cea]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-40365cea]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-2[data-v-40365cea]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-40365cea]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-40365cea]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-3[data-v-40365cea]{margin-left:26%}.col-no-margin-xxl-3[data-v-40365cea]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-40365cea]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-4[data-v-40365cea]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-40365cea]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-40365cea]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-5[data-v-40365cea]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-40365cea]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-40365cea]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-6[data-v-40365cea]{margin-left:52%}.col-no-margin-xxl-6[data-v-40365cea]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-40365cea]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-7[data-v-40365cea]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-40365cea]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-40365cea]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-8[data-v-40365cea]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-40365cea]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-40365cea]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-9[data-v-40365cea]{margin-left:78%}.col-no-margin-xxl-9[data-v-40365cea]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-40365cea]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-10[data-v-40365cea]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-40365cea]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-40365cea]:first-child{margin-left:0}.col-offset-xxl-11[data-v-40365cea]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-40365cea]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-40365cea]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-40365cea]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-40365cea]{display:none!important}.xxl-visible[data-v-40365cea]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-40365cea]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-40365cea]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-40365cea]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-40365cea]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-40365cea]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-40365cea]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-40365cea]{display:none!important}}.vertical-center[data-v-40365cea]{display:flex;align-items:center}.horizontal-center[data-v-40365cea]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-40365cea]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-40365cea]{display:none!important}.no-content[data-v-40365cea]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-40365cea]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-40365cea]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-40365cea]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-40365cea]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-40365cea]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-40365cea]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-40365cea],.btn[data-v-40365cea],button[data-v-40365cea]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-40365cea],.btn-default[type=submit][data-v-40365cea],.btn.btn-primary[data-v-40365cea],.btn[type=submit][data-v-40365cea],button.btn-primary[data-v-40365cea],button[type=submit][data-v-40365cea]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-40365cea],.btn-default .icon[data-v-40365cea],button .icon[data-v-40365cea]{margin-right:.5em}input[type=password][data-v-40365cea],input[type=text][data-v-40365cea]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-40365cea]:focus,input[type=text][data-v-40365cea]:focus{border:1px solid #35b870}button[data-v-40365cea],input[data-v-40365cea]{outline:none}input[type=text][data-v-40365cea]:hover,textarea[data-v-40365cea]:hover{border:1px solid #9cdfb0}ul[data-v-40365cea]{margin:0;padding:0;list-style:none}a[data-v-40365cea]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-40365cea]:hover{color:#35b870}[data-v-40365cea]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-40365cea]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-40365cea]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-40365cea]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-40365cea]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-40365cea] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-40365cea] .nav .path{cursor:pointer}.browser[data-v-40365cea] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-40365cea] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-40365cea]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-40365cea],input[type=number][data-v-40365cea],input[type=password][data-v-40365cea],input[type=search][data-v-40365cea],input[type=text][data-v-40365cea],input[type=time][data-v-40365cea]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-40365cea]:hover,input[type=number][data-v-40365cea]:hover,input[type=password][data-v-40365cea]:hover,input[type=search][data-v-40365cea]:hover,input[type=text][data-v-40365cea]:hover,input[type=time][data-v-40365cea]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-40365cea]:focus,input[type=number][data-v-40365cea]:focus,input[type=password][data-v-40365cea]:focus,input[type=search][data-v-40365cea]:focus,input[type=text][data-v-40365cea]:focus,input[type=time][data-v-40365cea]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-40365cea],input[type=number].with-icon[data-v-40365cea],input[type=password].with-icon[data-v-40365cea],input[type=search].with-icon[data-v-40365cea],input[type=text].with-icon[data-v-40365cea],input[type=time].with-icon[data-v-40365cea]{padding-left:.3em}input[type=search][data-v-40365cea],input[type=text][data-v-40365cea]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-40365cea]{animation-fill-mode:both;animation-name:fadeIn-40365cea;-webkit-animation-name:fadeIn-40365cea}.fade-in[data-v-40365cea],.fade-out[data-v-40365cea]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-40365cea]{animation-fill-mode:both;animation-name:fadeOut-40365cea;-webkit-animation-name:fadeOut-40365cea}@keyframes fadeIn-40365cea{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-40365cea{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-40365cea]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-40365cea;-webkit-animation-name:glow-40365cea}.loop[data-v-40365cea]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-40365cea{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-40365cea]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-40365cea]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-40365cea]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.app-container[data-v-40365cea]{width:100%;height:100%;position:relative;margin:0;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center}.app-container[data-v-40365cea] .btn-container{margin-bottom:1em}.app-container[data-v-40365cea] .btn-container button{width:15em}.app-container[data-v-40365cea] .btn-container button:hover{border:1px solid #35b870}.token-container{width:100%;display:flex;flex-direction:column;margin-top:.15em}.token-container label{width:100%}.token-container .body{background:#fff;display:flex}.token-container .body .description{text-align:left;padding:1em}.token-container ul{margin:1em .5em}.token-container ul li{list-style:initial}.token-container .form-container{display:flex}.token-container form{max-width:250pt}.token-container form .note{display:block;font-size:.75em;margin:-.75em 0 2em 0}.token-container form span input{width:100%}.token-container input[type=password]{border-radius:1em}.token-container .modal .content{width:90%}.token-container .modal .body{margin-top:0}.token-container .token-container label{display:flex;flex-direction:column}.token-container .token-container label span{display:block;width:100%}.token-container .token-container textarea{width:100%;height:10em;margin-top:1em;border-radius:1em;border:none;background:#d4ffe3;padding:1em}.token-container .btn{border-radius:1em}@media screen and (max-width:calc(1024px - 1px)){.token-container .body{flex-direction:column}.form-container{justify-content:center;box-shadow:0 -2.5px 4px 0 silver;margin-top:-1em;padding-top:1em}}@media screen and (min-width:1024px){.token-container{justify-content:center;align-items:center}.token-container .description{width:50%}.token-container .form-container{width:50%;justify-content:right;padding:1em}.token-container .form-container label{text-align:left}.token-container .body{max-width:650pt;flex-direction:row;justify-content:left;margin-top:1.5em;border-radius:1em;border:1px solid #ddd}}.col-1[data-v-f548985a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-1[data-v-f548985a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f548985a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f548985a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f548985a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-2[data-v-f548985a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f548985a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f548985a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f548985a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-3[data-v-f548985a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f548985a]:first-child{margin-left:26%!important}.col-offset-3[data-v-f548985a]:not(first-child){margin-left:30%!important}.col-4[data-v-f548985a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-4[data-v-f548985a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f548985a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f548985a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f548985a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-5[data-v-f548985a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f548985a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f548985a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f548985a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-6[data-v-f548985a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f548985a]:first-child{margin-left:52%!important}.col-offset-6[data-v-f548985a]:not(first-child){margin-left:56%!important}.col-7[data-v-f548985a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-7[data-v-f548985a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f548985a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f548985a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f548985a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-8[data-v-f548985a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f548985a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f548985a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f548985a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-9[data-v-f548985a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f548985a]:first-child{margin-left:78%!important}.col-offset-9[data-v-f548985a]:not(first-child){margin-left:82%!important}.col-10[data-v-f548985a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-10[data-v-f548985a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f548985a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f548985a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f548985a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f548985a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f548985a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-1[data-v-f548985a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f548985a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f548985a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-2[data-v-f548985a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f548985a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f548985a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-3[data-v-f548985a]{margin-left:26%}.col-no-margin-s-3[data-v-f548985a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f548985a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-4[data-v-f548985a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f548985a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f548985a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-5[data-v-f548985a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f548985a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f548985a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-6[data-v-f548985a]{margin-left:52%}.col-no-margin-s-6[data-v-f548985a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f548985a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-7[data-v-f548985a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f548985a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f548985a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-8[data-v-f548985a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f548985a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f548985a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-9[data-v-f548985a]{margin-left:78%}.col-no-margin-s-9[data-v-f548985a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f548985a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-10[data-v-f548985a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f548985a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f548985a]:first-child{margin-left:0}.col-offset-s-11[data-v-f548985a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f548985a]{display:none!important}.s-visible[data-v-f548985a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f548985a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-1[data-v-f548985a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f548985a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f548985a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-2[data-v-f548985a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f548985a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f548985a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-3[data-v-f548985a]{margin-left:26%}.col-no-margin-m-3[data-v-f548985a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f548985a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-4[data-v-f548985a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f548985a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f548985a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-5[data-v-f548985a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f548985a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f548985a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-6[data-v-f548985a]{margin-left:52%}.col-no-margin-m-6[data-v-f548985a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f548985a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-7[data-v-f548985a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f548985a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f548985a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-8[data-v-f548985a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f548985a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f548985a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-9[data-v-f548985a]{margin-left:78%}.col-no-margin-m-9[data-v-f548985a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f548985a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-10[data-v-f548985a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f548985a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f548985a]:first-child{margin-left:0}.col-offset-m-11[data-v-f548985a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f548985a]{display:none!important}.m-visible[data-v-f548985a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f548985a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-1[data-v-f548985a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f548985a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f548985a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-2[data-v-f548985a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f548985a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f548985a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-3[data-v-f548985a]{margin-left:26%}.col-no-margin-l-3[data-v-f548985a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f548985a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-4[data-v-f548985a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f548985a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f548985a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-5[data-v-f548985a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f548985a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f548985a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-6[data-v-f548985a]{margin-left:52%}.col-no-margin-l-6[data-v-f548985a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f548985a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-7[data-v-f548985a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f548985a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f548985a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-8[data-v-f548985a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f548985a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f548985a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-9[data-v-f548985a]{margin-left:78%}.col-no-margin-l-9[data-v-f548985a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f548985a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-10[data-v-f548985a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f548985a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f548985a]:first-child{margin-left:0}.col-offset-l-11[data-v-f548985a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f548985a]{display:none!important}.l-visible[data-v-f548985a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f548985a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-1[data-v-f548985a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f548985a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f548985a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-2[data-v-f548985a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f548985a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f548985a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-3[data-v-f548985a]{margin-left:26%}.col-no-margin-xl-3[data-v-f548985a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f548985a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-4[data-v-f548985a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f548985a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f548985a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-5[data-v-f548985a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f548985a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f548985a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-6[data-v-f548985a]{margin-left:52%}.col-no-margin-xl-6[data-v-f548985a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f548985a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-7[data-v-f548985a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f548985a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f548985a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-8[data-v-f548985a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f548985a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f548985a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-9[data-v-f548985a]{margin-left:78%}.col-no-margin-xl-9[data-v-f548985a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f548985a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-10[data-v-f548985a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f548985a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f548985a]:first-child{margin-left:0}.col-offset-xl-11[data-v-f548985a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f548985a]{display:none!important}.xl-visible[data-v-f548985a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f548985a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f548985a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f548985a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f548985a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f548985a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f548985a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f548985a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f548985a]{margin-left:26%}.col-no-margin-xxl-3[data-v-f548985a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f548985a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f548985a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f548985a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f548985a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f548985a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f548985a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f548985a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f548985a]{margin-left:52%}.col-no-margin-xxl-6[data-v-f548985a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f548985a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f548985a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f548985a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f548985a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f548985a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f548985a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f548985a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f548985a]{margin-left:78%}.col-no-margin-xxl-9[data-v-f548985a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f548985a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f548985a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f548985a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f548985a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f548985a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f548985a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f548985a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f548985a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f548985a]{display:none!important}.xxl-visible[data-v-f548985a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f548985a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f548985a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f548985a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f548985a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f548985a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f548985a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f548985a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f548985a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f548985a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f548985a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f548985a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f548985a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f548985a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f548985a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f548985a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f548985a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f548985a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f548985a]{display:none!important}}.vertical-center[data-v-f548985a]{display:flex;align-items:center}.horizontal-center[data-v-f548985a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f548985a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f548985a]{display:none!important}.no-content[data-v-f548985a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f548985a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f548985a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f548985a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f548985a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f548985a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f548985a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f548985a],.btn[data-v-f548985a],button[data-v-f548985a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f548985a],.btn-default[type=submit][data-v-f548985a],.btn.btn-primary[data-v-f548985a],.btn[type=submit][data-v-f548985a],button.btn-primary[data-v-f548985a],button[type=submit][data-v-f548985a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f548985a],.btn-default .icon[data-v-f548985a],button .icon[data-v-f548985a]{margin-right:.5em}input[type=password][data-v-f548985a],input[type=text][data-v-f548985a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f548985a]:focus,input[type=text][data-v-f548985a]:focus{border:1px solid #35b870}button[data-v-f548985a],input[data-v-f548985a]{outline:none}input[type=text][data-v-f548985a]:hover,textarea[data-v-f548985a]:hover{border:1px solid #9cdfb0}ul[data-v-f548985a]{margin:0;padding:0;list-style:none}a[data-v-f548985a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f548985a]:hover{color:#35b870}[data-v-f548985a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f548985a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f548985a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f548985a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f548985a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f548985a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f548985a] .nav .path{cursor:pointer}.browser[data-v-f548985a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f548985a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-f548985a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f548985a],input[type=number][data-v-f548985a],input[type=password][data-v-f548985a],input[type=search][data-v-f548985a],input[type=text][data-v-f548985a],input[type=time][data-v-f548985a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-f548985a]:hover,input[type=number][data-v-f548985a]:hover,input[type=password][data-v-f548985a]:hover,input[type=search][data-v-f548985a]:hover,input[type=text][data-v-f548985a]:hover,input[type=time][data-v-f548985a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f548985a]:focus,input[type=number][data-v-f548985a]:focus,input[type=password][data-v-f548985a]:focus,input[type=search][data-v-f548985a]:focus,input[type=text][data-v-f548985a]:focus,input[type=time][data-v-f548985a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f548985a],input[type=number].with-icon[data-v-f548985a],input[type=password].with-icon[data-v-f548985a],input[type=search].with-icon[data-v-f548985a],input[type=text].with-icon[data-v-f548985a],input[type=time].with-icon[data-v-f548985a]{padding-left:.3em}input[type=search][data-v-f548985a],input[type=text][data-v-f548985a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f548985a]{animation-fill-mode:both;animation-name:fadeIn-f548985a;-webkit-animation-name:fadeIn-f548985a}.fade-in[data-v-f548985a],.fade-out[data-v-f548985a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f548985a]{animation-fill-mode:both;animation-name:fadeOut-f548985a;-webkit-animation-name:fadeOut-f548985a}@keyframes fadeIn-f548985a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f548985a{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-f548985a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f548985a;-webkit-animation-name:glow-f548985a}.loop[data-v-f548985a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f548985a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f548985a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f548985a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f548985a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.settings-container .body[data-v-f548985a]{width:100%;height:100%;display:flex;justify-content:center}.settings-container .modal .body[data-v-f548985a]{height:auto}.settings-container form label[data-v-f548985a]{display:block;text-align:center}.settings-container .users-list[data-v-f548985a]{background:#fff;margin-top:.15em;height:-moz-max-content;height:max-content}.settings-container .users-list .user[data-v-f548985a]{display:flex;align-items:center;padding:.75em}.settings-container .users-list .user[data-v-f548985a]:not(:last-child){box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user[data-v-f548985a]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.settings-container .users-list .user .actions[data-v-f548985a]{display:inline-flex;justify-content:right}.settings-container .users-list .user .actions button[data-v-f548985a]{background:none!important;width:-moz-min-content;width:min-content}@media screen and (max-width:1024px){.settings-container .users-list[data-v-f548985a]{width:100%}}@media screen and (min-width:1024px){.settings-container .users-list[data-v-f548985a]{min-width:400pt;max-width:600pt;margin-top:1em;border-radius:1em;box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user[data-v-f548985a]{border-radius:0}.settings-container .users-list .user[data-v-f548985a]:first-child{border-top-left-radius:1em;border-top-right-radius:1em}.settings-container .users-list .user[data-v-f548985a]:last-child{border-bottom-left-radius:1em;border-bottom-right-radius:1em}}[data-v-f548985a] .dropdown-container button{background:none!important}[data-v-f548985a] .modal .btn{border-radius:1em}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.settings-container{width:100%;height:100%;display:flex;flex-direction:column}.settings-container header{width:100%;height:3em;display:flex;background:#fff;box-shadow:0 3px 2px -1px silver;padding:.5em}.settings-container header select{width:100%}.settings-container header button{padding-top:.25em}.settings-container main{height:calc(100% - 3em);overflow:auto}.settings-container button{background:none;border:none}.settings-container button:hover{border:none;color:#35b870}.settings-container form{padding:0;border:none;border-radius:0;box-shadow:none}.settings-container form input{margin-bottom:1em}.settings-container input[type=password]{border-radius:1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4106.2a5e087e.css b/platypush/backend/http/webapp/dist/static/css/4106.2a5e087e.css new file mode 100644 index 0000000000..28fe8655fe --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/4106.2a5e087e.css @@ -0,0 +1 @@ +.col-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1f40cb6a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1f40cb6a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1f40cb6a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1f40cb6a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1f40cb6a]:first-child{margin-left:26%!important}.col-offset-3[data-v-1f40cb6a]:not(first-child){margin-left:30%!important}.col-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1f40cb6a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1f40cb6a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1f40cb6a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1f40cb6a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1f40cb6a]:first-child{margin-left:52%!important}.col-offset-6[data-v-1f40cb6a]:not(first-child){margin-left:56%!important}.col-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1f40cb6a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1f40cb6a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1f40cb6a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1f40cb6a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1f40cb6a]:first-child{margin-left:78%!important}.col-offset-9[data-v-1f40cb6a]:not(first-child){margin-left:82%!important}.col-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1f40cb6a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1f40cb6a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1f40cb6a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1f40cb6a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-1[data-v-1f40cb6a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-2[data-v-1f40cb6a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-3[data-v-1f40cb6a]{margin-left:26%}.col-no-margin-s-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-4[data-v-1f40cb6a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-5[data-v-1f40cb6a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-6[data-v-1f40cb6a]{margin-left:52%}.col-no-margin-s-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-7[data-v-1f40cb6a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-8[data-v-1f40cb6a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-9[data-v-1f40cb6a]{margin-left:78%}.col-no-margin-s-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-10[data-v-1f40cb6a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-s-11[data-v-1f40cb6a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1f40cb6a]{display:none!important}.s-visible[data-v-1f40cb6a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-1[data-v-1f40cb6a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-2[data-v-1f40cb6a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-3[data-v-1f40cb6a]{margin-left:26%}.col-no-margin-m-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-4[data-v-1f40cb6a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-5[data-v-1f40cb6a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-6[data-v-1f40cb6a]{margin-left:52%}.col-no-margin-m-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-7[data-v-1f40cb6a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-8[data-v-1f40cb6a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-9[data-v-1f40cb6a]{margin-left:78%}.col-no-margin-m-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-10[data-v-1f40cb6a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-m-11[data-v-1f40cb6a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1f40cb6a]{display:none!important}.m-visible[data-v-1f40cb6a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-1[data-v-1f40cb6a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-2[data-v-1f40cb6a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-3[data-v-1f40cb6a]{margin-left:26%}.col-no-margin-l-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-4[data-v-1f40cb6a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-5[data-v-1f40cb6a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-6[data-v-1f40cb6a]{margin-left:52%}.col-no-margin-l-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-7[data-v-1f40cb6a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-8[data-v-1f40cb6a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-9[data-v-1f40cb6a]{margin-left:78%}.col-no-margin-l-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-10[data-v-1f40cb6a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-l-11[data-v-1f40cb6a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1f40cb6a]{display:none!important}.l-visible[data-v-1f40cb6a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-1[data-v-1f40cb6a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-2[data-v-1f40cb6a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-3[data-v-1f40cb6a]{margin-left:26%}.col-no-margin-xl-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-4[data-v-1f40cb6a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-5[data-v-1f40cb6a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-6[data-v-1f40cb6a]{margin-left:52%}.col-no-margin-xl-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-7[data-v-1f40cb6a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-8[data-v-1f40cb6a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-9[data-v-1f40cb6a]{margin-left:78%}.col-no-margin-xl-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-10[data-v-1f40cb6a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xl-11[data-v-1f40cb6a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1f40cb6a]{display:none!important}.xl-visible[data-v-1f40cb6a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1f40cb6a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1f40cb6a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1f40cb6a]{margin-left:26%}.col-no-margin-xxl-3[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1f40cb6a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1f40cb6a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1f40cb6a]{margin-left:52%}.col-no-margin-xxl-6[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1f40cb6a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1f40cb6a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1f40cb6a]{margin-left:78%}.col-no-margin-xxl-9[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1f40cb6a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1f40cb6a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1f40cb6a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1f40cb6a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1f40cb6a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1f40cb6a]{display:none!important}.xxl-visible[data-v-1f40cb6a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1f40cb6a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1f40cb6a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1f40cb6a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1f40cb6a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1f40cb6a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1f40cb6a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1f40cb6a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1f40cb6a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1f40cb6a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1f40cb6a]{display:none!important}}.vertical-center[data-v-1f40cb6a]{display:flex;align-items:center}.horizontal-center[data-v-1f40cb6a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1f40cb6a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1f40cb6a]{display:none!important}.no-content[data-v-1f40cb6a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1f40cb6a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1f40cb6a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1f40cb6a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1f40cb6a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1f40cb6a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1f40cb6a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1f40cb6a],.btn[data-v-1f40cb6a],button[data-v-1f40cb6a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1f40cb6a],.btn-default[type=submit][data-v-1f40cb6a],.btn.btn-primary[data-v-1f40cb6a],.btn[type=submit][data-v-1f40cb6a],button.btn-primary[data-v-1f40cb6a],button[type=submit][data-v-1f40cb6a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1f40cb6a]:hover,.btn[data-v-1f40cb6a]:hover,button[data-v-1f40cb6a]:hover{color:#35b870}.btn .icon[data-v-1f40cb6a],.btn-default .icon[data-v-1f40cb6a],button .icon[data-v-1f40cb6a]{margin-right:.5em}.btn-default[data-v-1f40cb6a]:disabled,.btn-default[disabled][data-v-1f40cb6a],.btn[data-v-1f40cb6a]:disabled,.btn[disabled][data-v-1f40cb6a],button[data-v-1f40cb6a]:disabled,button[disabled][data-v-1f40cb6a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1f40cb6a]{cursor:grab!important}.dragged[data-v-1f40cb6a]{opacity:.5!important}input[type=password][data-v-1f40cb6a],input[type=text][data-v-1f40cb6a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1f40cb6a]:focus,input[type=text][data-v-1f40cb6a]:focus{border:1px solid #35b870}button[data-v-1f40cb6a],input[data-v-1f40cb6a]{outline:none}input[type=text][data-v-1f40cb6a]:hover,textarea[data-v-1f40cb6a]:hover{border:1px solid #9cdfb0}ul[data-v-1f40cb6a]{margin:0;padding:0;list-style:none}a[data-v-1f40cb6a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1f40cb6a]:hover{color:#35b870}[data-v-1f40cb6a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1f40cb6a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1f40cb6a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1f40cb6a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1f40cb6a]{color:#ad1717}body[data-v-1f40cb6a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1f40cb6a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1f40cb6a] .nav .path{cursor:pointer}.browser[data-v-1f40cb6a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1f40cb6a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1f40cb6a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1f40cb6a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1f40cb6a],input[type=number][data-v-1f40cb6a],input[type=password][data-v-1f40cb6a],input[type=search][data-v-1f40cb6a],input[type=text][data-v-1f40cb6a],input[type=time][data-v-1f40cb6a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1f40cb6a]:hover,input[type=number][data-v-1f40cb6a]:hover,input[type=password][data-v-1f40cb6a]:hover,input[type=search][data-v-1f40cb6a]:hover,input[type=text][data-v-1f40cb6a]:hover,input[type=time][data-v-1f40cb6a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1f40cb6a]:focus,input[type=number][data-v-1f40cb6a]:focus,input[type=password][data-v-1f40cb6a]:focus,input[type=search][data-v-1f40cb6a]:focus,input[type=text][data-v-1f40cb6a]:focus,input[type=time][data-v-1f40cb6a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1f40cb6a],input[type=number].with-icon[data-v-1f40cb6a],input[type=password].with-icon[data-v-1f40cb6a],input[type=search].with-icon[data-v-1f40cb6a],input[type=text].with-icon[data-v-1f40cb6a],input[type=time].with-icon[data-v-1f40cb6a]{padding-left:.3em}input[type=search][data-v-1f40cb6a],input[type=text][data-v-1f40cb6a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1f40cb6a]{animation-fill-mode:both;animation-name:fadeIn-1f40cb6a;-webkit-animation-name:fadeIn-1f40cb6a}.fade-in[data-v-1f40cb6a],.fade-out[data-v-1f40cb6a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1f40cb6a]{animation-fill-mode:both;animation-name:fadeOut-1f40cb6a;-webkit-animation-name:fadeOut-1f40cb6a}.expand[data-v-1f40cb6a]{animation-fill-mode:both;animation-name:expand-1f40cb6a;-webkit-animation-name:expand-1f40cb6a}.expand[data-v-1f40cb6a],.shrink[data-v-1f40cb6a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1f40cb6a]{animation-fill-mode:both;animation-name:shrink-1f40cb6a;-webkit-animation-name:shrink-1f40cb6a}.fold[data-v-1f40cb6a]{animation-fill-mode:both;animation-name:fold-1f40cb6a;-webkit-animation-name:fold-1f40cb6a}.fold[data-v-1f40cb6a],.unfold[data-v-1f40cb6a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1f40cb6a]{animation-fill-mode:both;animation-name:unfold-1f40cb6a;-webkit-animation-name:unfold-1f40cb6a}.dim[data-v-1f40cb6a],.index .item[data-v-1f40cb6a]:hover{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:dim-1f40cb6a;-webkit-animation-name:dim-1f40cb6a}.brighten[data-v-1f40cb6a]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-1f40cb6a;-webkit-animation-name:brighten-1f40cb6a}@keyframes fadeIn-1f40cb6a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1f40cb6a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1f40cb6a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1f40cb6a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1f40cb6a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1f40cb6a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1f40cb6a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1f40cb6a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1f40cb6a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1f40cb6a;-webkit-animation-name:glow-1f40cb6a}.loop[data-v-1f40cb6a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1f40cb6a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1f40cb6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1f40cb6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1f40cb6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-1f40cb6a] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-1f40cb6a] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-1f40cb6a] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-1f40cb6a] .item .icon i{font-size:40px}.grid[data-v-1f40cb6a] .item .icon img{width:40px;height:40px}[data-v-1f40cb6a] .nav{height:2.5em}.index[data-v-1f40cb6a]{height:100%;margin:2px 0 -2px 0}.index .items[data-v-1f40cb6a]{height:100%;display:grid;gap:1em;grid-template-columns:repeat(auto-fill,minmax(20em,1fr));overflow-y:auto;padding:1em}.index .item[data-v-1f40cb6a]{width:100%;height:15em;flex:1;position:relative;cursor:pointer}.index .item .image[data-v-1f40cb6a]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;overflow:hidden}.index .item .image img[data-v-1f40cb6a]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;margin:0}.index .item .image i[data-v-1f40cb6a]{font-size:5em}.index .item .name[data-v-1f40cb6a]{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;text-align:center;background-color:rgba(0,0,0,.75);color:#fff;font-size:1.75em;font-weight:700;padding:.5em}.index[data-v-1f40cb6a]{position:relative}.index[data-v-1f40cb6a] main{height:100%;position:relative;overflow:auto}.index[data-v-1f40cb6a] main.album,.index[data-v-1f40cb6a] main.artist{overflow:hidden}.index[data-v-1f40cb6a] main.album .media-results,.index[data-v-1f40cb6a] main.artist .media-results{overflow:auto}.index[data-v-1f40cb6a] main.album .media-results .grid,.index[data-v-1f40cb6a] main.artist .media-results .grid{height:-moz-fit-content;height:fit-content;max-height:100%}.index[data-v-1f40cb6a] main.artist .index{height:100%}.index[data-v-1f40cb6a] main.artist .index .items{height:calc(100% - 5.5em);overflow:auto}.index[data-v-1f40cb6a] main.album .media-results{height:calc(100% - 10.5em)}.index[data-v-1f40cb6a] main .index{height:-moz-fit-content;height:fit-content}.index[data-v-1f40cb6a] main .items{overflow:hidden}.index .header[data-v-1f40cb6a]{background:#f2f7f5;display:flex;align-items:center;padding:1em;box-shadow:0 3px 2px -1px silver;margin-bottom:.5em;position:relative}.index .header.artist[data-v-1f40cb6a]{height:5em;padding:0;background:linear-gradient(rgba(0,20,25,.85),rgba(0,0,0,.85));color:#fff}.index .header.artist .image[data-v-1f40cb6a]{width:5em;height:5em}.index .header.artist .image img[data-v-1f40cb6a]{width:100%;height:95%}.index .header.artist .info[data-v-1f40cb6a]{font-size:1.25em}.index .header.album[data-v-1f40cb6a]{height:10em}.index .header.album .image img[data-v-1f40cb6a]{width:10em;height:10em}.index .header .image[data-v-1f40cb6a]{margin-right:1em}.index .header .image img[data-v-1f40cb6a]{-o-object-fit:cover;object-fit:cover;margin:.25em}.index .header .info h1[data-v-1f40cb6a]{font-size:1.5em;margin:0}.index .header .info .artist a[data-v-1f40cb6a],.index .header .info span[data-v-1f40cb6a]{font-size:1.25em}.index .header .info .details[data-v-1f40cb6a]{font-size:.7em;margin-top:.5em;opacity:.75}.index .header .info .details .row .label[data-v-1f40cb6a]{font-weight:700;margin-right:.5em}.index[data-v-1f40cb6a] .media-results.list .grid{margin-top:-.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4109.e6d6b3d3.css b/platypush/backend/http/webapp/dist/static/css/4109.e6d6b3d3.css deleted file mode 100644 index 817a85e74b..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/4109.e6d6b3d3.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-62215952]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-62215952]:first-child{margin-left:0}.col-no-margin-1[data-v-62215952]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-62215952]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-62215952]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-62215952]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-62215952]:first-child{margin-left:0}.col-no-margin-2[data-v-62215952]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-62215952]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-62215952]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-62215952]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-62215952]:first-child{margin-left:0}.col-no-margin-3[data-v-62215952]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-62215952]:first-child{margin-left:26%!important}.col-offset-3[data-v-62215952]:not(first-child){margin-left:30%!important}.col-4[data-v-62215952]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-62215952]:first-child{margin-left:0}.col-no-margin-4[data-v-62215952]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-62215952]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-62215952]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-62215952]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-62215952]:first-child{margin-left:0}.col-no-margin-5[data-v-62215952]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-62215952]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-62215952]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-62215952]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-62215952]:first-child{margin-left:0}.col-no-margin-6[data-v-62215952]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-62215952]:first-child{margin-left:52%!important}.col-offset-6[data-v-62215952]:not(first-child){margin-left:56%!important}.col-7[data-v-62215952]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-62215952]:first-child{margin-left:0}.col-no-margin-7[data-v-62215952]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-62215952]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-62215952]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-62215952]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-62215952]:first-child{margin-left:0}.col-no-margin-8[data-v-62215952]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-62215952]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-62215952]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-62215952]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-62215952]:first-child{margin-left:0}.col-no-margin-9[data-v-62215952]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-62215952]:first-child{margin-left:78%!important}.col-offset-9[data-v-62215952]:not(first-child){margin-left:82%!important}.col-10[data-v-62215952]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-62215952]:first-child{margin-left:0}.col-no-margin-10[data-v-62215952]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-62215952]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-62215952]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-62215952]:first-child{margin-left:0}.col-no-margin-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-62215952]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-62215952]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-62215952]:first-child{margin-left:0}.col-no-margin-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-62215952]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-62215952]:first-child{margin-left:0}.col-offset-s-1[data-v-62215952]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-62215952]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-62215952]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-62215952]:first-child{margin-left:0}.col-offset-s-2[data-v-62215952]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-62215952]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-62215952]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-62215952]:first-child{margin-left:0}.col-offset-s-3[data-v-62215952]{margin-left:26%}.col-no-margin-s-3[data-v-62215952]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-62215952]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-62215952]:first-child{margin-left:0}.col-offset-s-4[data-v-62215952]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-62215952]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-62215952]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-62215952]:first-child{margin-left:0}.col-offset-s-5[data-v-62215952]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-62215952]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-62215952]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-62215952]:first-child{margin-left:0}.col-offset-s-6[data-v-62215952]{margin-left:52%}.col-no-margin-s-6[data-v-62215952]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-62215952]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-62215952]:first-child{margin-left:0}.col-offset-s-7[data-v-62215952]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-62215952]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-62215952]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-62215952]:first-child{margin-left:0}.col-offset-s-8[data-v-62215952]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-62215952]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-62215952]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-62215952]:first-child{margin-left:0}.col-offset-s-9[data-v-62215952]{margin-left:78%}.col-no-margin-s-9[data-v-62215952]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-62215952]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-62215952]:first-child{margin-left:0}.col-offset-s-10[data-v-62215952]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-62215952]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-62215952]:first-child{margin-left:0}.col-offset-s-11[data-v-62215952]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-62215952]:first-child{margin-left:0}.col-no-margin-s-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-62215952]{display:none!important}.s-visible[data-v-62215952]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-62215952]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-62215952]:first-child{margin-left:0}.col-offset-m-1[data-v-62215952]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-62215952]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-62215952]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-62215952]:first-child{margin-left:0}.col-offset-m-2[data-v-62215952]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-62215952]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-62215952]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-62215952]:first-child{margin-left:0}.col-offset-m-3[data-v-62215952]{margin-left:26%}.col-no-margin-m-3[data-v-62215952]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-62215952]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-62215952]:first-child{margin-left:0}.col-offset-m-4[data-v-62215952]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-62215952]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-62215952]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-62215952]:first-child{margin-left:0}.col-offset-m-5[data-v-62215952]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-62215952]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-62215952]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-62215952]:first-child{margin-left:0}.col-offset-m-6[data-v-62215952]{margin-left:52%}.col-no-margin-m-6[data-v-62215952]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-62215952]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-62215952]:first-child{margin-left:0}.col-offset-m-7[data-v-62215952]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-62215952]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-62215952]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-62215952]:first-child{margin-left:0}.col-offset-m-8[data-v-62215952]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-62215952]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-62215952]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-62215952]:first-child{margin-left:0}.col-offset-m-9[data-v-62215952]{margin-left:78%}.col-no-margin-m-9[data-v-62215952]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-62215952]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-62215952]:first-child{margin-left:0}.col-offset-m-10[data-v-62215952]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-62215952]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-62215952]:first-child{margin-left:0}.col-offset-m-11[data-v-62215952]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-62215952]:first-child{margin-left:0}.col-no-margin-m-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-62215952]{display:none!important}.m-visible[data-v-62215952]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-62215952]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-62215952]:first-child{margin-left:0}.col-offset-l-1[data-v-62215952]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-62215952]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-62215952]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-62215952]:first-child{margin-left:0}.col-offset-l-2[data-v-62215952]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-62215952]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-62215952]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-62215952]:first-child{margin-left:0}.col-offset-l-3[data-v-62215952]{margin-left:26%}.col-no-margin-l-3[data-v-62215952]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-62215952]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-62215952]:first-child{margin-left:0}.col-offset-l-4[data-v-62215952]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-62215952]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-62215952]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-62215952]:first-child{margin-left:0}.col-offset-l-5[data-v-62215952]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-62215952]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-62215952]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-62215952]:first-child{margin-left:0}.col-offset-l-6[data-v-62215952]{margin-left:52%}.col-no-margin-l-6[data-v-62215952]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-62215952]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-62215952]:first-child{margin-left:0}.col-offset-l-7[data-v-62215952]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-62215952]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-62215952]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-62215952]:first-child{margin-left:0}.col-offset-l-8[data-v-62215952]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-62215952]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-62215952]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-62215952]:first-child{margin-left:0}.col-offset-l-9[data-v-62215952]{margin-left:78%}.col-no-margin-l-9[data-v-62215952]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-62215952]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-62215952]:first-child{margin-left:0}.col-offset-l-10[data-v-62215952]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-62215952]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-62215952]:first-child{margin-left:0}.col-offset-l-11[data-v-62215952]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-62215952]:first-child{margin-left:0}.col-no-margin-l-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-62215952]{display:none!important}.l-visible[data-v-62215952]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-62215952]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-1[data-v-62215952]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-62215952]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-62215952]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-2[data-v-62215952]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-62215952]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-62215952]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-3[data-v-62215952]{margin-left:26%}.col-no-margin-xl-3[data-v-62215952]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-62215952]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-4[data-v-62215952]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-62215952]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-62215952]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-5[data-v-62215952]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-62215952]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-62215952]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-6[data-v-62215952]{margin-left:52%}.col-no-margin-xl-6[data-v-62215952]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-62215952]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-7[data-v-62215952]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-62215952]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-62215952]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-8[data-v-62215952]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-62215952]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-62215952]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-9[data-v-62215952]{margin-left:78%}.col-no-margin-xl-9[data-v-62215952]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-62215952]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-10[data-v-62215952]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-62215952]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-62215952]:first-child{margin-left:0}.col-offset-xl-11[data-v-62215952]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-62215952]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-62215952]{display:none!important}.xl-visible[data-v-62215952]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-62215952]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-1[data-v-62215952]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-62215952]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-62215952]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-2[data-v-62215952]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-62215952]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-62215952]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-3[data-v-62215952]{margin-left:26%}.col-no-margin-xxl-3[data-v-62215952]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-62215952]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-4[data-v-62215952]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-62215952]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-62215952]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-5[data-v-62215952]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-62215952]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-62215952]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-6[data-v-62215952]{margin-left:52%}.col-no-margin-xxl-6[data-v-62215952]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-62215952]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-7[data-v-62215952]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-62215952]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-62215952]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-8[data-v-62215952]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-62215952]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-62215952]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-9[data-v-62215952]{margin-left:78%}.col-no-margin-xxl-9[data-v-62215952]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-62215952]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-10[data-v-62215952]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-62215952]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-62215952]:first-child{margin-left:0}.col-offset-xxl-11[data-v-62215952]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-62215952]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-62215952]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-62215952]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-62215952]{display:none!important}.xxl-visible[data-v-62215952]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-62215952]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-62215952]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-62215952]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-62215952]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-62215952]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-62215952]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-62215952]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-62215952]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-62215952]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-62215952]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-62215952]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-62215952]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-62215952]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-62215952]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-62215952]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-62215952]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-62215952]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-62215952]{display:none!important}}.vertical-center[data-v-62215952]{display:flex;align-items:center}.horizontal-center[data-v-62215952]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-62215952]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-62215952]{display:none!important}.no-content[data-v-62215952]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-62215952]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-62215952]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-62215952]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-62215952]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-62215952]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-62215952]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-62215952],.btn[data-v-62215952],button[data-v-62215952]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-62215952],.btn-default[type=submit][data-v-62215952],.btn.btn-primary[data-v-62215952],.btn[type=submit][data-v-62215952],button.btn-primary[data-v-62215952],button[type=submit][data-v-62215952]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-62215952],.btn-default .icon[data-v-62215952],button .icon[data-v-62215952]{margin-right:.5em}input[type=password][data-v-62215952],input[type=text][data-v-62215952]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-62215952]:focus,input[type=text][data-v-62215952]:focus{border:1px solid #35b870}button[data-v-62215952],input[data-v-62215952]{outline:none}input[type=text][data-v-62215952]:hover,textarea[data-v-62215952]:hover{border:1px solid #9cdfb0}ul[data-v-62215952]{margin:0;padding:0;list-style:none}a[data-v-62215952]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-62215952]:hover{color:#35b870}[data-v-62215952]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-62215952]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-62215952]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-62215952]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-62215952]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-62215952] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-62215952] .nav .path{cursor:pointer}.browser[data-v-62215952] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-62215952] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-62215952]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-62215952],input[type=number][data-v-62215952],input[type=password][data-v-62215952],input[type=search][data-v-62215952],input[type=text][data-v-62215952],input[type=time][data-v-62215952]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-62215952]:hover,input[type=number][data-v-62215952]:hover,input[type=password][data-v-62215952]:hover,input[type=search][data-v-62215952]:hover,input[type=text][data-v-62215952]:hover,input[type=time][data-v-62215952]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-62215952]:focus,input[type=number][data-v-62215952]:focus,input[type=password][data-v-62215952]:focus,input[type=search][data-v-62215952]:focus,input[type=text][data-v-62215952]:focus,input[type=time][data-v-62215952]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-62215952],input[type=number].with-icon[data-v-62215952],input[type=password].with-icon[data-v-62215952],input[type=search].with-icon[data-v-62215952],input[type=text].with-icon[data-v-62215952],input[type=time].with-icon[data-v-62215952]{padding-left:.3em}input[type=search][data-v-62215952],input[type=text][data-v-62215952]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-62215952]{animation-fill-mode:both;animation-name:fadeIn-62215952;-webkit-animation-name:fadeIn-62215952}.fade-in[data-v-62215952],.fade-out[data-v-62215952]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-62215952]{animation-fill-mode:both;animation-name:fadeOut-62215952;-webkit-animation-name:fadeOut-62215952}@keyframes fadeIn-62215952{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-62215952{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-62215952]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-62215952;-webkit-animation-name:glow-62215952}.loop[data-v-62215952]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-62215952{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-62215952]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-62215952]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-62215952]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.channel[data-v-62215952],.playlist-container[data-v-62215952]{--banner-height:5em}}@media screen and (min-width:769px){.channel[data-v-62215952],.playlist-container[data-v-62215952]{--banner-height:100px}}.header[data-v-62215952]{border-bottom:1px solid #ddd;margin-bottom:.5em;position:relative;overflow-y:auto}.header .banner[data-v-62215952]{height:var(--banner-height);display:flex;background-color:#000;justify-content:center}.header .banner img[data-v-62215952]{max-width:800px;max-height:100%;flex:1}.header .image[data-v-62215952]{height:100px;margin:-2.5em 2em .5em .5em}.header .image img[data-v-62215952]{height:100%;border-radius:50%}.header .row[data-v-62215952]{display:flex}@media screen and (min-width:1024px){.header .row[data-v-62215952]{flex-direction:row}}.header .row .info[data-v-62215952]{display:flex;flex-direction:column;align-items:center;height:100%;background-color:rgba(0,0,0,.5)}.header .row .info .row[data-v-62215952]{width:100%;display:flex;align-items:center;justify-content:center;flex:1;padding:0 .5em}.header .info-container[data-v-62215952]{position:absolute;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);color:hsla(0,0%,100%,.9);display:flex;flex-direction:column}.header .info-container a[data-v-62215952]{color:hsla(0,0%,100%,.9)!important}.header .info-container a[data-v-62215952]:hover{color:#35b870!important}.header .info-container .title[data-v-62215952]{letter-spacing:.1em;color:hsla(0,0%,100%,.9)!important}.header .info-container .n-items[data-v-62215952]{margin-left:auto;padding:0 .5em}.header .title-container[data-v-62215952]{max-height:var(--banner-height);overflow-y:hidden}.header .title[data-v-62215952]{height:100%;align-content:center;color:#23513a;font-size:1.7em;font-weight:700;margin:.5em 0;-webkit-text-decoration:dotted;text-decoration:dotted}.header .title[data-v-62215952]:hover{color:#35b870}.header .description[data-v-62215952]{font-size:.9em;margin-right:.5em}.media-results[data-v-62215952]{height:calc(100% - var(--banner-height) - 1em)}.media-youtube-channel[data-v-62215952]{height:100%;overflow-y:auto}.media-youtube-channel .channel[data-v-62215952]{height:100%}.media-youtube-channel .header .title-container[data-v-62215952]{flex:1}.media-youtube-channel .header .actions[data-v-62215952]{display:flex;flex-direction:column;align-items:flex-end}.media-youtube-channel .header .actions button[data-v-62215952]{background:#e4e4e4;padding:.5em 1em;border-radius:.5em;cursor:pointer}.media-youtube-channel .header .actions button[data-v-62215952]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.media-youtube-channel .header .subscribers[data-v-62215952]{font-size:.8em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4339.10e2638e.css b/platypush/backend/http/webapp/dist/static/css/4339.10e2638e.css new file mode 100644 index 0000000000..2a2608ec86 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/4339.10e2638e.css @@ -0,0 +1 @@ +.col-1[data-v-b8003940]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-1[data-v-b8003940]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-b8003940]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-b8003940]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-b8003940]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-2[data-v-b8003940]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-b8003940]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-b8003940]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-b8003940]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-3[data-v-b8003940]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-b8003940]:first-child{margin-left:26%!important}.col-offset-3[data-v-b8003940]:not(first-child){margin-left:30%!important}.col-4[data-v-b8003940]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-4[data-v-b8003940]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-b8003940]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-b8003940]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-b8003940]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-5[data-v-b8003940]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-b8003940]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-b8003940]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-b8003940]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-6[data-v-b8003940]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-b8003940]:first-child{margin-left:52%!important}.col-offset-6[data-v-b8003940]:not(first-child){margin-left:56%!important}.col-7[data-v-b8003940]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-7[data-v-b8003940]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-b8003940]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-b8003940]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-b8003940]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-8[data-v-b8003940]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-b8003940]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-b8003940]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-b8003940]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-9[data-v-b8003940]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-b8003940]:first-child{margin-left:78%!important}.col-offset-9[data-v-b8003940]:not(first-child){margin-left:82%!important}.col-10[data-v-b8003940]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-10[data-v-b8003940]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-b8003940]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-b8003940]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-b8003940]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-b8003940]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-b8003940]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-1[data-v-b8003940]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-b8003940]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-b8003940]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-2[data-v-b8003940]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-b8003940]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-b8003940]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-3[data-v-b8003940]{margin-left:26%}.col-no-margin-s-3[data-v-b8003940]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-b8003940]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-4[data-v-b8003940]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-b8003940]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-b8003940]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-5[data-v-b8003940]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-b8003940]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-b8003940]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-6[data-v-b8003940]{margin-left:52%}.col-no-margin-s-6[data-v-b8003940]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-b8003940]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-7[data-v-b8003940]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-b8003940]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-b8003940]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-8[data-v-b8003940]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-b8003940]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-b8003940]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-9[data-v-b8003940]{margin-left:78%}.col-no-margin-s-9[data-v-b8003940]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-b8003940]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-10[data-v-b8003940]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-b8003940]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-b8003940]:first-child{margin-left:0}.col-offset-s-11[data-v-b8003940]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-s-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-b8003940]{display:none!important}.s-visible[data-v-b8003940]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-b8003940]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-1[data-v-b8003940]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-b8003940]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-b8003940]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-2[data-v-b8003940]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-b8003940]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-b8003940]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-3[data-v-b8003940]{margin-left:26%}.col-no-margin-m-3[data-v-b8003940]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-b8003940]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-4[data-v-b8003940]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-b8003940]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-b8003940]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-5[data-v-b8003940]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-b8003940]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-b8003940]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-6[data-v-b8003940]{margin-left:52%}.col-no-margin-m-6[data-v-b8003940]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-b8003940]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-7[data-v-b8003940]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-b8003940]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-b8003940]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-8[data-v-b8003940]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-b8003940]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-b8003940]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-9[data-v-b8003940]{margin-left:78%}.col-no-margin-m-9[data-v-b8003940]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-b8003940]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-10[data-v-b8003940]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-b8003940]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-b8003940]:first-child{margin-left:0}.col-offset-m-11[data-v-b8003940]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-m-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-b8003940]{display:none!important}.m-visible[data-v-b8003940]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-b8003940]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-1[data-v-b8003940]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-b8003940]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-b8003940]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-2[data-v-b8003940]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-b8003940]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-b8003940]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-3[data-v-b8003940]{margin-left:26%}.col-no-margin-l-3[data-v-b8003940]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-b8003940]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-4[data-v-b8003940]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-b8003940]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-b8003940]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-5[data-v-b8003940]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-b8003940]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-b8003940]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-6[data-v-b8003940]{margin-left:52%}.col-no-margin-l-6[data-v-b8003940]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-b8003940]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-7[data-v-b8003940]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-b8003940]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-b8003940]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-8[data-v-b8003940]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-b8003940]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-b8003940]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-9[data-v-b8003940]{margin-left:78%}.col-no-margin-l-9[data-v-b8003940]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-b8003940]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-10[data-v-b8003940]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-b8003940]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-b8003940]:first-child{margin-left:0}.col-offset-l-11[data-v-b8003940]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-l-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-b8003940]{display:none!important}.l-visible[data-v-b8003940]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-b8003940]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-1[data-v-b8003940]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-b8003940]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-b8003940]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-2[data-v-b8003940]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-b8003940]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-b8003940]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-3[data-v-b8003940]{margin-left:26%}.col-no-margin-xl-3[data-v-b8003940]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-b8003940]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-4[data-v-b8003940]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-b8003940]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-b8003940]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-5[data-v-b8003940]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-b8003940]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-b8003940]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-6[data-v-b8003940]{margin-left:52%}.col-no-margin-xl-6[data-v-b8003940]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-b8003940]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-7[data-v-b8003940]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-b8003940]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-b8003940]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-8[data-v-b8003940]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-b8003940]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-b8003940]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-9[data-v-b8003940]{margin-left:78%}.col-no-margin-xl-9[data-v-b8003940]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-b8003940]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-10[data-v-b8003940]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-b8003940]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-b8003940]:first-child{margin-left:0}.col-offset-xl-11[data-v-b8003940]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-b8003940]{display:none!important}.xl-visible[data-v-b8003940]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-b8003940]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-1[data-v-b8003940]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-b8003940]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-b8003940]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-2[data-v-b8003940]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-b8003940]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-b8003940]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-3[data-v-b8003940]{margin-left:26%}.col-no-margin-xxl-3[data-v-b8003940]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-b8003940]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-4[data-v-b8003940]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-b8003940]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-b8003940]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-5[data-v-b8003940]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-b8003940]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-b8003940]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-6[data-v-b8003940]{margin-left:52%}.col-no-margin-xxl-6[data-v-b8003940]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-b8003940]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-7[data-v-b8003940]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-b8003940]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-b8003940]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-8[data-v-b8003940]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-b8003940]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-b8003940]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-9[data-v-b8003940]{margin-left:78%}.col-no-margin-xxl-9[data-v-b8003940]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-b8003940]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-10[data-v-b8003940]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-b8003940]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-b8003940]:first-child{margin-left:0}.col-offset-xxl-11[data-v-b8003940]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-b8003940]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-b8003940]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-b8003940]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-b8003940]{display:none!important}.xxl-visible[data-v-b8003940]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-b8003940]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-b8003940]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-b8003940]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-b8003940]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-b8003940]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-b8003940]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-b8003940]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-b8003940]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-b8003940]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-b8003940]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-b8003940]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-b8003940]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-b8003940]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-b8003940]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-b8003940]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-b8003940]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-b8003940]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-b8003940]{display:none!important}}.vertical-center[data-v-b8003940]{display:flex;align-items:center}.horizontal-center[data-v-b8003940]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-b8003940]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-b8003940]{display:none!important}.no-content[data-v-b8003940]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-b8003940]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-b8003940]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-b8003940]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-b8003940]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-b8003940]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-b8003940]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-b8003940],.btn[data-v-b8003940],button[data-v-b8003940]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-b8003940],.btn-default[type=submit][data-v-b8003940],.btn.btn-primary[data-v-b8003940],.btn[type=submit][data-v-b8003940],button.btn-primary[data-v-b8003940],button[type=submit][data-v-b8003940]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-b8003940]:hover,.btn[data-v-b8003940]:hover,button[data-v-b8003940]:hover{color:#35b870}.btn .icon[data-v-b8003940],.btn-default .icon[data-v-b8003940],button .icon[data-v-b8003940]{margin-right:.5em}.btn-default[data-v-b8003940]:disabled,.btn-default[disabled][data-v-b8003940],.btn[data-v-b8003940]:disabled,.btn[disabled][data-v-b8003940],button[data-v-b8003940]:disabled,button[disabled][data-v-b8003940]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-b8003940]{cursor:grab!important}.dragged[data-v-b8003940]{opacity:.5!important}input[type=password][data-v-b8003940],input[type=text][data-v-b8003940]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-b8003940]:focus,input[type=text][data-v-b8003940]:focus{border:1px solid #35b870}button[data-v-b8003940],input[data-v-b8003940]{outline:none}input[type=text][data-v-b8003940]:hover,textarea[data-v-b8003940]:hover{border:1px solid #9cdfb0}ul[data-v-b8003940]{margin:0;padding:0;list-style:none}a[data-v-b8003940]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-b8003940]:hover{color:#35b870}[data-v-b8003940]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-b8003940]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-b8003940]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-b8003940]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-b8003940]{color:#ad1717}body[data-v-b8003940]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-b8003940] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-b8003940] .nav .path{cursor:pointer}.browser[data-v-b8003940] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-b8003940] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-b8003940]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-b8003940]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-b8003940],input[type=number][data-v-b8003940],input[type=password][data-v-b8003940],input[type=search][data-v-b8003940],input[type=text][data-v-b8003940],input[type=time][data-v-b8003940]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-b8003940]:hover,input[type=number][data-v-b8003940]:hover,input[type=password][data-v-b8003940]:hover,input[type=search][data-v-b8003940]:hover,input[type=text][data-v-b8003940]:hover,input[type=time][data-v-b8003940]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-b8003940]:focus,input[type=number][data-v-b8003940]:focus,input[type=password][data-v-b8003940]:focus,input[type=search][data-v-b8003940]:focus,input[type=text][data-v-b8003940]:focus,input[type=time][data-v-b8003940]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-b8003940],input[type=number].with-icon[data-v-b8003940],input[type=password].with-icon[data-v-b8003940],input[type=search].with-icon[data-v-b8003940],input[type=text].with-icon[data-v-b8003940],input[type=time].with-icon[data-v-b8003940]{padding-left:.3em}input[type=search][data-v-b8003940],input[type=text][data-v-b8003940]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-b8003940]{animation-fill-mode:both;animation-name:fadeIn-b8003940;-webkit-animation-name:fadeIn-b8003940}.fade-in[data-v-b8003940],.fade-out[data-v-b8003940]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-b8003940]{animation-fill-mode:both;animation-name:fadeOut-b8003940;-webkit-animation-name:fadeOut-b8003940}.expand[data-v-b8003940]{animation-fill-mode:both;animation-name:expand-b8003940;-webkit-animation-name:expand-b8003940}.expand[data-v-b8003940],.shrink[data-v-b8003940]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-b8003940]{animation-fill-mode:both;animation-name:shrink-b8003940;-webkit-animation-name:shrink-b8003940}.fold[data-v-b8003940]{animation-fill-mode:both;animation-name:fold-b8003940;-webkit-animation-name:fold-b8003940}.fold[data-v-b8003940],.unfold[data-v-b8003940]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-b8003940]{animation-fill-mode:both;animation-name:unfold-b8003940;-webkit-animation-name:unfold-b8003940}.dim[data-v-b8003940]{animation-fill-mode:both;animation-name:dim-b8003940;-webkit-animation-name:dim-b8003940}.brighten[data-v-b8003940],.dim[data-v-b8003940]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-b8003940]{animation-fill-mode:both;animation-name:brighten-b8003940;-webkit-animation-name:brighten-b8003940}@keyframes fadeIn-b8003940{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-b8003940{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-b8003940{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-b8003940{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-b8003940{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-b8003940{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-b8003940{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-b8003940{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-b8003940]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-b8003940;-webkit-animation-name:glow-b8003940}.loop[data-v-b8003940]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-b8003940{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-b8003940]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-b8003940]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-b8003940]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-b8003940] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-b8003940] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-b8003940] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-b8003940] .item .icon i{font-size:40px}.grid[data-v-b8003940] .item .icon img{width:40px;height:40px}[data-v-b8003940] .nav{height:2.5em}.media-youtube-browser .browser[data-v-b8003940],.media-youtube-browser[data-v-b8003940]{height:100%}.media-youtube-browser .body[data-v-b8003940]{height:calc(100% - 2.5em - 2px);margin-top:2px;overflow-y:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4364.460ea7ea.css b/platypush/backend/http/webapp/dist/static/css/4364.460ea7ea.css new file mode 100644 index 0000000000..2f0f429ab0 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/4364.460ea7ea.css @@ -0,0 +1 @@ +.col-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-b416fbc4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-b416fbc4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-b416fbc4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-b416fbc4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-b416fbc4]:first-child{margin-left:26%!important}.col-offset-3[data-v-b416fbc4]:not(first-child){margin-left:30%!important}.col-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-b416fbc4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-b416fbc4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-b416fbc4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-b416fbc4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-b416fbc4]:first-child{margin-left:52%!important}.col-offset-6[data-v-b416fbc4]:not(first-child){margin-left:56%!important}.col-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-b416fbc4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-b416fbc4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-b416fbc4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-b416fbc4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-b416fbc4]:first-child{margin-left:78%!important}.col-offset-9[data-v-b416fbc4]:not(first-child){margin-left:82%!important}.col-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-b416fbc4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-b416fbc4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-b416fbc4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-b416fbc4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-1[data-v-b416fbc4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-2[data-v-b416fbc4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-3[data-v-b416fbc4]{margin-left:26%}.col-no-margin-s-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-4[data-v-b416fbc4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-5[data-v-b416fbc4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-6[data-v-b416fbc4]{margin-left:52%}.col-no-margin-s-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-7[data-v-b416fbc4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-8[data-v-b416fbc4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-9[data-v-b416fbc4]{margin-left:78%}.col-no-margin-s-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-10[data-v-b416fbc4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-s-11[data-v-b416fbc4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-b416fbc4]{display:none!important}.s-visible[data-v-b416fbc4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-1[data-v-b416fbc4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-2[data-v-b416fbc4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-3[data-v-b416fbc4]{margin-left:26%}.col-no-margin-m-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-4[data-v-b416fbc4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-5[data-v-b416fbc4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-6[data-v-b416fbc4]{margin-left:52%}.col-no-margin-m-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-7[data-v-b416fbc4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-8[data-v-b416fbc4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-9[data-v-b416fbc4]{margin-left:78%}.col-no-margin-m-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-10[data-v-b416fbc4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-m-11[data-v-b416fbc4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-b416fbc4]{display:none!important}.m-visible[data-v-b416fbc4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-1[data-v-b416fbc4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-2[data-v-b416fbc4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-3[data-v-b416fbc4]{margin-left:26%}.col-no-margin-l-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-4[data-v-b416fbc4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-5[data-v-b416fbc4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-6[data-v-b416fbc4]{margin-left:52%}.col-no-margin-l-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-7[data-v-b416fbc4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-8[data-v-b416fbc4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-9[data-v-b416fbc4]{margin-left:78%}.col-no-margin-l-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-10[data-v-b416fbc4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-l-11[data-v-b416fbc4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-b416fbc4]{display:none!important}.l-visible[data-v-b416fbc4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-1[data-v-b416fbc4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-2[data-v-b416fbc4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-3[data-v-b416fbc4]{margin-left:26%}.col-no-margin-xl-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-4[data-v-b416fbc4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-5[data-v-b416fbc4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-6[data-v-b416fbc4]{margin-left:52%}.col-no-margin-xl-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-7[data-v-b416fbc4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-8[data-v-b416fbc4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-9[data-v-b416fbc4]{margin-left:78%}.col-no-margin-xl-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-10[data-v-b416fbc4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xl-11[data-v-b416fbc4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-b416fbc4]{display:none!important}.xl-visible[data-v-b416fbc4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-b416fbc4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-b416fbc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-b416fbc4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-b416fbc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-b416fbc4]{margin-left:26%}.col-no-margin-xxl-3[data-v-b416fbc4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-b416fbc4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-b416fbc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-b416fbc4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-b416fbc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-b416fbc4]{margin-left:52%}.col-no-margin-xxl-6[data-v-b416fbc4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-b416fbc4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-b416fbc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-b416fbc4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-b416fbc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-b416fbc4]{margin-left:78%}.col-no-margin-xxl-9[data-v-b416fbc4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-b416fbc4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-b416fbc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-b416fbc4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-b416fbc4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-b416fbc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-b416fbc4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-b416fbc4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-b416fbc4]{display:none!important}.xxl-visible[data-v-b416fbc4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-b416fbc4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-b416fbc4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-b416fbc4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-b416fbc4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-b416fbc4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-b416fbc4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-b416fbc4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-b416fbc4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-b416fbc4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-b416fbc4]{display:none!important}}.vertical-center[data-v-b416fbc4]{display:flex;align-items:center}.horizontal-center[data-v-b416fbc4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-b416fbc4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-b416fbc4]{display:none!important}.no-content[data-v-b416fbc4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-b416fbc4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-b416fbc4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-b416fbc4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-b416fbc4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-b416fbc4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-b416fbc4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-b416fbc4],.btn[data-v-b416fbc4],button[data-v-b416fbc4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-b416fbc4],.btn-default[type=submit][data-v-b416fbc4],.btn.btn-primary[data-v-b416fbc4],.btn[type=submit][data-v-b416fbc4],button.btn-primary[data-v-b416fbc4],button[type=submit][data-v-b416fbc4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-b416fbc4]:hover,.btn[data-v-b416fbc4]:hover,button[data-v-b416fbc4]:hover{color:#35b870}.btn .icon[data-v-b416fbc4],.btn-default .icon[data-v-b416fbc4],button .icon[data-v-b416fbc4]{margin-right:.5em}.btn-default[data-v-b416fbc4]:disabled,.btn-default[disabled][data-v-b416fbc4],.btn[data-v-b416fbc4]:disabled,.btn[disabled][data-v-b416fbc4],button[data-v-b416fbc4]:disabled,button[disabled][data-v-b416fbc4]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-b416fbc4]{cursor:grab!important}.dragged[data-v-b416fbc4]{opacity:.5!important}input[type=password][data-v-b416fbc4],input[type=text][data-v-b416fbc4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-b416fbc4]:focus,input[type=text][data-v-b416fbc4]:focus{border:1px solid #35b870}button[data-v-b416fbc4],input[data-v-b416fbc4]{outline:none}input[type=text][data-v-b416fbc4]:hover,textarea[data-v-b416fbc4]:hover{border:1px solid #9cdfb0}ul[data-v-b416fbc4]{margin:0;padding:0;list-style:none}a[data-v-b416fbc4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-b416fbc4]:hover{color:#35b870}[data-v-b416fbc4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-b416fbc4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-b416fbc4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-b416fbc4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-b416fbc4]{color:#ad1717}body[data-v-b416fbc4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-b416fbc4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-b416fbc4] .nav .path{cursor:pointer}.browser[data-v-b416fbc4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-b416fbc4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-b416fbc4]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-b416fbc4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-b416fbc4],input[type=number][data-v-b416fbc4],input[type=password][data-v-b416fbc4],input[type=search][data-v-b416fbc4],input[type=text][data-v-b416fbc4],input[type=time][data-v-b416fbc4]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-b416fbc4]:hover,input[type=number][data-v-b416fbc4]:hover,input[type=password][data-v-b416fbc4]:hover,input[type=search][data-v-b416fbc4]:hover,input[type=text][data-v-b416fbc4]:hover,input[type=time][data-v-b416fbc4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-b416fbc4]:focus,input[type=number][data-v-b416fbc4]:focus,input[type=password][data-v-b416fbc4]:focus,input[type=search][data-v-b416fbc4]:focus,input[type=text][data-v-b416fbc4]:focus,input[type=time][data-v-b416fbc4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-b416fbc4],input[type=number].with-icon[data-v-b416fbc4],input[type=password].with-icon[data-v-b416fbc4],input[type=search].with-icon[data-v-b416fbc4],input[type=text].with-icon[data-v-b416fbc4],input[type=time].with-icon[data-v-b416fbc4]{padding-left:.3em}input[type=search][data-v-b416fbc4],input[type=text][data-v-b416fbc4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-b416fbc4]{animation-fill-mode:both;animation-name:fadeIn-b416fbc4;-webkit-animation-name:fadeIn-b416fbc4}.fade-in[data-v-b416fbc4],.fade-out[data-v-b416fbc4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-b416fbc4]{animation-fill-mode:both;animation-name:fadeOut-b416fbc4;-webkit-animation-name:fadeOut-b416fbc4}.expand[data-v-b416fbc4]{animation-fill-mode:both;animation-name:expand-b416fbc4;-webkit-animation-name:expand-b416fbc4}.expand[data-v-b416fbc4],.shrink[data-v-b416fbc4]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-b416fbc4]{animation-fill-mode:both;animation-name:shrink-b416fbc4;-webkit-animation-name:shrink-b416fbc4}.fold[data-v-b416fbc4]{animation-fill-mode:both;animation-name:fold-b416fbc4;-webkit-animation-name:fold-b416fbc4}.fold[data-v-b416fbc4],.unfold[data-v-b416fbc4]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-b416fbc4]{animation-fill-mode:both;animation-name:unfold-b416fbc4;-webkit-animation-name:unfold-b416fbc4}.dim[data-v-b416fbc4]{animation-fill-mode:both;animation-name:dim-b416fbc4;-webkit-animation-name:dim-b416fbc4}.brighten[data-v-b416fbc4],.dim[data-v-b416fbc4]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-b416fbc4]{animation-fill-mode:both;animation-name:brighten-b416fbc4;-webkit-animation-name:brighten-b416fbc4}@keyframes fadeIn-b416fbc4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-b416fbc4{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-b416fbc4{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-b416fbc4{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-b416fbc4{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-b416fbc4{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-b416fbc4{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-b416fbc4{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-b416fbc4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-b416fbc4;-webkit-animation-name:glow-b416fbc4}.loop[data-v-b416fbc4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-b416fbc4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-b416fbc4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-b416fbc4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-b416fbc4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-file-browser[data-v-b416fbc4]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4364.502178be.css b/platypush/backend/http/webapp/dist/static/css/4364.502178be.css deleted file mode 100644 index cade9762e7..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/4364.502178be.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-b895a0b4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-b895a0b4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-b895a0b4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-b895a0b4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-b895a0b4]:first-child{margin-left:26%!important}.col-offset-3[data-v-b895a0b4]:not(first-child){margin-left:30%!important}.col-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-b895a0b4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-b895a0b4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-b895a0b4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-b895a0b4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-b895a0b4]:first-child{margin-left:52%!important}.col-offset-6[data-v-b895a0b4]:not(first-child){margin-left:56%!important}.col-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-b895a0b4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-b895a0b4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-b895a0b4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-b895a0b4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-b895a0b4]:first-child{margin-left:78%!important}.col-offset-9[data-v-b895a0b4]:not(first-child){margin-left:82%!important}.col-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-b895a0b4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-b895a0b4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-b895a0b4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-b895a0b4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-1[data-v-b895a0b4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-2[data-v-b895a0b4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-3[data-v-b895a0b4]{margin-left:26%}.col-no-margin-s-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-4[data-v-b895a0b4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-5[data-v-b895a0b4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-6[data-v-b895a0b4]{margin-left:52%}.col-no-margin-s-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-7[data-v-b895a0b4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-8[data-v-b895a0b4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-9[data-v-b895a0b4]{margin-left:78%}.col-no-margin-s-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-10[data-v-b895a0b4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-s-11[data-v-b895a0b4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-b895a0b4]{display:none!important}.s-visible[data-v-b895a0b4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-1[data-v-b895a0b4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-2[data-v-b895a0b4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-3[data-v-b895a0b4]{margin-left:26%}.col-no-margin-m-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-4[data-v-b895a0b4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-5[data-v-b895a0b4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-6[data-v-b895a0b4]{margin-left:52%}.col-no-margin-m-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-7[data-v-b895a0b4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-8[data-v-b895a0b4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-9[data-v-b895a0b4]{margin-left:78%}.col-no-margin-m-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-10[data-v-b895a0b4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-m-11[data-v-b895a0b4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-b895a0b4]{display:none!important}.m-visible[data-v-b895a0b4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-1[data-v-b895a0b4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-2[data-v-b895a0b4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-3[data-v-b895a0b4]{margin-left:26%}.col-no-margin-l-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-4[data-v-b895a0b4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-5[data-v-b895a0b4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-6[data-v-b895a0b4]{margin-left:52%}.col-no-margin-l-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-7[data-v-b895a0b4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-8[data-v-b895a0b4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-9[data-v-b895a0b4]{margin-left:78%}.col-no-margin-l-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-10[data-v-b895a0b4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-l-11[data-v-b895a0b4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-b895a0b4]{display:none!important}.l-visible[data-v-b895a0b4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-1[data-v-b895a0b4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-2[data-v-b895a0b4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-3[data-v-b895a0b4]{margin-left:26%}.col-no-margin-xl-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-4[data-v-b895a0b4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-5[data-v-b895a0b4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-6[data-v-b895a0b4]{margin-left:52%}.col-no-margin-xl-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-7[data-v-b895a0b4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-8[data-v-b895a0b4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-9[data-v-b895a0b4]{margin-left:78%}.col-no-margin-xl-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-10[data-v-b895a0b4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xl-11[data-v-b895a0b4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-b895a0b4]{display:none!important}.xl-visible[data-v-b895a0b4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-b895a0b4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-b895a0b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-b895a0b4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-b895a0b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-b895a0b4]{margin-left:26%}.col-no-margin-xxl-3[data-v-b895a0b4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-b895a0b4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-b895a0b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-b895a0b4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-b895a0b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-b895a0b4]{margin-left:52%}.col-no-margin-xxl-6[data-v-b895a0b4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-b895a0b4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-b895a0b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-b895a0b4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-b895a0b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-b895a0b4]{margin-left:78%}.col-no-margin-xxl-9[data-v-b895a0b4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-b895a0b4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-b895a0b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-b895a0b4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-b895a0b4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-b895a0b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-b895a0b4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-b895a0b4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-b895a0b4]{display:none!important}.xxl-visible[data-v-b895a0b4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-b895a0b4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-b895a0b4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-b895a0b4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-b895a0b4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-b895a0b4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-b895a0b4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-b895a0b4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-b895a0b4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-b895a0b4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-b895a0b4]{display:none!important}}.vertical-center[data-v-b895a0b4]{display:flex;align-items:center}.horizontal-center[data-v-b895a0b4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-b895a0b4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-b895a0b4]{display:none!important}.no-content[data-v-b895a0b4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-b895a0b4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-b895a0b4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-b895a0b4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-b895a0b4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-b895a0b4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-b895a0b4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-b895a0b4],.btn[data-v-b895a0b4],button[data-v-b895a0b4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-b895a0b4],.btn-default[type=submit][data-v-b895a0b4],.btn.btn-primary[data-v-b895a0b4],.btn[type=submit][data-v-b895a0b4],button.btn-primary[data-v-b895a0b4],button[type=submit][data-v-b895a0b4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-b895a0b4],.btn-default .icon[data-v-b895a0b4],button .icon[data-v-b895a0b4]{margin-right:.5em}input[type=password][data-v-b895a0b4],input[type=text][data-v-b895a0b4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-b895a0b4]:focus,input[type=text][data-v-b895a0b4]:focus{border:1px solid #35b870}button[data-v-b895a0b4],input[data-v-b895a0b4]{outline:none}input[type=text][data-v-b895a0b4]:hover,textarea[data-v-b895a0b4]:hover{border:1px solid #9cdfb0}ul[data-v-b895a0b4]{margin:0;padding:0;list-style:none}a[data-v-b895a0b4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-b895a0b4]:hover{color:#35b870}[data-v-b895a0b4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-b895a0b4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-b895a0b4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-b895a0b4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-b895a0b4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-b895a0b4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-b895a0b4] .nav .path{cursor:pointer}.browser[data-v-b895a0b4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-b895a0b4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-b895a0b4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-b895a0b4],input[type=number][data-v-b895a0b4],input[type=password][data-v-b895a0b4],input[type=search][data-v-b895a0b4],input[type=text][data-v-b895a0b4],input[type=time][data-v-b895a0b4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-b895a0b4]:hover,input[type=number][data-v-b895a0b4]:hover,input[type=password][data-v-b895a0b4]:hover,input[type=search][data-v-b895a0b4]:hover,input[type=text][data-v-b895a0b4]:hover,input[type=time][data-v-b895a0b4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-b895a0b4]:focus,input[type=number][data-v-b895a0b4]:focus,input[type=password][data-v-b895a0b4]:focus,input[type=search][data-v-b895a0b4]:focus,input[type=text][data-v-b895a0b4]:focus,input[type=time][data-v-b895a0b4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-b895a0b4],input[type=number].with-icon[data-v-b895a0b4],input[type=password].with-icon[data-v-b895a0b4],input[type=search].with-icon[data-v-b895a0b4],input[type=text].with-icon[data-v-b895a0b4],input[type=time].with-icon[data-v-b895a0b4]{padding-left:.3em}input[type=search][data-v-b895a0b4],input[type=text][data-v-b895a0b4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-b895a0b4]{animation-fill-mode:both;animation-name:fadeIn-b895a0b4;-webkit-animation-name:fadeIn-b895a0b4}.fade-in[data-v-b895a0b4],.fade-out[data-v-b895a0b4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-b895a0b4]{animation-fill-mode:both;animation-name:fadeOut-b895a0b4;-webkit-animation-name:fadeOut-b895a0b4}@keyframes fadeIn-b895a0b4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-b895a0b4{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-b895a0b4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-b895a0b4;-webkit-animation-name:glow-b895a0b4}.loop[data-v-b895a0b4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-b895a0b4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-b895a0b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-b895a0b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-b895a0b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.channel[data-v-b895a0b4],.playlist-container[data-v-b895a0b4]{--banner-height:5em}}@media screen and (min-width:769px){.channel[data-v-b895a0b4],.playlist-container[data-v-b895a0b4]{--banner-height:100px}}.header[data-v-b895a0b4]{border-bottom:1px solid #ddd;margin-bottom:.5em;position:relative;overflow-y:auto}.header .banner[data-v-b895a0b4]{height:var(--banner-height);display:flex;background-color:#000;justify-content:center}.header .banner img[data-v-b895a0b4]{max-width:800px;max-height:100%;flex:1}.header .image[data-v-b895a0b4]{height:100px;margin:-2.5em 2em .5em .5em}.header .image img[data-v-b895a0b4]{height:100%;border-radius:50%}.header .row[data-v-b895a0b4]{display:flex}@media screen and (min-width:1024px){.header .row[data-v-b895a0b4]{flex-direction:row}}.header .row .info[data-v-b895a0b4]{display:flex;flex-direction:column;align-items:center;height:100%;background-color:rgba(0,0,0,.5)}.header .row .info .row[data-v-b895a0b4]{width:100%;display:flex;align-items:center;justify-content:center;flex:1;padding:0 .5em}.header .info-container[data-v-b895a0b4]{position:absolute;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);color:hsla(0,0%,100%,.9);display:flex;flex-direction:column}.header .info-container a[data-v-b895a0b4]{color:hsla(0,0%,100%,.9)!important}.header .info-container a[data-v-b895a0b4]:hover{color:#35b870!important}.header .info-container .title[data-v-b895a0b4]{letter-spacing:.1em;color:hsla(0,0%,100%,.9)!important}.header .info-container .n-items[data-v-b895a0b4]{margin-left:auto;padding:0 .5em}.header .title-container[data-v-b895a0b4]{max-height:var(--banner-height);overflow-y:hidden}.header .title[data-v-b895a0b4]{height:100%;align-content:center;color:#23513a;font-size:1.7em;font-weight:700;margin:.5em 0;-webkit-text-decoration:dotted;text-decoration:dotted}.header .title[data-v-b895a0b4]:hover{color:#35b870}.header .description[data-v-b895a0b4]{font-size:.9em;margin-right:.5em}.media-results[data-v-b895a0b4]{height:calc(100% - var(--banner-height) - 1em)}.media-youtube-playlist[data-v-b895a0b4]{height:100%}.media-youtube-playlist .playlist-container[data-v-b895a0b4]{height:100%;display:flex;flex-direction:column}.media-youtube-playlist .header .banner[data-v-b895a0b4]{opacity:.75}.media-youtube-playlist .header .channel[data-v-b895a0b4]{flex:1} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/446.ced514f5.css b/platypush/backend/http/webapp/dist/static/css/446.a06f3c43.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/446.ced514f5.css rename to platypush/backend/http/webapp/dist/static/css/446.a06f3c43.css index 614c586903..c2b820d785 100644 --- a/platypush/backend/http/webapp/dist/static/css/446.ced514f5.css +++ b/platypush/backend/http/webapp/dist/static/css/446.a06f3c43.css @@ -1 +1 @@ -.col-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0fad5251]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0fad5251]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0fad5251]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0fad5251]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0fad5251]:first-child{margin-left:26%!important}.col-offset-3[data-v-0fad5251]:not(first-child){margin-left:30%!important}.col-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0fad5251]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0fad5251]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0fad5251]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0fad5251]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0fad5251]:first-child{margin-left:52%!important}.col-offset-6[data-v-0fad5251]:not(first-child){margin-left:56%!important}.col-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0fad5251]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0fad5251]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0fad5251]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0fad5251]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0fad5251]:first-child{margin-left:78%!important}.col-offset-9[data-v-0fad5251]:not(first-child){margin-left:82%!important}.col-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0fad5251]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0fad5251]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0fad5251]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0fad5251]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-s-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-s-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-s-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0fad5251]{display:none!important}.s-visible[data-v-0fad5251]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-m-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-m-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-m-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0fad5251]{display:none!important}.m-visible[data-v-0fad5251]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-l-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-l-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-l-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0fad5251]{display:none!important}.l-visible[data-v-0fad5251]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-xl-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-xl-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-xl-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0fad5251]{display:none!important}.xl-visible[data-v-0fad5251]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-xxl-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-xxl-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-xxl-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0fad5251]{display:none!important}.xxl-visible[data-v-0fad5251]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0fad5251]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0fad5251]{display:none!important}}.vertical-center[data-v-0fad5251]{display:flex;align-items:center}.horizontal-center[data-v-0fad5251]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0fad5251]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0fad5251]{display:none!important}.no-content[data-v-0fad5251]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0fad5251]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0fad5251]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0fad5251]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0fad5251]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0fad5251]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0fad5251]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0fad5251],.btn[data-v-0fad5251],button[data-v-0fad5251]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0fad5251],.btn-default[type=submit][data-v-0fad5251],.btn.btn-primary[data-v-0fad5251],.btn[type=submit][data-v-0fad5251],button.btn-primary[data-v-0fad5251],button[type=submit][data-v-0fad5251]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0fad5251],.btn-default .icon[data-v-0fad5251],button .icon[data-v-0fad5251]{margin-right:.5em}input[type=password][data-v-0fad5251],input[type=text][data-v-0fad5251]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0fad5251]:focus,input[type=text][data-v-0fad5251]:focus{border:1px solid #35b870}button[data-v-0fad5251],input[data-v-0fad5251]{outline:none}input[type=text][data-v-0fad5251]:hover,textarea[data-v-0fad5251]:hover{border:1px solid #9cdfb0}ul[data-v-0fad5251]{margin:0;padding:0;list-style:none}a[data-v-0fad5251]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0fad5251]:hover{color:#35b870}[data-v-0fad5251]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0fad5251]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0fad5251]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0fad5251]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0fad5251]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0fad5251] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0fad5251] .nav .path{cursor:pointer}.browser[data-v-0fad5251] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0fad5251] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0fad5251]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0fad5251],input[type=number][data-v-0fad5251],input[type=password][data-v-0fad5251],input[type=search][data-v-0fad5251],input[type=text][data-v-0fad5251],input[type=time][data-v-0fad5251]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0fad5251]:hover,input[type=number][data-v-0fad5251]:hover,input[type=password][data-v-0fad5251]:hover,input[type=search][data-v-0fad5251]:hover,input[type=text][data-v-0fad5251]:hover,input[type=time][data-v-0fad5251]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0fad5251]:focus,input[type=number][data-v-0fad5251]:focus,input[type=password][data-v-0fad5251]:focus,input[type=search][data-v-0fad5251]:focus,input[type=text][data-v-0fad5251]:focus,input[type=time][data-v-0fad5251]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0fad5251],input[type=number].with-icon[data-v-0fad5251],input[type=password].with-icon[data-v-0fad5251],input[type=search].with-icon[data-v-0fad5251],input[type=text].with-icon[data-v-0fad5251],input[type=time].with-icon[data-v-0fad5251]{padding-left:.3em}input[type=search][data-v-0fad5251],input[type=text][data-v-0fad5251]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0fad5251]{animation-fill-mode:both;animation-name:fadeIn-0fad5251;-webkit-animation-name:fadeIn-0fad5251}.fade-in[data-v-0fad5251],.fade-out[data-v-0fad5251]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0fad5251]{animation-fill-mode:both;animation-name:fadeOut-0fad5251;-webkit-animation-name:fadeOut-0fad5251}@keyframes fadeIn-0fad5251{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0fad5251{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0fad5251]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0fad5251;-webkit-animation-name:glow-0fad5251}.loop[data-v-0fad5251]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0fad5251{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0fad5251]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0fad5251]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0fad5251]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.camera[data-v-0fad5251]{width:calc(100% + 2em);height:calc(100% + 2em);position:relative;background:#000;color:#888;margin:-1em}.camera .feed-container[data-v-0fad5251]{width:100%;height:calc(100% - 3em);display:flex;justify-content:center;align-items:center}.camera .controls[data-v-0fad5251]{width:100%;height:3em;position:absolute;bottom:0}.camera .controls button[data-v-0fad5251]{background:none;border:none;color:#888} \ No newline at end of file +.col-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0fad5251]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0fad5251]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0fad5251]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0fad5251]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0fad5251]:first-child{margin-left:26%!important}.col-offset-3[data-v-0fad5251]:not(first-child){margin-left:30%!important}.col-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0fad5251]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0fad5251]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0fad5251]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0fad5251]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0fad5251]:first-child{margin-left:52%!important}.col-offset-6[data-v-0fad5251]:not(first-child){margin-left:56%!important}.col-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0fad5251]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0fad5251]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0fad5251]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0fad5251]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0fad5251]:first-child{margin-left:78%!important}.col-offset-9[data-v-0fad5251]:not(first-child){margin-left:82%!important}.col-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0fad5251]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0fad5251]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0fad5251]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0fad5251]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-s-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-s-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-s-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-s-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0fad5251]{display:none!important}.s-visible[data-v-0fad5251]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-m-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-m-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-m-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-m-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0fad5251]{display:none!important}.m-visible[data-v-0fad5251]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-l-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-l-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-l-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-l-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0fad5251]{display:none!important}.l-visible[data-v-0fad5251]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-xl-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-xl-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-xl-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xl-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0fad5251]{display:none!important}.xl-visible[data-v-0fad5251]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0fad5251]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0fad5251]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0fad5251]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0fad5251]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0fad5251]{margin-left:26%}.col-no-margin-xxl-3[data-v-0fad5251]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0fad5251]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0fad5251]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0fad5251]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0fad5251]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0fad5251]{margin-left:52%}.col-no-margin-xxl-6[data-v-0fad5251]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0fad5251]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0fad5251]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0fad5251]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0fad5251]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0fad5251]{margin-left:78%}.col-no-margin-xxl-9[data-v-0fad5251]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0fad5251]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0fad5251]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0fad5251]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0fad5251]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0fad5251]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0fad5251]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0fad5251]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0fad5251]{display:none!important}.xxl-visible[data-v-0fad5251]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0fad5251]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0fad5251]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0fad5251]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0fad5251]{display:none!important}}.vertical-center[data-v-0fad5251]{display:flex;align-items:center}.horizontal-center[data-v-0fad5251]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0fad5251]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0fad5251]{display:none!important}.no-content[data-v-0fad5251]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0fad5251]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0fad5251]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0fad5251]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0fad5251]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0fad5251]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0fad5251]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0fad5251],.btn[data-v-0fad5251],button[data-v-0fad5251]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0fad5251],.btn-default[type=submit][data-v-0fad5251],.btn.btn-primary[data-v-0fad5251],.btn[type=submit][data-v-0fad5251],button.btn-primary[data-v-0fad5251],button[type=submit][data-v-0fad5251]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-0fad5251]:hover,.btn[data-v-0fad5251]:hover,button[data-v-0fad5251]:hover{color:#35b870}.btn .icon[data-v-0fad5251],.btn-default .icon[data-v-0fad5251],button .icon[data-v-0fad5251]{margin-right:.5em}.btn-default[data-v-0fad5251]:disabled,.btn-default[disabled][data-v-0fad5251],.btn[data-v-0fad5251]:disabled,.btn[disabled][data-v-0fad5251],button[data-v-0fad5251]:disabled,button[disabled][data-v-0fad5251]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-0fad5251]{cursor:grab!important}.dragged[data-v-0fad5251]{opacity:.5!important}input[type=password][data-v-0fad5251],input[type=text][data-v-0fad5251]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0fad5251]:focus,input[type=text][data-v-0fad5251]:focus{border:1px solid #35b870}button[data-v-0fad5251],input[data-v-0fad5251]{outline:none}input[type=text][data-v-0fad5251]:hover,textarea[data-v-0fad5251]:hover{border:1px solid #9cdfb0}ul[data-v-0fad5251]{margin:0;padding:0;list-style:none}a[data-v-0fad5251]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0fad5251]:hover{color:#35b870}[data-v-0fad5251]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0fad5251]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0fad5251]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0fad5251]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-0fad5251]{color:#ad1717}body[data-v-0fad5251]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0fad5251] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0fad5251] .nav .path{cursor:pointer}.browser[data-v-0fad5251] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0fad5251] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-0fad5251]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-0fad5251]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0fad5251],input[type=number][data-v-0fad5251],input[type=password][data-v-0fad5251],input[type=search][data-v-0fad5251],input[type=text][data-v-0fad5251],input[type=time][data-v-0fad5251]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-0fad5251]:hover,input[type=number][data-v-0fad5251]:hover,input[type=password][data-v-0fad5251]:hover,input[type=search][data-v-0fad5251]:hover,input[type=text][data-v-0fad5251]:hover,input[type=time][data-v-0fad5251]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0fad5251]:focus,input[type=number][data-v-0fad5251]:focus,input[type=password][data-v-0fad5251]:focus,input[type=search][data-v-0fad5251]:focus,input[type=text][data-v-0fad5251]:focus,input[type=time][data-v-0fad5251]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0fad5251],input[type=number].with-icon[data-v-0fad5251],input[type=password].with-icon[data-v-0fad5251],input[type=search].with-icon[data-v-0fad5251],input[type=text].with-icon[data-v-0fad5251],input[type=time].with-icon[data-v-0fad5251]{padding-left:.3em}input[type=search][data-v-0fad5251],input[type=text][data-v-0fad5251]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0fad5251]{animation-fill-mode:both;animation-name:fadeIn-0fad5251;-webkit-animation-name:fadeIn-0fad5251}.fade-in[data-v-0fad5251],.fade-out[data-v-0fad5251]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0fad5251]{animation-fill-mode:both;animation-name:fadeOut-0fad5251;-webkit-animation-name:fadeOut-0fad5251}.expand[data-v-0fad5251]{animation-fill-mode:both;animation-name:expand-0fad5251;-webkit-animation-name:expand-0fad5251}.expand[data-v-0fad5251],.shrink[data-v-0fad5251]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-0fad5251]{animation-fill-mode:both;animation-name:shrink-0fad5251;-webkit-animation-name:shrink-0fad5251}.fold[data-v-0fad5251]{animation-fill-mode:both;animation-name:fold-0fad5251;-webkit-animation-name:fold-0fad5251}.fold[data-v-0fad5251],.unfold[data-v-0fad5251]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-0fad5251]{animation-fill-mode:both;animation-name:unfold-0fad5251;-webkit-animation-name:unfold-0fad5251}.dim[data-v-0fad5251]{animation-fill-mode:both;animation-name:dim-0fad5251;-webkit-animation-name:dim-0fad5251}.brighten[data-v-0fad5251],.dim[data-v-0fad5251]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-0fad5251]{animation-fill-mode:both;animation-name:brighten-0fad5251;-webkit-animation-name:brighten-0fad5251}@keyframes fadeIn-0fad5251{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0fad5251{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-0fad5251{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-0fad5251{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-0fad5251{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-0fad5251{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-0fad5251{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-0fad5251{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-0fad5251]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0fad5251;-webkit-animation-name:glow-0fad5251}.loop[data-v-0fad5251]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0fad5251{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0fad5251]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0fad5251]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0fad5251]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.camera[data-v-0fad5251]{width:calc(100% + 2em);height:calc(100% + 2em);position:relative;background:#000;color:#888;margin:-1em}.camera .feed-container[data-v-0fad5251]{width:100%;height:calc(100% - 3em);display:flex;justify-content:center;align-items:center}.camera .controls[data-v-0fad5251]{width:100%;height:3em;position:absolute;bottom:0}.camera .controls button[data-v-0fad5251]{background:none;border:none;color:#888} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4470.aa130b90.css b/platypush/backend/http/webapp/dist/static/css/4470.aa130b90.css new file mode 100644 index 0000000000..997702f4be --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/4470.aa130b90.css @@ -0,0 +1 @@ +.col-1[data-v-1e886630]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-1[data-v-1e886630]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1e886630]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1e886630]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1e886630]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-2[data-v-1e886630]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1e886630]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1e886630]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1e886630]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-3[data-v-1e886630]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1e886630]:first-child{margin-left:26%!important}.col-offset-3[data-v-1e886630]:not(first-child){margin-left:30%!important}.col-4[data-v-1e886630]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-4[data-v-1e886630]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1e886630]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1e886630]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1e886630]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-5[data-v-1e886630]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1e886630]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1e886630]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1e886630]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-6[data-v-1e886630]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1e886630]:first-child{margin-left:52%!important}.col-offset-6[data-v-1e886630]:not(first-child){margin-left:56%!important}.col-7[data-v-1e886630]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-7[data-v-1e886630]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1e886630]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1e886630]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1e886630]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-8[data-v-1e886630]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1e886630]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1e886630]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1e886630]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-9[data-v-1e886630]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1e886630]:first-child{margin-left:78%!important}.col-offset-9[data-v-1e886630]:not(first-child){margin-left:82%!important}.col-10[data-v-1e886630]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-10[data-v-1e886630]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1e886630]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1e886630]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1e886630]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1e886630]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1e886630]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-1[data-v-1e886630]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1e886630]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1e886630]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-2[data-v-1e886630]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1e886630]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1e886630]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-3[data-v-1e886630]{margin-left:26%}.col-no-margin-s-3[data-v-1e886630]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1e886630]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-4[data-v-1e886630]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1e886630]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1e886630]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-5[data-v-1e886630]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1e886630]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1e886630]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-6[data-v-1e886630]{margin-left:52%}.col-no-margin-s-6[data-v-1e886630]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1e886630]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-7[data-v-1e886630]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1e886630]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1e886630]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-8[data-v-1e886630]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1e886630]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1e886630]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-9[data-v-1e886630]{margin-left:78%}.col-no-margin-s-9[data-v-1e886630]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1e886630]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-10[data-v-1e886630]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1e886630]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1e886630]:first-child{margin-left:0}.col-offset-s-11[data-v-1e886630]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1e886630]{display:none!important}.s-visible[data-v-1e886630]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1e886630]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-1[data-v-1e886630]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1e886630]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1e886630]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-2[data-v-1e886630]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1e886630]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1e886630]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-3[data-v-1e886630]{margin-left:26%}.col-no-margin-m-3[data-v-1e886630]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1e886630]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-4[data-v-1e886630]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1e886630]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1e886630]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-5[data-v-1e886630]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1e886630]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1e886630]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-6[data-v-1e886630]{margin-left:52%}.col-no-margin-m-6[data-v-1e886630]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1e886630]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-7[data-v-1e886630]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1e886630]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1e886630]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-8[data-v-1e886630]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1e886630]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1e886630]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-9[data-v-1e886630]{margin-left:78%}.col-no-margin-m-9[data-v-1e886630]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1e886630]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-10[data-v-1e886630]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1e886630]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1e886630]:first-child{margin-left:0}.col-offset-m-11[data-v-1e886630]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1e886630]{display:none!important}.m-visible[data-v-1e886630]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1e886630]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-1[data-v-1e886630]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1e886630]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1e886630]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-2[data-v-1e886630]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1e886630]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1e886630]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-3[data-v-1e886630]{margin-left:26%}.col-no-margin-l-3[data-v-1e886630]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1e886630]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-4[data-v-1e886630]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1e886630]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1e886630]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-5[data-v-1e886630]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1e886630]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1e886630]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-6[data-v-1e886630]{margin-left:52%}.col-no-margin-l-6[data-v-1e886630]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1e886630]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-7[data-v-1e886630]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1e886630]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1e886630]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-8[data-v-1e886630]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1e886630]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1e886630]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-9[data-v-1e886630]{margin-left:78%}.col-no-margin-l-9[data-v-1e886630]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1e886630]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-10[data-v-1e886630]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1e886630]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1e886630]:first-child{margin-left:0}.col-offset-l-11[data-v-1e886630]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1e886630]{display:none!important}.l-visible[data-v-1e886630]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1e886630]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-1[data-v-1e886630]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1e886630]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1e886630]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-2[data-v-1e886630]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1e886630]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1e886630]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-3[data-v-1e886630]{margin-left:26%}.col-no-margin-xl-3[data-v-1e886630]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1e886630]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-4[data-v-1e886630]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1e886630]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1e886630]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-5[data-v-1e886630]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1e886630]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1e886630]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-6[data-v-1e886630]{margin-left:52%}.col-no-margin-xl-6[data-v-1e886630]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1e886630]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-7[data-v-1e886630]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1e886630]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1e886630]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-8[data-v-1e886630]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1e886630]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1e886630]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-9[data-v-1e886630]{margin-left:78%}.col-no-margin-xl-9[data-v-1e886630]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1e886630]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-10[data-v-1e886630]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1e886630]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1e886630]:first-child{margin-left:0}.col-offset-xl-11[data-v-1e886630]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1e886630]{display:none!important}.xl-visible[data-v-1e886630]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1e886630]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1e886630]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1e886630]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1e886630]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1e886630]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1e886630]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1e886630]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1e886630]{margin-left:26%}.col-no-margin-xxl-3[data-v-1e886630]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1e886630]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1e886630]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1e886630]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1e886630]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1e886630]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1e886630]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1e886630]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1e886630]{margin-left:52%}.col-no-margin-xxl-6[data-v-1e886630]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1e886630]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1e886630]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1e886630]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1e886630]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1e886630]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1e886630]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1e886630]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1e886630]{margin-left:78%}.col-no-margin-xxl-9[data-v-1e886630]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1e886630]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1e886630]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1e886630]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1e886630]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1e886630]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1e886630]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1e886630]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1e886630]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1e886630]{display:none!important}.xxl-visible[data-v-1e886630]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1e886630]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1e886630]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1e886630]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1e886630]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1e886630]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1e886630]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1e886630]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1e886630]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1e886630]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1e886630]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1e886630]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1e886630]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1e886630]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1e886630]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1e886630]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1e886630]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1e886630]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1e886630]{display:none!important}}.vertical-center[data-v-1e886630]{display:flex;align-items:center}.horizontal-center[data-v-1e886630]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1e886630]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1e886630]{display:none!important}.no-content[data-v-1e886630]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1e886630]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1e886630]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1e886630]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1e886630]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1e886630]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1e886630]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1e886630],.btn[data-v-1e886630],button[data-v-1e886630]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1e886630],.btn-default[type=submit][data-v-1e886630],.btn.btn-primary[data-v-1e886630],.btn[type=submit][data-v-1e886630],button.btn-primary[data-v-1e886630],button[type=submit][data-v-1e886630]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1e886630]:hover,.btn[data-v-1e886630]:hover,button[data-v-1e886630]:hover{color:#35b870}.btn .icon[data-v-1e886630],.btn-default .icon[data-v-1e886630],button .icon[data-v-1e886630]{margin-right:.5em}.btn-default[data-v-1e886630]:disabled,.btn-default[disabled][data-v-1e886630],.btn[data-v-1e886630]:disabled,.btn[disabled][data-v-1e886630],button[data-v-1e886630]:disabled,button[disabled][data-v-1e886630]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1e886630]{cursor:grab!important}.dragged[data-v-1e886630]{opacity:.5!important}input[type=password][data-v-1e886630],input[type=text][data-v-1e886630]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1e886630]:focus,input[type=text][data-v-1e886630]:focus{border:1px solid #35b870}button[data-v-1e886630],input[data-v-1e886630]{outline:none}input[type=text][data-v-1e886630]:hover,textarea[data-v-1e886630]:hover{border:1px solid #9cdfb0}ul[data-v-1e886630]{margin:0;padding:0;list-style:none}a[data-v-1e886630]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1e886630]:hover{color:#35b870}[data-v-1e886630]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1e886630]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1e886630]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1e886630]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1e886630]{color:#ad1717}body[data-v-1e886630]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1e886630] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1e886630] .nav .path{cursor:pointer}.browser[data-v-1e886630] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1e886630] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1e886630]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1e886630]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1e886630],input[type=number][data-v-1e886630],input[type=password][data-v-1e886630],input[type=search][data-v-1e886630],input[type=text][data-v-1e886630],input[type=time][data-v-1e886630]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1e886630]:hover,input[type=number][data-v-1e886630]:hover,input[type=password][data-v-1e886630]:hover,input[type=search][data-v-1e886630]:hover,input[type=text][data-v-1e886630]:hover,input[type=time][data-v-1e886630]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1e886630]:focus,input[type=number][data-v-1e886630]:focus,input[type=password][data-v-1e886630]:focus,input[type=search][data-v-1e886630]:focus,input[type=text][data-v-1e886630]:focus,input[type=time][data-v-1e886630]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1e886630],input[type=number].with-icon[data-v-1e886630],input[type=password].with-icon[data-v-1e886630],input[type=search].with-icon[data-v-1e886630],input[type=text].with-icon[data-v-1e886630],input[type=time].with-icon[data-v-1e886630]{padding-left:.3em}input[type=search][data-v-1e886630],input[type=text][data-v-1e886630]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1e886630]{animation-fill-mode:both;animation-name:fadeIn-1e886630;-webkit-animation-name:fadeIn-1e886630}.fade-in[data-v-1e886630],.fade-out[data-v-1e886630]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1e886630]{animation-fill-mode:both;animation-name:fadeOut-1e886630;-webkit-animation-name:fadeOut-1e886630}.expand[data-v-1e886630]{animation-fill-mode:both;animation-name:expand-1e886630;-webkit-animation-name:expand-1e886630}.expand[data-v-1e886630],.shrink[data-v-1e886630]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1e886630]{animation-fill-mode:both;animation-name:shrink-1e886630;-webkit-animation-name:shrink-1e886630}.fold[data-v-1e886630]{animation-fill-mode:both;animation-name:fold-1e886630;-webkit-animation-name:fold-1e886630}.fold[data-v-1e886630],.unfold[data-v-1e886630]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1e886630]{animation-fill-mode:both;animation-name:unfold-1e886630;-webkit-animation-name:unfold-1e886630}.dim[data-v-1e886630]{animation-fill-mode:both;animation-name:dim-1e886630;-webkit-animation-name:dim-1e886630}.brighten[data-v-1e886630],.dim[data-v-1e886630]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1e886630]{animation-fill-mode:both;animation-name:brighten-1e886630;-webkit-animation-name:brighten-1e886630}@keyframes fadeIn-1e886630{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1e886630{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1e886630{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1e886630{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1e886630{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1e886630{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1e886630{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1e886630{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1e886630]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1e886630;-webkit-animation-name:glow-1e886630}.loop[data-v-1e886630]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1e886630{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1e886630]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1e886630]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1e886630]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-1e886630] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-1e886630] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-1e886630] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-1e886630] .item .icon i{font-size:40px}.grid[data-v-1e886630] .item .icon img{width:40px;height:40px}[data-v-1e886630] .nav{height:2.5em}.nav[data-v-1e886630]{overflow-x:auto!important;overflow-y:hidden!important}.nav .path .token .icon[data-v-1e886630]{margin-right:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/472.9c3bb868.css b/platypush/backend/http/webapp/dist/static/css/472.9c3bb868.css deleted file mode 100644 index 61a8b4405d..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/472.9c3bb868.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-f6d939d8],.entity .head .icon[data-v-f6d939d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f6d939d8]:first-child,.entity .head .icon[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f6d939d8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f6d939d8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f6d939d8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f6d939d8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f6d939d8],.entity .head .value-and-toggler[data-v-f6d939d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f6d939d8]:first-child,.entity .head .value-and-toggler[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f6d939d8]:first-child{margin-left:26%!important}.col-offset-3[data-v-f6d939d8]:not(first-child){margin-left:30%!important}.col-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f6d939d8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f6d939d8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f6d939d8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f6d939d8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f6d939d8]:first-child{margin-left:52%!important}.col-offset-6[data-v-f6d939d8]:not(first-child){margin-left:56%!important}.col-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f6d939d8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f6d939d8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f6d939d8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f6d939d8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f6d939d8]:first-child{margin-left:78%!important}.col-offset-9[data-v-f6d939d8]:not(first-child){margin-left:82%!important}.col-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f6d939d8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f6d939d8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f6d939d8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f6d939d8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-1[data-v-f6d939d8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-2[data-v-f6d939d8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f6d939d8],.entity .head .value-container[data-v-f6d939d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f6d939d8]:first-child,.entity .head .value-container[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-3[data-v-f6d939d8]{margin-left:26%}.col-no-margin-s-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-4[data-v-f6d939d8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-5[data-v-f6d939d8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-6[data-v-f6d939d8]{margin-left:52%}.col-no-margin-s-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-7[data-v-f6d939d8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f6d939d8],.entity .head .label[data-v-f6d939d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f6d939d8]:first-child,.entity .head .label[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-8[data-v-f6d939d8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-9[data-v-f6d939d8]{margin-left:78%}.col-no-margin-s-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-10[data-v-f6d939d8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-s-11[data-v-f6d939d8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-f6d939d8],.attributes .child .value[data-v-f6d939d8],.col-s-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-f6d939d8]:first-child,.attributes .child .value[data-v-f6d939d8]:first-child,.col-s-12[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f6d939d8]{display:none!important}.s-visible[data-v-f6d939d8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-1[data-v-f6d939d8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f6d939d8],.entity .head .value-container[data-v-f6d939d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f6d939d8]:first-child,.entity .head .value-container[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-2[data-v-f6d939d8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-3[data-v-f6d939d8]{margin-left:26%}.col-no-margin-m-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-4[data-v-f6d939d8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-5[data-v-f6d939d8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-f6d939d8],.attributes .child .value[data-v-f6d939d8],.col-m-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-f6d939d8]:first-child,.attributes .child .value[data-v-f6d939d8]:first-child,.col-m-6[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-6[data-v-f6d939d8]{margin-left:52%}.col-no-margin-m-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-7[data-v-f6d939d8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-8[data-v-f6d939d8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f6d939d8],.entity .head .label[data-v-f6d939d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f6d939d8]:first-child,.entity .head .label[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-9[data-v-f6d939d8]{margin-left:78%}.col-no-margin-m-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-10[data-v-f6d939d8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-m-11[data-v-f6d939d8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f6d939d8]{display:none!important}.m-visible[data-v-f6d939d8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-1[data-v-f6d939d8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-2[data-v-f6d939d8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-3[data-v-f6d939d8]{margin-left:26%}.col-no-margin-l-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-4[data-v-f6d939d8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-5[data-v-f6d939d8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-6[data-v-f6d939d8]{margin-left:52%}.col-no-margin-l-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-7[data-v-f6d939d8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-8[data-v-f6d939d8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-9[data-v-f6d939d8]{margin-left:78%}.col-no-margin-l-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-10[data-v-f6d939d8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-l-11[data-v-f6d939d8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f6d939d8]{display:none!important}.l-visible[data-v-f6d939d8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-1[data-v-f6d939d8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-2[data-v-f6d939d8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-3[data-v-f6d939d8]{margin-left:26%}.col-no-margin-xl-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-4[data-v-f6d939d8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-5[data-v-f6d939d8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-6[data-v-f6d939d8]{margin-left:52%}.col-no-margin-xl-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-7[data-v-f6d939d8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-8[data-v-f6d939d8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-9[data-v-f6d939d8]{margin-left:78%}.col-no-margin-xl-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-10[data-v-f6d939d8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xl-11[data-v-f6d939d8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f6d939d8]{display:none!important}.xl-visible[data-v-f6d939d8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f6d939d8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f6d939d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f6d939d8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f6d939d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f6d939d8]{margin-left:26%}.col-no-margin-xxl-3[data-v-f6d939d8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f6d939d8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f6d939d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f6d939d8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f6d939d8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f6d939d8]{margin-left:52%}.col-no-margin-xxl-6[data-v-f6d939d8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f6d939d8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f6d939d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f6d939d8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f6d939d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f6d939d8]{margin-left:78%}.col-no-margin-xxl-9[data-v-f6d939d8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f6d939d8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f6d939d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f6d939d8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f6d939d8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f6d939d8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f6d939d8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f6d939d8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f6d939d8]{display:none!important}.xxl-visible[data-v-f6d939d8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f6d939d8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f6d939d8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f6d939d8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f6d939d8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f6d939d8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f6d939d8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f6d939d8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f6d939d8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f6d939d8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f6d939d8]{display:none!important}}.vertical-center[data-v-f6d939d8]{display:flex;align-items:center}.horizontal-center[data-v-f6d939d8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-f6d939d8],.pull-right[data-v-f6d939d8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f6d939d8]{display:none!important}.no-content[data-v-f6d939d8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f6d939d8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f6d939d8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f6d939d8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f6d939d8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f6d939d8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f6d939d8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f6d939d8],.btn[data-v-f6d939d8],button[data-v-f6d939d8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f6d939d8],.btn-default[type=submit][data-v-f6d939d8],.btn.btn-primary[data-v-f6d939d8],.btn[type=submit][data-v-f6d939d8],button.btn-primary[data-v-f6d939d8],button[type=submit][data-v-f6d939d8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f6d939d8],.btn-default .icon[data-v-f6d939d8],button .icon[data-v-f6d939d8]{margin-right:.5em}input[type=password][data-v-f6d939d8],input[type=text][data-v-f6d939d8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f6d939d8]:focus,input[type=text][data-v-f6d939d8]:focus{border:1px solid #35b870}button[data-v-f6d939d8],input[data-v-f6d939d8]{outline:none}input[type=text][data-v-f6d939d8]:hover,textarea[data-v-f6d939d8]:hover{border:1px solid #9cdfb0}ul[data-v-f6d939d8]{margin:0;padding:0;list-style:none}a[data-v-f6d939d8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f6d939d8]:hover{color:#35b870}[data-v-f6d939d8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f6d939d8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f6d939d8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f6d939d8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f6d939d8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f6d939d8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f6d939d8] .nav .path{cursor:pointer}.browser[data-v-f6d939d8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f6d939d8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-f6d939d8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f6d939d8],input[type=number][data-v-f6d939d8],input[type=password][data-v-f6d939d8],input[type=search][data-v-f6d939d8],input[type=text][data-v-f6d939d8],input[type=time][data-v-f6d939d8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-f6d939d8]:hover,input[type=number][data-v-f6d939d8]:hover,input[type=password][data-v-f6d939d8]:hover,input[type=search][data-v-f6d939d8]:hover,input[type=text][data-v-f6d939d8]:hover,input[type=time][data-v-f6d939d8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f6d939d8]:focus,input[type=number][data-v-f6d939d8]:focus,input[type=password][data-v-f6d939d8]:focus,input[type=search][data-v-f6d939d8]:focus,input[type=text][data-v-f6d939d8]:focus,input[type=time][data-v-f6d939d8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f6d939d8],input[type=number].with-icon[data-v-f6d939d8],input[type=password].with-icon[data-v-f6d939d8],input[type=search].with-icon[data-v-f6d939d8],input[type=text].with-icon[data-v-f6d939d8],input[type=time].with-icon[data-v-f6d939d8]{padding-left:.3em}input[type=search][data-v-f6d939d8],input[type=text][data-v-f6d939d8]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-f6d939d8],.fade-in[data-v-f6d939d8]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-f6d939d8;-webkit-animation-name:fadeIn-f6d939d8}.fade-out[data-v-f6d939d8]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-f6d939d8;-webkit-animation-name:fadeOut-f6d939d8}@keyframes fadeIn-f6d939d8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f6d939d8{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-f6d939d8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f6d939d8;-webkit-animation-name:glow-f6d939d8}.loop[data-v-f6d939d8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f6d939d8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f6d939d8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f6d939d8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f6d939d8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-f6d939d8]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-f6d939d8]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-f6d939d8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-f6d939d8]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-f6d939d8]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-f6d939d8]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-f6d939d8]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-f6d939d8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-f6d939d8]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-f6d939d8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-f6d939d8]{margin-right:.5em}.entity .head .icon[data-v-f6d939d8]:hover{color:#35b870}.entity .head .label[data-v-f6d939d8]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-f6d939d8]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-f6d939d8]:hover{color:#35b870}.entity .head .value[data-v-f6d939d8]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-f6d939d8]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-f6d939d8]{margin-right:2.5em}.entity .head .value-container[data-v-f6d939d8]{min-width:7em}.entity .head .unit[data-v-f6d939d8]{margin-left:.2em}.entity .head .pull-right[data-v-f6d939d8],.entity .head .value-container[data-v-f6d939d8]{padding-right:.5em}.entity .head .pull-right[data-v-f6d939d8] .power-switch,.entity .head .value-container[data-v-f6d939d8] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-f6d939d8]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-f6d939d8]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-f6d939d8]:hover{color:#35b870}.collapse-toggler[data-v-f6d939d8]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-f6d939d8]:hover{color:#35b870}.attributes .child[data-v-f6d939d8]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-f6d939d8]{flex-direction:column}}.attributes .child[data-v-f6d939d8]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-f6d939d8]:hover{cursor:auto}.attributes .child.head[data-v-f6d939d8]{cursor:pointer}.attributes .child.head[data-v-f6d939d8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-f6d939d8]{font-weight:700}.attributes .child .value[data-v-f6d939d8]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-f6d939d8]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-f6d939d8]:last-child,.entity-container-wrapper.with-children[data-v-f6d939d8]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-f6d939d8]{animation:blink-animation-f6d939d8 1s steps(20,start)}.alarm-container .head .collapse-toggler[data-v-f6d939d8],.alarm-container .head .icon[data-v-f6d939d8]{width:2em}.alarm-container .head .label[data-v-f6d939d8],.alarm-container .head .value-and-toggler[data-v-f6d939d8]{min-width:calc(50% - 3em);max-width:calc(50% - 3em)}.alarm-container .head .label[data-v-f6d939d8]{margin-left:1em}.alarm-container .head .value-and-toggler[data-v-f6d939d8]{text-align:right}.alarm-container .head .value .date[data-v-f6d939d8]{font-weight:400}.alarm-container .body[data-v-f6d939d8]{padding:0}.alarm-container .body .child[data-v-f6d939d8]{min-height:3em;display:flex;align-items:center;padding:0 1em}.alarm-container .body .child[data-v-f6d939d8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.alarm-container .body .child .label[data-v-f6d939d8]{width:100%;font-weight:700}.alarm-container .body .value[data-v-f6d939d8]{text-align:right}.alarm-container .body .value input[data-v-f6d939d8]{width:1em;height:1em}.alarm-container .body .buttons .value[data-v-f6d939d8]{text-align:center}.alarm-container .body .buttons button[data-v-f6d939d8]{border:1px solid #ddd;border-radius:.25em;padding:0 1em;margin:.5em;height:3em}.alarm-container .remove[data-v-f6d939d8]{color:#ad1717;cursor:pointer}.alarm-container .remove label[data-v-f6d939d8]{cursor:pointer}.alarm-container .edit.child[data-v-f6d939d8]{flex-direction:column;padding:0}.alarm-container .edit .head[data-v-f6d939d8]{width:100%;padding:0 1em;cursor:pointer;display:flex;align-items:center;border-top:1px solid #ddd;box-shadow:0 3px 2px -1px silver}.alarm-container .edit .head .name[data-v-f6d939d8]{display:flex;align-items:center}.alarm-container[data-v-f6d939d8] .modal-container{cursor:default}.alarm-container[data-v-f6d939d8] .modal-container .content{width:50em;max-width:90%}.alarm-container[data-v-f6d939d8] .modal-container .content .body{width:100%}.alarm-container[data-v-f6d939d8] .modal-container .alarm-running-modal{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1em}.alarm-container[data-v-f6d939d8] .modal-container .alarm-running-modal .icon{font-size:3.5em;color:#32b646}.alarm-container[data-v-f6d939d8] .modal-container .alarm-running-modal .title{width:100%;display:flex;justify-content:center;margin-bottom:1em}.alarm-container[data-v-f6d939d8] .modal-container .alarm-running-modal .buttons{width:100%;display:flex;justify-content:center;align-items:center}.alarm-container[data-v-f6d939d8] .modal-container .alarm-running-modal .buttons label{width:50%;text-align:center;cursor:pointer}.alarm-container[data-v-f6d939d8] .modal-container .alarm-running-modal .buttons button{margin:.5em}.blink[data-v-f6d939d8]{animation:blink-animation-f6d939d8 2s infinite}@keyframes blink-animation-f6d939d8{0%{opacity:1}50%{opacity:.1}to{opacity:1}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4790.3b639ae0.css b/platypush/backend/http/webapp/dist/static/css/4790.de9cbcae.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/4790.3b639ae0.css rename to platypush/backend/http/webapp/dist/static/css/4790.de9cbcae.css index b47f462f44..8e94a6285d 100644 --- a/platypush/backend/http/webapp/dist/static/css/4790.3b639ae0.css +++ b/platypush/backend/http/webapp/dist/static/css/4790.de9cbcae.css @@ -1 +1 @@ -.col-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-42457341]:first-child{margin-left:0}.col-no-margin-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-42457341]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-42457341]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-42457341]:first-child{margin-left:0}.col-no-margin-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-42457341]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-42457341]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-42457341]:first-child{margin-left:0}.col-no-margin-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-42457341]:first-child{margin-left:26%!important}.col-offset-3[data-v-42457341]:not(first-child){margin-left:30%!important}.col-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-42457341]:first-child{margin-left:0}.col-no-margin-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-42457341]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-42457341]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-42457341]:first-child{margin-left:0}.col-no-margin-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-42457341]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-42457341]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-42457341]:first-child{margin-left:0}.col-no-margin-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-42457341]:first-child{margin-left:52%!important}.col-offset-6[data-v-42457341]:not(first-child){margin-left:56%!important}.col-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-42457341]:first-child{margin-left:0}.col-no-margin-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-42457341]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-42457341]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-42457341]:first-child{margin-left:0}.col-no-margin-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-42457341]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-42457341]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-42457341]:first-child{margin-left:0}.col-no-margin-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-42457341]:first-child{margin-left:78%!important}.col-offset-9[data-v-42457341]:not(first-child){margin-left:82%!important}.col-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-42457341]:first-child{margin-left:0}.col-no-margin-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-42457341]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-42457341]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-42457341]:first-child{margin-left:0}.col-no-margin-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-42457341]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-42457341]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-42457341]:first-child{margin-left:0}.col-offset-s-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-42457341]:first-child{margin-left:0}.col-offset-s-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-42457341]:first-child{margin-left:0}.col-offset-s-3[data-v-42457341]{margin-left:26%}.col-no-margin-s-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-42457341]:first-child{margin-left:0}.col-offset-s-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-42457341]:first-child{margin-left:0}.col-offset-s-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-42457341]:first-child{margin-left:0}.col-offset-s-6[data-v-42457341]{margin-left:52%}.col-no-margin-s-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-42457341]:first-child{margin-left:0}.col-offset-s-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-42457341]:first-child{margin-left:0}.col-offset-s-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-42457341]:first-child{margin-left:0}.col-offset-s-9[data-v-42457341]{margin-left:78%}.col-no-margin-s-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-42457341]:first-child{margin-left:0}.col-offset-s-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-42457341]:first-child{margin-left:0}.col-offset-s-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-s-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-42457341]{display:none!important}.s-visible[data-v-42457341]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-42457341]:first-child{margin-left:0}.col-offset-m-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-42457341]:first-child{margin-left:0}.col-offset-m-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-42457341]:first-child{margin-left:0}.col-offset-m-3[data-v-42457341]{margin-left:26%}.col-no-margin-m-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-42457341]:first-child{margin-left:0}.col-offset-m-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-42457341]:first-child{margin-left:0}.col-offset-m-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-42457341]:first-child{margin-left:0}.col-offset-m-6[data-v-42457341]{margin-left:52%}.col-no-margin-m-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-42457341]:first-child{margin-left:0}.col-offset-m-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-42457341]:first-child{margin-left:0}.col-offset-m-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-42457341]:first-child{margin-left:0}.col-offset-m-9[data-v-42457341]{margin-left:78%}.col-no-margin-m-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-42457341]:first-child{margin-left:0}.col-offset-m-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-42457341]:first-child{margin-left:0}.col-offset-m-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-m-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-42457341]{display:none!important}.m-visible[data-v-42457341]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-42457341]:first-child{margin-left:0}.col-offset-l-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-42457341]:first-child{margin-left:0}.col-offset-l-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-42457341]:first-child{margin-left:0}.col-offset-l-3[data-v-42457341]{margin-left:26%}.col-no-margin-l-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-42457341]:first-child{margin-left:0}.col-offset-l-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-42457341]:first-child{margin-left:0}.col-offset-l-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-42457341]:first-child{margin-left:0}.col-offset-l-6[data-v-42457341]{margin-left:52%}.col-no-margin-l-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-42457341]:first-child{margin-left:0}.col-offset-l-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-42457341]:first-child{margin-left:0}.col-offset-l-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-42457341]:first-child{margin-left:0}.col-offset-l-9[data-v-42457341]{margin-left:78%}.col-no-margin-l-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-42457341]:first-child{margin-left:0}.col-offset-l-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-42457341]:first-child{margin-left:0}.col-offset-l-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-l-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-42457341]{display:none!important}.l-visible[data-v-42457341]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-3[data-v-42457341]{margin-left:26%}.col-no-margin-xl-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-6[data-v-42457341]{margin-left:52%}.col-no-margin-xl-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-9[data-v-42457341]{margin-left:78%}.col-no-margin-xl-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-42457341]{display:none!important}.xl-visible[data-v-42457341]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-3[data-v-42457341]{margin-left:26%}.col-no-margin-xxl-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-6[data-v-42457341]{margin-left:52%}.col-no-margin-xxl-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-9[data-v-42457341]{margin-left:78%}.col-no-margin-xxl-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-42457341]{display:none!important}.xxl-visible[data-v-42457341]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-42457341]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-42457341]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-42457341]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-42457341]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-42457341]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-42457341]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-42457341]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-42457341]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-42457341]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-42457341]{display:none!important}}.vertical-center[data-v-42457341]{display:flex;align-items:center}.horizontal-center[data-v-42457341]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-42457341]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-42457341]{display:none!important}.no-content[data-v-42457341]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-42457341]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-42457341]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-42457341]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-42457341]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-42457341]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-42457341]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-42457341],.btn[data-v-42457341],button[data-v-42457341]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-42457341],.btn-default[type=submit][data-v-42457341],.btn.btn-primary[data-v-42457341],.btn[type=submit][data-v-42457341],button.btn-primary[data-v-42457341],button[type=submit][data-v-42457341]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-42457341],.btn-default .icon[data-v-42457341],button .icon[data-v-42457341]{margin-right:.5em}input[type=password][data-v-42457341],input[type=text][data-v-42457341]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-42457341]:focus,input[type=text][data-v-42457341]:focus{border:1px solid #35b870}button[data-v-42457341],input[data-v-42457341]{outline:none}input[type=text][data-v-42457341]:hover,textarea[data-v-42457341]:hover{border:1px solid #9cdfb0}ul[data-v-42457341]{margin:0;padding:0;list-style:none}a[data-v-42457341]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-42457341]:hover{color:#35b870}[data-v-42457341]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-42457341]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-42457341]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-42457341]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-42457341]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-42457341] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-42457341] .nav .path{cursor:pointer}.browser[data-v-42457341] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-42457341] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-42457341]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-42457341],input[type=number][data-v-42457341],input[type=password][data-v-42457341],input[type=search][data-v-42457341],input[type=text][data-v-42457341],input[type=time][data-v-42457341]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-42457341]:hover,input[type=number][data-v-42457341]:hover,input[type=password][data-v-42457341]:hover,input[type=search][data-v-42457341]:hover,input[type=text][data-v-42457341]:hover,input[type=time][data-v-42457341]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-42457341]:focus,input[type=number][data-v-42457341]:focus,input[type=password][data-v-42457341]:focus,input[type=search][data-v-42457341]:focus,input[type=text][data-v-42457341]:focus,input[type=time][data-v-42457341]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-42457341],input[type=number].with-icon[data-v-42457341],input[type=password].with-icon[data-v-42457341],input[type=search].with-icon[data-v-42457341],input[type=text].with-icon[data-v-42457341],input[type=time].with-icon[data-v-42457341]{padding-left:.3em}input[type=search][data-v-42457341],input[type=text][data-v-42457341]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-42457341]{animation-fill-mode:both;animation-name:fadeIn-42457341;-webkit-animation-name:fadeIn-42457341}.fade-in[data-v-42457341],.fade-out[data-v-42457341]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-42457341]{animation-fill-mode:both;animation-name:fadeOut-42457341;-webkit-animation-name:fadeOut-42457341}@keyframes fadeIn-42457341{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-42457341{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-42457341]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-42457341;-webkit-animation-name:glow-42457341}.loop[data-v-42457341]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-42457341{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-42457341]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-42457341]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-42457341]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.no-token[data-v-42457341]{padding:.5em}.no-token .title[data-v-42457341]{font-size:1.5em;font-weight:700;margin-bottom:1em} \ No newline at end of file +.col-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-42457341]:first-child{margin-left:0}.col-no-margin-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-42457341]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-42457341]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-42457341]:first-child{margin-left:0}.col-no-margin-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-42457341]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-42457341]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-42457341]:first-child{margin-left:0}.col-no-margin-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-42457341]:first-child{margin-left:26%!important}.col-offset-3[data-v-42457341]:not(first-child){margin-left:30%!important}.col-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-42457341]:first-child{margin-left:0}.col-no-margin-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-42457341]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-42457341]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-42457341]:first-child{margin-left:0}.col-no-margin-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-42457341]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-42457341]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-42457341]:first-child{margin-left:0}.col-no-margin-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-42457341]:first-child{margin-left:52%!important}.col-offset-6[data-v-42457341]:not(first-child){margin-left:56%!important}.col-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-42457341]:first-child{margin-left:0}.col-no-margin-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-42457341]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-42457341]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-42457341]:first-child{margin-left:0}.col-no-margin-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-42457341]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-42457341]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-42457341]:first-child{margin-left:0}.col-no-margin-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-42457341]:first-child{margin-left:78%!important}.col-offset-9[data-v-42457341]:not(first-child){margin-left:82%!important}.col-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-42457341]:first-child{margin-left:0}.col-no-margin-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-42457341]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-42457341]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-42457341]:first-child{margin-left:0}.col-no-margin-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-42457341]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-42457341]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-42457341]:first-child{margin-left:0}.col-offset-s-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-42457341]:first-child{margin-left:0}.col-offset-s-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-42457341]:first-child{margin-left:0}.col-offset-s-3[data-v-42457341]{margin-left:26%}.col-no-margin-s-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-42457341]:first-child{margin-left:0}.col-offset-s-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-42457341]:first-child{margin-left:0}.col-offset-s-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-42457341]:first-child{margin-left:0}.col-offset-s-6[data-v-42457341]{margin-left:52%}.col-no-margin-s-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-42457341]:first-child{margin-left:0}.col-offset-s-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-42457341]:first-child{margin-left:0}.col-offset-s-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-42457341]:first-child{margin-left:0}.col-offset-s-9[data-v-42457341]{margin-left:78%}.col-no-margin-s-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-42457341]:first-child{margin-left:0}.col-offset-s-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-42457341]:first-child{margin-left:0}.col-offset-s-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-s-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-42457341]{display:none!important}.s-visible[data-v-42457341]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-42457341]:first-child{margin-left:0}.col-offset-m-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-42457341]:first-child{margin-left:0}.col-offset-m-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-42457341]:first-child{margin-left:0}.col-offset-m-3[data-v-42457341]{margin-left:26%}.col-no-margin-m-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-42457341]:first-child{margin-left:0}.col-offset-m-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-42457341]:first-child{margin-left:0}.col-offset-m-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-42457341]:first-child{margin-left:0}.col-offset-m-6[data-v-42457341]{margin-left:52%}.col-no-margin-m-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-42457341]:first-child{margin-left:0}.col-offset-m-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-42457341]:first-child{margin-left:0}.col-offset-m-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-42457341]:first-child{margin-left:0}.col-offset-m-9[data-v-42457341]{margin-left:78%}.col-no-margin-m-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-42457341]:first-child{margin-left:0}.col-offset-m-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-42457341]:first-child{margin-left:0}.col-offset-m-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-m-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-42457341]{display:none!important}.m-visible[data-v-42457341]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-42457341]:first-child{margin-left:0}.col-offset-l-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-42457341]:first-child{margin-left:0}.col-offset-l-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-42457341]:first-child{margin-left:0}.col-offset-l-3[data-v-42457341]{margin-left:26%}.col-no-margin-l-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-42457341]:first-child{margin-left:0}.col-offset-l-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-42457341]:first-child{margin-left:0}.col-offset-l-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-42457341]:first-child{margin-left:0}.col-offset-l-6[data-v-42457341]{margin-left:52%}.col-no-margin-l-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-42457341]:first-child{margin-left:0}.col-offset-l-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-42457341]:first-child{margin-left:0}.col-offset-l-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-42457341]:first-child{margin-left:0}.col-offset-l-9[data-v-42457341]{margin-left:78%}.col-no-margin-l-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-42457341]:first-child{margin-left:0}.col-offset-l-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-42457341]:first-child{margin-left:0}.col-offset-l-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-l-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-42457341]{display:none!important}.l-visible[data-v-42457341]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-3[data-v-42457341]{margin-left:26%}.col-no-margin-xl-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-6[data-v-42457341]{margin-left:52%}.col-no-margin-xl-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-9[data-v-42457341]{margin-left:78%}.col-no-margin-xl-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-42457341]:first-child{margin-left:0}.col-offset-xl-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-42457341]{display:none!important}.xl-visible[data-v-42457341]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-42457341]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-1[data-v-42457341]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-42457341]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-42457341]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-2[data-v-42457341]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-42457341]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-42457341]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-3[data-v-42457341]{margin-left:26%}.col-no-margin-xxl-3[data-v-42457341]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-42457341]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-4[data-v-42457341]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-42457341]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-42457341]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-5[data-v-42457341]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-42457341]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-42457341]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-6[data-v-42457341]{margin-left:52%}.col-no-margin-xxl-6[data-v-42457341]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-42457341]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-7[data-v-42457341]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-42457341]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-42457341]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-8[data-v-42457341]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-42457341]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-42457341]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-9[data-v-42457341]{margin-left:78%}.col-no-margin-xxl-9[data-v-42457341]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-42457341]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-10[data-v-42457341]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-42457341]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-42457341]:first-child{margin-left:0}.col-offset-xxl-11[data-v-42457341]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-42457341]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-42457341]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-42457341]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-42457341]{display:none!important}.xxl-visible[data-v-42457341]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-42457341]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-42457341]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-42457341]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-42457341]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-42457341]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-42457341]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-42457341]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-42457341]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-42457341]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-42457341]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-42457341]{display:none!important}}.vertical-center[data-v-42457341]{display:flex;align-items:center}.horizontal-center[data-v-42457341]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-42457341]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-42457341]{display:none!important}.no-content[data-v-42457341]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-42457341]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-42457341]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-42457341]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-42457341]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-42457341]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-42457341]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-42457341],.btn[data-v-42457341],button[data-v-42457341]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-42457341],.btn-default[type=submit][data-v-42457341],.btn.btn-primary[data-v-42457341],.btn[type=submit][data-v-42457341],button.btn-primary[data-v-42457341],button[type=submit][data-v-42457341]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-42457341]:hover,.btn[data-v-42457341]:hover,button[data-v-42457341]:hover{color:#35b870}.btn .icon[data-v-42457341],.btn-default .icon[data-v-42457341],button .icon[data-v-42457341]{margin-right:.5em}.btn-default[data-v-42457341]:disabled,.btn-default[disabled][data-v-42457341],.btn[data-v-42457341]:disabled,.btn[disabled][data-v-42457341],button[data-v-42457341]:disabled,button[disabled][data-v-42457341]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-42457341]{cursor:grab!important}.dragged[data-v-42457341]{opacity:.5!important}input[type=password][data-v-42457341],input[type=text][data-v-42457341]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-42457341]:focus,input[type=text][data-v-42457341]:focus{border:1px solid #35b870}button[data-v-42457341],input[data-v-42457341]{outline:none}input[type=text][data-v-42457341]:hover,textarea[data-v-42457341]:hover{border:1px solid #9cdfb0}ul[data-v-42457341]{margin:0;padding:0;list-style:none}a[data-v-42457341]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-42457341]:hover{color:#35b870}[data-v-42457341]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-42457341]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-42457341]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-42457341]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-42457341]{color:#ad1717}body[data-v-42457341]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-42457341] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-42457341] .nav .path{cursor:pointer}.browser[data-v-42457341] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-42457341] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-42457341]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-42457341]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-42457341],input[type=number][data-v-42457341],input[type=password][data-v-42457341],input[type=search][data-v-42457341],input[type=text][data-v-42457341],input[type=time][data-v-42457341]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-42457341]:hover,input[type=number][data-v-42457341]:hover,input[type=password][data-v-42457341]:hover,input[type=search][data-v-42457341]:hover,input[type=text][data-v-42457341]:hover,input[type=time][data-v-42457341]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-42457341]:focus,input[type=number][data-v-42457341]:focus,input[type=password][data-v-42457341]:focus,input[type=search][data-v-42457341]:focus,input[type=text][data-v-42457341]:focus,input[type=time][data-v-42457341]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-42457341],input[type=number].with-icon[data-v-42457341],input[type=password].with-icon[data-v-42457341],input[type=search].with-icon[data-v-42457341],input[type=text].with-icon[data-v-42457341],input[type=time].with-icon[data-v-42457341]{padding-left:.3em}input[type=search][data-v-42457341],input[type=text][data-v-42457341]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-42457341]{animation-fill-mode:both;animation-name:fadeIn-42457341;-webkit-animation-name:fadeIn-42457341}.fade-in[data-v-42457341],.fade-out[data-v-42457341]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-42457341]{animation-fill-mode:both;animation-name:fadeOut-42457341;-webkit-animation-name:fadeOut-42457341}.expand[data-v-42457341]{animation-fill-mode:both;animation-name:expand-42457341;-webkit-animation-name:expand-42457341}.expand[data-v-42457341],.shrink[data-v-42457341]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-42457341]{animation-fill-mode:both;animation-name:shrink-42457341;-webkit-animation-name:shrink-42457341}.fold[data-v-42457341]{animation-fill-mode:both;animation-name:fold-42457341;-webkit-animation-name:fold-42457341}.fold[data-v-42457341],.unfold[data-v-42457341]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-42457341]{animation-fill-mode:both;animation-name:unfold-42457341;-webkit-animation-name:unfold-42457341}.dim[data-v-42457341]{animation-fill-mode:both;animation-name:dim-42457341;-webkit-animation-name:dim-42457341}.brighten[data-v-42457341],.dim[data-v-42457341]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-42457341]{animation-fill-mode:both;animation-name:brighten-42457341;-webkit-animation-name:brighten-42457341}@keyframes fadeIn-42457341{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-42457341{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-42457341{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-42457341{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-42457341{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-42457341{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-42457341{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-42457341{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-42457341]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-42457341;-webkit-animation-name:glow-42457341}.loop[data-v-42457341]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-42457341{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-42457341]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-42457341]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-42457341]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.no-token[data-v-42457341]{padding:.5em}.no-token .title[data-v-42457341]{font-size:1.5em;font-weight:700;margin-bottom:1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4795.708edd2b.css b/platypush/backend/http/webapp/dist/static/css/4795.708edd2b.css new file mode 100644 index 0000000000..778616cb5f --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/4795.708edd2b.css @@ -0,0 +1 @@ +.col-1[data-v-7b0732e4],.entity .head .icon[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7b0732e4]:first-child,.entity .head .icon[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7b0732e4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7b0732e4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7b0732e4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7b0732e4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7b0732e4],.entity .head .value-and-toggler[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7b0732e4]:first-child,.entity .head .value-and-toggler[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7b0732e4]:first-child{margin-left:26%!important}.col-offset-3[data-v-7b0732e4]:not(first-child){margin-left:30%!important}.col-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7b0732e4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7b0732e4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7b0732e4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7b0732e4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7b0732e4]:first-child{margin-left:52%!important}.col-offset-6[data-v-7b0732e4]:not(first-child){margin-left:56%!important}.col-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7b0732e4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7b0732e4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7b0732e4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7b0732e4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7b0732e4]:first-child{margin-left:78%!important}.col-offset-9[data-v-7b0732e4]:not(first-child){margin-left:82%!important}.col-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7b0732e4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7b0732e4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7b0732e4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7b0732e4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7b0732e4],.entity .head .value-container[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7b0732e4]:first-child,.entity .head .value-container[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-s-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-s-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7b0732e4],.entity .head .label[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7b0732e4]:first-child,.entity .head .label[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-s-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-7b0732e4],.attributes .child .value[data-v-7b0732e4],.col-s-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-7b0732e4]:first-child,.attributes .child .value[data-v-7b0732e4]:first-child,.col-s-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7b0732e4]{display:none!important}.s-visible[data-v-7b0732e4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7b0732e4],.entity .head .value-container[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7b0732e4]:first-child,.entity .head .value-container[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-m-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-7b0732e4],.attributes .child .value[data-v-7b0732e4],.col-m-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-7b0732e4]:first-child,.attributes .child .value[data-v-7b0732e4]:first-child,.col-m-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-m-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7b0732e4],.entity .head .label[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7b0732e4]:first-child,.entity .head .label[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-m-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7b0732e4]{display:none!important}.m-visible[data-v-7b0732e4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-l-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-l-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-l-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7b0732e4]{display:none!important}.l-visible[data-v-7b0732e4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-xl-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-xl-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-xl-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7b0732e4]{display:none!important}.xl-visible[data-v-7b0732e4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-xxl-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-xxl-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-xxl-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7b0732e4]{display:none!important}.xxl-visible[data-v-7b0732e4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7b0732e4]{display:none!important}}.vertical-center[data-v-7b0732e4]{display:flex;align-items:center}.horizontal-center[data-v-7b0732e4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-7b0732e4],.pull-right[data-v-7b0732e4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7b0732e4]{display:none!important}.no-content[data-v-7b0732e4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7b0732e4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7b0732e4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7b0732e4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7b0732e4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7b0732e4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7b0732e4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7b0732e4],.btn[data-v-7b0732e4],button[data-v-7b0732e4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7b0732e4],.btn-default[type=submit][data-v-7b0732e4],.btn.btn-primary[data-v-7b0732e4],.btn[type=submit][data-v-7b0732e4],button.btn-primary[data-v-7b0732e4],button[type=submit][data-v-7b0732e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7b0732e4]:hover,.btn[data-v-7b0732e4]:hover,button[data-v-7b0732e4]:hover{color:#35b870}.btn .icon[data-v-7b0732e4],.btn-default .icon[data-v-7b0732e4],button .icon[data-v-7b0732e4]{margin-right:.5em}.btn-default[data-v-7b0732e4]:disabled,.btn-default[disabled][data-v-7b0732e4],.btn[data-v-7b0732e4]:disabled,.btn[disabled][data-v-7b0732e4],button[data-v-7b0732e4]:disabled,button[disabled][data-v-7b0732e4]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7b0732e4]{cursor:grab!important}.dragged[data-v-7b0732e4]{opacity:.5!important}input[type=password][data-v-7b0732e4],input[type=text][data-v-7b0732e4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7b0732e4]:focus,input[type=text][data-v-7b0732e4]:focus{border:1px solid #35b870}button[data-v-7b0732e4],input[data-v-7b0732e4]{outline:none}input[type=text][data-v-7b0732e4]:hover,textarea[data-v-7b0732e4]:hover{border:1px solid #9cdfb0}ul[data-v-7b0732e4]{margin:0;padding:0;list-style:none}a[data-v-7b0732e4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7b0732e4]:hover{color:#35b870}[data-v-7b0732e4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7b0732e4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7b0732e4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7b0732e4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7b0732e4]{color:#ad1717}body[data-v-7b0732e4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7b0732e4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7b0732e4] .nav .path{cursor:pointer}.browser[data-v-7b0732e4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7b0732e4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7b0732e4]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7b0732e4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7b0732e4],input[type=number][data-v-7b0732e4],input[type=password][data-v-7b0732e4],input[type=search][data-v-7b0732e4],input[type=text][data-v-7b0732e4],input[type=time][data-v-7b0732e4]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7b0732e4]:hover,input[type=number][data-v-7b0732e4]:hover,input[type=password][data-v-7b0732e4]:hover,input[type=search][data-v-7b0732e4]:hover,input[type=text][data-v-7b0732e4]:hover,input[type=time][data-v-7b0732e4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7b0732e4]:focus,input[type=number][data-v-7b0732e4]:focus,input[type=password][data-v-7b0732e4]:focus,input[type=search][data-v-7b0732e4]:focus,input[type=text][data-v-7b0732e4]:focus,input[type=time][data-v-7b0732e4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7b0732e4],input[type=number].with-icon[data-v-7b0732e4],input[type=password].with-icon[data-v-7b0732e4],input[type=search].with-icon[data-v-7b0732e4],input[type=text].with-icon[data-v-7b0732e4],input[type=time].with-icon[data-v-7b0732e4]{padding-left:.3em}input[type=search][data-v-7b0732e4],input[type=text][data-v-7b0732e4]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-7b0732e4],.fade-in[data-v-7b0732e4]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-7b0732e4;-webkit-animation-name:fadeIn-7b0732e4}.fade-out[data-v-7b0732e4]{animation-fill-mode:both;animation-name:fadeOut-7b0732e4;-webkit-animation-name:fadeOut-7b0732e4}.expand[data-v-7b0732e4],.fade-out[data-v-7b0732e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-7b0732e4]{animation-fill-mode:both;animation-name:expand-7b0732e4;-webkit-animation-name:expand-7b0732e4}.shrink[data-v-7b0732e4]{animation-fill-mode:both;animation-name:shrink-7b0732e4;-webkit-animation-name:shrink-7b0732e4}.fold[data-v-7b0732e4],.shrink[data-v-7b0732e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-7b0732e4]{animation-fill-mode:both;animation-name:fold-7b0732e4;-webkit-animation-name:fold-7b0732e4}.unfold[data-v-7b0732e4]{animation-fill-mode:both;animation-name:unfold-7b0732e4;-webkit-animation-name:unfold-7b0732e4}.dim[data-v-7b0732e4],.unfold[data-v-7b0732e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-7b0732e4]{animation-fill-mode:both;animation-name:dim-7b0732e4;-webkit-animation-name:dim-7b0732e4}.brighten[data-v-7b0732e4]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-7b0732e4;-webkit-animation-name:brighten-7b0732e4}@keyframes fadeIn-7b0732e4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7b0732e4{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7b0732e4{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7b0732e4{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7b0732e4{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7b0732e4{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7b0732e4{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7b0732e4{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7b0732e4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7b0732e4;-webkit-animation-name:glow-7b0732e4}.loop[data-v-7b0732e4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7b0732e4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7b0732e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7b0732e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7b0732e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-7b0732e4]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-7b0732e4]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-7b0732e4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-7b0732e4]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-7b0732e4]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-7b0732e4]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-7b0732e4]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-7b0732e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-7b0732e4]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-7b0732e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-7b0732e4]{margin-right:.5em}.entity .head .icon[data-v-7b0732e4]:hover{color:#35b870}.entity .head .label[data-v-7b0732e4]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-7b0732e4]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-7b0732e4]:hover{color:#35b870}.entity .head .value[data-v-7b0732e4]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-7b0732e4]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-7b0732e4]{margin-right:2.5em}.entity .head .value-container[data-v-7b0732e4]{min-width:7em}.entity .head .unit[data-v-7b0732e4]{margin-left:.2em}.entity .head .pull-right[data-v-7b0732e4],.entity .head .value-container[data-v-7b0732e4]{padding-right:.5em}.entity .head .pull-right[data-v-7b0732e4] .power-switch,.entity .head .value-container[data-v-7b0732e4] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-7b0732e4]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-7b0732e4]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-7b0732e4]:hover{color:#35b870}.collapse-toggler[data-v-7b0732e4]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-7b0732e4]:hover{color:#35b870}.attributes .child[data-v-7b0732e4]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-7b0732e4]{flex-direction:column}}.attributes .child[data-v-7b0732e4]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-7b0732e4]:hover{cursor:auto}.attributes .child.head[data-v-7b0732e4]{cursor:pointer}.attributes .child.head[data-v-7b0732e4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-7b0732e4]{font-weight:700}.attributes .child .value[data-v-7b0732e4]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-7b0732e4]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-7b0732e4]:last-child,.entity-container-wrapper.with-children[data-v-7b0732e4]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-7b0732e4]{animation:blink-animation-7b0732e4 1s steps(20,start)}@keyframes blink-animation-7b0732e4{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.col-1[data-v-548054ce],.entity .head .icon[data-v-548054ce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-548054ce]:first-child,.entity .head .icon[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-1[data-v-548054ce]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-548054ce]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-548054ce]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-548054ce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-2[data-v-548054ce]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-548054ce]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-548054ce]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-548054ce],.entity .head .value-and-toggler[data-v-548054ce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-548054ce]:first-child,.entity .head .value-and-toggler[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-3[data-v-548054ce]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-548054ce]:first-child{margin-left:26%!important}.col-offset-3[data-v-548054ce]:not(first-child){margin-left:30%!important}.col-4[data-v-548054ce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-4[data-v-548054ce]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-548054ce]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-548054ce]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-548054ce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-5[data-v-548054ce]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-548054ce]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-548054ce]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-548054ce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-6[data-v-548054ce]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-548054ce]:first-child{margin-left:52%!important}.col-offset-6[data-v-548054ce]:not(first-child){margin-left:56%!important}.col-7[data-v-548054ce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-7[data-v-548054ce]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-548054ce]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-548054ce]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-548054ce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-8[data-v-548054ce]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-548054ce]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-548054ce]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-548054ce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-9[data-v-548054ce]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-548054ce]:first-child{margin-left:78%!important}.col-offset-9[data-v-548054ce]:not(first-child){margin-left:82%!important}.col-10[data-v-548054ce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-10[data-v-548054ce]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-548054ce]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-548054ce]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-548054ce]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-548054ce]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-548054ce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-1[data-v-548054ce]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-548054ce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-548054ce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-2[data-v-548054ce]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-548054ce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-548054ce],.entity .head .value-container[data-v-548054ce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-548054ce]:first-child,.entity .head .value-container[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-3[data-v-548054ce]{margin-left:26%}.col-no-margin-s-3[data-v-548054ce]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-548054ce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-4[data-v-548054ce]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-548054ce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-548054ce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-5[data-v-548054ce]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-548054ce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-548054ce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-6[data-v-548054ce]{margin-left:52%}.col-no-margin-s-6[data-v-548054ce]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-548054ce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-7[data-v-548054ce]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-548054ce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-548054ce],.entity .head .label[data-v-548054ce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-548054ce]:first-child,.entity .head .label[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-8[data-v-548054ce]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-548054ce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-548054ce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-9[data-v-548054ce]{margin-left:78%}.col-no-margin-s-9[data-v-548054ce]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-548054ce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-10[data-v-548054ce]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-548054ce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-548054ce]:first-child{margin-left:0}.col-offset-s-11[data-v-548054ce]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-548054ce],.attributes .child .value[data-v-548054ce],.col-s-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-548054ce]:first-child,.attributes .child .value[data-v-548054ce]:first-child,.col-s-12[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-s-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-548054ce]{display:none!important}.s-visible[data-v-548054ce]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-548054ce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-1[data-v-548054ce]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-548054ce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-548054ce],.entity .head .value-container[data-v-548054ce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-548054ce]:first-child,.entity .head .value-container[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-2[data-v-548054ce]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-548054ce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-548054ce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-3[data-v-548054ce]{margin-left:26%}.col-no-margin-m-3[data-v-548054ce]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-548054ce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-4[data-v-548054ce]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-548054ce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-548054ce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-5[data-v-548054ce]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-548054ce]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-548054ce],.attributes .child .value[data-v-548054ce],.col-m-6[data-v-548054ce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-548054ce]:first-child,.attributes .child .value[data-v-548054ce]:first-child,.col-m-6[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-6[data-v-548054ce]{margin-left:52%}.col-no-margin-m-6[data-v-548054ce]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-548054ce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-7[data-v-548054ce]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-548054ce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-548054ce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-8[data-v-548054ce]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-548054ce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-548054ce],.entity .head .label[data-v-548054ce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-548054ce]:first-child,.entity .head .label[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-9[data-v-548054ce]{margin-left:78%}.col-no-margin-m-9[data-v-548054ce]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-548054ce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-10[data-v-548054ce]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-548054ce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-548054ce]:first-child{margin-left:0}.col-offset-m-11[data-v-548054ce]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-m-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-548054ce]{display:none!important}.m-visible[data-v-548054ce]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-548054ce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-1[data-v-548054ce]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-548054ce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-548054ce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-2[data-v-548054ce]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-548054ce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-548054ce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-3[data-v-548054ce]{margin-left:26%}.col-no-margin-l-3[data-v-548054ce]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-548054ce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-4[data-v-548054ce]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-548054ce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-548054ce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-5[data-v-548054ce]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-548054ce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-548054ce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-6[data-v-548054ce]{margin-left:52%}.col-no-margin-l-6[data-v-548054ce]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-548054ce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-7[data-v-548054ce]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-548054ce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-548054ce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-8[data-v-548054ce]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-548054ce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-548054ce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-9[data-v-548054ce]{margin-left:78%}.col-no-margin-l-9[data-v-548054ce]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-548054ce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-10[data-v-548054ce]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-548054ce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-548054ce]:first-child{margin-left:0}.col-offset-l-11[data-v-548054ce]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-l-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-548054ce]{display:none!important}.l-visible[data-v-548054ce]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-548054ce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-1[data-v-548054ce]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-548054ce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-548054ce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-2[data-v-548054ce]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-548054ce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-548054ce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-3[data-v-548054ce]{margin-left:26%}.col-no-margin-xl-3[data-v-548054ce]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-548054ce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-4[data-v-548054ce]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-548054ce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-548054ce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-5[data-v-548054ce]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-548054ce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-548054ce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-6[data-v-548054ce]{margin-left:52%}.col-no-margin-xl-6[data-v-548054ce]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-548054ce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-7[data-v-548054ce]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-548054ce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-548054ce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-8[data-v-548054ce]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-548054ce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-548054ce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-9[data-v-548054ce]{margin-left:78%}.col-no-margin-xl-9[data-v-548054ce]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-548054ce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-10[data-v-548054ce]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-548054ce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-548054ce]:first-child{margin-left:0}.col-offset-xl-11[data-v-548054ce]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-548054ce]{display:none!important}.xl-visible[data-v-548054ce]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-548054ce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-1[data-v-548054ce]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-548054ce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-548054ce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-2[data-v-548054ce]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-548054ce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-548054ce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-3[data-v-548054ce]{margin-left:26%}.col-no-margin-xxl-3[data-v-548054ce]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-548054ce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-4[data-v-548054ce]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-548054ce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-548054ce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-5[data-v-548054ce]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-548054ce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-548054ce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-6[data-v-548054ce]{margin-left:52%}.col-no-margin-xxl-6[data-v-548054ce]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-548054ce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-7[data-v-548054ce]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-548054ce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-548054ce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-8[data-v-548054ce]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-548054ce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-548054ce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-9[data-v-548054ce]{margin-left:78%}.col-no-margin-xxl-9[data-v-548054ce]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-548054ce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-10[data-v-548054ce]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-548054ce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-548054ce]:first-child{margin-left:0}.col-offset-xxl-11[data-v-548054ce]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-548054ce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-548054ce]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-548054ce]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-548054ce]{display:none!important}.xxl-visible[data-v-548054ce]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-548054ce]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-548054ce]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-548054ce]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-548054ce]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-548054ce]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-548054ce]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-548054ce]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-548054ce]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-548054ce]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-548054ce]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-548054ce]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-548054ce]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-548054ce]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-548054ce]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-548054ce]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-548054ce]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-548054ce]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-548054ce]{display:none!important}}.vertical-center[data-v-548054ce]{display:flex;align-items:center}.horizontal-center[data-v-548054ce]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-548054ce],.pull-right[data-v-548054ce]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-548054ce]{display:none!important}.no-content[data-v-548054ce]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-548054ce]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-548054ce]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-548054ce]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-548054ce]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-548054ce]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-548054ce]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-548054ce],.btn[data-v-548054ce],button[data-v-548054ce]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-548054ce],.btn-default[type=submit][data-v-548054ce],.btn.btn-primary[data-v-548054ce],.btn[type=submit][data-v-548054ce],button.btn-primary[data-v-548054ce],button[type=submit][data-v-548054ce]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-548054ce]:hover,.btn[data-v-548054ce]:hover,button[data-v-548054ce]:hover{color:#35b870}.btn .icon[data-v-548054ce],.btn-default .icon[data-v-548054ce],button .icon[data-v-548054ce]{margin-right:.5em}.btn-default[data-v-548054ce]:disabled,.btn-default[disabled][data-v-548054ce],.btn[data-v-548054ce]:disabled,.btn[disabled][data-v-548054ce],button[data-v-548054ce]:disabled,button[disabled][data-v-548054ce]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-548054ce]{cursor:grab!important}.dragged[data-v-548054ce]{opacity:.5!important}input[type=password][data-v-548054ce],input[type=text][data-v-548054ce]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-548054ce]:focus,input[type=text][data-v-548054ce]:focus{border:1px solid #35b870}button[data-v-548054ce],input[data-v-548054ce]{outline:none}input[type=text][data-v-548054ce]:hover,textarea[data-v-548054ce]:hover{border:1px solid #9cdfb0}ul[data-v-548054ce]{margin:0;padding:0;list-style:none}a[data-v-548054ce]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-548054ce]:hover{color:#35b870}[data-v-548054ce]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-548054ce]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-548054ce]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-548054ce]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-548054ce]{color:#ad1717}body[data-v-548054ce]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-548054ce] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-548054ce] .nav .path{cursor:pointer}.browser[data-v-548054ce] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-548054ce] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-548054ce]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-548054ce]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-548054ce],input[type=number][data-v-548054ce],input[type=password][data-v-548054ce],input[type=search][data-v-548054ce],input[type=text][data-v-548054ce],input[type=time][data-v-548054ce]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-548054ce]:hover,input[type=number][data-v-548054ce]:hover,input[type=password][data-v-548054ce]:hover,input[type=search][data-v-548054ce]:hover,input[type=text][data-v-548054ce]:hover,input[type=time][data-v-548054ce]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-548054ce]:focus,input[type=number][data-v-548054ce]:focus,input[type=password][data-v-548054ce]:focus,input[type=search][data-v-548054ce]:focus,input[type=text][data-v-548054ce]:focus,input[type=time][data-v-548054ce]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-548054ce],input[type=number].with-icon[data-v-548054ce],input[type=password].with-icon[data-v-548054ce],input[type=search].with-icon[data-v-548054ce],input[type=text].with-icon[data-v-548054ce],input[type=time].with-icon[data-v-548054ce]{padding-left:.3em}input[type=search][data-v-548054ce],input[type=text][data-v-548054ce]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-548054ce],.fade-in[data-v-548054ce]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-548054ce;-webkit-animation-name:fadeIn-548054ce}.fade-out[data-v-548054ce]{animation-fill-mode:both;animation-name:fadeOut-548054ce;-webkit-animation-name:fadeOut-548054ce}.expand[data-v-548054ce],.fade-out[data-v-548054ce]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-548054ce]{animation-fill-mode:both;animation-name:expand-548054ce;-webkit-animation-name:expand-548054ce}.shrink[data-v-548054ce]{animation-fill-mode:both;animation-name:shrink-548054ce;-webkit-animation-name:shrink-548054ce}.fold[data-v-548054ce],.shrink[data-v-548054ce]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-548054ce]{animation-fill-mode:both;animation-name:fold-548054ce;-webkit-animation-name:fold-548054ce}.unfold[data-v-548054ce]{animation-fill-mode:both;animation-name:unfold-548054ce;-webkit-animation-name:unfold-548054ce}.dim[data-v-548054ce],.unfold[data-v-548054ce]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-548054ce]{animation-fill-mode:both;animation-name:dim-548054ce;-webkit-animation-name:dim-548054ce}.brighten[data-v-548054ce]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-548054ce;-webkit-animation-name:brighten-548054ce}@keyframes fadeIn-548054ce{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-548054ce{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-548054ce{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-548054ce{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-548054ce{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-548054ce{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-548054ce{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-548054ce{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-548054ce]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-548054ce;-webkit-animation-name:glow-548054ce}.loop[data-v-548054ce]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-548054ce{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-548054ce]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-548054ce]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-548054ce]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-548054ce]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-548054ce]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-548054ce]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-548054ce]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-548054ce]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-548054ce]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-548054ce]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-548054ce]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-548054ce]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-548054ce]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-548054ce]{margin-right:.5em}.entity .head .icon[data-v-548054ce]:hover{color:#35b870}.entity .head .label[data-v-548054ce]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-548054ce]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-548054ce]:hover{color:#35b870}.entity .head .value[data-v-548054ce]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-548054ce]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-548054ce]{margin-right:2.5em}.entity .head .value-container[data-v-548054ce]{min-width:7em}.entity .head .unit[data-v-548054ce]{margin-left:.2em}.entity .head .pull-right[data-v-548054ce],.entity .head .value-container[data-v-548054ce]{padding-right:.5em}.entity .head .pull-right[data-v-548054ce] .power-switch,.entity .head .value-container[data-v-548054ce] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-548054ce]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-548054ce]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-548054ce]:hover{color:#35b870}.collapse-toggler[data-v-548054ce]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-548054ce]:hover{color:#35b870}.attributes .child[data-v-548054ce]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-548054ce]{flex-direction:column}}.attributes .child[data-v-548054ce]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-548054ce]:hover{cursor:auto}.attributes .child.head[data-v-548054ce]{cursor:pointer}.attributes .child.head[data-v-548054ce]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-548054ce]{font-weight:700}.attributes .child .value[data-v-548054ce]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-548054ce]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-548054ce]:last-child,.entity-container-wrapper.with-children[data-v-548054ce]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-548054ce]{animation:blink-animation-548054ce 1s steps(20,start)}@keyframes blink-animation-548054ce{0%{background:initial}50%{background:#8fefb7}to{background:initial}}@media screen and (max-width:calc(769px - 1px)){[data-v-548054ce] .modal{width:100%}}[data-v-548054ce] .modal .table-row{display:flex;align-items:center;box-shadow:none;padding:.5em;border-bottom:1px solid #ddd}[data-v-548054ce] .modal .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-548054ce] .modal .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-548054ce] .modal .table-row .title{width:50%;display:inline-block}}[data-v-548054ce] .modal .table-row .value{overflow:auto}@media screen and (min-width:769px){[data-v-548054ce] .modal .table-row .value{width:50%;display:inline-block;text-align:right}}@media screen and (max-width:calc(769px - 1px)){[data-v-548054ce] .modal .content{width:calc(100% - 1em)!important}}@media screen and (min-width:769px){[data-v-548054ce] .modal .content{min-width:30em}}[data-v-548054ce] .modal .content .body{padding:0}@media screen and (min-width:1024px){[data-v-548054ce] .modal .content .body{min-width:45em}}[data-v-548054ce] .modal button{border:none;background:none;padding:0 .5em}[data-v-548054ce] .modal .delete-entity-container{color:#ad1717;cursor:pointer}[data-v-548054ce] .modal .delete-entity-container button{color:#ad1717}[data-v-548054ce] .modal .section{margin:0}[data-v-548054ce] .modal .section .section-title{display:flex;cursor:pointer;padding:1em;text-transform:uppercase;letter-spacing:.033em;border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver}[data-v-548054ce] .modal .section .section-title:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-548054ce] .modal .extra-info-container .value{white-space:pre-wrap;opacity:.8}[data-v-548054ce] .modal .value a,[data-v-548054ce] .modal .value.url{text-align:right;text-decoration:underline;opacity:.8}[data-v-548054ce] .modal .value a:hover,[data-v-548054ce] .modal .value.url:hover{opacity:.6}[data-v-548054ce] .modal .value .entity-image{max-height:5em}@media screen and (max-width:calc(768px - 1px)){[data-v-548054ce] .modal .entity-container-wrapper.collapsed{border-radius:0;box-shadow:none;border-bottom:1px solid #e1e4e8}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5053.af8a2a60.css b/platypush/backend/http/webapp/dist/static/css/5053.af8a2a60.css new file mode 100644 index 0000000000..455489f582 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5053.af8a2a60.css @@ -0,0 +1 @@ +pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#2e3440}.hljs,.hljs-subst{color:#d8dee9}.hljs-selector-tag{color:#81a1c1}.hljs-selector-id{color:#8fbcbb;font-weight:700}.hljs-selector-attr,.hljs-selector-class{color:#8fbcbb}.hljs-property,.hljs-selector-pseudo{color:#88c0d0}.hljs-addition{background-color:hsla(92,28%,65%,.5)}.hljs-deletion{background-color:rgba(191,97,106,.5)}.hljs-built_in,.hljs-class,.hljs-type{color:#8fbcbb}.hljs-function,.hljs-function>.hljs-title,.hljs-title.hljs-function{color:#88c0d0}.hljs-keyword,.hljs-literal,.hljs-symbol{color:#81a1c1}.hljs-number{color:#b48ead}.hljs-regexp{color:#ebcb8b}.hljs-string{color:#a3be8c}.hljs-title{color:#8fbcbb}.hljs-params{color:#d8dee9}.hljs-bullet{color:#81a1c1}.hljs-code{color:#8fbcbb}.hljs-emphasis{font-style:italic}.hljs-formula{color:#8fbcbb}.hljs-strong{font-weight:700}.hljs-link:hover{text-decoration:underline}.hljs-comment,.hljs-quote{color:#4c566a}.hljs-doctag{color:#8fbcbb}.hljs-meta,.hljs-meta .hljs-keyword{color:#5e81ac}.hljs-meta .hljs-string{color:#a3be8c}.hljs-attr{color:#8fbcbb}.hljs-attribute{color:#d8dee9}.hljs-name{color:#81a1c1}.hljs-section{color:#88c0d0}.hljs-tag{color:#81a1c1}.hljs-template-variable,.hljs-variable{color:#d8dee9}.hljs-template-tag{color:#5e81ac}.language-abnf .hljs-attribute{color:#88c0d0}.language-abnf .hljs-symbol{color:#ebcb8b}.language-apache .hljs-attribute{color:#88c0d0}.language-apache .hljs-section{color:#81a1c1}.language-arduino .hljs-built_in{color:#88c0d0}.language-aspectj .hljs-meta{color:#d08770}.language-aspectj>.hljs-title{color:#88c0d0}.language-bnf .hljs-attribute{color:#8fbcbb}.language-clojure .hljs-name{color:#88c0d0}.language-clojure .hljs-symbol{color:#ebcb8b}.language-coq .hljs-built_in{color:#88c0d0}.language-cpp .hljs-meta .hljs-string{color:#8fbcbb}.language-css .hljs-built_in{color:#88c0d0}.language-css .hljs-keyword{color:#d08770}.language-diff .hljs-meta,.language-ebnf .hljs-attribute{color:#8fbcbb}.language-glsl .hljs-built_in{color:#88c0d0}.language-groovy .hljs-meta:not(:first-child),.language-haxe .hljs-meta,.language-java .hljs-meta{color:#d08770}.language-ldif .hljs-attribute{color:#8fbcbb}.language-lisp .hljs-name,.language-lua .hljs-built_in,.language-moonscript .hljs-built_in,.language-nginx .hljs-attribute{color:#88c0d0}.language-nginx .hljs-section{color:#5e81ac}.language-pf .hljs-built_in,.language-processing .hljs-built_in{color:#88c0d0}.language-scss .hljs-keyword,.language-stylus .hljs-keyword{color:#81a1c1}.language-swift .hljs-meta{color:#d08770}.language-vim .hljs-built_in{color:#88c0d0;font-style:italic}.language-yaml .hljs-meta{color:#d08770}.col-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7c29571d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7c29571d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7c29571d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7c29571d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7c29571d]:first-child{margin-left:26%!important}.col-offset-3[data-v-7c29571d]:not(first-child){margin-left:30%!important}.col-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7c29571d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7c29571d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7c29571d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7c29571d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7c29571d]:first-child{margin-left:52%!important}.col-offset-6[data-v-7c29571d]:not(first-child){margin-left:56%!important}.col-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7c29571d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7c29571d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7c29571d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7c29571d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7c29571d]:first-child{margin-left:78%!important}.col-offset-9[data-v-7c29571d]:not(first-child){margin-left:82%!important}.col-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7c29571d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7c29571d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7c29571d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7c29571d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-s-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-s-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-s-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7c29571d]{display:none!important}.s-visible[data-v-7c29571d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-m-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-m-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-m-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7c29571d]{display:none!important}.m-visible[data-v-7c29571d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-l-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-l-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-l-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7c29571d]{display:none!important}.l-visible[data-v-7c29571d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-xl-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-xl-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-xl-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7c29571d]{display:none!important}.xl-visible[data-v-7c29571d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-xxl-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-xxl-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-xxl-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7c29571d]{display:none!important}.xxl-visible[data-v-7c29571d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7c29571d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7c29571d]{display:none!important}}.vertical-center[data-v-7c29571d]{display:flex;align-items:center}.horizontal-center[data-v-7c29571d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7c29571d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7c29571d]{display:none!important}.no-content[data-v-7c29571d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7c29571d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7c29571d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7c29571d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7c29571d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7c29571d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7c29571d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7c29571d],.btn[data-v-7c29571d],button[data-v-7c29571d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7c29571d],.btn-default[type=submit][data-v-7c29571d],.btn.btn-primary[data-v-7c29571d],.btn[type=submit][data-v-7c29571d],button.btn-primary[data-v-7c29571d],button[type=submit][data-v-7c29571d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7c29571d]:hover,.btn[data-v-7c29571d]:hover,button[data-v-7c29571d]:hover{color:#35b870}.btn .icon[data-v-7c29571d],.btn-default .icon[data-v-7c29571d],button .icon[data-v-7c29571d]{margin-right:.5em}.btn-default[data-v-7c29571d]:disabled,.btn-default[disabled][data-v-7c29571d],.btn[data-v-7c29571d]:disabled,.btn[disabled][data-v-7c29571d],button[data-v-7c29571d]:disabled,button[disabled][data-v-7c29571d]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7c29571d]{cursor:grab!important}.dragged[data-v-7c29571d]{opacity:.5!important}input[type=password][data-v-7c29571d],input[type=text][data-v-7c29571d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7c29571d]:focus,input[type=text][data-v-7c29571d]:focus{border:1px solid #35b870}button[data-v-7c29571d],input[data-v-7c29571d]{outline:none}input[type=text][data-v-7c29571d]:hover,textarea[data-v-7c29571d]:hover{border:1px solid #9cdfb0}ul[data-v-7c29571d]{margin:0;padding:0;list-style:none}a[data-v-7c29571d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7c29571d]:hover{color:#35b870}[data-v-7c29571d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7c29571d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7c29571d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7c29571d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7c29571d]{color:#ad1717}body[data-v-7c29571d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7c29571d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7c29571d] .nav .path{cursor:pointer}.browser[data-v-7c29571d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7c29571d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7c29571d]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7c29571d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7c29571d],input[type=number][data-v-7c29571d],input[type=password][data-v-7c29571d],input[type=search][data-v-7c29571d],input[type=text][data-v-7c29571d],input[type=time][data-v-7c29571d]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7c29571d]:hover,input[type=number][data-v-7c29571d]:hover,input[type=password][data-v-7c29571d]:hover,input[type=search][data-v-7c29571d]:hover,input[type=text][data-v-7c29571d]:hover,input[type=time][data-v-7c29571d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7c29571d]:focus,input[type=number][data-v-7c29571d]:focus,input[type=password][data-v-7c29571d]:focus,input[type=search][data-v-7c29571d]:focus,input[type=text][data-v-7c29571d]:focus,input[type=time][data-v-7c29571d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7c29571d],input[type=number].with-icon[data-v-7c29571d],input[type=password].with-icon[data-v-7c29571d],input[type=search].with-icon[data-v-7c29571d],input[type=text].with-icon[data-v-7c29571d],input[type=time].with-icon[data-v-7c29571d]{padding-left:.3em}input[type=search][data-v-7c29571d],input[type=text][data-v-7c29571d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7c29571d]{animation-fill-mode:both;animation-name:fadeIn-7c29571d;-webkit-animation-name:fadeIn-7c29571d}.fade-in[data-v-7c29571d],.fade-out[data-v-7c29571d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7c29571d]{animation-fill-mode:both;animation-name:fadeOut-7c29571d;-webkit-animation-name:fadeOut-7c29571d}.expand[data-v-7c29571d]{animation-fill-mode:both;animation-name:expand-7c29571d;-webkit-animation-name:expand-7c29571d}.expand[data-v-7c29571d],.shrink[data-v-7c29571d]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7c29571d]{animation-fill-mode:both;animation-name:shrink-7c29571d;-webkit-animation-name:shrink-7c29571d}.fold[data-v-7c29571d]{animation-fill-mode:both;animation-name:fold-7c29571d;-webkit-animation-name:fold-7c29571d}.fold[data-v-7c29571d],.unfold[data-v-7c29571d]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7c29571d]{animation-fill-mode:both;animation-name:unfold-7c29571d;-webkit-animation-name:unfold-7c29571d}.dim[data-v-7c29571d]{animation-fill-mode:both;animation-name:dim-7c29571d;-webkit-animation-name:dim-7c29571d}.brighten[data-v-7c29571d],.dim[data-v-7c29571d]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7c29571d]{animation-fill-mode:both;animation-name:brighten-7c29571d;-webkit-animation-name:brighten-7c29571d}@keyframes fadeIn-7c29571d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7c29571d{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7c29571d{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7c29571d{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7c29571d{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7c29571d{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7c29571d{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7c29571d{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7c29571d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7c29571d;-webkit-animation-name:glow-7c29571d}.loop[data-v-7c29571d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7c29571d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7c29571d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7c29571d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7c29571d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-7c29571d]{min-height:calc(100vh - 2em)}button[data-v-7c29571d]{background:none;border:none;box-shadow:none}button[data-v-7c29571d]:hover{color:#35b870}hgroup[data-v-7c29571d]{flex-grow:1}h1[data-v-7c29571d]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-7c29571d]{border-radius:.5em .5em 0 0}}h2[data-v-7c29571d]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-7c29571d]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-7c29571d]{margin-top:.5em;padding-top:.5em}section.response[data-v-7c29571d]{flex-grow:1;max-height:40em}section.response .output[data-v-7c29571d]{overflow:auto}.buttons[data-v-7c29571d]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-7c29571d]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-7c29571d]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-7c29571d]{background:#fff}header .buttons[data-v-7c29571d]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-7c29571d]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-7c29571d] .doc blockquote{margin-left:0}textarea[data-v-7c29571d]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-7c29571d]:hover{border:1px solid #38cf80}textarea[data-v-7c29571d]:focus{border:1px solid #32b646}form[data-v-7c29571d]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-7c29571d]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-7c29571d]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-7c29571d]{width:80%;max-width:60em}}.raw .first-row button[data-v-7c29571d]{margin-left:0}[data-v-7c29571d] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-7c29571d] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-7c29571d] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-7c29571d] .args-body .args-list{width:30em}}[data-v-7c29571d] .args-body .args-list label{display:flex;align-items:center}[data-v-7c29571d] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-7c29571d] .args-body .args-list .arg{width:100%}}[data-v-7c29571d] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-7c29571d] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-7c29571d] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-7c29571d]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-7c29571d]{flex-direction:column}}.add-arg[data-v-7c29571d]{width:100%}.add-arg button[data-v-7c29571d]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-7c29571d]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-7c29571d]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-7c29571d]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-7c29571d]{width:100%}.doc-container[data-v-7c29571d],.response[data-v-7c29571d]{flex-grow:1}.doc-container h2[data-v-7c29571d],.response h2[data-v-7c29571d]{display:inline-flex}.doc-container h2 .title[data-v-7c29571d],.response h2 .title[data-v-7c29571d]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-7c29571d],.response h2 .buttons[data-v-7c29571d]{width:2em}.doc-container h2 .buttons button[data-v-7c29571d],.response h2 .buttons button[data-v-7c29571d]{padding:0}.output[data-v-7c29571d]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-7c29571d]{color:red}textarea.curl-snippet[data-v-7c29571d]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.execute-container[data-v-7c29571d]{width:100%;height:100%;color:#23513a;font-weight:400;border-radius:0 0 1em 1em;display:flex;flex-direction:column;align-items:center}.execute-container main[data-v-7c29571d]{width:100%;max-width:1000px;display:flex;flex-direction:column;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75),0 3px 3px 0 hsla(0,0%,73%,.75)}@media screen and (min-width:1024px){.execute-container main[data-v-7c29571d]{margin:1em;border-radius:1em 1em 0 0}}.execute-container main[data-v-7c29571d] .action-editor-container .action-editor{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5086.1debab08.css b/platypush/backend/http/webapp/dist/static/css/5086.1debab08.css new file mode 100644 index 0000000000..610a7772b6 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5086.1debab08.css @@ -0,0 +1 @@ +.col-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7f4d435e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7f4d435e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7f4d435e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7f4d435e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7f4d435e]:first-child{margin-left:26%!important}.col-offset-3[data-v-7f4d435e]:not(first-child){margin-left:30%!important}.col-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7f4d435e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7f4d435e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7f4d435e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7f4d435e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7f4d435e]:first-child{margin-left:52%!important}.col-offset-6[data-v-7f4d435e]:not(first-child){margin-left:56%!important}.col-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7f4d435e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7f4d435e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7f4d435e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7f4d435e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7f4d435e]:first-child{margin-left:78%!important}.col-offset-9[data-v-7f4d435e]:not(first-child){margin-left:82%!important}.col-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7f4d435e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7f4d435e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7f4d435e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7f4d435e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-1[data-v-7f4d435e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-2[data-v-7f4d435e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-3[data-v-7f4d435e]{margin-left:26%}.col-no-margin-s-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-4[data-v-7f4d435e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-5[data-v-7f4d435e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-6[data-v-7f4d435e]{margin-left:52%}.col-no-margin-s-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-7[data-v-7f4d435e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-8[data-v-7f4d435e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-9[data-v-7f4d435e]{margin-left:78%}.col-no-margin-s-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-10[data-v-7f4d435e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-s-11[data-v-7f4d435e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7f4d435e]{display:none!important}.s-visible[data-v-7f4d435e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-1[data-v-7f4d435e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-2[data-v-7f4d435e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-3[data-v-7f4d435e]{margin-left:26%}.col-no-margin-m-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-4[data-v-7f4d435e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-5[data-v-7f4d435e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-6[data-v-7f4d435e]{margin-left:52%}.col-no-margin-m-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-7[data-v-7f4d435e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-8[data-v-7f4d435e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-9[data-v-7f4d435e]{margin-left:78%}.col-no-margin-m-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-10[data-v-7f4d435e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-m-11[data-v-7f4d435e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7f4d435e]{display:none!important}.m-visible[data-v-7f4d435e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-1[data-v-7f4d435e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-2[data-v-7f4d435e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-3[data-v-7f4d435e]{margin-left:26%}.col-no-margin-l-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-4[data-v-7f4d435e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-5[data-v-7f4d435e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-6[data-v-7f4d435e]{margin-left:52%}.col-no-margin-l-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-7[data-v-7f4d435e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-8[data-v-7f4d435e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-9[data-v-7f4d435e]{margin-left:78%}.col-no-margin-l-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-10[data-v-7f4d435e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-l-11[data-v-7f4d435e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7f4d435e]{display:none!important}.l-visible[data-v-7f4d435e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-1[data-v-7f4d435e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-2[data-v-7f4d435e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-3[data-v-7f4d435e]{margin-left:26%}.col-no-margin-xl-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-4[data-v-7f4d435e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-5[data-v-7f4d435e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-6[data-v-7f4d435e]{margin-left:52%}.col-no-margin-xl-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-7[data-v-7f4d435e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-8[data-v-7f4d435e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-9[data-v-7f4d435e]{margin-left:78%}.col-no-margin-xl-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-10[data-v-7f4d435e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xl-11[data-v-7f4d435e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7f4d435e]{display:none!important}.xl-visible[data-v-7f4d435e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7f4d435e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7f4d435e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7f4d435e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7f4d435e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7f4d435e]{margin-left:26%}.col-no-margin-xxl-3[data-v-7f4d435e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7f4d435e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7f4d435e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7f4d435e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7f4d435e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7f4d435e]{margin-left:52%}.col-no-margin-xxl-6[data-v-7f4d435e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7f4d435e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7f4d435e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7f4d435e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7f4d435e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7f4d435e]{margin-left:78%}.col-no-margin-xxl-9[data-v-7f4d435e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7f4d435e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7f4d435e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7f4d435e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7f4d435e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7f4d435e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7f4d435e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7f4d435e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7f4d435e]{display:none!important}.xxl-visible[data-v-7f4d435e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7f4d435e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7f4d435e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7f4d435e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7f4d435e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7f4d435e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7f4d435e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7f4d435e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7f4d435e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7f4d435e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7f4d435e]{display:none!important}}.vertical-center[data-v-7f4d435e]{display:flex;align-items:center}.horizontal-center[data-v-7f4d435e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7f4d435e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7f4d435e]{display:none!important}.no-content[data-v-7f4d435e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7f4d435e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7f4d435e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7f4d435e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7f4d435e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7f4d435e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7f4d435e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7f4d435e],.btn[data-v-7f4d435e],button[data-v-7f4d435e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7f4d435e],.btn-default[type=submit][data-v-7f4d435e],.btn.btn-primary[data-v-7f4d435e],.btn[type=submit][data-v-7f4d435e],button.btn-primary[data-v-7f4d435e],button[type=submit][data-v-7f4d435e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7f4d435e]:hover,.btn[data-v-7f4d435e]:hover,button[data-v-7f4d435e]:hover{color:#35b870}.btn .icon[data-v-7f4d435e],.btn-default .icon[data-v-7f4d435e],button .icon[data-v-7f4d435e]{margin-right:.5em}.btn-default[data-v-7f4d435e]:disabled,.btn-default[disabled][data-v-7f4d435e],.btn[data-v-7f4d435e]:disabled,.btn[disabled][data-v-7f4d435e],button[data-v-7f4d435e]:disabled,button[disabled][data-v-7f4d435e]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7f4d435e]{cursor:grab!important}.dragged[data-v-7f4d435e]{opacity:.5!important}input[type=password][data-v-7f4d435e],input[type=text][data-v-7f4d435e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7f4d435e]:focus,input[type=text][data-v-7f4d435e]:focus{border:1px solid #35b870}button[data-v-7f4d435e],input[data-v-7f4d435e]{outline:none}input[type=text][data-v-7f4d435e]:hover,textarea[data-v-7f4d435e]:hover{border:1px solid #9cdfb0}ul[data-v-7f4d435e]{margin:0;padding:0;list-style:none}a[data-v-7f4d435e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7f4d435e]:hover{color:#35b870}[data-v-7f4d435e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7f4d435e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7f4d435e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7f4d435e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7f4d435e]{color:#ad1717}body[data-v-7f4d435e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7f4d435e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7f4d435e] .nav .path{cursor:pointer}.browser[data-v-7f4d435e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7f4d435e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7f4d435e]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7f4d435e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7f4d435e],input[type=number][data-v-7f4d435e],input[type=password][data-v-7f4d435e],input[type=search][data-v-7f4d435e],input[type=text][data-v-7f4d435e],input[type=time][data-v-7f4d435e]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7f4d435e]:hover,input[type=number][data-v-7f4d435e]:hover,input[type=password][data-v-7f4d435e]:hover,input[type=search][data-v-7f4d435e]:hover,input[type=text][data-v-7f4d435e]:hover,input[type=time][data-v-7f4d435e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7f4d435e]:focus,input[type=number][data-v-7f4d435e]:focus,input[type=password][data-v-7f4d435e]:focus,input[type=search][data-v-7f4d435e]:focus,input[type=text][data-v-7f4d435e]:focus,input[type=time][data-v-7f4d435e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7f4d435e],input[type=number].with-icon[data-v-7f4d435e],input[type=password].with-icon[data-v-7f4d435e],input[type=search].with-icon[data-v-7f4d435e],input[type=text].with-icon[data-v-7f4d435e],input[type=time].with-icon[data-v-7f4d435e]{padding-left:.3em}input[type=search][data-v-7f4d435e],input[type=text][data-v-7f4d435e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7f4d435e]{animation-fill-mode:both;animation-name:fadeIn-7f4d435e;-webkit-animation-name:fadeIn-7f4d435e}.fade-in[data-v-7f4d435e],.fade-out[data-v-7f4d435e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7f4d435e]{animation-fill-mode:both;animation-name:fadeOut-7f4d435e;-webkit-animation-name:fadeOut-7f4d435e}.expand[data-v-7f4d435e]{animation-fill-mode:both;animation-name:expand-7f4d435e;-webkit-animation-name:expand-7f4d435e}.expand[data-v-7f4d435e],.shrink[data-v-7f4d435e]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7f4d435e]{animation-fill-mode:both;animation-name:shrink-7f4d435e;-webkit-animation-name:shrink-7f4d435e}.fold[data-v-7f4d435e]{animation-fill-mode:both;animation-name:fold-7f4d435e;-webkit-animation-name:fold-7f4d435e}.fold[data-v-7f4d435e],.unfold[data-v-7f4d435e]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7f4d435e]{animation-fill-mode:both;animation-name:unfold-7f4d435e;-webkit-animation-name:unfold-7f4d435e}.dim[data-v-7f4d435e],.index .item[data-v-7f4d435e]:hover{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:dim-7f4d435e;-webkit-animation-name:dim-7f4d435e}.brighten[data-v-7f4d435e]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-7f4d435e;-webkit-animation-name:brighten-7f4d435e}@keyframes fadeIn-7f4d435e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7f4d435e{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7f4d435e{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7f4d435e{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7f4d435e{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7f4d435e{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7f4d435e{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7f4d435e{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7f4d435e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7f4d435e;-webkit-animation-name:glow-7f4d435e}.loop[data-v-7f4d435e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7f4d435e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7f4d435e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7f4d435e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7f4d435e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-7f4d435e] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-7f4d435e] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-7f4d435e] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-7f4d435e] .item .icon i{font-size:40px}.grid[data-v-7f4d435e] .item .icon img{width:40px;height:40px}[data-v-7f4d435e] .nav{height:2.5em}.index[data-v-7f4d435e]{height:100%;margin:2px 0 -2px 0}.index .items[data-v-7f4d435e]{height:100%;display:grid;gap:1em;grid-template-columns:repeat(auto-fill,minmax(20em,1fr));overflow-y:auto;padding:1em}.index .item[data-v-7f4d435e]{width:100%;height:15em;flex:1;cursor:pointer}.index .item .image[data-v-7f4d435e]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;overflow:hidden}.index .item .image img[data-v-7f4d435e]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;margin:0}.index .item .image i[data-v-7f4d435e]{font-size:5em}.index .item .name[data-v-7f4d435e]{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;text-align:center;background-color:rgba(0,0,0,.75);color:#fff;font-size:1.75em;font-weight:700;padding:.5em}.index .item[data-v-7f4d435e]{position:relative}.index .item h2[data-v-7f4d435e]{font-size:1.25em;font-weight:700;overflow:auto;text-overflow:ellipsis}.index .item .float[data-v-7f4d435e]{position:absolute;background:rgba(0,0,0,.5);color:#fff;z-index:1;padding:.25em;font-size:.9em;border-radius:.5em}.index .item .float.bottom-right[data-v-7f4d435e]{right:0;bottom:0}.index.is-root .item h2[data-v-7f4d435e]{font-size:2em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5144.58c91f04.css b/platypush/backend/http/webapp/dist/static/css/5144.58c91f04.css new file mode 100644 index 0000000000..f01c8fd2ca --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5144.58c91f04.css @@ -0,0 +1 @@ +.col-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-b22aac3c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-b22aac3c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-b22aac3c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-b22aac3c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-b22aac3c]:first-child{margin-left:26%!important}.col-offset-3[data-v-b22aac3c]:not(first-child){margin-left:30%!important}.col-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-b22aac3c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-b22aac3c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-b22aac3c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-b22aac3c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-b22aac3c]:first-child{margin-left:52%!important}.col-offset-6[data-v-b22aac3c]:not(first-child){margin-left:56%!important}.col-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-b22aac3c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-b22aac3c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-b22aac3c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-b22aac3c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-b22aac3c]:first-child{margin-left:78%!important}.col-offset-9[data-v-b22aac3c]:not(first-child){margin-left:82%!important}.col-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-b22aac3c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-b22aac3c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-b22aac3c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-b22aac3c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-1[data-v-b22aac3c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-2[data-v-b22aac3c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-3[data-v-b22aac3c]{margin-left:26%}.col-no-margin-s-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-4[data-v-b22aac3c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-5[data-v-b22aac3c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-6[data-v-b22aac3c]{margin-left:52%}.col-no-margin-s-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-7[data-v-b22aac3c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-8[data-v-b22aac3c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-9[data-v-b22aac3c]{margin-left:78%}.col-no-margin-s-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-10[data-v-b22aac3c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-s-11[data-v-b22aac3c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-b22aac3c]{display:none!important}.s-visible[data-v-b22aac3c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-1[data-v-b22aac3c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-2[data-v-b22aac3c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-3[data-v-b22aac3c]{margin-left:26%}.col-no-margin-m-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-4[data-v-b22aac3c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-5[data-v-b22aac3c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-6[data-v-b22aac3c]{margin-left:52%}.col-no-margin-m-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-7[data-v-b22aac3c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-8[data-v-b22aac3c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-9[data-v-b22aac3c]{margin-left:78%}.col-no-margin-m-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-10[data-v-b22aac3c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-m-11[data-v-b22aac3c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-b22aac3c]{display:none!important}.m-visible[data-v-b22aac3c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-1[data-v-b22aac3c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-2[data-v-b22aac3c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-3[data-v-b22aac3c]{margin-left:26%}.col-no-margin-l-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-4[data-v-b22aac3c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-5[data-v-b22aac3c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-6[data-v-b22aac3c]{margin-left:52%}.col-no-margin-l-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-7[data-v-b22aac3c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-8[data-v-b22aac3c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-9[data-v-b22aac3c]{margin-left:78%}.col-no-margin-l-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-10[data-v-b22aac3c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-l-11[data-v-b22aac3c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-b22aac3c]{display:none!important}.l-visible[data-v-b22aac3c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-1[data-v-b22aac3c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-2[data-v-b22aac3c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-3[data-v-b22aac3c]{margin-left:26%}.col-no-margin-xl-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-4[data-v-b22aac3c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-5[data-v-b22aac3c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-6[data-v-b22aac3c]{margin-left:52%}.col-no-margin-xl-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-7[data-v-b22aac3c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-8[data-v-b22aac3c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-9[data-v-b22aac3c]{margin-left:78%}.col-no-margin-xl-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-10[data-v-b22aac3c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xl-11[data-v-b22aac3c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-b22aac3c]{display:none!important}.xl-visible[data-v-b22aac3c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-b22aac3c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-b22aac3c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-b22aac3c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-b22aac3c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-b22aac3c]{margin-left:26%}.col-no-margin-xxl-3[data-v-b22aac3c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-b22aac3c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-b22aac3c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-b22aac3c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-b22aac3c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-b22aac3c]{margin-left:52%}.col-no-margin-xxl-6[data-v-b22aac3c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-b22aac3c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-b22aac3c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-b22aac3c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-b22aac3c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-b22aac3c]{margin-left:78%}.col-no-margin-xxl-9[data-v-b22aac3c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-b22aac3c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-b22aac3c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-b22aac3c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-b22aac3c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-b22aac3c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-b22aac3c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-b22aac3c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-b22aac3c]{display:none!important}.xxl-visible[data-v-b22aac3c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-b22aac3c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-b22aac3c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-b22aac3c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-b22aac3c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-b22aac3c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-b22aac3c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-b22aac3c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-b22aac3c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-b22aac3c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-b22aac3c]{display:none!important}}.vertical-center[data-v-b22aac3c]{display:flex;align-items:center}.horizontal-center[data-v-b22aac3c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-b22aac3c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-b22aac3c]{display:none!important}.no-content[data-v-b22aac3c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-b22aac3c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-b22aac3c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-b22aac3c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-b22aac3c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-b22aac3c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-b22aac3c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-b22aac3c],.btn[data-v-b22aac3c],button[data-v-b22aac3c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-b22aac3c],.btn-default[type=submit][data-v-b22aac3c],.btn.btn-primary[data-v-b22aac3c],.btn[type=submit][data-v-b22aac3c],button.btn-primary[data-v-b22aac3c],button[type=submit][data-v-b22aac3c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-b22aac3c]:hover,.btn[data-v-b22aac3c]:hover,button[data-v-b22aac3c]:hover{color:#35b870}.btn .icon[data-v-b22aac3c],.btn-default .icon[data-v-b22aac3c],button .icon[data-v-b22aac3c]{margin-right:.5em}.btn-default[data-v-b22aac3c]:disabled,.btn-default[disabled][data-v-b22aac3c],.btn[data-v-b22aac3c]:disabled,.btn[disabled][data-v-b22aac3c],button[data-v-b22aac3c]:disabled,button[disabled][data-v-b22aac3c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-b22aac3c]{cursor:grab!important}.dragged[data-v-b22aac3c]{opacity:.5!important}input[type=password][data-v-b22aac3c],input[type=text][data-v-b22aac3c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-b22aac3c]:focus,input[type=text][data-v-b22aac3c]:focus{border:1px solid #35b870}button[data-v-b22aac3c],input[data-v-b22aac3c]{outline:none}input[type=text][data-v-b22aac3c]:hover,textarea[data-v-b22aac3c]:hover{border:1px solid #9cdfb0}ul[data-v-b22aac3c]{margin:0;padding:0;list-style:none}a[data-v-b22aac3c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-b22aac3c]:hover{color:#35b870}[data-v-b22aac3c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-b22aac3c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-b22aac3c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-b22aac3c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-b22aac3c]{color:#ad1717}body[data-v-b22aac3c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-b22aac3c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-b22aac3c] .nav .path{cursor:pointer}.browser[data-v-b22aac3c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-b22aac3c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-b22aac3c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-b22aac3c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-b22aac3c],input[type=number][data-v-b22aac3c],input[type=password][data-v-b22aac3c],input[type=search][data-v-b22aac3c],input[type=text][data-v-b22aac3c],input[type=time][data-v-b22aac3c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-b22aac3c]:hover,input[type=number][data-v-b22aac3c]:hover,input[type=password][data-v-b22aac3c]:hover,input[type=search][data-v-b22aac3c]:hover,input[type=text][data-v-b22aac3c]:hover,input[type=time][data-v-b22aac3c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-b22aac3c]:focus,input[type=number][data-v-b22aac3c]:focus,input[type=password][data-v-b22aac3c]:focus,input[type=search][data-v-b22aac3c]:focus,input[type=text][data-v-b22aac3c]:focus,input[type=time][data-v-b22aac3c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-b22aac3c],input[type=number].with-icon[data-v-b22aac3c],input[type=password].with-icon[data-v-b22aac3c],input[type=search].with-icon[data-v-b22aac3c],input[type=text].with-icon[data-v-b22aac3c],input[type=time].with-icon[data-v-b22aac3c]{padding-left:.3em}input[type=search][data-v-b22aac3c],input[type=text][data-v-b22aac3c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-b22aac3c]{animation-fill-mode:both;animation-name:fadeIn-b22aac3c;-webkit-animation-name:fadeIn-b22aac3c}.fade-in[data-v-b22aac3c],.fade-out[data-v-b22aac3c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-b22aac3c]{animation-fill-mode:both;animation-name:fadeOut-b22aac3c;-webkit-animation-name:fadeOut-b22aac3c}.expand[data-v-b22aac3c]{animation-fill-mode:both;animation-name:expand-b22aac3c;-webkit-animation-name:expand-b22aac3c}.expand[data-v-b22aac3c],.shrink[data-v-b22aac3c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-b22aac3c]{animation-fill-mode:both;animation-name:shrink-b22aac3c;-webkit-animation-name:shrink-b22aac3c}.fold[data-v-b22aac3c]{animation-fill-mode:both;animation-name:fold-b22aac3c;-webkit-animation-name:fold-b22aac3c}.fold[data-v-b22aac3c],.unfold[data-v-b22aac3c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-b22aac3c]{animation-fill-mode:both;animation-name:unfold-b22aac3c;-webkit-animation-name:unfold-b22aac3c}.dim[data-v-b22aac3c]{animation-fill-mode:both;animation-name:dim-b22aac3c;-webkit-animation-name:dim-b22aac3c}.brighten[data-v-b22aac3c],.dim[data-v-b22aac3c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-b22aac3c]{animation-fill-mode:both;animation-name:brighten-b22aac3c;-webkit-animation-name:brighten-b22aac3c}@keyframes fadeIn-b22aac3c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-b22aac3c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-b22aac3c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-b22aac3c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-b22aac3c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-b22aac3c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-b22aac3c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-b22aac3c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-b22aac3c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-b22aac3c;-webkit-animation-name:glow-b22aac3c}.loop[data-v-b22aac3c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-b22aac3c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-b22aac3c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-b22aac3c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-b22aac3c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.procedure-dump[data-v-b22aac3c]{width:100%;height:100%;background:#181818}.procedure-dump .dump-container[data-v-b22aac3c]{width:100%;height:100%;position:relative;padding:1em;overflow:auto}.procedure-dump pre[data-v-b22aac3c]{margin:0;padding:0;white-space:pre-wrap;word-wrap:break-word}.col-1[data-v-e159c110]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-1[data-v-e159c110]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e159c110]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e159c110]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e159c110]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-2[data-v-e159c110]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e159c110]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e159c110]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e159c110]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-3[data-v-e159c110]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e159c110]:first-child{margin-left:26%!important}.col-offset-3[data-v-e159c110]:not(first-child){margin-left:30%!important}.col-4[data-v-e159c110]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-4[data-v-e159c110]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e159c110]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e159c110]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e159c110]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-5[data-v-e159c110]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e159c110]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e159c110]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e159c110]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-6[data-v-e159c110]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e159c110]:first-child{margin-left:52%!important}.col-offset-6[data-v-e159c110]:not(first-child){margin-left:56%!important}.col-7[data-v-e159c110]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-7[data-v-e159c110]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e159c110]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e159c110]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e159c110]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-8[data-v-e159c110]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e159c110]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e159c110]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e159c110]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-9[data-v-e159c110]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e159c110]:first-child{margin-left:78%!important}.col-offset-9[data-v-e159c110]:not(first-child){margin-left:82%!important}.col-10[data-v-e159c110]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-10[data-v-e159c110]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e159c110]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e159c110]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e159c110]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e159c110]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e159c110]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-1[data-v-e159c110]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e159c110]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e159c110]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-2[data-v-e159c110]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e159c110]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e159c110]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-3[data-v-e159c110]{margin-left:26%}.col-no-margin-s-3[data-v-e159c110]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e159c110]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-4[data-v-e159c110]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e159c110]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e159c110]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-5[data-v-e159c110]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e159c110]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e159c110]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-6[data-v-e159c110]{margin-left:52%}.col-no-margin-s-6[data-v-e159c110]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e159c110]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-7[data-v-e159c110]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e159c110]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e159c110]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-8[data-v-e159c110]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e159c110]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e159c110]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-9[data-v-e159c110]{margin-left:78%}.col-no-margin-s-9[data-v-e159c110]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e159c110]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-10[data-v-e159c110]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e159c110]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e159c110]:first-child{margin-left:0}.col-offset-s-11[data-v-e159c110]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e159c110],.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-name,.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-value{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e159c110]:first-child,.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-name:first-child,.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-value:first-child{margin-left:0}.col-no-margin-s-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e159c110]{display:none!important}.s-visible[data-v-e159c110]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e159c110]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-1[data-v-e159c110]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e159c110]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e159c110]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-2[data-v-e159c110]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e159c110]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e159c110]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-3[data-v-e159c110]{margin-left:26%}.col-no-margin-m-3[data-v-e159c110]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e159c110]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-4[data-v-e159c110]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e159c110]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e159c110],.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-name{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e159c110]:first-child,.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-name:first-child{margin-left:0}.col-offset-m-5[data-v-e159c110]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e159c110]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e159c110]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-6[data-v-e159c110]{margin-left:52%}.col-no-margin-m-6[data-v-e159c110]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e159c110],.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-value{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e159c110]:first-child,.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-value:first-child{margin-left:0}.col-offset-m-7[data-v-e159c110]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e159c110]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e159c110]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-8[data-v-e159c110]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e159c110]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e159c110]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-9[data-v-e159c110]{margin-left:78%}.col-no-margin-m-9[data-v-e159c110]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e159c110]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-10[data-v-e159c110]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e159c110]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e159c110]:first-child{margin-left:0}.col-offset-m-11[data-v-e159c110]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e159c110]{display:none!important}.m-visible[data-v-e159c110]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e159c110]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-1[data-v-e159c110]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e159c110]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e159c110]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-2[data-v-e159c110]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e159c110]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e159c110]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-3[data-v-e159c110]{margin-left:26%}.col-no-margin-l-3[data-v-e159c110]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e159c110]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-4[data-v-e159c110]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e159c110]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e159c110]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-5[data-v-e159c110]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e159c110]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e159c110]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-6[data-v-e159c110]{margin-left:52%}.col-no-margin-l-6[data-v-e159c110]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e159c110]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-7[data-v-e159c110]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e159c110]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e159c110]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-8[data-v-e159c110]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e159c110]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e159c110]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-9[data-v-e159c110]{margin-left:78%}.col-no-margin-l-9[data-v-e159c110]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e159c110]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-10[data-v-e159c110]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e159c110]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e159c110]:first-child{margin-left:0}.col-offset-l-11[data-v-e159c110]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e159c110]{display:none!important}.l-visible[data-v-e159c110]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e159c110]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-1[data-v-e159c110]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e159c110]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e159c110]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-2[data-v-e159c110]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e159c110]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e159c110]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-3[data-v-e159c110]{margin-left:26%}.col-no-margin-xl-3[data-v-e159c110]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e159c110]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-4[data-v-e159c110]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e159c110]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e159c110]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-5[data-v-e159c110]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e159c110]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e159c110]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-6[data-v-e159c110]{margin-left:52%}.col-no-margin-xl-6[data-v-e159c110]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e159c110]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-7[data-v-e159c110]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e159c110]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e159c110]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-8[data-v-e159c110]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e159c110]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e159c110]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-9[data-v-e159c110]{margin-left:78%}.col-no-margin-xl-9[data-v-e159c110]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e159c110]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-10[data-v-e159c110]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e159c110]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e159c110]:first-child{margin-left:0}.col-offset-xl-11[data-v-e159c110]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e159c110]{display:none!important}.xl-visible[data-v-e159c110]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e159c110]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e159c110]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e159c110]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e159c110]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e159c110]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e159c110]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e159c110]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e159c110]{margin-left:26%}.col-no-margin-xxl-3[data-v-e159c110]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e159c110]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e159c110]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e159c110]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e159c110]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e159c110]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e159c110]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e159c110]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e159c110]{margin-left:52%}.col-no-margin-xxl-6[data-v-e159c110]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e159c110]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e159c110]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e159c110]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e159c110]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e159c110]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e159c110]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e159c110]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e159c110]{margin-left:78%}.col-no-margin-xxl-9[data-v-e159c110]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e159c110]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e159c110]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e159c110]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e159c110]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e159c110]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e159c110]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e159c110]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e159c110]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e159c110]{display:none!important}.xxl-visible[data-v-e159c110]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e159c110]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e159c110]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e159c110]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e159c110]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e159c110]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e159c110]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e159c110]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e159c110]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e159c110]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e159c110]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e159c110]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e159c110]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e159c110]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e159c110]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e159c110]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e159c110]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e159c110]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e159c110]{display:none!important}}.vertical-center[data-v-e159c110]{display:flex;align-items:center}.horizontal-center[data-v-e159c110]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e159c110]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e159c110]{display:none!important}.no-content[data-v-e159c110]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e159c110]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e159c110]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e159c110]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e159c110]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e159c110]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e159c110]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e159c110],.btn[data-v-e159c110],button[data-v-e159c110]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e159c110],.btn-default[type=submit][data-v-e159c110],.btn.btn-primary[data-v-e159c110],.btn[type=submit][data-v-e159c110],button.btn-primary[data-v-e159c110],button[type=submit][data-v-e159c110]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-e159c110]:hover,.btn[data-v-e159c110]:hover,button[data-v-e159c110]:hover{color:#35b870}.btn .icon[data-v-e159c110],.btn-default .icon[data-v-e159c110],button .icon[data-v-e159c110]{margin-right:.5em}.btn-default[data-v-e159c110]:disabled,.btn-default[disabled][data-v-e159c110],.btn[data-v-e159c110]:disabled,.btn[disabled][data-v-e159c110],button[data-v-e159c110]:disabled,button[disabled][data-v-e159c110]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-e159c110]{cursor:grab!important}.dragged[data-v-e159c110]{opacity:.5!important}input[type=password][data-v-e159c110],input[type=text][data-v-e159c110]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e159c110]:focus,input[type=text][data-v-e159c110]:focus{border:1px solid #35b870}button[data-v-e159c110],input[data-v-e159c110]{outline:none}input[type=text][data-v-e159c110]:hover,textarea[data-v-e159c110]:hover{border:1px solid #9cdfb0}ul[data-v-e159c110]{margin:0;padding:0;list-style:none}a[data-v-e159c110]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e159c110]:hover{color:#35b870}[data-v-e159c110]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e159c110]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e159c110]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e159c110]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-e159c110]{color:#ad1717}body[data-v-e159c110]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e159c110] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e159c110] .nav .path{cursor:pointer}.browser[data-v-e159c110] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e159c110] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-e159c110]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-e159c110]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e159c110],input[type=number][data-v-e159c110],input[type=password][data-v-e159c110],input[type=search][data-v-e159c110],input[type=text][data-v-e159c110],input[type=time][data-v-e159c110]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-e159c110]:hover,input[type=number][data-v-e159c110]:hover,input[type=password][data-v-e159c110]:hover,input[type=search][data-v-e159c110]:hover,input[type=text][data-v-e159c110]:hover,input[type=time][data-v-e159c110]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e159c110]:focus,input[type=number][data-v-e159c110]:focus,input[type=password][data-v-e159c110]:focus,input[type=search][data-v-e159c110]:focus,input[type=text][data-v-e159c110]:focus,input[type=time][data-v-e159c110]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e159c110],input[type=number].with-icon[data-v-e159c110],input[type=password].with-icon[data-v-e159c110],input[type=search].with-icon[data-v-e159c110],input[type=text].with-icon[data-v-e159c110],input[type=time].with-icon[data-v-e159c110]{padding-left:.3em}input[type=search][data-v-e159c110],input[type=text][data-v-e159c110]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e159c110]{animation-fill-mode:both;animation-name:fadeIn-e159c110;-webkit-animation-name:fadeIn-e159c110}.fade-in[data-v-e159c110],.fade-out[data-v-e159c110]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e159c110]{animation-fill-mode:both;animation-name:fadeOut-e159c110;-webkit-animation-name:fadeOut-e159c110}.expand[data-v-e159c110]{animation-fill-mode:both;animation-name:expand-e159c110;-webkit-animation-name:expand-e159c110}.expand[data-v-e159c110],.shrink[data-v-e159c110]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-e159c110]{animation-fill-mode:both;animation-name:shrink-e159c110;-webkit-animation-name:shrink-e159c110}.fold[data-v-e159c110]{animation-fill-mode:both;animation-name:fold-e159c110;-webkit-animation-name:fold-e159c110}.fold[data-v-e159c110],.unfold[data-v-e159c110]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-e159c110]{animation-fill-mode:both;animation-name:unfold-e159c110;-webkit-animation-name:unfold-e159c110}.dim[data-v-e159c110]{animation-fill-mode:both;animation-name:dim-e159c110;-webkit-animation-name:dim-e159c110}.brighten[data-v-e159c110],.dim[data-v-e159c110]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-e159c110]{animation-fill-mode:both;animation-name:brighten-e159c110;-webkit-animation-name:brighten-e159c110}@keyframes fadeIn-e159c110{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e159c110{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-e159c110{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-e159c110{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-e159c110{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-e159c110{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-e159c110{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-e159c110{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-e159c110]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-e159c110;-webkit-animation-name:glow-e159c110}.loop[data-v-e159c110]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-e159c110{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-e159c110]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e159c110]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e159c110]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.procedure-editor-container[data-v-e159c110]{display:flex;flex-direction:column;padding-top:.75em;position:relative;max-height:75vh}.procedure-editor-container main[data-v-e159c110]{width:100%;height:100%;display:flex;flex-direction:column;overflow:auto}.procedure-editor-container .procedure-editor[data-v-e159c110]{width:100%;height:calc(100% - 3em);overflow:auto;padding:0 1em}.procedure-editor-container .procedure-editor .procedure-edit-form[data-v-e159c110]{padding-bottom:4em}.procedure-editor-container h3[data-v-e159c110]{font-size:1.2em}.procedure-editor-container .name-editor-container .row[data-v-e159c110]{display:flex;border-bottom:1px solid silver;align-items:center;justify-content:space-between;padding-bottom:.5em;margin-bottom:.5em}@media screen and (max-width:calc(769px - 1px)){.procedure-editor-container .name-editor-container .row[data-v-e159c110]{flex-direction:column;align-items:flex-start}}@media screen and (min-width:769px){.procedure-editor-container .name-editor-container .row[data-v-e159c110]{flex-direction:row}}.procedure-editor-container .name-editor-container .row .name[data-v-e159c110]{margin-right:.5em}.procedure-editor-container .name-editor-container .row .value[data-v-e159c110]{flex:1}@media screen and (max-width:calc(769px - 1px)){.procedure-editor-container .name-editor-container .row .value[data-v-e159c110]{width:100%}}.procedure-editor-container .name-editor-container .row .value input[data-v-e159c110]{width:100%}.procedure-editor-container .icon-editor-container[data-v-e159c110]{border-bottom:1px solid silver;margin-bottom:.5em}.procedure-editor-container .spacer[data-v-e159c110]{width:100%;height:4em;flex-grow:1}.procedure-editor-container .args-editor-container .args[data-v-e159c110]{margin-bottom:1em}.procedure-editor-container .args-editor-container .args .item[data-v-e159c110]{padding-bottom:.5em}.procedure-editor-container[data-v-e159c110] .args-modal-container .modal-container .modal{width:50em}.procedure-editor-container[data-v-e159c110] .args-modal-container .modal-container .modal .body{padding:1em}.procedure-editor-container[data-v-e159c110] .args-modal-container .args{position:relative;padding-bottom:6em}.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row{display:flex;align-items:center;margin-bottom:.5em}@media screen and (max-width:calc(769px - 1px)){.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row{flex-direction:column;align-items:flex-start;border-bottom:1px solid silver;padding-bottom:.5em}}.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-name{font-weight:700}.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-name input{width:100%}@media screen and (max-width:calc(769px - 1px)){.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-name input{width:calc(100% - 2em)}}.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-value{flex:1}.procedure-editor-container[data-v-e159c110] .args-modal-container .args .row .arg-value input[type=text]{width:95%}.procedure-editor-container[data-v-e159c110] .floating-buttons{width:100%;height:3em;position:absolute;bottom:0;left:0;background:#edf0ee;box-shadow:0 -2.5px 4px 0 silver;display:flex;justify-content:space-between}.procedure-editor-container[data-v-e159c110] .floating-buttons .buttons{display:flex;align-items:center;justify-content:center;height:100%;padding:0 1em;position:relative}.procedure-editor-container[data-v-e159c110] .dump-modal-container .body{max-width:47em}.col-1[data-v-66039a54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-1[data-v-66039a54]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-66039a54]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-66039a54]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-66039a54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-2[data-v-66039a54]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-66039a54]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-66039a54]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-66039a54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-3[data-v-66039a54]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-66039a54]:first-child{margin-left:26%!important}.col-offset-3[data-v-66039a54]:not(first-child){margin-left:30%!important}.col-4[data-v-66039a54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-4[data-v-66039a54]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-66039a54]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-66039a54]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-66039a54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-5[data-v-66039a54]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-66039a54]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-66039a54]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-66039a54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-6[data-v-66039a54]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-66039a54]:first-child{margin-left:52%!important}.col-offset-6[data-v-66039a54]:not(first-child){margin-left:56%!important}.col-7[data-v-66039a54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-7[data-v-66039a54]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-66039a54]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-66039a54]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-66039a54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-8[data-v-66039a54]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-66039a54]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-66039a54]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-66039a54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-9[data-v-66039a54]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-66039a54]:first-child{margin-left:78%!important}.col-offset-9[data-v-66039a54]:not(first-child){margin-left:82%!important}.col-10[data-v-66039a54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-10[data-v-66039a54]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-66039a54]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-66039a54]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-66039a54]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-66039a54]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-66039a54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-1[data-v-66039a54]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-66039a54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-66039a54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-2[data-v-66039a54]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-66039a54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-66039a54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-3[data-v-66039a54]{margin-left:26%}.col-no-margin-s-3[data-v-66039a54]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-66039a54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-4[data-v-66039a54]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-66039a54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-66039a54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-5[data-v-66039a54]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-66039a54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-66039a54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-6[data-v-66039a54]{margin-left:52%}.col-no-margin-s-6[data-v-66039a54]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-66039a54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-7[data-v-66039a54]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-66039a54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-66039a54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-8[data-v-66039a54]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-66039a54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-66039a54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-9[data-v-66039a54]{margin-left:78%}.col-no-margin-s-9[data-v-66039a54]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-66039a54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-10[data-v-66039a54]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-66039a54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-66039a54]:first-child{margin-left:0}.col-offset-s-11[data-v-66039a54]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-s-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-66039a54]{display:none!important}.s-visible[data-v-66039a54]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-66039a54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-1[data-v-66039a54]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-66039a54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-66039a54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-2[data-v-66039a54]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-66039a54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-66039a54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-3[data-v-66039a54]{margin-left:26%}.col-no-margin-m-3[data-v-66039a54]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-66039a54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-4[data-v-66039a54]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-66039a54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-66039a54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-5[data-v-66039a54]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-66039a54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-66039a54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-6[data-v-66039a54]{margin-left:52%}.col-no-margin-m-6[data-v-66039a54]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-66039a54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-7[data-v-66039a54]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-66039a54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-66039a54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-8[data-v-66039a54]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-66039a54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-66039a54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-9[data-v-66039a54]{margin-left:78%}.col-no-margin-m-9[data-v-66039a54]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-66039a54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-10[data-v-66039a54]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-66039a54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-66039a54]:first-child{margin-left:0}.col-offset-m-11[data-v-66039a54]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-m-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-66039a54]{display:none!important}.m-visible[data-v-66039a54]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-66039a54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-1[data-v-66039a54]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-66039a54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-66039a54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-2[data-v-66039a54]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-66039a54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-66039a54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-3[data-v-66039a54]{margin-left:26%}.col-no-margin-l-3[data-v-66039a54]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-66039a54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-4[data-v-66039a54]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-66039a54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-66039a54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-5[data-v-66039a54]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-66039a54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-66039a54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-6[data-v-66039a54]{margin-left:52%}.col-no-margin-l-6[data-v-66039a54]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-66039a54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-7[data-v-66039a54]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-66039a54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-66039a54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-8[data-v-66039a54]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-66039a54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-66039a54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-9[data-v-66039a54]{margin-left:78%}.col-no-margin-l-9[data-v-66039a54]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-66039a54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-10[data-v-66039a54]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-66039a54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-66039a54]:first-child{margin-left:0}.col-offset-l-11[data-v-66039a54]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-l-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-66039a54]{display:none!important}.l-visible[data-v-66039a54]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-66039a54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-1[data-v-66039a54]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-66039a54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-66039a54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-2[data-v-66039a54]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-66039a54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-66039a54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-3[data-v-66039a54]{margin-left:26%}.col-no-margin-xl-3[data-v-66039a54]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-66039a54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-4[data-v-66039a54]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-66039a54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-66039a54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-5[data-v-66039a54]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-66039a54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-66039a54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-6[data-v-66039a54]{margin-left:52%}.col-no-margin-xl-6[data-v-66039a54]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-66039a54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-7[data-v-66039a54]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-66039a54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-66039a54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-8[data-v-66039a54]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-66039a54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-66039a54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-9[data-v-66039a54]{margin-left:78%}.col-no-margin-xl-9[data-v-66039a54]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-66039a54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-10[data-v-66039a54]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-66039a54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-66039a54]:first-child{margin-left:0}.col-offset-xl-11[data-v-66039a54]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-66039a54]{display:none!important}.xl-visible[data-v-66039a54]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-66039a54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-1[data-v-66039a54]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-66039a54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-66039a54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-2[data-v-66039a54]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-66039a54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-66039a54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-3[data-v-66039a54]{margin-left:26%}.col-no-margin-xxl-3[data-v-66039a54]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-66039a54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-4[data-v-66039a54]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-66039a54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-66039a54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-5[data-v-66039a54]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-66039a54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-66039a54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-6[data-v-66039a54]{margin-left:52%}.col-no-margin-xxl-6[data-v-66039a54]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-66039a54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-7[data-v-66039a54]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-66039a54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-66039a54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-8[data-v-66039a54]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-66039a54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-66039a54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-9[data-v-66039a54]{margin-left:78%}.col-no-margin-xxl-9[data-v-66039a54]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-66039a54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-10[data-v-66039a54]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-66039a54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-66039a54]:first-child{margin-left:0}.col-offset-xxl-11[data-v-66039a54]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-66039a54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-66039a54]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-66039a54]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-66039a54]{display:none!important}.xxl-visible[data-v-66039a54]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-66039a54]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-66039a54]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-66039a54]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-66039a54]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-66039a54]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-66039a54]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-66039a54]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-66039a54]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-66039a54]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-66039a54]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-66039a54]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-66039a54]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-66039a54]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-66039a54]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-66039a54]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-66039a54]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-66039a54]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-66039a54]{display:none!important}}.vertical-center[data-v-66039a54]{display:flex;align-items:center}.horizontal-center[data-v-66039a54]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-66039a54]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-66039a54]{display:none!important}.no-content[data-v-66039a54]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-66039a54]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-66039a54]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-66039a54]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-66039a54]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-66039a54]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-66039a54]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-66039a54],.btn[data-v-66039a54],button[data-v-66039a54]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-66039a54],.btn-default[type=submit][data-v-66039a54],.btn.btn-primary[data-v-66039a54],.btn[type=submit][data-v-66039a54],button.btn-primary[data-v-66039a54],button[type=submit][data-v-66039a54]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-66039a54]:hover,.btn[data-v-66039a54]:hover,button[data-v-66039a54]:hover{color:#35b870}.btn .icon[data-v-66039a54],.btn-default .icon[data-v-66039a54],button .icon[data-v-66039a54]{margin-right:.5em}.btn-default[data-v-66039a54]:disabled,.btn-default[disabled][data-v-66039a54],.btn[data-v-66039a54]:disabled,.btn[disabled][data-v-66039a54],button[data-v-66039a54]:disabled,button[disabled][data-v-66039a54]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-66039a54]{cursor:grab!important}.dragged[data-v-66039a54]{opacity:.5!important}input[type=password][data-v-66039a54],input[type=text][data-v-66039a54]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-66039a54]:focus,input[type=text][data-v-66039a54]:focus{border:1px solid #35b870}button[data-v-66039a54],input[data-v-66039a54]{outline:none}input[type=text][data-v-66039a54]:hover,textarea[data-v-66039a54]:hover{border:1px solid #9cdfb0}ul[data-v-66039a54]{margin:0;padding:0;list-style:none}a[data-v-66039a54]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-66039a54]:hover{color:#35b870}[data-v-66039a54]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-66039a54]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-66039a54]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-66039a54]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-66039a54]{color:#ad1717}body[data-v-66039a54]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-66039a54] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-66039a54] .nav .path{cursor:pointer}.browser[data-v-66039a54] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-66039a54] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-66039a54]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-66039a54]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-66039a54],input[type=number][data-v-66039a54],input[type=password][data-v-66039a54],input[type=search][data-v-66039a54],input[type=text][data-v-66039a54],input[type=time][data-v-66039a54]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-66039a54]:hover,input[type=number][data-v-66039a54]:hover,input[type=password][data-v-66039a54]:hover,input[type=search][data-v-66039a54]:hover,input[type=text][data-v-66039a54]:hover,input[type=time][data-v-66039a54]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-66039a54]:focus,input[type=number][data-v-66039a54]:focus,input[type=password][data-v-66039a54]:focus,input[type=search][data-v-66039a54]:focus,input[type=text][data-v-66039a54]:focus,input[type=time][data-v-66039a54]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-66039a54],input[type=number].with-icon[data-v-66039a54],input[type=password].with-icon[data-v-66039a54],input[type=search].with-icon[data-v-66039a54],input[type=text].with-icon[data-v-66039a54],input[type=time].with-icon[data-v-66039a54]{padding-left:.3em}input[type=search][data-v-66039a54],input[type=text][data-v-66039a54]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-66039a54]{animation-fill-mode:both;animation-name:fadeIn-66039a54;-webkit-animation-name:fadeIn-66039a54}.fade-in[data-v-66039a54],.fade-out[data-v-66039a54]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-66039a54]{animation-fill-mode:both;animation-name:fadeOut-66039a54;-webkit-animation-name:fadeOut-66039a54}.expand[data-v-66039a54]{animation-fill-mode:both;animation-name:expand-66039a54;-webkit-animation-name:expand-66039a54}.expand[data-v-66039a54],.shrink[data-v-66039a54]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-66039a54]{animation-fill-mode:both;animation-name:shrink-66039a54;-webkit-animation-name:shrink-66039a54}.fold[data-v-66039a54]{animation-fill-mode:both;animation-name:fold-66039a54;-webkit-animation-name:fold-66039a54}.fold[data-v-66039a54],.unfold[data-v-66039a54]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-66039a54]{animation-fill-mode:both;animation-name:unfold-66039a54;-webkit-animation-name:unfold-66039a54}.dim[data-v-66039a54]{animation-fill-mode:both;animation-name:dim-66039a54;-webkit-animation-name:dim-66039a54}.brighten[data-v-66039a54],.dim[data-v-66039a54]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-66039a54]{animation-fill-mode:both;animation-name:brighten-66039a54;-webkit-animation-name:brighten-66039a54}@keyframes fadeIn-66039a54{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-66039a54{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-66039a54{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-66039a54{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-66039a54{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-66039a54{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-66039a54{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-66039a54{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-66039a54]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-66039a54;-webkit-animation-name:glow-66039a54}.loop[data-v-66039a54]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-66039a54{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-66039a54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-66039a54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-66039a54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.procedure-editor-modal-container[data-v-66039a54]{cursor:default}.procedure-editor-modal-container[data-v-66039a54] .modal-container .body{padding:0}@media screen and (max-width:calc(769px - 1px)){.procedure-editor-modal-container[data-v-66039a54] .modal-container .body{width:calc(100vw - 2em)}}@media screen and (min-width:769px){.procedure-editor-modal-container[data-v-66039a54] .modal-container .body{width:50em}}.col-1[data-v-9744c022],.entity .head .icon[data-v-9744c022]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-9744c022]:first-child,.entity .head .icon[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-1[data-v-9744c022]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-9744c022]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-9744c022]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-9744c022]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-2[data-v-9744c022]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-9744c022]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-9744c022]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-9744c022],.entity .head .value-and-toggler[data-v-9744c022]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-9744c022]:first-child,.entity .head .value-and-toggler[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-3[data-v-9744c022]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-9744c022]:first-child{margin-left:26%!important}.col-offset-3[data-v-9744c022]:not(first-child){margin-left:30%!important}.col-4[data-v-9744c022]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-4[data-v-9744c022]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-9744c022]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-9744c022]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-9744c022]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-5[data-v-9744c022]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-9744c022]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-9744c022]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-9744c022]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-6[data-v-9744c022]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-9744c022]:first-child{margin-left:52%!important}.col-offset-6[data-v-9744c022]:not(first-child){margin-left:56%!important}.col-7[data-v-9744c022]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-7[data-v-9744c022]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-9744c022]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-9744c022]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-9744c022]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-8[data-v-9744c022]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-9744c022]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-9744c022]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-9744c022]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-9[data-v-9744c022]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-9744c022]:first-child{margin-left:78%!important}.col-offset-9[data-v-9744c022]:not(first-child){margin-left:82%!important}.col-10[data-v-9744c022]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-10[data-v-9744c022]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-9744c022]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-9744c022]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-9744c022]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-9744c022]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-9744c022]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-1[data-v-9744c022]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-9744c022]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-9744c022]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-2[data-v-9744c022]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-9744c022]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-9744c022],.entity .head .value-container[data-v-9744c022]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-9744c022]:first-child,.entity .head .value-container[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-3[data-v-9744c022]{margin-left:26%}.col-no-margin-s-3[data-v-9744c022]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-9744c022]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-4[data-v-9744c022]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-9744c022]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-9744c022]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-5[data-v-9744c022]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-9744c022]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-9744c022]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-6[data-v-9744c022]{margin-left:52%}.col-no-margin-s-6[data-v-9744c022]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-9744c022]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-7[data-v-9744c022]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-9744c022]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-9744c022],.entity .head .label[data-v-9744c022]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-9744c022]:first-child,.entity .head .label[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-8[data-v-9744c022]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-9744c022]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-9744c022]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-9[data-v-9744c022]{margin-left:78%}.col-no-margin-s-9[data-v-9744c022]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-9744c022]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-10[data-v-9744c022]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-9744c022]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-9744c022]:first-child{margin-left:0}.col-offset-s-11[data-v-9744c022]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-9744c022],.attributes .child .value[data-v-9744c022],.col-s-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-9744c022]:first-child,.attributes .child .value[data-v-9744c022]:first-child,.col-s-12[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-s-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-9744c022]{display:none!important}.s-visible[data-v-9744c022]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-9744c022]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-1[data-v-9744c022]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-9744c022]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-9744c022],.entity .head .value-container[data-v-9744c022]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-9744c022]:first-child,.entity .head .value-container[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-2[data-v-9744c022]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-9744c022]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-9744c022]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-3[data-v-9744c022]{margin-left:26%}.col-no-margin-m-3[data-v-9744c022]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-9744c022]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-4[data-v-9744c022]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-9744c022]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-9744c022]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-5[data-v-9744c022]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-9744c022]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-9744c022],.attributes .child .value[data-v-9744c022],.col-m-6[data-v-9744c022]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-9744c022]:first-child,.attributes .child .value[data-v-9744c022]:first-child,.col-m-6[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-6[data-v-9744c022]{margin-left:52%}.col-no-margin-m-6[data-v-9744c022]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-9744c022]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-7[data-v-9744c022]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-9744c022]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-9744c022]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-8[data-v-9744c022]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-9744c022]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-9744c022],.entity .head .label[data-v-9744c022]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-9744c022]:first-child,.entity .head .label[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-9[data-v-9744c022]{margin-left:78%}.col-no-margin-m-9[data-v-9744c022]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-9744c022]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-10[data-v-9744c022]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-9744c022]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-9744c022]:first-child{margin-left:0}.col-offset-m-11[data-v-9744c022]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-m-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-9744c022]{display:none!important}.m-visible[data-v-9744c022]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-9744c022]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-1[data-v-9744c022]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-9744c022]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-9744c022]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-2[data-v-9744c022]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-9744c022]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-9744c022]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-3[data-v-9744c022]{margin-left:26%}.col-no-margin-l-3[data-v-9744c022]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-9744c022]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-4[data-v-9744c022]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-9744c022]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-9744c022]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-5[data-v-9744c022]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-9744c022]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-9744c022]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-6[data-v-9744c022]{margin-left:52%}.col-no-margin-l-6[data-v-9744c022]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-9744c022]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-7[data-v-9744c022]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-9744c022]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-9744c022]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-8[data-v-9744c022]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-9744c022]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-9744c022]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-9[data-v-9744c022]{margin-left:78%}.col-no-margin-l-9[data-v-9744c022]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-9744c022]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-10[data-v-9744c022]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-9744c022]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-9744c022]:first-child{margin-left:0}.col-offset-l-11[data-v-9744c022]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-l-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-9744c022]{display:none!important}.l-visible[data-v-9744c022]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-9744c022]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-1[data-v-9744c022]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-9744c022]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-9744c022]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-2[data-v-9744c022]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-9744c022]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-9744c022]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-3[data-v-9744c022]{margin-left:26%}.col-no-margin-xl-3[data-v-9744c022]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-9744c022]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-4[data-v-9744c022]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-9744c022]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-9744c022]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-5[data-v-9744c022]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-9744c022]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-9744c022]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-6[data-v-9744c022]{margin-left:52%}.col-no-margin-xl-6[data-v-9744c022]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-9744c022]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-7[data-v-9744c022]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-9744c022]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-9744c022]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-8[data-v-9744c022]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-9744c022]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-9744c022]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-9[data-v-9744c022]{margin-left:78%}.col-no-margin-xl-9[data-v-9744c022]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-9744c022]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-10[data-v-9744c022]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-9744c022]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-9744c022]:first-child{margin-left:0}.col-offset-xl-11[data-v-9744c022]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-9744c022]{display:none!important}.xl-visible[data-v-9744c022]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-9744c022]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-1[data-v-9744c022]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-9744c022]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-9744c022]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-2[data-v-9744c022]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-9744c022]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-9744c022]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-3[data-v-9744c022]{margin-left:26%}.col-no-margin-xxl-3[data-v-9744c022]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-9744c022]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-4[data-v-9744c022]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-9744c022]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-9744c022]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-5[data-v-9744c022]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-9744c022]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-9744c022]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-6[data-v-9744c022]{margin-left:52%}.col-no-margin-xxl-6[data-v-9744c022]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-9744c022]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-7[data-v-9744c022]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-9744c022]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-9744c022]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-8[data-v-9744c022]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-9744c022]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-9744c022]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-9[data-v-9744c022]{margin-left:78%}.col-no-margin-xxl-9[data-v-9744c022]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-9744c022]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-10[data-v-9744c022]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-9744c022]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-9744c022]:first-child{margin-left:0}.col-offset-xxl-11[data-v-9744c022]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-9744c022]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-9744c022]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-9744c022]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-9744c022]{display:none!important}.xxl-visible[data-v-9744c022]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-9744c022]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-9744c022]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-9744c022]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-9744c022]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-9744c022]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-9744c022]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-9744c022]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-9744c022]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-9744c022]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-9744c022]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-9744c022]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-9744c022]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-9744c022]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-9744c022]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-9744c022]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-9744c022]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-9744c022]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-9744c022]{display:none!important}}.vertical-center[data-v-9744c022]{display:flex;align-items:center}.horizontal-center[data-v-9744c022]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-9744c022],.pull-right[data-v-9744c022]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-9744c022]{display:none!important}.no-content[data-v-9744c022]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-9744c022]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-9744c022]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-9744c022]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-9744c022]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-9744c022]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-9744c022]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-9744c022],.btn[data-v-9744c022],button[data-v-9744c022]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-9744c022],.btn-default[type=submit][data-v-9744c022],.btn.btn-primary[data-v-9744c022],.btn[type=submit][data-v-9744c022],button.btn-primary[data-v-9744c022],button[type=submit][data-v-9744c022]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-9744c022]:hover,.btn[data-v-9744c022]:hover,button[data-v-9744c022]:hover{color:#35b870}.btn .icon[data-v-9744c022],.btn-default .icon[data-v-9744c022],button .icon[data-v-9744c022]{margin-right:.5em}.btn-default[data-v-9744c022]:disabled,.btn-default[disabled][data-v-9744c022],.btn[data-v-9744c022]:disabled,.btn[disabled][data-v-9744c022],button[data-v-9744c022]:disabled,button[disabled][data-v-9744c022]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-9744c022]{cursor:grab!important}.dragged[data-v-9744c022]{opacity:.5!important}input[type=password][data-v-9744c022],input[type=text][data-v-9744c022]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-9744c022]:focus,input[type=text][data-v-9744c022]:focus{border:1px solid #35b870}button[data-v-9744c022],input[data-v-9744c022]{outline:none}input[type=text][data-v-9744c022]:hover,textarea[data-v-9744c022]:hover{border:1px solid #9cdfb0}ul[data-v-9744c022]{margin:0;padding:0;list-style:none}a[data-v-9744c022]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-9744c022]:hover{color:#35b870}[data-v-9744c022]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-9744c022]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-9744c022]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-9744c022]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-9744c022]{color:#ad1717}body[data-v-9744c022]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-9744c022] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-9744c022] .nav .path{cursor:pointer}.browser[data-v-9744c022] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-9744c022] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-9744c022]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-9744c022]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-9744c022],input[type=number][data-v-9744c022],input[type=password][data-v-9744c022],input[type=search][data-v-9744c022],input[type=text][data-v-9744c022],input[type=time][data-v-9744c022]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-9744c022]:hover,input[type=number][data-v-9744c022]:hover,input[type=password][data-v-9744c022]:hover,input[type=search][data-v-9744c022]:hover,input[type=text][data-v-9744c022]:hover,input[type=time][data-v-9744c022]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-9744c022]:focus,input[type=number][data-v-9744c022]:focus,input[type=password][data-v-9744c022]:focus,input[type=search][data-v-9744c022]:focus,input[type=text][data-v-9744c022]:focus,input[type=time][data-v-9744c022]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-9744c022],input[type=number].with-icon[data-v-9744c022],input[type=password].with-icon[data-v-9744c022],input[type=search].with-icon[data-v-9744c022],input[type=text].with-icon[data-v-9744c022],input[type=time].with-icon[data-v-9744c022]{padding-left:.3em}input[type=search][data-v-9744c022],input[type=text][data-v-9744c022]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-9744c022],.fade-in[data-v-9744c022]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-9744c022;-webkit-animation-name:fadeIn-9744c022}.fade-out[data-v-9744c022]{animation-fill-mode:both;animation-name:fadeOut-9744c022;-webkit-animation-name:fadeOut-9744c022}.expand[data-v-9744c022],.fade-out[data-v-9744c022]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-9744c022]{animation-fill-mode:both;animation-name:expand-9744c022;-webkit-animation-name:expand-9744c022}.shrink[data-v-9744c022]{animation-fill-mode:both;animation-name:shrink-9744c022;-webkit-animation-name:shrink-9744c022}.fold[data-v-9744c022],.shrink[data-v-9744c022]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-9744c022]{animation-fill-mode:both;animation-name:fold-9744c022;-webkit-animation-name:fold-9744c022}.unfold[data-v-9744c022]{animation-fill-mode:both;animation-name:unfold-9744c022;-webkit-animation-name:unfold-9744c022}.dim[data-v-9744c022],.unfold[data-v-9744c022]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-9744c022]{animation-fill-mode:both;animation-name:dim-9744c022;-webkit-animation-name:dim-9744c022}.brighten[data-v-9744c022]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-9744c022;-webkit-animation-name:brighten-9744c022}@keyframes fadeIn-9744c022{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-9744c022{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-9744c022{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-9744c022{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-9744c022{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-9744c022{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-9744c022{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-9744c022{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-9744c022]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-9744c022;-webkit-animation-name:glow-9744c022}.loop[data-v-9744c022]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-9744c022{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-9744c022]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-9744c022]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-9744c022]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-9744c022]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-9744c022]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-9744c022]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-9744c022]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-9744c022]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-9744c022]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-9744c022]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-9744c022]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-9744c022]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-9744c022]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-9744c022]{margin-right:.5em}.entity .head .icon[data-v-9744c022]:hover{color:#35b870}.entity .head .label[data-v-9744c022]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-9744c022]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-9744c022]:hover{color:#35b870}.entity .head .value[data-v-9744c022]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-9744c022]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-9744c022]{margin-right:2.5em}.entity .head .value-container[data-v-9744c022]{min-width:7em}.entity .head .unit[data-v-9744c022]{margin-left:.2em}.entity .head .pull-right[data-v-9744c022],.entity .head .value-container[data-v-9744c022]{padding-right:.5em}.entity .head .pull-right[data-v-9744c022] .power-switch,.entity .head .value-container[data-v-9744c022] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-9744c022]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-9744c022]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-9744c022]:hover{color:#35b870}.collapse-toggler[data-v-9744c022]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-9744c022]:hover{color:#35b870}.attributes .child[data-v-9744c022]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-9744c022]{flex-direction:column}}.attributes .child[data-v-9744c022]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-9744c022]:hover{cursor:auto}.attributes .child.head[data-v-9744c022]{cursor:pointer}.attributes .child.head[data-v-9744c022]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-9744c022]{font-weight:700}.attributes .child .value[data-v-9744c022]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-9744c022]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-9744c022]:last-child,.entity-container-wrapper.with-children[data-v-9744c022]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-9744c022]{animation:blink-animation-9744c022 1s steps(20,start)}@keyframes blink-animation-9744c022{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.procedure-container .body[data-v-9744c022]{padding-bottom:0;cursor:default}.procedure-container section header[data-v-9744c022]{background:linear-gradient(0deg,#ececec,#f6f6f6);display:flex;align-items:center;font-size:1.1em;font-weight:700;margin:1em -.5em .5em -.5em;padding:.25em 1em .25em .5em;border-top:1px solid silver;box-shadow:0 3px 2px -1px silver;cursor:pointer}.procedure-container section header[data-v-9744c022]:hover{background:linear-gradient(0deg,#c0e8e4,#e4f8f4)}.procedure-container section header.collapsed[data-v-9744c022]{margin-bottom:-.1em}.procedure-container section header .buttons[data-v-9744c022]{display:flex;justify-content:flex-end}.procedure-container section header button.btn[data-v-9744c022]{background:none;border:none;color:initial}.procedure-container section header button.btn[data-v-9744c022]:hover{color:#35b870}.procedure-container section:first-of-type header[data-v-9744c022]{margin-top:-.5em}.procedure-container section:first-of-type header.collapsed[data-v-9744c022]{margin-bottom:-1em}.procedure-container .head[data-v-9744c022]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-bottom:1px solid silver}.procedure-container .head .collapse-toggler[data-v-9744c022],.procedure-container .head .icon[data-v-9744c022]{width:2em}.procedure-container .head .label[data-v-9744c022],.procedure-container .head .value-and-toggler[data-v-9744c022]{min-width:calc(50% - 3em);max-width:calc(50% - 3em)}.procedure-container .head .label[data-v-9744c022]{margin-left:1em}.procedure-container .head .value-and-toggler[data-v-9744c022]{text-align:right}.procedure-container form .row input[type=text][data-v-9744c022],.procedure-container form .row[data-v-9744c022],.procedure-container form[data-v-9744c022]{width:100%}.procedure-container form .args .arg[data-v-9744c022]{margin-bottom:.25em;padding-bottom:.25em;border-bottom:1px solid silver}.procedure-container form .args .argname[data-v-9744c022]{font-weight:700}@media screen and (max-width:calc(769px - 1px)){.procedure-container form .args .argname[data-v-9744c022]{width:calc(100% - 2em)!important}.procedure-container form .args .argvalue[data-v-9744c022]{width:100%!important}}@media screen and (min-width:769px){.procedure-container form .args[data-v-9744c022]{display:flex;flex-wrap:wrap}.procedure-container form .args .argname[data-v-9744c022]{width:calc(35% - 2em)!important}.procedure-container form .args .argvalue[data-v-9744c022]{width:65%!important}}.procedure-container form .run-container[data-v-9744c022]{display:flex;justify-content:center;font-size:1.5em;margin-top:.5em}.procedure-container form .run-container button[data-v-9744c022]{padding:0 1em;text-align:center;border-radius:.5em}.procedure-container .info-body .item[data-v-9744c022]{display:flex;padding:.5em .25em}@media screen and (max-width:calc(769px - 1px)){.procedure-container .info-body .item[data-v-9744c022]{border-bottom:1px solid silver}}.procedure-container .info-body .item.delete[data-v-9744c022]{justify-content:center}.procedure-container .info-body .item.delete button[data-v-9744c022]{width:100%;color:#ad1717;padding:0}.procedure-container .info-body .item.delete button[data-v-9744c022]:hover{color:#35b870}.procedure-container .info-body .label[data-v-9744c022]{font-weight:700}@media screen and (max-width:calc(769px - 1px)){.procedure-container .info-body .label[data-v-9744c022]{width:100%}}@media screen and (min-width:769px){.procedure-container .info-body .label[data-v-9744c022]{width:33.3333%}}.procedure-container .info-body .value[data-v-9744c022]{text-align:right}@media screen and (max-width:calc(769px - 1px)){.procedure-container .info-body .value[data-v-9744c022]{width:100%}}@media screen and (min-width:769px){.procedure-container .info-body .value[data-v-9744c022]{width:66.6667%}}.procedure-container .info-body .value a[data-v-9744c022]{width:100%}@media screen and (max-width:calc(769px - 1px)){.procedure-container .info-body .actions[data-v-9744c022]{flex-direction:column}}.procedure-container .info-body .actions .item[data-v-9744c022]{border-bottom:none}.procedure-container .info-body .actions button[data-v-9744c022]{width:100%;height:2.5em;padding:0;border-radius:1em}.procedure-container .info-body .actions button[data-v-9744c022]:hover{color:#35b870}.procedure-container .head-run-btn[data-v-9744c022]{background:none;border:none;font-size:1.25em}.procedure-container .head-run-btn[data-v-9744c022]:hover{background:none;color:#38cf80} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5167.27f1bcef.css b/platypush/backend/http/webapp/dist/static/css/5167.27f1bcef.css new file mode 100644 index 0000000000..932dc0c823 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5167.27f1bcef.css @@ -0,0 +1 @@ +.col-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1bfd997f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1bfd997f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1bfd997f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1bfd997f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1bfd997f]:first-child{margin-left:26%!important}.col-offset-3[data-v-1bfd997f]:not(first-child){margin-left:30%!important}.col-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1bfd997f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1bfd997f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1bfd997f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1bfd997f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1bfd997f]:first-child{margin-left:52%!important}.col-offset-6[data-v-1bfd997f]:not(first-child){margin-left:56%!important}.col-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1bfd997f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1bfd997f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1bfd997f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1bfd997f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1bfd997f]:first-child{margin-left:78%!important}.col-offset-9[data-v-1bfd997f]:not(first-child){margin-left:82%!important}.col-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1bfd997f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1bfd997f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1bfd997f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1bfd997f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-1[data-v-1bfd997f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-2[data-v-1bfd997f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-3[data-v-1bfd997f]{margin-left:26%}.col-no-margin-s-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-4[data-v-1bfd997f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-5[data-v-1bfd997f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-6[data-v-1bfd997f]{margin-left:52%}.col-no-margin-s-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-7[data-v-1bfd997f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-8[data-v-1bfd997f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-9[data-v-1bfd997f]{margin-left:78%}.col-no-margin-s-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-10[data-v-1bfd997f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-s-11[data-v-1bfd997f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1bfd997f]{display:none!important}.s-visible[data-v-1bfd997f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-1[data-v-1bfd997f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-2[data-v-1bfd997f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-3[data-v-1bfd997f]{margin-left:26%}.col-no-margin-m-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-4[data-v-1bfd997f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-5[data-v-1bfd997f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-6[data-v-1bfd997f]{margin-left:52%}.col-no-margin-m-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-7[data-v-1bfd997f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-8[data-v-1bfd997f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-9[data-v-1bfd997f]{margin-left:78%}.col-no-margin-m-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-10[data-v-1bfd997f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-m-11[data-v-1bfd997f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1bfd997f]{display:none!important}.m-visible[data-v-1bfd997f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-1[data-v-1bfd997f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-2[data-v-1bfd997f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-3[data-v-1bfd997f]{margin-left:26%}.col-no-margin-l-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-4[data-v-1bfd997f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-5[data-v-1bfd997f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-6[data-v-1bfd997f]{margin-left:52%}.col-no-margin-l-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-7[data-v-1bfd997f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-8[data-v-1bfd997f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-9[data-v-1bfd997f]{margin-left:78%}.col-no-margin-l-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-10[data-v-1bfd997f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-l-11[data-v-1bfd997f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1bfd997f]{display:none!important}.l-visible[data-v-1bfd997f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-1[data-v-1bfd997f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-2[data-v-1bfd997f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-3[data-v-1bfd997f]{margin-left:26%}.col-no-margin-xl-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-4[data-v-1bfd997f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-5[data-v-1bfd997f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-6[data-v-1bfd997f]{margin-left:52%}.col-no-margin-xl-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-7[data-v-1bfd997f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-8[data-v-1bfd997f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-9[data-v-1bfd997f]{margin-left:78%}.col-no-margin-xl-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-10[data-v-1bfd997f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xl-11[data-v-1bfd997f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1bfd997f]{display:none!important}.xl-visible[data-v-1bfd997f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1bfd997f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1bfd997f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1bfd997f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1bfd997f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1bfd997f]{margin-left:26%}.col-no-margin-xxl-3[data-v-1bfd997f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1bfd997f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1bfd997f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1bfd997f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1bfd997f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1bfd997f]{margin-left:52%}.col-no-margin-xxl-6[data-v-1bfd997f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1bfd997f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1bfd997f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1bfd997f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1bfd997f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1bfd997f]{margin-left:78%}.col-no-margin-xxl-9[data-v-1bfd997f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1bfd997f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1bfd997f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1bfd997f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1bfd997f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1bfd997f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1bfd997f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1bfd997f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1bfd997f]{display:none!important}.xxl-visible[data-v-1bfd997f]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1bfd997f]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1bfd997f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1bfd997f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1bfd997f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1bfd997f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1bfd997f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1bfd997f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1bfd997f]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1bfd997f]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1bfd997f]{display:none!important}}.vertical-center[data-v-1bfd997f]{display:flex;align-items:center}.horizontal-center[data-v-1bfd997f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1bfd997f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1bfd997f]{display:none!important}.no-content[data-v-1bfd997f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1bfd997f]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1bfd997f]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1bfd997f]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1bfd997f]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1bfd997f]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1bfd997f]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1bfd997f],.btn[data-v-1bfd997f],button[data-v-1bfd997f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1bfd997f],.btn-default[type=submit][data-v-1bfd997f],.btn.btn-primary[data-v-1bfd997f],.btn[type=submit][data-v-1bfd997f],button.btn-primary[data-v-1bfd997f],button[type=submit][data-v-1bfd997f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1bfd997f]:hover,.btn[data-v-1bfd997f]:hover,button[data-v-1bfd997f]:hover{color:#35b870}.btn .icon[data-v-1bfd997f],.btn-default .icon[data-v-1bfd997f],button .icon[data-v-1bfd997f]{margin-right:.5em}.btn-default[data-v-1bfd997f]:disabled,.btn-default[disabled][data-v-1bfd997f],.btn[data-v-1bfd997f]:disabled,.btn[disabled][data-v-1bfd997f],button[data-v-1bfd997f]:disabled,button[disabled][data-v-1bfd997f]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1bfd997f]{cursor:grab!important}.dragged[data-v-1bfd997f]{opacity:.5!important}input[type=password][data-v-1bfd997f],input[type=text][data-v-1bfd997f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1bfd997f]:focus,input[type=text][data-v-1bfd997f]:focus{border:1px solid #35b870}button[data-v-1bfd997f],input[data-v-1bfd997f]{outline:none}input[type=text][data-v-1bfd997f]:hover,textarea[data-v-1bfd997f]:hover{border:1px solid #9cdfb0}ul[data-v-1bfd997f]{margin:0;padding:0;list-style:none}a[data-v-1bfd997f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1bfd997f]:hover{color:#35b870}[data-v-1bfd997f]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1bfd997f]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1bfd997f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1bfd997f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1bfd997f]{color:#ad1717}body[data-v-1bfd997f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1bfd997f] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1bfd997f] .nav .path{cursor:pointer}.browser[data-v-1bfd997f] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1bfd997f] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1bfd997f]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1bfd997f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1bfd997f],input[type=number][data-v-1bfd997f],input[type=password][data-v-1bfd997f],input[type=search][data-v-1bfd997f],input[type=text][data-v-1bfd997f],input[type=time][data-v-1bfd997f]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1bfd997f]:hover,input[type=number][data-v-1bfd997f]:hover,input[type=password][data-v-1bfd997f]:hover,input[type=search][data-v-1bfd997f]:hover,input[type=text][data-v-1bfd997f]:hover,input[type=time][data-v-1bfd997f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1bfd997f]:focus,input[type=number][data-v-1bfd997f]:focus,input[type=password][data-v-1bfd997f]:focus,input[type=search][data-v-1bfd997f]:focus,input[type=text][data-v-1bfd997f]:focus,input[type=time][data-v-1bfd997f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1bfd997f],input[type=number].with-icon[data-v-1bfd997f],input[type=password].with-icon[data-v-1bfd997f],input[type=search].with-icon[data-v-1bfd997f],input[type=text].with-icon[data-v-1bfd997f],input[type=time].with-icon[data-v-1bfd997f]{padding-left:.3em}input[type=search][data-v-1bfd997f],input[type=text][data-v-1bfd997f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1bfd997f]{animation-fill-mode:both;animation-name:fadeIn-1bfd997f;-webkit-animation-name:fadeIn-1bfd997f}.fade-in[data-v-1bfd997f],.fade-out[data-v-1bfd997f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1bfd997f]{animation-fill-mode:both;animation-name:fadeOut-1bfd997f;-webkit-animation-name:fadeOut-1bfd997f}.expand[data-v-1bfd997f]{animation-fill-mode:both;animation-name:expand-1bfd997f;-webkit-animation-name:expand-1bfd997f}.expand[data-v-1bfd997f],.shrink[data-v-1bfd997f]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1bfd997f]{animation-fill-mode:both;animation-name:shrink-1bfd997f;-webkit-animation-name:shrink-1bfd997f}.fold[data-v-1bfd997f]{animation-fill-mode:both;animation-name:fold-1bfd997f;-webkit-animation-name:fold-1bfd997f}.fold[data-v-1bfd997f],.unfold[data-v-1bfd997f]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1bfd997f]{animation-fill-mode:both;animation-name:unfold-1bfd997f;-webkit-animation-name:unfold-1bfd997f}.dim[data-v-1bfd997f]{animation-fill-mode:both;animation-name:dim-1bfd997f;-webkit-animation-name:dim-1bfd997f}.brighten[data-v-1bfd997f],.dim[data-v-1bfd997f]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1bfd997f]{animation-fill-mode:both;animation-name:brighten-1bfd997f;-webkit-animation-name:brighten-1bfd997f}@keyframes fadeIn-1bfd997f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1bfd997f{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1bfd997f{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1bfd997f{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1bfd997f{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1bfd997f{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1bfd997f{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1bfd997f{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1bfd997f]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1bfd997f;-webkit-animation-name:glow-1bfd997f}.loop[data-v-1bfd997f]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1bfd997f{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1bfd997f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1bfd997f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1bfd997f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-1bfd997f]{color:#d21}.icon[data-v-1bfd997f]{position:absolute;width:30px;height:30px;font-size:30px;background:rgba(0,0,0,.5);border-radius:.25em;color:#fff;z-index:3}.icon a[data-v-1bfd997f]{width:100%;height:100%;color:#fff}.icon a[data-v-1bfd997f]:hover{color:#35b870}.icon i[data-v-1bfd997f]{margin:2.5px}.icon .fa-imdb[data-v-1bfd997f]{position:absolute;top:0;margin:1px 2.5px 3px 2.5px}.icon .fa-youtube[data-v-1bfd997f]{margin-left:1px}.imdb-link[data-v-1bfd997f]{top:0;right:0}.bottom-overlay[data-v-1bfd997f]{position:absolute;bottom:0;right:0;font-size:.9em;background:rgba(0,0,0,.5);color:#fff;padding:.25em .5em;border-radius:.25em;z-index:2}.type-icon[data-v-1bfd997f]{top:0;left:0;font-size:25px}.image-container[data-v-1bfd997f]{max-width:100%;min-height:200px;aspect-ratio:16/9;display:flex;justify-content:center;position:relative}.image-container.with-image[data-v-1bfd997f]{background:#000}.image-container.with-image .icon[data-v-1bfd997f]{background:none}.image-container.with-image .play-overlay[data-v-1bfd997f]{border-radius:0}.image-container img[data-v-1bfd997f]{height:100%}.image[data-v-1bfd997f]{max-width:100%;z-index:1}div.image[data-v-1bfd997f]{width:100%;color:#fff;font-size:5em;display:flex;align-items:center;justify-content:center}div.image .inner[data-v-1bfd997f]{background:#d0dad8;border-radius:.5em}.play-overlay[data-v-1bfd997f],div.image .inner[data-v-1bfd997f]{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.play-overlay[data-v-1bfd997f]{position:absolute;top:0;left:0;cursor:pointer;background:rgba(0,0,0,.5);border-radius:2em;opacity:0;transition:opacity .2s ease-in-out;z-index:3}.play-overlay[data-v-1bfd997f]:hover{opacity:1}.play-overlay i[data-v-1bfd997f]{font-size:5em;color:#fff}.backdrop[data-v-1bfd997f]{position:absolute;top:0;left:0;right:0;bottom:0;background-size:cover;filter:blur(5px) brightness(.5)}.col-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-455b72cb]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-455b72cb]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-455b72cb]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-455b72cb]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-455b72cb]:first-child{margin-left:26%!important}.col-offset-3[data-v-455b72cb]:not(first-child){margin-left:30%!important}.col-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-455b72cb]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-455b72cb]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-455b72cb]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-455b72cb]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-455b72cb]:first-child{margin-left:52%!important}.col-offset-6[data-v-455b72cb]:not(first-child){margin-left:56%!important}.col-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-455b72cb]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-455b72cb]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-455b72cb]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-455b72cb]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-455b72cb]:first-child{margin-left:78%!important}.col-offset-9[data-v-455b72cb]:not(first-child){margin-left:82%!important}.col-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-455b72cb]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-455b72cb]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-455b72cb]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-455b72cb]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-1[data-v-455b72cb]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-2[data-v-455b72cb]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-3[data-v-455b72cb]{margin-left:26%}.col-no-margin-s-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-4[data-v-455b72cb]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-5[data-v-455b72cb]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-6[data-v-455b72cb]{margin-left:52%}.col-no-margin-s-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-7[data-v-455b72cb]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-8[data-v-455b72cb]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-9[data-v-455b72cb]{margin-left:78%}.col-no-margin-s-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-10[data-v-455b72cb]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-455b72cb]:first-child{margin-left:0}.col-offset-s-11[data-v-455b72cb]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-s-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-455b72cb]{display:none!important}.s-visible[data-v-455b72cb]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-1[data-v-455b72cb]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-2[data-v-455b72cb]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-3[data-v-455b72cb]{margin-left:26%}.col-no-margin-m-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-4[data-v-455b72cb]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-5[data-v-455b72cb]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-6[data-v-455b72cb]{margin-left:52%}.col-no-margin-m-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-7[data-v-455b72cb]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-8[data-v-455b72cb]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-9[data-v-455b72cb]{margin-left:78%}.col-no-margin-m-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-10[data-v-455b72cb]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-455b72cb]:first-child{margin-left:0}.col-offset-m-11[data-v-455b72cb]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-m-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-455b72cb]{display:none!important}.m-visible[data-v-455b72cb]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-1[data-v-455b72cb]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-2[data-v-455b72cb]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-3[data-v-455b72cb]{margin-left:26%}.col-no-margin-l-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-4[data-v-455b72cb]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-5[data-v-455b72cb]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-6[data-v-455b72cb]{margin-left:52%}.col-no-margin-l-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-7[data-v-455b72cb]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-8[data-v-455b72cb]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-9[data-v-455b72cb]{margin-left:78%}.col-no-margin-l-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-10[data-v-455b72cb]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-455b72cb]:first-child{margin-left:0}.col-offset-l-11[data-v-455b72cb]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-l-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-455b72cb]{display:none!important}.l-visible[data-v-455b72cb]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-1[data-v-455b72cb]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-2[data-v-455b72cb]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-3[data-v-455b72cb]{margin-left:26%}.col-no-margin-xl-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-4[data-v-455b72cb]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-5[data-v-455b72cb]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-6[data-v-455b72cb]{margin-left:52%}.col-no-margin-xl-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-7[data-v-455b72cb]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-8[data-v-455b72cb]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-9[data-v-455b72cb]{margin-left:78%}.col-no-margin-xl-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-10[data-v-455b72cb]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xl-11[data-v-455b72cb]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-455b72cb]{display:none!important}.xl-visible[data-v-455b72cb]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-1[data-v-455b72cb]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-455b72cb]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-2[data-v-455b72cb]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-455b72cb]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-3[data-v-455b72cb]{margin-left:26%}.col-no-margin-xxl-3[data-v-455b72cb]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-4[data-v-455b72cb]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-455b72cb]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-5[data-v-455b72cb]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-455b72cb]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-6[data-v-455b72cb]{margin-left:52%}.col-no-margin-xxl-6[data-v-455b72cb]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-7[data-v-455b72cb]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-455b72cb]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-8[data-v-455b72cb]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-455b72cb]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-9[data-v-455b72cb]{margin-left:78%}.col-no-margin-xxl-9[data-v-455b72cb]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-10[data-v-455b72cb]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-455b72cb]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-455b72cb]:first-child{margin-left:0}.col-offset-xxl-11[data-v-455b72cb]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-455b72cb]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-455b72cb]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-455b72cb]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-455b72cb]{display:none!important}.xxl-visible[data-v-455b72cb]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-455b72cb]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-455b72cb]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-455b72cb]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-455b72cb]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-455b72cb]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-455b72cb]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-455b72cb]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-455b72cb]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-455b72cb]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-455b72cb]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-455b72cb]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-455b72cb]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-455b72cb]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-455b72cb]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-455b72cb]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-455b72cb]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-455b72cb]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-455b72cb]{display:none!important}}.vertical-center[data-v-455b72cb]{display:flex;align-items:center}.horizontal-center[data-v-455b72cb]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-455b72cb]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-455b72cb]{display:none!important}.no-content[data-v-455b72cb]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-455b72cb]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-455b72cb]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-455b72cb]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-455b72cb]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-455b72cb]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-455b72cb]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-455b72cb],.btn[data-v-455b72cb],button[data-v-455b72cb]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-455b72cb],.btn-default[type=submit][data-v-455b72cb],.btn.btn-primary[data-v-455b72cb],.btn[type=submit][data-v-455b72cb],button.btn-primary[data-v-455b72cb],button[type=submit][data-v-455b72cb]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-455b72cb]:hover,.btn[data-v-455b72cb]:hover,button[data-v-455b72cb]:hover{color:#35b870}.btn .icon[data-v-455b72cb],.btn-default .icon[data-v-455b72cb],button .icon[data-v-455b72cb]{margin-right:.5em}.btn-default[data-v-455b72cb]:disabled,.btn-default[disabled][data-v-455b72cb],.btn[data-v-455b72cb]:disabled,.btn[disabled][data-v-455b72cb],button[data-v-455b72cb]:disabled,button[disabled][data-v-455b72cb]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-455b72cb]{cursor:grab!important}.dragged[data-v-455b72cb]{opacity:.5!important}input[type=password][data-v-455b72cb],input[type=text][data-v-455b72cb]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-455b72cb]:focus,input[type=text][data-v-455b72cb]:focus{border:1px solid #35b870}button[data-v-455b72cb],input[data-v-455b72cb]{outline:none}input[type=text][data-v-455b72cb]:hover,textarea[data-v-455b72cb]:hover{border:1px solid #9cdfb0}ul[data-v-455b72cb]{margin:0;padding:0;list-style:none}a[data-v-455b72cb]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-455b72cb]:hover{color:#35b870}[data-v-455b72cb]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-455b72cb]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-455b72cb]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-455b72cb]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-455b72cb]{color:#ad1717}body[data-v-455b72cb]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-455b72cb] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-455b72cb] .nav .path{cursor:pointer}.browser[data-v-455b72cb] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-455b72cb] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-455b72cb]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-455b72cb]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-455b72cb],input[type=number][data-v-455b72cb],input[type=password][data-v-455b72cb],input[type=search][data-v-455b72cb],input[type=text][data-v-455b72cb],input[type=time][data-v-455b72cb]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-455b72cb]:hover,input[type=number][data-v-455b72cb]:hover,input[type=password][data-v-455b72cb]:hover,input[type=search][data-v-455b72cb]:hover,input[type=text][data-v-455b72cb]:hover,input[type=time][data-v-455b72cb]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-455b72cb]:focus,input[type=number][data-v-455b72cb]:focus,input[type=password][data-v-455b72cb]:focus,input[type=search][data-v-455b72cb]:focus,input[type=text][data-v-455b72cb]:focus,input[type=time][data-v-455b72cb]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-455b72cb],input[type=number].with-icon[data-v-455b72cb],input[type=password].with-icon[data-v-455b72cb],input[type=search].with-icon[data-v-455b72cb],input[type=text].with-icon[data-v-455b72cb],input[type=time].with-icon[data-v-455b72cb]{padding-left:.3em}input[type=search][data-v-455b72cb],input[type=text][data-v-455b72cb]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-455b72cb]{animation-fill-mode:both;animation-name:fadeIn-455b72cb;-webkit-animation-name:fadeIn-455b72cb}.fade-in[data-v-455b72cb],.fade-out[data-v-455b72cb]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-455b72cb]{animation-fill-mode:both;animation-name:fadeOut-455b72cb;-webkit-animation-name:fadeOut-455b72cb}.expand[data-v-455b72cb]{animation-fill-mode:both;animation-name:expand-455b72cb;-webkit-animation-name:expand-455b72cb}.expand[data-v-455b72cb],.shrink[data-v-455b72cb]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-455b72cb]{animation-fill-mode:both;animation-name:shrink-455b72cb;-webkit-animation-name:shrink-455b72cb}.fold[data-v-455b72cb]{animation-fill-mode:both;animation-name:fold-455b72cb;-webkit-animation-name:fold-455b72cb}.fold[data-v-455b72cb],.unfold[data-v-455b72cb]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-455b72cb]{animation-fill-mode:both;animation-name:unfold-455b72cb;-webkit-animation-name:unfold-455b72cb}.dim[data-v-455b72cb]{animation-fill-mode:both;animation-name:dim-455b72cb;-webkit-animation-name:dim-455b72cb}.brighten[data-v-455b72cb],.dim[data-v-455b72cb]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-455b72cb]{animation-fill-mode:both;animation-name:brighten-455b72cb;-webkit-animation-name:brighten-455b72cb}@keyframes fadeIn-455b72cb{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-455b72cb{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-455b72cb{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-455b72cb{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-455b72cb{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-455b72cb{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-455b72cb{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-455b72cb{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-455b72cb]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-455b72cb;-webkit-animation-name:glow-455b72cb}.loop[data-v-455b72cb]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-455b72cb{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-455b72cb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-455b72cb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-455b72cb]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-455b72cb]{color:#d21}.media-item[data-v-455b72cb]{display:flex;flex-direction:column;align-items:center;max-height:23.5em;height:100%;cursor:auto!important;margin-bottom:5px;border:1px solid transparent;border-bottom:1px solid transparent!important}.media-item.selected[data-v-455b72cb]{box-shadow:0 3px 2px -1px silver;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.media-item[data-v-455b72cb]:hover{background:none!important;box-shadow:0 0 3px 3px silver;border-radius:.5em}.media-item .thumbnail[data-v-455b72cb]{max-width:100%}.media-item .body[data-v-455b72cb]{width:100%;display:flex;flex-direction:column;align-items:center}.media-item .body .row[data-v-455b72cb]{width:100%;display:flex;flex-direction:row;align-items:center}.media-item .title[data-v-455b72cb]{display:flex;align-items:center;font-size:1.1em;font-weight:700;padding:.5em 0;flex:1;cursor:pointer;overflow:hidden}.media-item .title[data-v-455b72cb]:hover{text-decoration:underline}.media-item .side[data-v-455b72cb]{display:inline-flex;align-items:center}.media-item .side.left[data-v-455b72cb]{max-height:3em;display:flex;align-items:flex-start;flex-direction:column;overflow:hidden;text-overflow:" [...]";margin-right:.5em}.media-item .side.right[data-v-455b72cb]{align-items:flex-end;margin-right:.5em}.media-item .side[data-v-455b72cb] .dropdown-container .item{flex-direction:row;box-shadow:none;cursor:pointer!important}.media-item .side[data-v-455b72cb] .dropdown-container .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important}.media-item .side[data-v-455b72cb] .dropdown-container button{border:0;padding:0;background:none;opacity:.7}.media-item .side[data-v-455b72cb] .dropdown-container button:hover{color:#38cf80}.media-item .subtitle[data-v-455b72cb]{font-size:.9em;color:#23513a;display:flex;align-items:center;margin-top:.5em;flex:1}.media-item .subtitle .channel[data-v-455b72cb]{display:flex;align-items:center}.media-item .subtitle .channel .channel-name[data-v-455b72cb]{display:inline-flex}.media-item .channel-image[data-v-455b72cb]{width:2em;height:2em;border-radius:50%;margin-right:.5em}.media-item .creation-date[data-v-455b72cb]{font-size:.85em;color:#23513a;flex:1}.media-item .ratings[data-v-455b72cb]{width:100%;font-size:.75em;opacity:.75;display:flex;justify-content:space-between}.media-item .ratings .rating[data-v-455b72cb]{display:flex;align-items:center;margin-right:1em}.media-item .ratings .rating i[data-v-455b72cb]{margin-right:.25em}.media-item.list[data-v-455b72cb]{max-height:none;border-bottom:1px solid silver!important;margin:0;padding:.25em .5em}.media-item.list[data-v-455b72cb]:hover{text-decoration:none}.media-item.list .side[data-v-455b72cb]{display:flex;align-items:center}.media-item.list .side.left[data-v-455b72cb]{max-height:none;flex-direction:row;overflow:visible}.media-item.list .side.right[data-v-455b72cb]{display:flex;justify-content:flex-end;margin-right:0}.media-item.list .side .duration[data-v-455b72cb]{font-size:.9em;opacity:.75;margin-right:1em}.media-item.list .side .track-number[data-v-455b72cb]{display:inline-flex;font-size:.9em;margin-right:1em;color:#23513a;justify-content:flex-end}.media-item .photo-container[data-v-455b72cb] .modal .body{max-width:95vh;max-height:90vh;padding:0}.media-item .photo-container[data-v-455b72cb] .modal img.horizontal{width:100%;height:auto;max-width:95vh;max-height:100%}.media-item .photo-container[data-v-455b72cb] .modal img.vertical{width:auto;height:100%;max-width:100%;max-height:90vh}.col-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2f09dc9a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2f09dc9a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2f09dc9a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2f09dc9a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2f09dc9a]:first-child{margin-left:26%!important}.col-offset-3[data-v-2f09dc9a]:not(first-child){margin-left:30%!important}.col-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2f09dc9a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2f09dc9a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2f09dc9a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2f09dc9a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2f09dc9a]:first-child{margin-left:52%!important}.col-offset-6[data-v-2f09dc9a]:not(first-child){margin-left:56%!important}.col-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2f09dc9a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2f09dc9a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2f09dc9a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2f09dc9a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2f09dc9a]:first-child{margin-left:78%!important}.col-offset-9[data-v-2f09dc9a]:not(first-child){margin-left:82%!important}.col-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2f09dc9a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2f09dc9a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2f09dc9a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2f09dc9a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-1[data-v-2f09dc9a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-2[data-v-2f09dc9a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-3[data-v-2f09dc9a]{margin-left:26%}.col-no-margin-s-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-4[data-v-2f09dc9a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-5[data-v-2f09dc9a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-6[data-v-2f09dc9a]{margin-left:52%}.col-no-margin-s-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-7[data-v-2f09dc9a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-8[data-v-2f09dc9a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-9[data-v-2f09dc9a]{margin-left:78%}.col-no-margin-s-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-10[data-v-2f09dc9a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-s-11[data-v-2f09dc9a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2f09dc9a]{display:none!important}.s-visible[data-v-2f09dc9a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-1[data-v-2f09dc9a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-2[data-v-2f09dc9a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-3[data-v-2f09dc9a]{margin-left:26%}.col-no-margin-m-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-4[data-v-2f09dc9a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-5[data-v-2f09dc9a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-6[data-v-2f09dc9a]{margin-left:52%}.col-no-margin-m-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-7[data-v-2f09dc9a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-8[data-v-2f09dc9a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-9[data-v-2f09dc9a]{margin-left:78%}.col-no-margin-m-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-10[data-v-2f09dc9a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-m-11[data-v-2f09dc9a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2f09dc9a]{display:none!important}.m-visible[data-v-2f09dc9a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-1[data-v-2f09dc9a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-2[data-v-2f09dc9a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-3[data-v-2f09dc9a]{margin-left:26%}.col-no-margin-l-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-4[data-v-2f09dc9a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-5[data-v-2f09dc9a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-6[data-v-2f09dc9a]{margin-left:52%}.col-no-margin-l-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-7[data-v-2f09dc9a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-8[data-v-2f09dc9a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-9[data-v-2f09dc9a]{margin-left:78%}.col-no-margin-l-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-10[data-v-2f09dc9a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-l-11[data-v-2f09dc9a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2f09dc9a]{display:none!important}.l-visible[data-v-2f09dc9a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-1[data-v-2f09dc9a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-2[data-v-2f09dc9a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-3[data-v-2f09dc9a]{margin-left:26%}.col-no-margin-xl-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-4[data-v-2f09dc9a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-5[data-v-2f09dc9a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-6[data-v-2f09dc9a]{margin-left:52%}.col-no-margin-xl-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-7[data-v-2f09dc9a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-8[data-v-2f09dc9a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-9[data-v-2f09dc9a]{margin-left:78%}.col-no-margin-xl-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-10[data-v-2f09dc9a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xl-11[data-v-2f09dc9a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2f09dc9a]{display:none!important}.xl-visible[data-v-2f09dc9a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2f09dc9a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2f09dc9a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2f09dc9a]{margin-left:26%}.col-no-margin-xxl-3[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2f09dc9a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2f09dc9a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2f09dc9a]{margin-left:52%}.col-no-margin-xxl-6[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2f09dc9a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2f09dc9a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2f09dc9a]{margin-left:78%}.col-no-margin-xxl-9[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2f09dc9a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2f09dc9a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2f09dc9a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2f09dc9a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2f09dc9a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2f09dc9a]{display:none!important}.xxl-visible[data-v-2f09dc9a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2f09dc9a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2f09dc9a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2f09dc9a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2f09dc9a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2f09dc9a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2f09dc9a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2f09dc9a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2f09dc9a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2f09dc9a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2f09dc9a]{display:none!important}}.vertical-center[data-v-2f09dc9a]{display:flex;align-items:center}.horizontal-center[data-v-2f09dc9a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2f09dc9a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2f09dc9a]{display:none!important}.no-content[data-v-2f09dc9a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2f09dc9a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2f09dc9a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2f09dc9a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2f09dc9a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2f09dc9a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2f09dc9a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2f09dc9a],.btn[data-v-2f09dc9a],button[data-v-2f09dc9a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2f09dc9a],.btn-default[type=submit][data-v-2f09dc9a],.btn.btn-primary[data-v-2f09dc9a],.btn[type=submit][data-v-2f09dc9a],button.btn-primary[data-v-2f09dc9a],button[type=submit][data-v-2f09dc9a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2f09dc9a]:hover,.btn[data-v-2f09dc9a]:hover,button[data-v-2f09dc9a]:hover{color:#35b870}.btn .icon[data-v-2f09dc9a],.btn-default .icon[data-v-2f09dc9a],button .icon[data-v-2f09dc9a]{margin-right:.5em}.btn-default[data-v-2f09dc9a]:disabled,.btn-default[disabled][data-v-2f09dc9a],.btn[data-v-2f09dc9a]:disabled,.btn[disabled][data-v-2f09dc9a],button[data-v-2f09dc9a]:disabled,button[disabled][data-v-2f09dc9a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2f09dc9a]{cursor:grab!important}.dragged[data-v-2f09dc9a]{opacity:.5!important}input[type=password][data-v-2f09dc9a],input[type=text][data-v-2f09dc9a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2f09dc9a]:focus,input[type=text][data-v-2f09dc9a]:focus{border:1px solid #35b870}button[data-v-2f09dc9a],input[data-v-2f09dc9a]{outline:none}input[type=text][data-v-2f09dc9a]:hover,textarea[data-v-2f09dc9a]:hover{border:1px solid #9cdfb0}ul[data-v-2f09dc9a]{margin:0;padding:0;list-style:none}a[data-v-2f09dc9a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2f09dc9a]:hover{color:#35b870}[data-v-2f09dc9a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2f09dc9a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2f09dc9a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2f09dc9a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2f09dc9a]{color:#ad1717}body[data-v-2f09dc9a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2f09dc9a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2f09dc9a] .nav .path{cursor:pointer}.browser[data-v-2f09dc9a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2f09dc9a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2f09dc9a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2f09dc9a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2f09dc9a],input[type=number][data-v-2f09dc9a],input[type=password][data-v-2f09dc9a],input[type=search][data-v-2f09dc9a],input[type=text][data-v-2f09dc9a],input[type=time][data-v-2f09dc9a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2f09dc9a]:hover,input[type=number][data-v-2f09dc9a]:hover,input[type=password][data-v-2f09dc9a]:hover,input[type=search][data-v-2f09dc9a]:hover,input[type=text][data-v-2f09dc9a]:hover,input[type=time][data-v-2f09dc9a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2f09dc9a]:focus,input[type=number][data-v-2f09dc9a]:focus,input[type=password][data-v-2f09dc9a]:focus,input[type=search][data-v-2f09dc9a]:focus,input[type=text][data-v-2f09dc9a]:focus,input[type=time][data-v-2f09dc9a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2f09dc9a],input[type=number].with-icon[data-v-2f09dc9a],input[type=password].with-icon[data-v-2f09dc9a],input[type=search].with-icon[data-v-2f09dc9a],input[type=text].with-icon[data-v-2f09dc9a],input[type=time].with-icon[data-v-2f09dc9a]{padding-left:.3em}input[type=search][data-v-2f09dc9a],input[type=text][data-v-2f09dc9a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2f09dc9a]{animation-fill-mode:both;animation-name:fadeIn-2f09dc9a;-webkit-animation-name:fadeIn-2f09dc9a}.fade-in[data-v-2f09dc9a],.fade-out[data-v-2f09dc9a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2f09dc9a]{animation-fill-mode:both;animation-name:fadeOut-2f09dc9a;-webkit-animation-name:fadeOut-2f09dc9a}.expand[data-v-2f09dc9a]{animation-fill-mode:both;animation-name:expand-2f09dc9a;-webkit-animation-name:expand-2f09dc9a}.expand[data-v-2f09dc9a],.shrink[data-v-2f09dc9a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2f09dc9a]{animation-fill-mode:both;animation-name:shrink-2f09dc9a;-webkit-animation-name:shrink-2f09dc9a}.fold[data-v-2f09dc9a]{animation-fill-mode:both;animation-name:fold-2f09dc9a;-webkit-animation-name:fold-2f09dc9a}.fold[data-v-2f09dc9a],.unfold[data-v-2f09dc9a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2f09dc9a]{animation-fill-mode:both;animation-name:unfold-2f09dc9a;-webkit-animation-name:unfold-2f09dc9a}.dim[data-v-2f09dc9a]{animation-fill-mode:both;animation-name:dim-2f09dc9a;-webkit-animation-name:dim-2f09dc9a}.brighten[data-v-2f09dc9a],.dim[data-v-2f09dc9a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2f09dc9a]{animation-fill-mode:both;animation-name:brighten-2f09dc9a;-webkit-animation-name:brighten-2f09dc9a}@keyframes fadeIn-2f09dc9a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2f09dc9a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2f09dc9a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2f09dc9a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2f09dc9a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2f09dc9a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2f09dc9a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2f09dc9a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2f09dc9a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2f09dc9a;-webkit-animation-name:glow-2f09dc9a}.loop[data-v-2f09dc9a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2f09dc9a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2f09dc9a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2f09dc9a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2f09dc9a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-2f09dc9a]{color:#d21}.media-info[data-v-2f09dc9a]{width:100%;max-width:60em}.row[data-v-2f09dc9a]{display:flex;min-height:3em;padding:.5em 1em}@media screen and (max-width:calc(769px - 1px)){.row[data-v-2f09dc9a]{flex-direction:column}}@media screen and (min-width:769px){.row[data-v-2f09dc9a]{align-items:center}}.row[data-v-2f09dc9a]:not(:last-child){border-bottom:1px solid #ddd}.row[data-v-2f09dc9a]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);border-radius:.5em}.row .side[data-v-2f09dc9a]{align-items:center;display:inline-flex}.row .side.url[data-v-2f09dc9a]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media screen and (max-width:calc(769px - 1px)){.row .side[data-v-2f09dc9a]{display:flex}.row .side.left[data-v-2f09dc9a]{font-weight:700}.row .side.right[data-v-2f09dc9a]{justify-content:left}}@media screen and (min-width:769px){.row .side[data-v-2f09dc9a]{display:inline-flex}.row .side.left[data-v-2f09dc9a]{width:22%;margin-right:3%}.row .side.right[data-v-2f09dc9a]{width:75%;justify-content:right}}.direct-url .right.side[data-v-2f09dc9a]{position:relative}.direct-url .right.side button[data-v-2f09dc9a]{background:none;border:none;padding:0;margin-left:1em}.direct-url .right.side button[data-v-2f09dc9a]:hover{color:#35b870;cursor:pointer}.header[data-v-2f09dc9a]{width:100%;display:flex;flex-direction:column;position:relative}@media screen and (min-width:1024px){.header .item-container[data-v-2f09dc9a]{width:420px}}.header .title[data-v-2f09dc9a]{width:100%;font-size:1.5em;font-weight:700;margin-top:.5em;text-align:center;overflow-wrap:break-word}@media screen and (min-width:1024px){.header .title[data-v-2f09dc9a]{flex:1;padding-left:1em}}.header[data-v-2f09dc9a]:hover{background:initial}.col-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1fdc72e8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1fdc72e8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1fdc72e8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1fdc72e8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1fdc72e8]:first-child{margin-left:26%!important}.col-offset-3[data-v-1fdc72e8]:not(first-child){margin-left:30%!important}.col-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1fdc72e8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1fdc72e8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1fdc72e8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1fdc72e8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1fdc72e8]:first-child{margin-left:52%!important}.col-offset-6[data-v-1fdc72e8]:not(first-child){margin-left:56%!important}.col-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1fdc72e8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1fdc72e8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1fdc72e8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1fdc72e8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1fdc72e8]:first-child{margin-left:78%!important}.col-offset-9[data-v-1fdc72e8]:not(first-child){margin-left:82%!important}.col-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1fdc72e8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1fdc72e8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1fdc72e8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1fdc72e8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-1[data-v-1fdc72e8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-2[data-v-1fdc72e8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-3[data-v-1fdc72e8]{margin-left:26%}.col-no-margin-s-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-4[data-v-1fdc72e8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-5[data-v-1fdc72e8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-6[data-v-1fdc72e8]{margin-left:52%}.col-no-margin-s-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-7[data-v-1fdc72e8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-8[data-v-1fdc72e8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-9[data-v-1fdc72e8]{margin-left:78%}.col-no-margin-s-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-10[data-v-1fdc72e8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-s-11[data-v-1fdc72e8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1fdc72e8]{display:none!important}.s-visible[data-v-1fdc72e8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-1[data-v-1fdc72e8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-2[data-v-1fdc72e8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-3[data-v-1fdc72e8]{margin-left:26%}.col-no-margin-m-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-4[data-v-1fdc72e8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-5[data-v-1fdc72e8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-6[data-v-1fdc72e8]{margin-left:52%}.col-no-margin-m-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-7[data-v-1fdc72e8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-8[data-v-1fdc72e8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-9[data-v-1fdc72e8]{margin-left:78%}.col-no-margin-m-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-10[data-v-1fdc72e8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-m-11[data-v-1fdc72e8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1fdc72e8]{display:none!important}.m-visible[data-v-1fdc72e8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-1[data-v-1fdc72e8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-2[data-v-1fdc72e8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-3[data-v-1fdc72e8]{margin-left:26%}.col-no-margin-l-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-4[data-v-1fdc72e8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-5[data-v-1fdc72e8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-6[data-v-1fdc72e8]{margin-left:52%}.col-no-margin-l-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-7[data-v-1fdc72e8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-8[data-v-1fdc72e8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-9[data-v-1fdc72e8]{margin-left:78%}.col-no-margin-l-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-10[data-v-1fdc72e8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-l-11[data-v-1fdc72e8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1fdc72e8]{display:none!important}.l-visible[data-v-1fdc72e8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-1[data-v-1fdc72e8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-2[data-v-1fdc72e8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-3[data-v-1fdc72e8]{margin-left:26%}.col-no-margin-xl-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-4[data-v-1fdc72e8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-5[data-v-1fdc72e8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-6[data-v-1fdc72e8]{margin-left:52%}.col-no-margin-xl-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-7[data-v-1fdc72e8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-8[data-v-1fdc72e8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-9[data-v-1fdc72e8]{margin-left:78%}.col-no-margin-xl-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-10[data-v-1fdc72e8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xl-11[data-v-1fdc72e8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1fdc72e8]{display:none!important}.xl-visible[data-v-1fdc72e8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1fdc72e8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1fdc72e8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1fdc72e8]{margin-left:26%}.col-no-margin-xxl-3[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1fdc72e8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1fdc72e8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1fdc72e8]{margin-left:52%}.col-no-margin-xxl-6[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1fdc72e8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1fdc72e8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1fdc72e8]{margin-left:78%}.col-no-margin-xxl-9[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1fdc72e8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1fdc72e8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1fdc72e8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1fdc72e8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1fdc72e8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1fdc72e8]{display:none!important}.xxl-visible[data-v-1fdc72e8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1fdc72e8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1fdc72e8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1fdc72e8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1fdc72e8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1fdc72e8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1fdc72e8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1fdc72e8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1fdc72e8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1fdc72e8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1fdc72e8]{display:none!important}}.vertical-center[data-v-1fdc72e8]{display:flex;align-items:center}.horizontal-center[data-v-1fdc72e8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1fdc72e8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1fdc72e8]{display:none!important}.no-content[data-v-1fdc72e8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1fdc72e8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1fdc72e8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1fdc72e8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1fdc72e8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1fdc72e8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1fdc72e8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1fdc72e8],.btn[data-v-1fdc72e8],button[data-v-1fdc72e8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1fdc72e8],.btn-default[type=submit][data-v-1fdc72e8],.btn.btn-primary[data-v-1fdc72e8],.btn[type=submit][data-v-1fdc72e8],button.btn-primary[data-v-1fdc72e8],button[type=submit][data-v-1fdc72e8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1fdc72e8]:hover,.btn[data-v-1fdc72e8]:hover,button[data-v-1fdc72e8]:hover{color:#35b870}.btn .icon[data-v-1fdc72e8],.btn-default .icon[data-v-1fdc72e8],button .icon[data-v-1fdc72e8]{margin-right:.5em}.btn-default[data-v-1fdc72e8]:disabled,.btn-default[disabled][data-v-1fdc72e8],.btn[data-v-1fdc72e8]:disabled,.btn[disabled][data-v-1fdc72e8],button[data-v-1fdc72e8]:disabled,button[disabled][data-v-1fdc72e8]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1fdc72e8]{cursor:grab!important}.dragged[data-v-1fdc72e8]{opacity:.5!important}input[type=password][data-v-1fdc72e8],input[type=text][data-v-1fdc72e8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1fdc72e8]:focus,input[type=text][data-v-1fdc72e8]:focus{border:1px solid #35b870}button[data-v-1fdc72e8],input[data-v-1fdc72e8]{outline:none}input[type=text][data-v-1fdc72e8]:hover,textarea[data-v-1fdc72e8]:hover{border:1px solid #9cdfb0}ul[data-v-1fdc72e8]{margin:0;padding:0;list-style:none}a[data-v-1fdc72e8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1fdc72e8]:hover{color:#35b870}[data-v-1fdc72e8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1fdc72e8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1fdc72e8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1fdc72e8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1fdc72e8]{color:#ad1717}body[data-v-1fdc72e8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1fdc72e8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1fdc72e8] .nav .path{cursor:pointer}.browser[data-v-1fdc72e8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1fdc72e8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1fdc72e8]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1fdc72e8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1fdc72e8],input[type=number][data-v-1fdc72e8],input[type=password][data-v-1fdc72e8],input[type=search][data-v-1fdc72e8],input[type=text][data-v-1fdc72e8],input[type=time][data-v-1fdc72e8]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1fdc72e8]:hover,input[type=number][data-v-1fdc72e8]:hover,input[type=password][data-v-1fdc72e8]:hover,input[type=search][data-v-1fdc72e8]:hover,input[type=text][data-v-1fdc72e8]:hover,input[type=time][data-v-1fdc72e8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1fdc72e8]:focus,input[type=number][data-v-1fdc72e8]:focus,input[type=password][data-v-1fdc72e8]:focus,input[type=search][data-v-1fdc72e8]:focus,input[type=text][data-v-1fdc72e8]:focus,input[type=time][data-v-1fdc72e8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1fdc72e8],input[type=number].with-icon[data-v-1fdc72e8],input[type=password].with-icon[data-v-1fdc72e8],input[type=search].with-icon[data-v-1fdc72e8],input[type=text].with-icon[data-v-1fdc72e8],input[type=time].with-icon[data-v-1fdc72e8]{padding-left:.3em}input[type=search][data-v-1fdc72e8],input[type=text][data-v-1fdc72e8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1fdc72e8]{animation-fill-mode:both;animation-name:fadeIn-1fdc72e8;-webkit-animation-name:fadeIn-1fdc72e8}.fade-in[data-v-1fdc72e8],.fade-out[data-v-1fdc72e8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1fdc72e8]{animation-fill-mode:both;animation-name:fadeOut-1fdc72e8;-webkit-animation-name:fadeOut-1fdc72e8}.expand[data-v-1fdc72e8]{animation-fill-mode:both;animation-name:expand-1fdc72e8;-webkit-animation-name:expand-1fdc72e8}.expand[data-v-1fdc72e8],.shrink[data-v-1fdc72e8]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1fdc72e8]{animation-fill-mode:both;animation-name:shrink-1fdc72e8;-webkit-animation-name:shrink-1fdc72e8}.fold[data-v-1fdc72e8]{animation-fill-mode:both;animation-name:fold-1fdc72e8;-webkit-animation-name:fold-1fdc72e8}.fold[data-v-1fdc72e8],.unfold[data-v-1fdc72e8]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1fdc72e8]{animation-fill-mode:both;animation-name:unfold-1fdc72e8;-webkit-animation-name:unfold-1fdc72e8}.dim[data-v-1fdc72e8]{animation-fill-mode:both;animation-name:dim-1fdc72e8;-webkit-animation-name:dim-1fdc72e8}.brighten[data-v-1fdc72e8],.dim[data-v-1fdc72e8]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1fdc72e8]{animation-fill-mode:both;animation-name:brighten-1fdc72e8;-webkit-animation-name:brighten-1fdc72e8}@keyframes fadeIn-1fdc72e8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1fdc72e8{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1fdc72e8{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1fdc72e8{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1fdc72e8{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1fdc72e8{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1fdc72e8{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1fdc72e8{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1fdc72e8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1fdc72e8;-webkit-animation-name:glow-1fdc72e8}.loop[data-v-1fdc72e8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1fdc72e8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1fdc72e8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1fdc72e8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1fdc72e8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-1fdc72e8]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-1fdc72e8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-1fdc72e8]{background:#8fefb7}.item.selected[data-v-1fdc72e8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-1fdc72e8]{border-top:2px solid #35b870}.item[data-v-1fdc72e8]::-moz-selection{background:transparent!important}.item[data-v-1fdc72e8]::selection{background:transparent!important}.item .title[data-v-1fdc72e8]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-1fdc72e8]{display:inline-flex;align-items:center}.item .side.right[data-v-1fdc72e8]{display:inline-flex;justify-content:right}.item .actions[data-v-1fdc72e8],.item .duration[data-v-1fdc72e8]{display:inline-flex;align-items:center}.item .duration[data-v-1fdc72e8]{font-size:.85em;opacity:.7}.item .actions[data-v-1fdc72e8] button{opacity:.65}.item .icon[data-v-1fdc72e8]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-1fdc72e8] .dropdown-container .item{box-shadow:none}.item[data-v-1fdc72e8] .dropdown-container button{background:none;border:none}.item[data-v-1fdc72e8] .dropdown-container button:hover{color:#35b870}[data-v-1fdc72e8] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-1fdc72e8] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-1fdc72e8] .table-row{flex-direction:row;align-items:center}}[data-v-1fdc72e8] .table-row .title,[data-v-1fdc72e8] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-1fdc72e8] .table-row .title,[data-v-1fdc72e8] .table-row .value{display:inline-flex}}[data-v-1fdc72e8] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-1fdc72e8] .table-row .title{width:30%}[data-v-1fdc72e8] .table-row .value{justify-content:right}}.fa-youtube[data-v-1fdc72e8]{color:#d21}.media-results[data-v-1fdc72e8]{width:100%;height:100%;background:#fff;position:relative}.media-results .grid[data-v-1fdc72e8]{height:100%;overflow:auto}.media-results .info-container[data-v-1fdc72e8]{width:100%;cursor:auto}.media-results.list[data-v-1fdc72e8] .grid{display:flex;flex-direction:column;padding:0;row-gap:0}.media-results.list[data-v-1fdc72e8] .grid .title{font-weight:400} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5197.a543b091.css b/platypush/backend/http/webapp/dist/static/css/5197.a543b091.css deleted file mode 100644 index 877541eb66..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/5197.a543b091.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7c29571d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7c29571d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7c29571d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7c29571d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7c29571d]:first-child{margin-left:26%!important}.col-offset-3[data-v-7c29571d]:not(first-child){margin-left:30%!important}.col-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7c29571d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7c29571d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7c29571d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7c29571d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7c29571d]:first-child{margin-left:52%!important}.col-offset-6[data-v-7c29571d]:not(first-child){margin-left:56%!important}.col-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7c29571d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7c29571d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7c29571d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7c29571d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7c29571d]:first-child{margin-left:78%!important}.col-offset-9[data-v-7c29571d]:not(first-child){margin-left:82%!important}.col-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7c29571d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7c29571d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7c29571d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7c29571d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-s-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-s-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-s-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-s-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7c29571d]{display:none!important}.s-visible[data-v-7c29571d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-m-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-m-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-m-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-m-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7c29571d]{display:none!important}.m-visible[data-v-7c29571d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-l-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-l-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-l-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-l-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7c29571d]{display:none!important}.l-visible[data-v-7c29571d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-xl-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-xl-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-xl-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xl-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7c29571d]{display:none!important}.xl-visible[data-v-7c29571d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7c29571d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7c29571d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7c29571d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7c29571d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7c29571d]{margin-left:26%}.col-no-margin-xxl-3[data-v-7c29571d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7c29571d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7c29571d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7c29571d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7c29571d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7c29571d]{margin-left:52%}.col-no-margin-xxl-6[data-v-7c29571d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7c29571d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7c29571d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7c29571d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7c29571d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7c29571d]{margin-left:78%}.col-no-margin-xxl-9[data-v-7c29571d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7c29571d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7c29571d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7c29571d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7c29571d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7c29571d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7c29571d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7c29571d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7c29571d]{display:none!important}.xxl-visible[data-v-7c29571d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7c29571d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7c29571d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7c29571d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7c29571d]{display:none!important}}.vertical-center[data-v-7c29571d]{display:flex;align-items:center}.horizontal-center[data-v-7c29571d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7c29571d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7c29571d]{display:none!important}.no-content[data-v-7c29571d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7c29571d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7c29571d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7c29571d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7c29571d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7c29571d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7c29571d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7c29571d],.btn[data-v-7c29571d],button[data-v-7c29571d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7c29571d],.btn-default[type=submit][data-v-7c29571d],.btn.btn-primary[data-v-7c29571d],.btn[type=submit][data-v-7c29571d],button.btn-primary[data-v-7c29571d],button[type=submit][data-v-7c29571d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7c29571d],.btn-default .icon[data-v-7c29571d],button .icon[data-v-7c29571d]{margin-right:.5em}input[type=password][data-v-7c29571d],input[type=text][data-v-7c29571d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7c29571d]:focus,input[type=text][data-v-7c29571d]:focus{border:1px solid #35b870}button[data-v-7c29571d],input[data-v-7c29571d]{outline:none}input[type=text][data-v-7c29571d]:hover,textarea[data-v-7c29571d]:hover{border:1px solid #9cdfb0}ul[data-v-7c29571d]{margin:0;padding:0;list-style:none}a[data-v-7c29571d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7c29571d]:hover{color:#35b870}[data-v-7c29571d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7c29571d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7c29571d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7c29571d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7c29571d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7c29571d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7c29571d] .nav .path{cursor:pointer}.browser[data-v-7c29571d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7c29571d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7c29571d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7c29571d],input[type=number][data-v-7c29571d],input[type=password][data-v-7c29571d],input[type=search][data-v-7c29571d],input[type=text][data-v-7c29571d],input[type=time][data-v-7c29571d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7c29571d]:hover,input[type=number][data-v-7c29571d]:hover,input[type=password][data-v-7c29571d]:hover,input[type=search][data-v-7c29571d]:hover,input[type=text][data-v-7c29571d]:hover,input[type=time][data-v-7c29571d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7c29571d]:focus,input[type=number][data-v-7c29571d]:focus,input[type=password][data-v-7c29571d]:focus,input[type=search][data-v-7c29571d]:focus,input[type=text][data-v-7c29571d]:focus,input[type=time][data-v-7c29571d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7c29571d],input[type=number].with-icon[data-v-7c29571d],input[type=password].with-icon[data-v-7c29571d],input[type=search].with-icon[data-v-7c29571d],input[type=text].with-icon[data-v-7c29571d],input[type=time].with-icon[data-v-7c29571d]{padding-left:.3em}input[type=search][data-v-7c29571d],input[type=text][data-v-7c29571d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7c29571d]{animation-fill-mode:both;animation-name:fadeIn-7c29571d;-webkit-animation-name:fadeIn-7c29571d}.fade-in[data-v-7c29571d],.fade-out[data-v-7c29571d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7c29571d]{animation-fill-mode:both;animation-name:fadeOut-7c29571d;-webkit-animation-name:fadeOut-7c29571d}@keyframes fadeIn-7c29571d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7c29571d{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7c29571d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7c29571d;-webkit-animation-name:glow-7c29571d}.loop[data-v-7c29571d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7c29571d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7c29571d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7c29571d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7c29571d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-7c29571d]{min-height:calc(100vh - 2em)}button[data-v-7c29571d]{background:none;border:none;box-shadow:none}button[data-v-7c29571d]:hover{color:#35b870}hgroup[data-v-7c29571d]{flex-grow:1}h1[data-v-7c29571d]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-7c29571d]{border-radius:.5em .5em 0 0}}h2[data-v-7c29571d]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-7c29571d]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-7c29571d]{margin-top:.5em;padding-top:.5em}section.response[data-v-7c29571d]{flex-grow:1;max-height:40em}section.response .output[data-v-7c29571d]{overflow:auto}.buttons[data-v-7c29571d]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-7c29571d]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-7c29571d]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-7c29571d]{background:#fff}header .buttons[data-v-7c29571d]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-7c29571d]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-7c29571d] .doc blockquote{margin-left:0}textarea[data-v-7c29571d]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-7c29571d]:hover{border:1px solid #38cf80}textarea[data-v-7c29571d]:focus{border:1px solid #32b646}form[data-v-7c29571d]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-7c29571d]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-7c29571d]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-7c29571d]{width:80%;max-width:60em}}.raw .first-row button[data-v-7c29571d]{margin-left:0}.args-list[data-v-7c29571d]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-7c29571d]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-7c29571d]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-7c29571d]{width:30em}}.args-list .arg[data-v-7c29571d]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-7c29571d]{width:100%}}.args-list .arg .required-flag[data-v-7c29571d]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-7c29571d]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-7c29571d]{width:100%}.args-body[data-v-7c29571d]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-7c29571d]{flex-direction:column}}.add-arg[data-v-7c29571d]{width:100%}.add-arg button[data-v-7c29571d]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-7c29571d]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-7c29571d]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-7c29571d]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-7c29571d]{width:100%}.doc-container[data-v-7c29571d],.response[data-v-7c29571d]{flex-grow:1}.doc-container h2[data-v-7c29571d],.response h2[data-v-7c29571d]{display:inline-flex}.doc-container h2 .title[data-v-7c29571d],.response h2 .title[data-v-7c29571d]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-7c29571d],.response h2 .buttons[data-v-7c29571d]{width:2em}.doc-container h2 .buttons button[data-v-7c29571d],.response h2 .buttons button[data-v-7c29571d]{padding:0}.output[data-v-7c29571d]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-7c29571d]{color:red}textarea.curl-snippet[data-v-7c29571d]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.execute-container[data-v-7c29571d]{width:100%;height:100%;color:#23513a;font-weight:400;border-radius:0 0 1em 1em;display:flex;flex-direction:column;align-items:center}.execute-container main[data-v-7c29571d]{width:100%;max-width:1000px;display:flex;flex-direction:column;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75),0 3px 3px 0 hsla(0,0%,73%,.75)}@media screen and (min-width:1024px){.execute-container main[data-v-7c29571d]{margin:1em;border-radius:1em 1em 0 0}}.execute-container main[data-v-7c29571d] .action-editor-container .action-editor{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5207.e08afd93.css b/platypush/backend/http/webapp/dist/static/css/5207.1bd62254.css similarity index 79% rename from platypush/backend/http/webapp/dist/static/css/5207.e08afd93.css rename to platypush/backend/http/webapp/dist/static/css/5207.1bd62254.css index b6b209dd5a..cc22a331b2 100644 --- a/platypush/backend/http/webapp/dist/static/css/5207.e08afd93.css +++ b/platypush/backend/http/webapp/dist/static/css/5207.1bd62254.css @@ -1 +1 @@ -.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)} \ No newline at end of file +.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5285.9219493c.css b/platypush/backend/http/webapp/dist/static/css/5285.9219493c.css new file mode 100644 index 0000000000..4d7f83ee4e --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5285.9219493c.css @@ -0,0 +1 @@ +.col-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f5d567e4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f5d567e4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f5d567e4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f5d567e4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f5d567e4]:first-child{margin-left:26%!important}.col-offset-3[data-v-f5d567e4]:not(first-child){margin-left:30%!important}.col-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f5d567e4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f5d567e4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f5d567e4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f5d567e4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f5d567e4]:first-child{margin-left:52%!important}.col-offset-6[data-v-f5d567e4]:not(first-child){margin-left:56%!important}.col-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f5d567e4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f5d567e4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f5d567e4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f5d567e4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f5d567e4]:first-child{margin-left:78%!important}.col-offset-9[data-v-f5d567e4]:not(first-child){margin-left:82%!important}.col-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f5d567e4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f5d567e4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f5d567e4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f5d567e4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-s-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-s-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-s-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f5d567e4]{display:none!important}.s-visible[data-v-f5d567e4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-m-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-m-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-m-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f5d567e4]{display:none!important}.m-visible[data-v-f5d567e4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-l-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-l-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-l-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f5d567e4]{display:none!important}.l-visible[data-v-f5d567e4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-xl-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-xl-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-xl-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f5d567e4]{display:none!important}.xl-visible[data-v-f5d567e4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-xxl-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-xxl-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-xxl-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f5d567e4]{display:none!important}.xxl-visible[data-v-f5d567e4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f5d567e4]{display:none!important}}.vertical-center[data-v-f5d567e4]{display:flex;align-items:center}.horizontal-center[data-v-f5d567e4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f5d567e4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f5d567e4]{display:none!important}.no-content[data-v-f5d567e4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f5d567e4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f5d567e4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f5d567e4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f5d567e4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f5d567e4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f5d567e4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f5d567e4],.btn[data-v-f5d567e4],button[data-v-f5d567e4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f5d567e4],.btn-default[type=submit][data-v-f5d567e4],.btn.btn-primary[data-v-f5d567e4],.btn[type=submit][data-v-f5d567e4],button.btn-primary[data-v-f5d567e4],button[type=submit][data-v-f5d567e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-f5d567e4]:hover,.btn[data-v-f5d567e4]:hover,button[data-v-f5d567e4]:hover{color:#35b870}.btn .icon[data-v-f5d567e4],.btn-default .icon[data-v-f5d567e4],button .icon[data-v-f5d567e4]{margin-right:.5em}.btn-default[data-v-f5d567e4]:disabled,.btn-default[disabled][data-v-f5d567e4],.btn[data-v-f5d567e4]:disabled,.btn[disabled][data-v-f5d567e4],button[data-v-f5d567e4]:disabled,button[disabled][data-v-f5d567e4]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-f5d567e4]{cursor:grab!important}.dragged[data-v-f5d567e4]{opacity:.5!important}input[type=password][data-v-f5d567e4],input[type=text][data-v-f5d567e4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f5d567e4]:focus,input[type=text][data-v-f5d567e4]:focus{border:1px solid #35b870}button[data-v-f5d567e4],input[data-v-f5d567e4]{outline:none}input[type=text][data-v-f5d567e4]:hover,textarea[data-v-f5d567e4]:hover{border:1px solid #9cdfb0}ul[data-v-f5d567e4]{margin:0;padding:0;list-style:none}a[data-v-f5d567e4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f5d567e4]:hover{color:#35b870}[data-v-f5d567e4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f5d567e4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f5d567e4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f5d567e4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-f5d567e4]{color:#ad1717}body[data-v-f5d567e4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f5d567e4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f5d567e4] .nav .path{cursor:pointer}.browser[data-v-f5d567e4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f5d567e4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-f5d567e4]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-f5d567e4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f5d567e4],input[type=number][data-v-f5d567e4],input[type=password][data-v-f5d567e4],input[type=search][data-v-f5d567e4],input[type=text][data-v-f5d567e4],input[type=time][data-v-f5d567e4]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-f5d567e4]:hover,input[type=number][data-v-f5d567e4]:hover,input[type=password][data-v-f5d567e4]:hover,input[type=search][data-v-f5d567e4]:hover,input[type=text][data-v-f5d567e4]:hover,input[type=time][data-v-f5d567e4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f5d567e4]:focus,input[type=number][data-v-f5d567e4]:focus,input[type=password][data-v-f5d567e4]:focus,input[type=search][data-v-f5d567e4]:focus,input[type=text][data-v-f5d567e4]:focus,input[type=time][data-v-f5d567e4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f5d567e4],input[type=number].with-icon[data-v-f5d567e4],input[type=password].with-icon[data-v-f5d567e4],input[type=search].with-icon[data-v-f5d567e4],input[type=text].with-icon[data-v-f5d567e4],input[type=time].with-icon[data-v-f5d567e4]{padding-left:.3em}input[type=search][data-v-f5d567e4],input[type=text][data-v-f5d567e4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f5d567e4]{animation-fill-mode:both;animation-name:fadeIn-f5d567e4;-webkit-animation-name:fadeIn-f5d567e4}.fade-in[data-v-f5d567e4],.fade-out[data-v-f5d567e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f5d567e4]{animation-fill-mode:both;animation-name:fadeOut-f5d567e4;-webkit-animation-name:fadeOut-f5d567e4}.expand[data-v-f5d567e4]{animation-fill-mode:both;animation-name:expand-f5d567e4;-webkit-animation-name:expand-f5d567e4}.expand[data-v-f5d567e4],.shrink[data-v-f5d567e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-f5d567e4]{animation-fill-mode:both;animation-name:shrink-f5d567e4;-webkit-animation-name:shrink-f5d567e4}.fold[data-v-f5d567e4]{animation-fill-mode:both;animation-name:fold-f5d567e4;-webkit-animation-name:fold-f5d567e4}.fold[data-v-f5d567e4],.unfold[data-v-f5d567e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-f5d567e4]{animation-fill-mode:both;animation-name:unfold-f5d567e4;-webkit-animation-name:unfold-f5d567e4}.dim[data-v-f5d567e4]{animation-fill-mode:both;animation-name:dim-f5d567e4;-webkit-animation-name:dim-f5d567e4}.brighten[data-v-f5d567e4],.dim[data-v-f5d567e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-f5d567e4]{animation-fill-mode:both;animation-name:brighten-f5d567e4;-webkit-animation-name:brighten-f5d567e4}@keyframes fadeIn-f5d567e4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f5d567e4{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-f5d567e4{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-f5d567e4{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-f5d567e4{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-f5d567e4{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-f5d567e4{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-f5d567e4{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-f5d567e4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f5d567e4;-webkit-animation-name:glow-f5d567e4}.loop[data-v-f5d567e4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f5d567e4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f5d567e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f5d567e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f5d567e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.client[data-v-f5d567e4]{flex-direction:column;border-bottom:1px solid #e1e4e8}.client .controls[data-v-f5d567e4],.client .name[data-v-f5d567e4]{width:100%;display:flex}}.client.offline[data-v-f5d567e4]{color:#9b9b9b}.client[data-v-f5d567e4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (max-width:calc(769px - 1px)){.client .name[data-v-f5d567e4]{padding-bottom:.5em}}.client .name[data-v-f5d567e4]:hover{color:#35b870;cursor:pointer}.client .slider-container[data-v-f5d567e4]{padding-right:1em}.col-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-748fccb4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-748fccb4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-748fccb4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-748fccb4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-748fccb4]:first-child{margin-left:26%!important}.col-offset-3[data-v-748fccb4]:not(first-child){margin-left:30%!important}.col-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-748fccb4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-748fccb4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-748fccb4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-748fccb4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-748fccb4]:first-child{margin-left:52%!important}.col-offset-6[data-v-748fccb4]:not(first-child){margin-left:56%!important}.col-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-748fccb4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-748fccb4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-748fccb4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-748fccb4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-748fccb4]:first-child{margin-left:78%!important}.col-offset-9[data-v-748fccb4]:not(first-child){margin-left:82%!important}.col-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-748fccb4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-748fccb4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-748fccb4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-748fccb4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-s-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-s-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-s-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-748fccb4]{display:none!important}.s-visible[data-v-748fccb4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-m-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-m-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-m-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-748fccb4]{display:none!important}.m-visible[data-v-748fccb4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-l-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-l-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-l-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-748fccb4]{display:none!important}.l-visible[data-v-748fccb4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-xl-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-xl-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-xl-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-748fccb4]{display:none!important}.xl-visible[data-v-748fccb4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-xxl-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-xxl-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-xxl-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-748fccb4]{display:none!important}.xxl-visible[data-v-748fccb4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-748fccb4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-748fccb4]{display:none!important}}.vertical-center[data-v-748fccb4]{display:flex;align-items:center}.horizontal-center[data-v-748fccb4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-748fccb4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-748fccb4]{display:none!important}.no-content[data-v-748fccb4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-748fccb4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-748fccb4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-748fccb4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-748fccb4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-748fccb4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-748fccb4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-748fccb4],.btn[data-v-748fccb4],button[data-v-748fccb4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-748fccb4],.btn-default[type=submit][data-v-748fccb4],.btn.btn-primary[data-v-748fccb4],.btn[type=submit][data-v-748fccb4],button.btn-primary[data-v-748fccb4],button[type=submit][data-v-748fccb4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-748fccb4]:hover,.btn[data-v-748fccb4]:hover,button[data-v-748fccb4]:hover{color:#35b870}.btn .icon[data-v-748fccb4],.btn-default .icon[data-v-748fccb4],button .icon[data-v-748fccb4]{margin-right:.5em}.btn-default[data-v-748fccb4]:disabled,.btn-default[disabled][data-v-748fccb4],.btn[data-v-748fccb4]:disabled,.btn[disabled][data-v-748fccb4],button[data-v-748fccb4]:disabled,button[disabled][data-v-748fccb4]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-748fccb4]{cursor:grab!important}.dragged[data-v-748fccb4]{opacity:.5!important}input[type=password][data-v-748fccb4],input[type=text][data-v-748fccb4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-748fccb4]:focus,input[type=text][data-v-748fccb4]:focus{border:1px solid #35b870}button[data-v-748fccb4],input[data-v-748fccb4]{outline:none}input[type=text][data-v-748fccb4]:hover,textarea[data-v-748fccb4]:hover{border:1px solid #9cdfb0}ul[data-v-748fccb4]{margin:0;padding:0;list-style:none}a[data-v-748fccb4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-748fccb4]:hover{color:#35b870}[data-v-748fccb4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-748fccb4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-748fccb4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-748fccb4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-748fccb4]{color:#ad1717}body[data-v-748fccb4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-748fccb4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-748fccb4] .nav .path{cursor:pointer}.browser[data-v-748fccb4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-748fccb4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-748fccb4]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-748fccb4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-748fccb4],input[type=number][data-v-748fccb4],input[type=password][data-v-748fccb4],input[type=search][data-v-748fccb4],input[type=text][data-v-748fccb4],input[type=time][data-v-748fccb4]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-748fccb4]:hover,input[type=number][data-v-748fccb4]:hover,input[type=password][data-v-748fccb4]:hover,input[type=search][data-v-748fccb4]:hover,input[type=text][data-v-748fccb4]:hover,input[type=time][data-v-748fccb4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-748fccb4]:focus,input[type=number][data-v-748fccb4]:focus,input[type=password][data-v-748fccb4]:focus,input[type=search][data-v-748fccb4]:focus,input[type=text][data-v-748fccb4]:focus,input[type=time][data-v-748fccb4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-748fccb4],input[type=number].with-icon[data-v-748fccb4],input[type=password].with-icon[data-v-748fccb4],input[type=search].with-icon[data-v-748fccb4],input[type=text].with-icon[data-v-748fccb4],input[type=time].with-icon[data-v-748fccb4]{padding-left:.3em}input[type=search][data-v-748fccb4],input[type=text][data-v-748fccb4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-748fccb4]{animation-fill-mode:both;animation-name:fadeIn-748fccb4;-webkit-animation-name:fadeIn-748fccb4}.fade-in[data-v-748fccb4],.fade-out[data-v-748fccb4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-748fccb4]{animation-fill-mode:both;animation-name:fadeOut-748fccb4;-webkit-animation-name:fadeOut-748fccb4}.expand[data-v-748fccb4]{animation-fill-mode:both;animation-name:expand-748fccb4;-webkit-animation-name:expand-748fccb4}.expand[data-v-748fccb4],.shrink[data-v-748fccb4]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-748fccb4]{animation-fill-mode:both;animation-name:shrink-748fccb4;-webkit-animation-name:shrink-748fccb4}.fold[data-v-748fccb4]{animation-fill-mode:both;animation-name:fold-748fccb4;-webkit-animation-name:fold-748fccb4}.fold[data-v-748fccb4],.unfold[data-v-748fccb4]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-748fccb4]{animation-fill-mode:both;animation-name:unfold-748fccb4;-webkit-animation-name:unfold-748fccb4}.dim[data-v-748fccb4]{animation-fill-mode:both;animation-name:dim-748fccb4;-webkit-animation-name:dim-748fccb4}.brighten[data-v-748fccb4],.dim[data-v-748fccb4]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-748fccb4]{animation-fill-mode:both;animation-name:brighten-748fccb4;-webkit-animation-name:brighten-748fccb4}@keyframes fadeIn-748fccb4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-748fccb4{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-748fccb4{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-748fccb4{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-748fccb4{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-748fccb4{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-748fccb4{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-748fccb4{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-748fccb4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-748fccb4;-webkit-animation-name:glow-748fccb4}.loop[data-v-748fccb4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-748fccb4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-748fccb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-748fccb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-748fccb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.group .head[data-v-748fccb4]{display:flex;background:#f1f3f2;border-top:1px solid #ddd;border-bottom:1px solid #ddd;border-radius:0;cursor:pointer}.group .head[data-v-748fccb4]:hover{color:#35b870}.group .client[data-v-748fccb4],.group .head[data-v-748fccb4]{display:flex;align-items:center;padding:1em .5em}.col-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7bce419a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7bce419a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7bce419a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7bce419a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7bce419a]:first-child{margin-left:26%!important}.col-offset-3[data-v-7bce419a]:not(first-child){margin-left:30%!important}.col-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7bce419a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7bce419a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7bce419a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7bce419a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7bce419a]:first-child{margin-left:52%!important}.col-offset-6[data-v-7bce419a]:not(first-child){margin-left:56%!important}.col-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7bce419a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7bce419a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7bce419a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7bce419a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7bce419a]:first-child{margin-left:78%!important}.col-offset-9[data-v-7bce419a]:not(first-child){margin-left:82%!important}.col-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7bce419a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7bce419a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7bce419a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7bce419a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-s-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-s-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-s-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7bce419a]{display:none!important}.s-visible[data-v-7bce419a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-m-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-m-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-m-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7bce419a]{display:none!important}.m-visible[data-v-7bce419a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-l-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-l-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-l-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7bce419a]{display:none!important}.l-visible[data-v-7bce419a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-xl-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-xl-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-xl-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7bce419a]{display:none!important}.xl-visible[data-v-7bce419a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-xxl-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-xxl-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-xxl-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7bce419a]{display:none!important}.xxl-visible[data-v-7bce419a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7bce419a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7bce419a]{display:none!important}}.vertical-center[data-v-7bce419a]{display:flex;align-items:center}.horizontal-center[data-v-7bce419a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7bce419a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7bce419a]{display:none!important}.no-content[data-v-7bce419a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7bce419a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7bce419a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7bce419a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7bce419a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7bce419a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7bce419a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7bce419a],.btn[data-v-7bce419a],button[data-v-7bce419a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7bce419a],.btn-default[type=submit][data-v-7bce419a],.btn.btn-primary[data-v-7bce419a],.btn[type=submit][data-v-7bce419a],button.btn-primary[data-v-7bce419a],button[type=submit][data-v-7bce419a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7bce419a]:hover,.btn[data-v-7bce419a]:hover,button[data-v-7bce419a]:hover{color:#35b870}.btn .icon[data-v-7bce419a],.btn-default .icon[data-v-7bce419a],button .icon[data-v-7bce419a]{margin-right:.5em}.btn-default[data-v-7bce419a]:disabled,.btn-default[disabled][data-v-7bce419a],.btn[data-v-7bce419a]:disabled,.btn[disabled][data-v-7bce419a],button[data-v-7bce419a]:disabled,button[disabled][data-v-7bce419a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7bce419a]{cursor:grab!important}.dragged[data-v-7bce419a]{opacity:.5!important}input[type=password][data-v-7bce419a],input[type=text][data-v-7bce419a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7bce419a]:focus,input[type=text][data-v-7bce419a]:focus{border:1px solid #35b870}button[data-v-7bce419a],input[data-v-7bce419a]{outline:none}input[type=text][data-v-7bce419a]:hover,textarea[data-v-7bce419a]:hover{border:1px solid #9cdfb0}ul[data-v-7bce419a]{margin:0;padding:0;list-style:none}a[data-v-7bce419a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7bce419a]:hover{color:#35b870}[data-v-7bce419a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7bce419a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7bce419a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7bce419a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7bce419a]{color:#ad1717}body[data-v-7bce419a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7bce419a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7bce419a] .nav .path{cursor:pointer}.browser[data-v-7bce419a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7bce419a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7bce419a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7bce419a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7bce419a],input[type=number][data-v-7bce419a],input[type=password][data-v-7bce419a],input[type=search][data-v-7bce419a],input[type=text][data-v-7bce419a],input[type=time][data-v-7bce419a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7bce419a]:hover,input[type=number][data-v-7bce419a]:hover,input[type=password][data-v-7bce419a]:hover,input[type=search][data-v-7bce419a]:hover,input[type=text][data-v-7bce419a]:hover,input[type=time][data-v-7bce419a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7bce419a]:focus,input[type=number][data-v-7bce419a]:focus,input[type=password][data-v-7bce419a]:focus,input[type=search][data-v-7bce419a]:focus,input[type=text][data-v-7bce419a]:focus,input[type=time][data-v-7bce419a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7bce419a],input[type=number].with-icon[data-v-7bce419a],input[type=password].with-icon[data-v-7bce419a],input[type=search].with-icon[data-v-7bce419a],input[type=text].with-icon[data-v-7bce419a],input[type=time].with-icon[data-v-7bce419a]{padding-left:.3em}input[type=search][data-v-7bce419a],input[type=text][data-v-7bce419a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7bce419a]{animation-fill-mode:both;animation-name:fadeIn-7bce419a;-webkit-animation-name:fadeIn-7bce419a}.fade-in[data-v-7bce419a],.fade-out[data-v-7bce419a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7bce419a]{animation-fill-mode:both;animation-name:fadeOut-7bce419a;-webkit-animation-name:fadeOut-7bce419a}.expand[data-v-7bce419a]{animation-fill-mode:both;animation-name:expand-7bce419a;-webkit-animation-name:expand-7bce419a}.expand[data-v-7bce419a],.shrink[data-v-7bce419a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7bce419a]{animation-fill-mode:both;animation-name:shrink-7bce419a;-webkit-animation-name:shrink-7bce419a}.fold[data-v-7bce419a]{animation-fill-mode:both;animation-name:fold-7bce419a;-webkit-animation-name:fold-7bce419a}.fold[data-v-7bce419a],.unfold[data-v-7bce419a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7bce419a]{animation-fill-mode:both;animation-name:unfold-7bce419a;-webkit-animation-name:unfold-7bce419a}.dim[data-v-7bce419a]{animation-fill-mode:both;animation-name:dim-7bce419a;-webkit-animation-name:dim-7bce419a}.brighten[data-v-7bce419a],.dim[data-v-7bce419a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7bce419a]{animation-fill-mode:both;animation-name:brighten-7bce419a;-webkit-animation-name:brighten-7bce419a}@keyframes fadeIn-7bce419a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7bce419a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7bce419a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7bce419a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7bce419a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7bce419a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7bce419a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7bce419a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7bce419a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7bce419a;-webkit-animation-name:glow-7bce419a}.loop[data-v-7bce419a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7bce419a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7bce419a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7bce419a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7bce419a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.host[data-v-7bce419a]{width:95%;max-width:1000px;margin:1em auto;border:1px solid #ddd;border-radius:.5em;box-shadow:2.5px 2.5px 3px 0 silver;background:#f8f8f8}.host .header[data-v-7bce419a]{padding:.5em;background:#edf0ee;border-bottom:1px solid #ddd;border-radius:.5em .5em 0 0;display:flex;align-items:center}.host .header .name[data-v-7bce419a]{text-transform:uppercase}.host .header .name[data-v-7bce419a]:hover{color:#35b870;cursor:pointer}.host .header .buttons[data-v-7bce419a]{margin-bottom:0}.host .header button[data-v-7bce419a]{padding:0;border:0;background:none}.host .header button[data-v-7bce419a]:hover{color:#35b870}.col-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-353ffa58]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-353ffa58]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-353ffa58]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-353ffa58]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-353ffa58]:first-child{margin-left:26%!important}.col-offset-3[data-v-353ffa58]:not(first-child){margin-left:30%!important}.col-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-353ffa58]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-353ffa58]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-353ffa58]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-353ffa58]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-353ffa58]:first-child{margin-left:52%!important}.col-offset-6[data-v-353ffa58]:not(first-child){margin-left:56%!important}.col-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-353ffa58]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-353ffa58]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-353ffa58]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-353ffa58]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-353ffa58]:first-child{margin-left:78%!important}.col-offset-9[data-v-353ffa58]:not(first-child){margin-left:82%!important}.col-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-353ffa58]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-353ffa58]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-353ffa58]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-353ffa58]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-s-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-s-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-s-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-s-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-353ffa58]{display:none!important}.s-visible[data-v-353ffa58]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-m-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-m-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-m-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-m-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-353ffa58]{display:none!important}.m-visible[data-v-353ffa58]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-l-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-l-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-l-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-l-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-353ffa58]{display:none!important}.l-visible[data-v-353ffa58]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-xl-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-xl-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-xl-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-353ffa58]{display:none!important}.xl-visible[data-v-353ffa58]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-xxl-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-xxl-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-xxl-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-353ffa58]{display:none!important}.xxl-visible[data-v-353ffa58]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-353ffa58]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-353ffa58]{display:none!important}}.vertical-center[data-v-353ffa58]{display:flex;align-items:center}.horizontal-center[data-v-353ffa58]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-353ffa58]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-353ffa58]{display:none!important}.no-content[data-v-353ffa58]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-353ffa58]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-353ffa58]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-353ffa58]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-353ffa58]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-353ffa58]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-353ffa58]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-353ffa58],.btn[data-v-353ffa58],button[data-v-353ffa58]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-353ffa58],.btn-default[type=submit][data-v-353ffa58],.btn.btn-primary[data-v-353ffa58],.btn[type=submit][data-v-353ffa58],button.btn-primary[data-v-353ffa58],button[type=submit][data-v-353ffa58]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-353ffa58]:hover,.btn[data-v-353ffa58]:hover,button[data-v-353ffa58]:hover{color:#35b870}.btn .icon[data-v-353ffa58],.btn-default .icon[data-v-353ffa58],button .icon[data-v-353ffa58]{margin-right:.5em}.btn-default[data-v-353ffa58]:disabled,.btn-default[disabled][data-v-353ffa58],.btn[data-v-353ffa58]:disabled,.btn[disabled][data-v-353ffa58],button[data-v-353ffa58]:disabled,button[disabled][data-v-353ffa58]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-353ffa58]{cursor:grab!important}.dragged[data-v-353ffa58]{opacity:.5!important}input[type=password][data-v-353ffa58],input[type=text][data-v-353ffa58]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-353ffa58]:focus,input[type=text][data-v-353ffa58]:focus{border:1px solid #35b870}button[data-v-353ffa58],input[data-v-353ffa58]{outline:none}input[type=text][data-v-353ffa58]:hover,textarea[data-v-353ffa58]:hover{border:1px solid #9cdfb0}ul[data-v-353ffa58]{margin:0;padding:0;list-style:none}a[data-v-353ffa58]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-353ffa58]:hover{color:#35b870}[data-v-353ffa58]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-353ffa58]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-353ffa58]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-353ffa58]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-353ffa58]{color:#ad1717}body[data-v-353ffa58]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-353ffa58] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-353ffa58] .nav .path{cursor:pointer}.browser[data-v-353ffa58] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-353ffa58] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-353ffa58]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-353ffa58]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-353ffa58],input[type=number][data-v-353ffa58],input[type=password][data-v-353ffa58],input[type=search][data-v-353ffa58],input[type=text][data-v-353ffa58],input[type=time][data-v-353ffa58]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-353ffa58]:hover,input[type=number][data-v-353ffa58]:hover,input[type=password][data-v-353ffa58]:hover,input[type=search][data-v-353ffa58]:hover,input[type=text][data-v-353ffa58]:hover,input[type=time][data-v-353ffa58]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-353ffa58]:focus,input[type=number][data-v-353ffa58]:focus,input[type=password][data-v-353ffa58]:focus,input[type=search][data-v-353ffa58]:focus,input[type=text][data-v-353ffa58]:focus,input[type=time][data-v-353ffa58]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-353ffa58],input[type=number].with-icon[data-v-353ffa58],input[type=password].with-icon[data-v-353ffa58],input[type=search].with-icon[data-v-353ffa58],input[type=text].with-icon[data-v-353ffa58],input[type=time].with-icon[data-v-353ffa58]{padding-left:.3em}input[type=search][data-v-353ffa58],input[type=text][data-v-353ffa58]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-353ffa58]{animation-fill-mode:both;animation-name:fadeIn-353ffa58;-webkit-animation-name:fadeIn-353ffa58}.fade-in[data-v-353ffa58],.fade-out[data-v-353ffa58]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-353ffa58]{animation-fill-mode:both;animation-name:fadeOut-353ffa58;-webkit-animation-name:fadeOut-353ffa58}.expand[data-v-353ffa58]{animation-fill-mode:both;animation-name:expand-353ffa58;-webkit-animation-name:expand-353ffa58}.expand[data-v-353ffa58],.shrink[data-v-353ffa58]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-353ffa58]{animation-fill-mode:both;animation-name:shrink-353ffa58;-webkit-animation-name:shrink-353ffa58}.fold[data-v-353ffa58]{animation-fill-mode:both;animation-name:fold-353ffa58;-webkit-animation-name:fold-353ffa58}.fold[data-v-353ffa58],.unfold[data-v-353ffa58]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-353ffa58]{animation-fill-mode:both;animation-name:unfold-353ffa58;-webkit-animation-name:unfold-353ffa58}.dim[data-v-353ffa58]{animation-fill-mode:both;animation-name:dim-353ffa58;-webkit-animation-name:dim-353ffa58}.brighten[data-v-353ffa58],.dim[data-v-353ffa58]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-353ffa58]{animation-fill-mode:both;animation-name:brighten-353ffa58;-webkit-animation-name:brighten-353ffa58}@keyframes fadeIn-353ffa58{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-353ffa58{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-353ffa58{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-353ffa58{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-353ffa58{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-353ffa58{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-353ffa58{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-353ffa58{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-353ffa58]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-353ffa58;-webkit-animation-name:glow-353ffa58}.loop[data-v-353ffa58]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-353ffa58{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-353ffa58]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-353ffa58]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-353ffa58]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.info .row[data-v-353ffa58]{display:flex;align-items:center}.info .section[data-v-353ffa58]{padding:1.5em}.info .section .row[data-v-353ffa58]{align-items:normal}.info label.client[data-v-353ffa58]{width:100%}.info .title[data-v-353ffa58]{font-size:1em;padding-left:.5em;padding-bottom:.5em;margin-bottom:.5em;border-bottom:1px solid #e1e4e8}.info .client[data-v-353ffa58]{display:flex;align-items:center}.info .client input[data-v-353ffa58]{margin-right:.5em}.info .name-value[data-v-353ffa58]{display:flex;align-items:center}.info .name-value button[data-v-353ffa58]{background:none;border:none;margin:0 1em;padding:0}.info .name-value button[data-v-353ffa58]:hover{color:#38cf80}.col-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0e55ac54]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0e55ac54]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0e55ac54]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0e55ac54]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0e55ac54]:first-child{margin-left:26%!important}.col-offset-3[data-v-0e55ac54]:not(first-child){margin-left:30%!important}.col-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0e55ac54]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0e55ac54]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0e55ac54]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0e55ac54]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0e55ac54]:first-child{margin-left:52%!important}.col-offset-6[data-v-0e55ac54]:not(first-child){margin-left:56%!important}.col-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0e55ac54]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0e55ac54]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0e55ac54]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0e55ac54]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0e55ac54]:first-child{margin-left:78%!important}.col-offset-9[data-v-0e55ac54]:not(first-child){margin-left:82%!important}.col-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0e55ac54]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0e55ac54]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0e55ac54]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0e55ac54]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-s-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-s-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-s-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0e55ac54]{display:none!important}.s-visible[data-v-0e55ac54]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-m-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-m-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-m-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0e55ac54]{display:none!important}.m-visible[data-v-0e55ac54]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-l-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-l-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-l-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0e55ac54]{display:none!important}.l-visible[data-v-0e55ac54]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-xl-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-xl-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-xl-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0e55ac54]{display:none!important}.xl-visible[data-v-0e55ac54]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-xxl-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-xxl-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-xxl-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0e55ac54]{display:none!important}.xxl-visible[data-v-0e55ac54]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0e55ac54]{display:none!important}}.vertical-center[data-v-0e55ac54]{display:flex;align-items:center}.horizontal-center[data-v-0e55ac54]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0e55ac54]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0e55ac54]{display:none!important}.no-content[data-v-0e55ac54]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0e55ac54]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0e55ac54]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0e55ac54]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0e55ac54]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0e55ac54]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0e55ac54]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0e55ac54],.btn[data-v-0e55ac54],button[data-v-0e55ac54]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0e55ac54],.btn-default[type=submit][data-v-0e55ac54],.btn.btn-primary[data-v-0e55ac54],.btn[type=submit][data-v-0e55ac54],button.btn-primary[data-v-0e55ac54],button[type=submit][data-v-0e55ac54]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-0e55ac54]:hover,.btn[data-v-0e55ac54]:hover,button[data-v-0e55ac54]:hover{color:#35b870}.btn .icon[data-v-0e55ac54],.btn-default .icon[data-v-0e55ac54],button .icon[data-v-0e55ac54]{margin-right:.5em}.btn-default[data-v-0e55ac54]:disabled,.btn-default[disabled][data-v-0e55ac54],.btn[data-v-0e55ac54]:disabled,.btn[disabled][data-v-0e55ac54],button[data-v-0e55ac54]:disabled,button[disabled][data-v-0e55ac54]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-0e55ac54]{cursor:grab!important}.dragged[data-v-0e55ac54]{opacity:.5!important}input[type=password][data-v-0e55ac54],input[type=text][data-v-0e55ac54]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0e55ac54]:focus,input[type=text][data-v-0e55ac54]:focus{border:1px solid #35b870}button[data-v-0e55ac54],input[data-v-0e55ac54]{outline:none}input[type=text][data-v-0e55ac54]:hover,textarea[data-v-0e55ac54]:hover{border:1px solid #9cdfb0}ul[data-v-0e55ac54]{margin:0;padding:0;list-style:none}a[data-v-0e55ac54]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0e55ac54]:hover{color:#35b870}[data-v-0e55ac54]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0e55ac54]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0e55ac54]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0e55ac54]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-0e55ac54]{color:#ad1717}body[data-v-0e55ac54]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0e55ac54] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0e55ac54] .nav .path{cursor:pointer}.browser[data-v-0e55ac54] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0e55ac54] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-0e55ac54]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-0e55ac54]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0e55ac54],input[type=number][data-v-0e55ac54],input[type=password][data-v-0e55ac54],input[type=search][data-v-0e55ac54],input[type=text][data-v-0e55ac54],input[type=time][data-v-0e55ac54]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-0e55ac54]:hover,input[type=number][data-v-0e55ac54]:hover,input[type=password][data-v-0e55ac54]:hover,input[type=search][data-v-0e55ac54]:hover,input[type=text][data-v-0e55ac54]:hover,input[type=time][data-v-0e55ac54]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0e55ac54]:focus,input[type=number][data-v-0e55ac54]:focus,input[type=password][data-v-0e55ac54]:focus,input[type=search][data-v-0e55ac54]:focus,input[type=text][data-v-0e55ac54]:focus,input[type=time][data-v-0e55ac54]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0e55ac54],input[type=number].with-icon[data-v-0e55ac54],input[type=password].with-icon[data-v-0e55ac54],input[type=search].with-icon[data-v-0e55ac54],input[type=text].with-icon[data-v-0e55ac54],input[type=time].with-icon[data-v-0e55ac54]{padding-left:.3em}input[type=search][data-v-0e55ac54],input[type=text][data-v-0e55ac54]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0e55ac54]{animation-fill-mode:both;animation-name:fadeIn-0e55ac54;-webkit-animation-name:fadeIn-0e55ac54}.fade-in[data-v-0e55ac54],.fade-out[data-v-0e55ac54]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0e55ac54]{animation-fill-mode:both;animation-name:fadeOut-0e55ac54;-webkit-animation-name:fadeOut-0e55ac54}.expand[data-v-0e55ac54]{animation-fill-mode:both;animation-name:expand-0e55ac54;-webkit-animation-name:expand-0e55ac54}.expand[data-v-0e55ac54],.shrink[data-v-0e55ac54]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-0e55ac54]{animation-fill-mode:both;animation-name:shrink-0e55ac54;-webkit-animation-name:shrink-0e55ac54}.fold[data-v-0e55ac54]{animation-fill-mode:both;animation-name:fold-0e55ac54;-webkit-animation-name:fold-0e55ac54}.fold[data-v-0e55ac54],.unfold[data-v-0e55ac54]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-0e55ac54]{animation-fill-mode:both;animation-name:unfold-0e55ac54;-webkit-animation-name:unfold-0e55ac54}.dim[data-v-0e55ac54]{animation-fill-mode:both;animation-name:dim-0e55ac54;-webkit-animation-name:dim-0e55ac54}.brighten[data-v-0e55ac54],.dim[data-v-0e55ac54]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-0e55ac54]{animation-fill-mode:both;animation-name:brighten-0e55ac54;-webkit-animation-name:brighten-0e55ac54}@keyframes fadeIn-0e55ac54{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0e55ac54{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-0e55ac54{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-0e55ac54{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-0e55ac54{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-0e55ac54{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-0e55ac54{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-0e55ac54{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-0e55ac54]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0e55ac54;-webkit-animation-name:glow-0e55ac54}.loop[data-v-0e55ac54]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0e55ac54{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0e55ac54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0e55ac54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0e55ac54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.client-modal[data-v-0e55ac54]{max-height:75vh;display:flex;flex-direction:column}.client-modal .info[data-v-0e55ac54]{height:80%;overflow:auto}.client-modal button[data-v-0e55ac54]{background:none;border:none;padding:0;margin:0 .5em}.client-modal button[data-v-0e55ac54]:hover{color:#38cf80}.client-modal .buttons[data-v-0e55ac54]{height:20%;margin:0!important;padding:0!important}.client-modal .buttons .row[data-v-0e55ac54]{width:100%;height:100%;display:flex;justify-content:center;padding:0}.client-modal .buttons .row[data-v-0e55ac54]:hover{background:none}.client-modal .buttons .row button[data-v-0e55ac54]{width:100%;height:100%;padding:1em;color:#900;border-color:#900}.client-modal .buttons .row button .name[data-v-0e55ac54]{margin-left:.5em}.client-modal .buttons .row button[data-v-0e55ac54]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-27dfcbf6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-27dfcbf6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-27dfcbf6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-27dfcbf6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-27dfcbf6]:first-child{margin-left:26%!important}.col-offset-3[data-v-27dfcbf6]:not(first-child){margin-left:30%!important}.col-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-27dfcbf6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-27dfcbf6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-27dfcbf6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-27dfcbf6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-27dfcbf6]:first-child{margin-left:52%!important}.col-offset-6[data-v-27dfcbf6]:not(first-child){margin-left:56%!important}.col-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-27dfcbf6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-27dfcbf6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-27dfcbf6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-27dfcbf6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-27dfcbf6]:first-child{margin-left:78%!important}.col-offset-9[data-v-27dfcbf6]:not(first-child){margin-left:82%!important}.col-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-27dfcbf6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-27dfcbf6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-27dfcbf6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-27dfcbf6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-s-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-s-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-s-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-27dfcbf6]{display:none!important}.s-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-m-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-m-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-m-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-27dfcbf6]{display:none!important}.m-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-l-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-l-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-l-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-27dfcbf6]{display:none!important}.l-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-xl-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-xl-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-xl-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-27dfcbf6]{display:none!important}.xl-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-xxl-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-xxl-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-xxl-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-27dfcbf6]{display:none!important}.xxl-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-27dfcbf6]{display:none!important}}.vertical-center[data-v-27dfcbf6]{display:flex;align-items:center}.horizontal-center[data-v-27dfcbf6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-27dfcbf6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-27dfcbf6]{display:none!important}.no-content[data-v-27dfcbf6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-27dfcbf6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-27dfcbf6],.btn[data-v-27dfcbf6],button[data-v-27dfcbf6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-27dfcbf6],.btn-default[type=submit][data-v-27dfcbf6],.btn.btn-primary[data-v-27dfcbf6],.btn[type=submit][data-v-27dfcbf6],button.btn-primary[data-v-27dfcbf6],button[type=submit][data-v-27dfcbf6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-27dfcbf6]:hover,.btn[data-v-27dfcbf6]:hover,button[data-v-27dfcbf6]:hover{color:#35b870}.btn .icon[data-v-27dfcbf6],.btn-default .icon[data-v-27dfcbf6],button .icon[data-v-27dfcbf6]{margin-right:.5em}.btn-default[data-v-27dfcbf6]:disabled,.btn-default[disabled][data-v-27dfcbf6],.btn[data-v-27dfcbf6]:disabled,.btn[disabled][data-v-27dfcbf6],button[data-v-27dfcbf6]:disabled,button[disabled][data-v-27dfcbf6]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-27dfcbf6]{cursor:grab!important}.dragged[data-v-27dfcbf6]{opacity:.5!important}input[type=password][data-v-27dfcbf6],input[type=text][data-v-27dfcbf6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-27dfcbf6]:focus,input[type=text][data-v-27dfcbf6]:focus{border:1px solid #35b870}button[data-v-27dfcbf6],input[data-v-27dfcbf6]{outline:none}input[type=text][data-v-27dfcbf6]:hover,textarea[data-v-27dfcbf6]:hover{border:1px solid #9cdfb0}ul[data-v-27dfcbf6]{margin:0;padding:0;list-style:none}a[data-v-27dfcbf6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-27dfcbf6]:hover{color:#35b870}[data-v-27dfcbf6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-27dfcbf6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-27dfcbf6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-27dfcbf6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-27dfcbf6]{color:#ad1717}body[data-v-27dfcbf6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-27dfcbf6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-27dfcbf6] .nav .path{cursor:pointer}.browser[data-v-27dfcbf6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-27dfcbf6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-27dfcbf6]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-27dfcbf6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-27dfcbf6],input[type=number][data-v-27dfcbf6],input[type=password][data-v-27dfcbf6],input[type=search][data-v-27dfcbf6],input[type=text][data-v-27dfcbf6],input[type=time][data-v-27dfcbf6]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-27dfcbf6]:hover,input[type=number][data-v-27dfcbf6]:hover,input[type=password][data-v-27dfcbf6]:hover,input[type=search][data-v-27dfcbf6]:hover,input[type=text][data-v-27dfcbf6]:hover,input[type=time][data-v-27dfcbf6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-27dfcbf6]:focus,input[type=number][data-v-27dfcbf6]:focus,input[type=password][data-v-27dfcbf6]:focus,input[type=search][data-v-27dfcbf6]:focus,input[type=text][data-v-27dfcbf6]:focus,input[type=time][data-v-27dfcbf6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-27dfcbf6],input[type=number].with-icon[data-v-27dfcbf6],input[type=password].with-icon[data-v-27dfcbf6],input[type=search].with-icon[data-v-27dfcbf6],input[type=text].with-icon[data-v-27dfcbf6],input[type=time].with-icon[data-v-27dfcbf6]{padding-left:.3em}input[type=search][data-v-27dfcbf6],input[type=text][data-v-27dfcbf6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:fadeIn-27dfcbf6;-webkit-animation-name:fadeIn-27dfcbf6}.fade-in[data-v-27dfcbf6],.fade-out[data-v-27dfcbf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:fadeOut-27dfcbf6;-webkit-animation-name:fadeOut-27dfcbf6}.expand[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:expand-27dfcbf6;-webkit-animation-name:expand-27dfcbf6}.expand[data-v-27dfcbf6],.shrink[data-v-27dfcbf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:shrink-27dfcbf6;-webkit-animation-name:shrink-27dfcbf6}.fold[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:fold-27dfcbf6;-webkit-animation-name:fold-27dfcbf6}.fold[data-v-27dfcbf6],.unfold[data-v-27dfcbf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:unfold-27dfcbf6;-webkit-animation-name:unfold-27dfcbf6}.dim[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:dim-27dfcbf6;-webkit-animation-name:dim-27dfcbf6}.brighten[data-v-27dfcbf6],.dim[data-v-27dfcbf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:brighten-27dfcbf6;-webkit-animation-name:brighten-27dfcbf6}@keyframes fadeIn-27dfcbf6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-27dfcbf6{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-27dfcbf6{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-27dfcbf6{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-27dfcbf6{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-27dfcbf6{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-27dfcbf6{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-27dfcbf6{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-27dfcbf6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-27dfcbf6;-webkit-animation-name:glow-27dfcbf6}.loop[data-v-27dfcbf6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-27dfcbf6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-27dfcbf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-27dfcbf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-27dfcbf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.music-snapcast-container[data-v-27dfcbf6]{width:100%;overflow:auto;background:#fff}[data-v-27dfcbf6] .info .modal .content{width:90%;max-width:800px}[data-v-27dfcbf6] .info .modal .body{padding:0}[data-v-27dfcbf6] .info .row{display:flex;align-items:center;border-radius:.75em;padding:1em}@media screen and (max-width:calc(769px - 1px)){[data-v-27dfcbf6] .info .row{flex-direction:column;border-bottom:1px solid #e1e4e8}}@media screen and (min-width:1024px){[data-v-27dfcbf6] .info .row{padding:1em 2em}}[data-v-27dfcbf6] .info .row .label{margin-bottom:0}[data-v-27dfcbf6] .info .row .value{display:flex}@media screen and (min-width:769px){[data-v-27dfcbf6] .info .row .value{justify-content:right}}@media screen and (max-width:calc(769px - 1px)){[data-v-27dfcbf6] .info .row .value{width:100%;margin-left:0}[data-v-27dfcbf6] .info .row .label{width:100%;display:flex}}[data-v-27dfcbf6] .info .row:nth-child(odd){background:#fff}[data-v-27dfcbf6] .info .row:nth-child(2n){background:#f4f5f6}[data-v-27dfcbf6] .info .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-27dfcbf6] .info .buttons{background:initial;margin-top:1.5em;padding-top:1.5em;border-top:1px solid #ddd;display:flex;justify-content:center}@media screen and (max-width:calc(769px - 1)){.music-snapcast-container .modal[data-v-27dfcbf6]{width:95vw}}@media screen and (min-width:769px){.music-snapcast-container .modal[data-v-27dfcbf6]{width:70vw}}@media screen and (min-width:1024px){.music-snapcast-container .modal[data-v-27dfcbf6]{width:45vw}}@media screen and (max-width:calc(769px - 1px)){[data-v-27dfcbf6] .modal-container .modal .content{width:95vw}}@media screen and (min-width:769px){[data-v-27dfcbf6] .modal-container .modal .content{min-width:600px}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5285.faa6ed68.css b/platypush/backend/http/webapp/dist/static/css/5285.faa6ed68.css deleted file mode 100644 index 743ac23273..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/5285.faa6ed68.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f5d567e4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f5d567e4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f5d567e4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f5d567e4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f5d567e4]:first-child{margin-left:26%!important}.col-offset-3[data-v-f5d567e4]:not(first-child){margin-left:30%!important}.col-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f5d567e4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f5d567e4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f5d567e4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f5d567e4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f5d567e4]:first-child{margin-left:52%!important}.col-offset-6[data-v-f5d567e4]:not(first-child){margin-left:56%!important}.col-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f5d567e4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f5d567e4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f5d567e4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f5d567e4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f5d567e4]:first-child{margin-left:78%!important}.col-offset-9[data-v-f5d567e4]:not(first-child){margin-left:82%!important}.col-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f5d567e4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f5d567e4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f5d567e4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f5d567e4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-s-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-s-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-s-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-s-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f5d567e4]{display:none!important}.s-visible[data-v-f5d567e4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-m-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-m-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-m-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-m-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f5d567e4]{display:none!important}.m-visible[data-v-f5d567e4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-l-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-l-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-l-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-l-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f5d567e4]{display:none!important}.l-visible[data-v-f5d567e4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-xl-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-xl-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-xl-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xl-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f5d567e4]{display:none!important}.xl-visible[data-v-f5d567e4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f5d567e4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f5d567e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f5d567e4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f5d567e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f5d567e4]{margin-left:26%}.col-no-margin-xxl-3[data-v-f5d567e4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f5d567e4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f5d567e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f5d567e4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f5d567e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f5d567e4]{margin-left:52%}.col-no-margin-xxl-6[data-v-f5d567e4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f5d567e4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f5d567e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f5d567e4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f5d567e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f5d567e4]{margin-left:78%}.col-no-margin-xxl-9[data-v-f5d567e4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f5d567e4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f5d567e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f5d567e4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f5d567e4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f5d567e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f5d567e4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f5d567e4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f5d567e4]{display:none!important}.xxl-visible[data-v-f5d567e4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f5d567e4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f5d567e4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f5d567e4]{display:none!important}}.vertical-center[data-v-f5d567e4]{display:flex;align-items:center}.horizontal-center[data-v-f5d567e4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f5d567e4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f5d567e4]{display:none!important}.no-content[data-v-f5d567e4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f5d567e4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f5d567e4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f5d567e4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f5d567e4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f5d567e4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f5d567e4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f5d567e4],.btn[data-v-f5d567e4],button[data-v-f5d567e4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f5d567e4],.btn-default[type=submit][data-v-f5d567e4],.btn.btn-primary[data-v-f5d567e4],.btn[type=submit][data-v-f5d567e4],button.btn-primary[data-v-f5d567e4],button[type=submit][data-v-f5d567e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f5d567e4],.btn-default .icon[data-v-f5d567e4],button .icon[data-v-f5d567e4]{margin-right:.5em}input[type=password][data-v-f5d567e4],input[type=text][data-v-f5d567e4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f5d567e4]:focus,input[type=text][data-v-f5d567e4]:focus{border:1px solid #35b870}button[data-v-f5d567e4],input[data-v-f5d567e4]{outline:none}input[type=text][data-v-f5d567e4]:hover,textarea[data-v-f5d567e4]:hover{border:1px solid #9cdfb0}ul[data-v-f5d567e4]{margin:0;padding:0;list-style:none}a[data-v-f5d567e4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f5d567e4]:hover{color:#35b870}[data-v-f5d567e4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f5d567e4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f5d567e4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f5d567e4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f5d567e4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f5d567e4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f5d567e4] .nav .path{cursor:pointer}.browser[data-v-f5d567e4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f5d567e4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-f5d567e4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f5d567e4],input[type=number][data-v-f5d567e4],input[type=password][data-v-f5d567e4],input[type=search][data-v-f5d567e4],input[type=text][data-v-f5d567e4],input[type=time][data-v-f5d567e4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-f5d567e4]:hover,input[type=number][data-v-f5d567e4]:hover,input[type=password][data-v-f5d567e4]:hover,input[type=search][data-v-f5d567e4]:hover,input[type=text][data-v-f5d567e4]:hover,input[type=time][data-v-f5d567e4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f5d567e4]:focus,input[type=number][data-v-f5d567e4]:focus,input[type=password][data-v-f5d567e4]:focus,input[type=search][data-v-f5d567e4]:focus,input[type=text][data-v-f5d567e4]:focus,input[type=time][data-v-f5d567e4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f5d567e4],input[type=number].with-icon[data-v-f5d567e4],input[type=password].with-icon[data-v-f5d567e4],input[type=search].with-icon[data-v-f5d567e4],input[type=text].with-icon[data-v-f5d567e4],input[type=time].with-icon[data-v-f5d567e4]{padding-left:.3em}input[type=search][data-v-f5d567e4],input[type=text][data-v-f5d567e4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f5d567e4]{animation-fill-mode:both;animation-name:fadeIn-f5d567e4;-webkit-animation-name:fadeIn-f5d567e4}.fade-in[data-v-f5d567e4],.fade-out[data-v-f5d567e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f5d567e4]{animation-fill-mode:both;animation-name:fadeOut-f5d567e4;-webkit-animation-name:fadeOut-f5d567e4}@keyframes fadeIn-f5d567e4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f5d567e4{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-f5d567e4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f5d567e4;-webkit-animation-name:glow-f5d567e4}.loop[data-v-f5d567e4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f5d567e4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f5d567e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f5d567e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f5d567e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.client[data-v-f5d567e4]{flex-direction:column;border-bottom:1px solid #e1e4e8}.client .controls[data-v-f5d567e4],.client .name[data-v-f5d567e4]{width:100%;display:flex}}.client.offline[data-v-f5d567e4]{color:#9b9b9b}.client[data-v-f5d567e4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (max-width:calc(769px - 1px)){.client .name[data-v-f5d567e4]{padding-bottom:.5em}}.client .name[data-v-f5d567e4]:hover{color:#35b870;cursor:pointer}.client .slider-container[data-v-f5d567e4]{padding-right:1em}.col-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-748fccb4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-748fccb4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-748fccb4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-748fccb4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-748fccb4]:first-child{margin-left:26%!important}.col-offset-3[data-v-748fccb4]:not(first-child){margin-left:30%!important}.col-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-748fccb4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-748fccb4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-748fccb4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-748fccb4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-748fccb4]:first-child{margin-left:52%!important}.col-offset-6[data-v-748fccb4]:not(first-child){margin-left:56%!important}.col-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-748fccb4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-748fccb4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-748fccb4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-748fccb4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-748fccb4]:first-child{margin-left:78%!important}.col-offset-9[data-v-748fccb4]:not(first-child){margin-left:82%!important}.col-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-748fccb4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-748fccb4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-748fccb4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-748fccb4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-s-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-s-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-s-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-s-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-748fccb4]{display:none!important}.s-visible[data-v-748fccb4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-m-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-m-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-m-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-m-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-748fccb4]{display:none!important}.m-visible[data-v-748fccb4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-l-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-l-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-l-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-l-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-748fccb4]{display:none!important}.l-visible[data-v-748fccb4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-xl-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-xl-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-xl-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xl-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-748fccb4]{display:none!important}.xl-visible[data-v-748fccb4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-748fccb4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-748fccb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-748fccb4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-748fccb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-748fccb4]{margin-left:26%}.col-no-margin-xxl-3[data-v-748fccb4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-748fccb4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-748fccb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-748fccb4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-748fccb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-748fccb4]{margin-left:52%}.col-no-margin-xxl-6[data-v-748fccb4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-748fccb4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-748fccb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-748fccb4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-748fccb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-748fccb4]{margin-left:78%}.col-no-margin-xxl-9[data-v-748fccb4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-748fccb4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-748fccb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-748fccb4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-748fccb4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-748fccb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-748fccb4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-748fccb4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-748fccb4]{display:none!important}.xxl-visible[data-v-748fccb4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-748fccb4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-748fccb4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-748fccb4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-748fccb4]{display:none!important}}.vertical-center[data-v-748fccb4]{display:flex;align-items:center}.horizontal-center[data-v-748fccb4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-748fccb4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-748fccb4]{display:none!important}.no-content[data-v-748fccb4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-748fccb4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-748fccb4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-748fccb4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-748fccb4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-748fccb4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-748fccb4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-748fccb4],.btn[data-v-748fccb4],button[data-v-748fccb4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-748fccb4],.btn-default[type=submit][data-v-748fccb4],.btn.btn-primary[data-v-748fccb4],.btn[type=submit][data-v-748fccb4],button.btn-primary[data-v-748fccb4],button[type=submit][data-v-748fccb4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-748fccb4],.btn-default .icon[data-v-748fccb4],button .icon[data-v-748fccb4]{margin-right:.5em}input[type=password][data-v-748fccb4],input[type=text][data-v-748fccb4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-748fccb4]:focus,input[type=text][data-v-748fccb4]:focus{border:1px solid #35b870}button[data-v-748fccb4],input[data-v-748fccb4]{outline:none}input[type=text][data-v-748fccb4]:hover,textarea[data-v-748fccb4]:hover{border:1px solid #9cdfb0}ul[data-v-748fccb4]{margin:0;padding:0;list-style:none}a[data-v-748fccb4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-748fccb4]:hover{color:#35b870}[data-v-748fccb4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-748fccb4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-748fccb4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-748fccb4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-748fccb4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-748fccb4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-748fccb4] .nav .path{cursor:pointer}.browser[data-v-748fccb4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-748fccb4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-748fccb4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-748fccb4],input[type=number][data-v-748fccb4],input[type=password][data-v-748fccb4],input[type=search][data-v-748fccb4],input[type=text][data-v-748fccb4],input[type=time][data-v-748fccb4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-748fccb4]:hover,input[type=number][data-v-748fccb4]:hover,input[type=password][data-v-748fccb4]:hover,input[type=search][data-v-748fccb4]:hover,input[type=text][data-v-748fccb4]:hover,input[type=time][data-v-748fccb4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-748fccb4]:focus,input[type=number][data-v-748fccb4]:focus,input[type=password][data-v-748fccb4]:focus,input[type=search][data-v-748fccb4]:focus,input[type=text][data-v-748fccb4]:focus,input[type=time][data-v-748fccb4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-748fccb4],input[type=number].with-icon[data-v-748fccb4],input[type=password].with-icon[data-v-748fccb4],input[type=search].with-icon[data-v-748fccb4],input[type=text].with-icon[data-v-748fccb4],input[type=time].with-icon[data-v-748fccb4]{padding-left:.3em}input[type=search][data-v-748fccb4],input[type=text][data-v-748fccb4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-748fccb4]{animation-fill-mode:both;animation-name:fadeIn-748fccb4;-webkit-animation-name:fadeIn-748fccb4}.fade-in[data-v-748fccb4],.fade-out[data-v-748fccb4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-748fccb4]{animation-fill-mode:both;animation-name:fadeOut-748fccb4;-webkit-animation-name:fadeOut-748fccb4}@keyframes fadeIn-748fccb4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-748fccb4{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-748fccb4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-748fccb4;-webkit-animation-name:glow-748fccb4}.loop[data-v-748fccb4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-748fccb4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-748fccb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-748fccb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-748fccb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.group .head[data-v-748fccb4]{display:flex;background:#f1f3f2;border-top:1px solid #ddd;border-bottom:1px solid #ddd;border-radius:0;cursor:pointer}.group .head[data-v-748fccb4]:hover{color:#35b870}.group .client[data-v-748fccb4],.group .head[data-v-748fccb4]{display:flex;align-items:center;padding:1em .5em}.col-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7bce419a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7bce419a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7bce419a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7bce419a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7bce419a]:first-child{margin-left:26%!important}.col-offset-3[data-v-7bce419a]:not(first-child){margin-left:30%!important}.col-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7bce419a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7bce419a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7bce419a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7bce419a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7bce419a]:first-child{margin-left:52%!important}.col-offset-6[data-v-7bce419a]:not(first-child){margin-left:56%!important}.col-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7bce419a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7bce419a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7bce419a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7bce419a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7bce419a]:first-child{margin-left:78%!important}.col-offset-9[data-v-7bce419a]:not(first-child){margin-left:82%!important}.col-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7bce419a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7bce419a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7bce419a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7bce419a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-s-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-s-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-s-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-s-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7bce419a]{display:none!important}.s-visible[data-v-7bce419a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-m-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-m-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-m-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-m-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7bce419a]{display:none!important}.m-visible[data-v-7bce419a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-l-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-l-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-l-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-l-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7bce419a]{display:none!important}.l-visible[data-v-7bce419a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-xl-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-xl-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-xl-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xl-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7bce419a]{display:none!important}.xl-visible[data-v-7bce419a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7bce419a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7bce419a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7bce419a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7bce419a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7bce419a]{margin-left:26%}.col-no-margin-xxl-3[data-v-7bce419a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7bce419a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7bce419a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7bce419a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7bce419a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7bce419a]{margin-left:52%}.col-no-margin-xxl-6[data-v-7bce419a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7bce419a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7bce419a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7bce419a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7bce419a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7bce419a]{margin-left:78%}.col-no-margin-xxl-9[data-v-7bce419a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7bce419a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7bce419a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7bce419a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7bce419a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7bce419a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7bce419a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7bce419a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7bce419a]{display:none!important}.xxl-visible[data-v-7bce419a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7bce419a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7bce419a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7bce419a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7bce419a]{display:none!important}}.vertical-center[data-v-7bce419a]{display:flex;align-items:center}.horizontal-center[data-v-7bce419a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7bce419a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7bce419a]{display:none!important}.no-content[data-v-7bce419a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7bce419a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7bce419a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7bce419a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7bce419a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7bce419a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7bce419a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7bce419a],.btn[data-v-7bce419a],button[data-v-7bce419a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7bce419a],.btn-default[type=submit][data-v-7bce419a],.btn.btn-primary[data-v-7bce419a],.btn[type=submit][data-v-7bce419a],button.btn-primary[data-v-7bce419a],button[type=submit][data-v-7bce419a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7bce419a],.btn-default .icon[data-v-7bce419a],button .icon[data-v-7bce419a]{margin-right:.5em}input[type=password][data-v-7bce419a],input[type=text][data-v-7bce419a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7bce419a]:focus,input[type=text][data-v-7bce419a]:focus{border:1px solid #35b870}button[data-v-7bce419a],input[data-v-7bce419a]{outline:none}input[type=text][data-v-7bce419a]:hover,textarea[data-v-7bce419a]:hover{border:1px solid #9cdfb0}ul[data-v-7bce419a]{margin:0;padding:0;list-style:none}a[data-v-7bce419a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7bce419a]:hover{color:#35b870}[data-v-7bce419a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7bce419a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7bce419a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7bce419a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7bce419a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7bce419a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7bce419a] .nav .path{cursor:pointer}.browser[data-v-7bce419a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7bce419a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7bce419a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7bce419a],input[type=number][data-v-7bce419a],input[type=password][data-v-7bce419a],input[type=search][data-v-7bce419a],input[type=text][data-v-7bce419a],input[type=time][data-v-7bce419a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7bce419a]:hover,input[type=number][data-v-7bce419a]:hover,input[type=password][data-v-7bce419a]:hover,input[type=search][data-v-7bce419a]:hover,input[type=text][data-v-7bce419a]:hover,input[type=time][data-v-7bce419a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7bce419a]:focus,input[type=number][data-v-7bce419a]:focus,input[type=password][data-v-7bce419a]:focus,input[type=search][data-v-7bce419a]:focus,input[type=text][data-v-7bce419a]:focus,input[type=time][data-v-7bce419a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7bce419a],input[type=number].with-icon[data-v-7bce419a],input[type=password].with-icon[data-v-7bce419a],input[type=search].with-icon[data-v-7bce419a],input[type=text].with-icon[data-v-7bce419a],input[type=time].with-icon[data-v-7bce419a]{padding-left:.3em}input[type=search][data-v-7bce419a],input[type=text][data-v-7bce419a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7bce419a]{animation-fill-mode:both;animation-name:fadeIn-7bce419a;-webkit-animation-name:fadeIn-7bce419a}.fade-in[data-v-7bce419a],.fade-out[data-v-7bce419a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7bce419a]{animation-fill-mode:both;animation-name:fadeOut-7bce419a;-webkit-animation-name:fadeOut-7bce419a}@keyframes fadeIn-7bce419a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7bce419a{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7bce419a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7bce419a;-webkit-animation-name:glow-7bce419a}.loop[data-v-7bce419a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7bce419a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7bce419a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7bce419a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7bce419a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.host[data-v-7bce419a]{width:95%;max-width:1000px;margin:1em auto;border:1px solid #ddd;border-radius:.5em;box-shadow:2.5px 2.5px 3px 0 silver;background:#f8f8f8}.host .header[data-v-7bce419a]{padding:.5em;background:#edf0ee;border-bottom:1px solid #ddd;border-radius:.5em .5em 0 0;display:flex;align-items:center}.host .header .name[data-v-7bce419a]{text-transform:uppercase}.host .header .name[data-v-7bce419a]:hover{color:#35b870;cursor:pointer}.host .header .buttons[data-v-7bce419a]{margin-bottom:0}.host .header button[data-v-7bce419a]{padding:0;border:0;background:none}.host .header button[data-v-7bce419a]:hover{color:#35b870}.col-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-353ffa58]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-353ffa58]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-353ffa58]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-353ffa58]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-353ffa58]:first-child{margin-left:26%!important}.col-offset-3[data-v-353ffa58]:not(first-child){margin-left:30%!important}.col-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-353ffa58]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-353ffa58]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-353ffa58]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-353ffa58]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-353ffa58]:first-child{margin-left:52%!important}.col-offset-6[data-v-353ffa58]:not(first-child){margin-left:56%!important}.col-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-353ffa58]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-353ffa58]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-353ffa58]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-353ffa58]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-353ffa58]:first-child{margin-left:78%!important}.col-offset-9[data-v-353ffa58]:not(first-child){margin-left:82%!important}.col-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-353ffa58]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-353ffa58]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-353ffa58]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-353ffa58]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-s-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-s-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-s-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-s-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-s-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-353ffa58]{display:none!important}.s-visible[data-v-353ffa58]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-m-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-m-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-m-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-m-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-m-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-353ffa58]{display:none!important}.m-visible[data-v-353ffa58]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-l-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-l-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-l-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-l-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-l-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-353ffa58]{display:none!important}.l-visible[data-v-353ffa58]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-xl-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-xl-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-xl-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xl-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-353ffa58]{display:none!important}.xl-visible[data-v-353ffa58]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-1[data-v-353ffa58]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-353ffa58]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-2[data-v-353ffa58]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-353ffa58]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-3[data-v-353ffa58]{margin-left:26%}.col-no-margin-xxl-3[data-v-353ffa58]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-4[data-v-353ffa58]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-353ffa58]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-5[data-v-353ffa58]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-353ffa58]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-6[data-v-353ffa58]{margin-left:52%}.col-no-margin-xxl-6[data-v-353ffa58]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-7[data-v-353ffa58]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-353ffa58]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-8[data-v-353ffa58]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-353ffa58]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-9[data-v-353ffa58]{margin-left:78%}.col-no-margin-xxl-9[data-v-353ffa58]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-10[data-v-353ffa58]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-353ffa58]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-353ffa58]:first-child{margin-left:0}.col-offset-xxl-11[data-v-353ffa58]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-353ffa58]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-353ffa58]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-353ffa58]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-353ffa58]{display:none!important}.xxl-visible[data-v-353ffa58]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-353ffa58]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-353ffa58]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-353ffa58]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-353ffa58]{display:none!important}}.vertical-center[data-v-353ffa58]{display:flex;align-items:center}.horizontal-center[data-v-353ffa58]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-353ffa58]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-353ffa58]{display:none!important}.no-content[data-v-353ffa58]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-353ffa58]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-353ffa58]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-353ffa58]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-353ffa58]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-353ffa58]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-353ffa58]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-353ffa58],.btn[data-v-353ffa58],button[data-v-353ffa58]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-353ffa58],.btn-default[type=submit][data-v-353ffa58],.btn.btn-primary[data-v-353ffa58],.btn[type=submit][data-v-353ffa58],button.btn-primary[data-v-353ffa58],button[type=submit][data-v-353ffa58]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-353ffa58],.btn-default .icon[data-v-353ffa58],button .icon[data-v-353ffa58]{margin-right:.5em}input[type=password][data-v-353ffa58],input[type=text][data-v-353ffa58]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-353ffa58]:focus,input[type=text][data-v-353ffa58]:focus{border:1px solid #35b870}button[data-v-353ffa58],input[data-v-353ffa58]{outline:none}input[type=text][data-v-353ffa58]:hover,textarea[data-v-353ffa58]:hover{border:1px solid #9cdfb0}ul[data-v-353ffa58]{margin:0;padding:0;list-style:none}a[data-v-353ffa58]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-353ffa58]:hover{color:#35b870}[data-v-353ffa58]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-353ffa58]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-353ffa58]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-353ffa58]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-353ffa58]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-353ffa58] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-353ffa58] .nav .path{cursor:pointer}.browser[data-v-353ffa58] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-353ffa58] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-353ffa58]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-353ffa58],input[type=number][data-v-353ffa58],input[type=password][data-v-353ffa58],input[type=search][data-v-353ffa58],input[type=text][data-v-353ffa58],input[type=time][data-v-353ffa58]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-353ffa58]:hover,input[type=number][data-v-353ffa58]:hover,input[type=password][data-v-353ffa58]:hover,input[type=search][data-v-353ffa58]:hover,input[type=text][data-v-353ffa58]:hover,input[type=time][data-v-353ffa58]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-353ffa58]:focus,input[type=number][data-v-353ffa58]:focus,input[type=password][data-v-353ffa58]:focus,input[type=search][data-v-353ffa58]:focus,input[type=text][data-v-353ffa58]:focus,input[type=time][data-v-353ffa58]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-353ffa58],input[type=number].with-icon[data-v-353ffa58],input[type=password].with-icon[data-v-353ffa58],input[type=search].with-icon[data-v-353ffa58],input[type=text].with-icon[data-v-353ffa58],input[type=time].with-icon[data-v-353ffa58]{padding-left:.3em}input[type=search][data-v-353ffa58],input[type=text][data-v-353ffa58]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-353ffa58]{animation-fill-mode:both;animation-name:fadeIn-353ffa58;-webkit-animation-name:fadeIn-353ffa58}.fade-in[data-v-353ffa58],.fade-out[data-v-353ffa58]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-353ffa58]{animation-fill-mode:both;animation-name:fadeOut-353ffa58;-webkit-animation-name:fadeOut-353ffa58}@keyframes fadeIn-353ffa58{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-353ffa58{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-353ffa58]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-353ffa58;-webkit-animation-name:glow-353ffa58}.loop[data-v-353ffa58]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-353ffa58{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-353ffa58]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-353ffa58]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-353ffa58]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.info .row[data-v-353ffa58]{display:flex;align-items:center}.info .section[data-v-353ffa58]{padding:1.5em}.info .section .row[data-v-353ffa58]{align-items:normal}.info label.client[data-v-353ffa58]{width:100%}.info .title[data-v-353ffa58]{font-size:1em;padding-left:.5em;padding-bottom:.5em;margin-bottom:.5em;border-bottom:1px solid #e1e4e8}.info .client[data-v-353ffa58]{display:flex;align-items:center}.info .client input[data-v-353ffa58]{margin-right:.5em}.info .name-value[data-v-353ffa58]{display:flex;align-items:center}.info .name-value button[data-v-353ffa58]{background:none;border:none;margin:0 1em;padding:0}.info .name-value button[data-v-353ffa58]:hover{color:#38cf80}.col-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0e55ac54]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0e55ac54]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0e55ac54]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0e55ac54]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0e55ac54]:first-child{margin-left:26%!important}.col-offset-3[data-v-0e55ac54]:not(first-child){margin-left:30%!important}.col-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0e55ac54]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0e55ac54]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0e55ac54]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0e55ac54]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0e55ac54]:first-child{margin-left:52%!important}.col-offset-6[data-v-0e55ac54]:not(first-child){margin-left:56%!important}.col-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0e55ac54]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0e55ac54]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0e55ac54]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0e55ac54]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0e55ac54]:first-child{margin-left:78%!important}.col-offset-9[data-v-0e55ac54]:not(first-child){margin-left:82%!important}.col-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0e55ac54]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0e55ac54]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0e55ac54]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0e55ac54]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-s-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-s-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-s-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-s-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0e55ac54]{display:none!important}.s-visible[data-v-0e55ac54]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-m-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-m-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-m-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-m-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0e55ac54]{display:none!important}.m-visible[data-v-0e55ac54]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-l-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-l-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-l-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-l-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0e55ac54]{display:none!important}.l-visible[data-v-0e55ac54]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-xl-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-xl-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-xl-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xl-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0e55ac54]{display:none!important}.xl-visible[data-v-0e55ac54]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0e55ac54]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0e55ac54]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0e55ac54]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0e55ac54]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0e55ac54]{margin-left:26%}.col-no-margin-xxl-3[data-v-0e55ac54]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0e55ac54]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0e55ac54]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0e55ac54]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0e55ac54]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0e55ac54]{margin-left:52%}.col-no-margin-xxl-6[data-v-0e55ac54]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0e55ac54]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0e55ac54]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0e55ac54]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0e55ac54]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0e55ac54]{margin-left:78%}.col-no-margin-xxl-9[data-v-0e55ac54]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0e55ac54]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0e55ac54]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0e55ac54]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0e55ac54]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0e55ac54]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0e55ac54]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0e55ac54]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0e55ac54]{display:none!important}.xxl-visible[data-v-0e55ac54]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0e55ac54]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0e55ac54]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0e55ac54]{display:none!important}}.vertical-center[data-v-0e55ac54]{display:flex;align-items:center}.horizontal-center[data-v-0e55ac54]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0e55ac54]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0e55ac54]{display:none!important}.no-content[data-v-0e55ac54]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0e55ac54]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0e55ac54]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0e55ac54]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0e55ac54]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0e55ac54]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0e55ac54]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0e55ac54],.btn[data-v-0e55ac54],button[data-v-0e55ac54]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0e55ac54],.btn-default[type=submit][data-v-0e55ac54],.btn.btn-primary[data-v-0e55ac54],.btn[type=submit][data-v-0e55ac54],button.btn-primary[data-v-0e55ac54],button[type=submit][data-v-0e55ac54]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0e55ac54],.btn-default .icon[data-v-0e55ac54],button .icon[data-v-0e55ac54]{margin-right:.5em}input[type=password][data-v-0e55ac54],input[type=text][data-v-0e55ac54]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0e55ac54]:focus,input[type=text][data-v-0e55ac54]:focus{border:1px solid #35b870}button[data-v-0e55ac54],input[data-v-0e55ac54]{outline:none}input[type=text][data-v-0e55ac54]:hover,textarea[data-v-0e55ac54]:hover{border:1px solid #9cdfb0}ul[data-v-0e55ac54]{margin:0;padding:0;list-style:none}a[data-v-0e55ac54]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0e55ac54]:hover{color:#35b870}[data-v-0e55ac54]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0e55ac54]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0e55ac54]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0e55ac54]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0e55ac54]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0e55ac54] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0e55ac54] .nav .path{cursor:pointer}.browser[data-v-0e55ac54] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0e55ac54] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0e55ac54]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0e55ac54],input[type=number][data-v-0e55ac54],input[type=password][data-v-0e55ac54],input[type=search][data-v-0e55ac54],input[type=text][data-v-0e55ac54],input[type=time][data-v-0e55ac54]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0e55ac54]:hover,input[type=number][data-v-0e55ac54]:hover,input[type=password][data-v-0e55ac54]:hover,input[type=search][data-v-0e55ac54]:hover,input[type=text][data-v-0e55ac54]:hover,input[type=time][data-v-0e55ac54]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0e55ac54]:focus,input[type=number][data-v-0e55ac54]:focus,input[type=password][data-v-0e55ac54]:focus,input[type=search][data-v-0e55ac54]:focus,input[type=text][data-v-0e55ac54]:focus,input[type=time][data-v-0e55ac54]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0e55ac54],input[type=number].with-icon[data-v-0e55ac54],input[type=password].with-icon[data-v-0e55ac54],input[type=search].with-icon[data-v-0e55ac54],input[type=text].with-icon[data-v-0e55ac54],input[type=time].with-icon[data-v-0e55ac54]{padding-left:.3em}input[type=search][data-v-0e55ac54],input[type=text][data-v-0e55ac54]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0e55ac54]{animation-fill-mode:both;animation-name:fadeIn-0e55ac54;-webkit-animation-name:fadeIn-0e55ac54}.fade-in[data-v-0e55ac54],.fade-out[data-v-0e55ac54]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0e55ac54]{animation-fill-mode:both;animation-name:fadeOut-0e55ac54;-webkit-animation-name:fadeOut-0e55ac54}@keyframes fadeIn-0e55ac54{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0e55ac54{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0e55ac54]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0e55ac54;-webkit-animation-name:glow-0e55ac54}.loop[data-v-0e55ac54]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0e55ac54{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0e55ac54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0e55ac54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0e55ac54]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.client-modal[data-v-0e55ac54]{max-height:75vh;display:flex;flex-direction:column}.client-modal .info[data-v-0e55ac54]{height:80%;overflow:auto}.client-modal button[data-v-0e55ac54]{background:none;border:none;padding:0;margin:0 .5em}.client-modal button[data-v-0e55ac54]:hover{color:#38cf80}.client-modal .buttons[data-v-0e55ac54]{height:20%;margin:0!important;padding:0!important}.client-modal .buttons .row[data-v-0e55ac54]{width:100%;height:100%;display:flex;justify-content:center;padding:0}.client-modal .buttons .row[data-v-0e55ac54]:hover{background:none}.client-modal .buttons .row button[data-v-0e55ac54]{width:100%;height:100%;padding:1em;color:#900;border-color:#900}.client-modal .buttons .row button .name[data-v-0e55ac54]{margin-left:.5em}.client-modal .buttons .row button[data-v-0e55ac54]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-27dfcbf6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-27dfcbf6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-27dfcbf6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-27dfcbf6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-27dfcbf6]:first-child{margin-left:26%!important}.col-offset-3[data-v-27dfcbf6]:not(first-child){margin-left:30%!important}.col-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-27dfcbf6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-27dfcbf6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-27dfcbf6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-27dfcbf6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-27dfcbf6]:first-child{margin-left:52%!important}.col-offset-6[data-v-27dfcbf6]:not(first-child){margin-left:56%!important}.col-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-27dfcbf6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-27dfcbf6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-27dfcbf6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-27dfcbf6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-27dfcbf6]:first-child{margin-left:78%!important}.col-offset-9[data-v-27dfcbf6]:not(first-child){margin-left:82%!important}.col-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-27dfcbf6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-27dfcbf6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-27dfcbf6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-27dfcbf6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-s-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-s-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-s-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-s-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-27dfcbf6]{display:none!important}.s-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-m-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-m-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-m-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-m-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-27dfcbf6]{display:none!important}.m-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-l-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-l-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-l-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-l-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-27dfcbf6]{display:none!important}.l-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-xl-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-xl-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-xl-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xl-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-27dfcbf6]{display:none!important}.xl-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-27dfcbf6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-27dfcbf6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-27dfcbf6]{margin-left:26%}.col-no-margin-xxl-3[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-27dfcbf6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-27dfcbf6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-27dfcbf6]{margin-left:52%}.col-no-margin-xxl-6[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-27dfcbf6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-27dfcbf6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-27dfcbf6]{margin-left:78%}.col-no-margin-xxl-9[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-27dfcbf6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-27dfcbf6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-27dfcbf6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-27dfcbf6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-27dfcbf6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-27dfcbf6]{display:none!important}.xxl-visible[data-v-27dfcbf6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-27dfcbf6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-27dfcbf6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-27dfcbf6]{display:none!important}}.vertical-center[data-v-27dfcbf6]{display:flex;align-items:center}.horizontal-center[data-v-27dfcbf6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-27dfcbf6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-27dfcbf6]{display:none!important}.no-content[data-v-27dfcbf6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-27dfcbf6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-27dfcbf6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-27dfcbf6],.btn[data-v-27dfcbf6],button[data-v-27dfcbf6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-27dfcbf6],.btn-default[type=submit][data-v-27dfcbf6],.btn.btn-primary[data-v-27dfcbf6],.btn[type=submit][data-v-27dfcbf6],button.btn-primary[data-v-27dfcbf6],button[type=submit][data-v-27dfcbf6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-27dfcbf6],.btn-default .icon[data-v-27dfcbf6],button .icon[data-v-27dfcbf6]{margin-right:.5em}input[type=password][data-v-27dfcbf6],input[type=text][data-v-27dfcbf6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-27dfcbf6]:focus,input[type=text][data-v-27dfcbf6]:focus{border:1px solid #35b870}button[data-v-27dfcbf6],input[data-v-27dfcbf6]{outline:none}input[type=text][data-v-27dfcbf6]:hover,textarea[data-v-27dfcbf6]:hover{border:1px solid #9cdfb0}ul[data-v-27dfcbf6]{margin:0;padding:0;list-style:none}a[data-v-27dfcbf6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-27dfcbf6]:hover{color:#35b870}[data-v-27dfcbf6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-27dfcbf6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-27dfcbf6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-27dfcbf6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-27dfcbf6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-27dfcbf6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-27dfcbf6] .nav .path{cursor:pointer}.browser[data-v-27dfcbf6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-27dfcbf6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-27dfcbf6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-27dfcbf6],input[type=number][data-v-27dfcbf6],input[type=password][data-v-27dfcbf6],input[type=search][data-v-27dfcbf6],input[type=text][data-v-27dfcbf6],input[type=time][data-v-27dfcbf6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-27dfcbf6]:hover,input[type=number][data-v-27dfcbf6]:hover,input[type=password][data-v-27dfcbf6]:hover,input[type=search][data-v-27dfcbf6]:hover,input[type=text][data-v-27dfcbf6]:hover,input[type=time][data-v-27dfcbf6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-27dfcbf6]:focus,input[type=number][data-v-27dfcbf6]:focus,input[type=password][data-v-27dfcbf6]:focus,input[type=search][data-v-27dfcbf6]:focus,input[type=text][data-v-27dfcbf6]:focus,input[type=time][data-v-27dfcbf6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-27dfcbf6],input[type=number].with-icon[data-v-27dfcbf6],input[type=password].with-icon[data-v-27dfcbf6],input[type=search].with-icon[data-v-27dfcbf6],input[type=text].with-icon[data-v-27dfcbf6],input[type=time].with-icon[data-v-27dfcbf6]{padding-left:.3em}input[type=search][data-v-27dfcbf6],input[type=text][data-v-27dfcbf6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:fadeIn-27dfcbf6;-webkit-animation-name:fadeIn-27dfcbf6}.fade-in[data-v-27dfcbf6],.fade-out[data-v-27dfcbf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-27dfcbf6]{animation-fill-mode:both;animation-name:fadeOut-27dfcbf6;-webkit-animation-name:fadeOut-27dfcbf6}@keyframes fadeIn-27dfcbf6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-27dfcbf6{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-27dfcbf6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-27dfcbf6;-webkit-animation-name:glow-27dfcbf6}.loop[data-v-27dfcbf6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-27dfcbf6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-27dfcbf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-27dfcbf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-27dfcbf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.music-snapcast-container[data-v-27dfcbf6]{width:100%;overflow:auto;background:#fff}[data-v-27dfcbf6] .info .modal .content{width:90%;max-width:800px}[data-v-27dfcbf6] .info .modal .body{padding:0}[data-v-27dfcbf6] .info .row{display:flex;align-items:center;border-radius:.75em;padding:1em}@media screen and (max-width:calc(769px - 1px)){[data-v-27dfcbf6] .info .row{flex-direction:column;border-bottom:1px solid #e1e4e8}}@media screen and (min-width:1024px){[data-v-27dfcbf6] .info .row{padding:1em 2em}}[data-v-27dfcbf6] .info .row .label{margin-bottom:0}[data-v-27dfcbf6] .info .row .value{display:flex}@media screen and (min-width:769px){[data-v-27dfcbf6] .info .row .value{justify-content:right}}@media screen and (max-width:calc(769px - 1px)){[data-v-27dfcbf6] .info .row .value{width:100%;margin-left:0}[data-v-27dfcbf6] .info .row .label{width:100%;display:flex}}[data-v-27dfcbf6] .info .row:nth-child(odd){background:#fff}[data-v-27dfcbf6] .info .row:nth-child(2n){background:#f4f5f6}[data-v-27dfcbf6] .info .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-27dfcbf6] .info .buttons{background:initial;margin-top:1.5em;padding-top:1.5em;border-top:1px solid #ddd;display:flex;justify-content:center}@media screen and (max-width:calc(769px - 1)){.music-snapcast-container .modal[data-v-27dfcbf6]{width:95vw}}@media screen and (min-width:769px){.music-snapcast-container .modal[data-v-27dfcbf6]{width:70vw}}@media screen and (min-width:1024px){.music-snapcast-container .modal[data-v-27dfcbf6]{width:45vw}}@media screen and (max-width:calc(769px - 1px)){[data-v-27dfcbf6] .modal-container .modal .content{width:95vw}}@media screen and (min-width:769px){[data-v-27dfcbf6] .modal-container .modal .content{min-width:600px}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5329.3bb336f9.css b/platypush/backend/http/webapp/dist/static/css/5329.8fe5b425.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/5329.3bb336f9.css rename to platypush/backend/http/webapp/dist/static/css/5329.8fe5b425.css index f1873aa90c..da7002a841 100644 --- a/platypush/backend/http/webapp/dist/static/css/5329.3bb336f9.css +++ b/platypush/backend/http/webapp/dist/static/css/5329.8fe5b425.css @@ -1 +1 @@ -.col-1[data-v-d7813182],.entity .head .icon[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d7813182]:first-child,.entity .head .icon[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d7813182]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d7813182]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d7813182]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d7813182]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d7813182],.entity .head .value-and-toggler[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d7813182]:first-child,.entity .head .value-and-toggler[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d7813182]:first-child{margin-left:26%!important}.col-offset-3[data-v-d7813182]:not(first-child){margin-left:30%!important}.col-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d7813182]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d7813182]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d7813182]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d7813182]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d7813182]:first-child{margin-left:52%!important}.col-offset-6[data-v-d7813182]:not(first-child){margin-left:56%!important}.col-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d7813182]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d7813182]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d7813182]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d7813182]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d7813182]:first-child{margin-left:78%!important}.col-offset-9[data-v-d7813182]:not(first-child){margin-left:82%!important}.col-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d7813182]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d7813182]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d7813182]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d7813182]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d7813182],.entity .head .value-container[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d7813182]:first-child,.entity .head .value-container[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-3[data-v-d7813182]{margin-left:26%}.col-no-margin-s-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-6[data-v-d7813182]{margin-left:52%}.col-no-margin-s-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d7813182],.entity .head .label[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d7813182]:first-child,.entity .head .label[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-9[data-v-d7813182]{margin-left:78%}.col-no-margin-s-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-d7813182],.attributes .child .value[data-v-d7813182],.col-s-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-d7813182]:first-child,.attributes .child .value[data-v-d7813182]:first-child,.col-s-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d7813182]{display:none!important}.s-visible[data-v-d7813182]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d7813182],.entity .head .value-container[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d7813182]:first-child,.entity .head .value-container[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-3[data-v-d7813182]{margin-left:26%}.col-no-margin-m-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-d7813182],.attributes .child .value[data-v-d7813182],.col-m-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-d7813182]:first-child,.attributes .child .value[data-v-d7813182]:first-child,.col-m-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-6[data-v-d7813182]{margin-left:52%}.col-no-margin-m-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d7813182],.entity .head .label[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d7813182]:first-child,.entity .head .label[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-9[data-v-d7813182]{margin-left:78%}.col-no-margin-m-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d7813182]{display:none!important}.m-visible[data-v-d7813182]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-3[data-v-d7813182]{margin-left:26%}.col-no-margin-l-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-6[data-v-d7813182]{margin-left:52%}.col-no-margin-l-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-9[data-v-d7813182]{margin-left:78%}.col-no-margin-l-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d7813182]{display:none!important}.l-visible[data-v-d7813182]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-3[data-v-d7813182]{margin-left:26%}.col-no-margin-xl-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-6[data-v-d7813182]{margin-left:52%}.col-no-margin-xl-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-9[data-v-d7813182]{margin-left:78%}.col-no-margin-xl-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d7813182]{display:none!important}.xl-visible[data-v-d7813182]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d7813182]{margin-left:26%}.col-no-margin-xxl-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d7813182]{margin-left:52%}.col-no-margin-xxl-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d7813182]{margin-left:78%}.col-no-margin-xxl-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d7813182]{display:none!important}.xxl-visible[data-v-d7813182]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d7813182]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d7813182]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d7813182]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d7813182]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d7813182]{display:none!important}}.vertical-center[data-v-d7813182]{display:flex;align-items:center}.horizontal-center[data-v-d7813182]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-d7813182],.pull-right[data-v-d7813182]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d7813182]{display:none!important}.no-content[data-v-d7813182]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d7813182]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d7813182]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d7813182]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d7813182]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d7813182]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d7813182]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d7813182],.btn[data-v-d7813182],button[data-v-d7813182]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d7813182],.btn-default[type=submit][data-v-d7813182],.btn.btn-primary[data-v-d7813182],.btn[type=submit][data-v-d7813182],button.btn-primary[data-v-d7813182],button[type=submit][data-v-d7813182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-d7813182],.btn-default .icon[data-v-d7813182],button .icon[data-v-d7813182]{margin-right:.5em}input[type=password][data-v-d7813182],input[type=text][data-v-d7813182]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d7813182]:focus,input[type=text][data-v-d7813182]:focus{border:1px solid #35b870}button[data-v-d7813182],input[data-v-d7813182]{outline:none}input[type=text][data-v-d7813182]:hover,textarea[data-v-d7813182]:hover{border:1px solid #9cdfb0}ul[data-v-d7813182]{margin:0;padding:0;list-style:none}a[data-v-d7813182]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d7813182]:hover{color:#35b870}[data-v-d7813182]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d7813182]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d7813182]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d7813182]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-d7813182]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d7813182] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d7813182] .nav .path{cursor:pointer}.browser[data-v-d7813182] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d7813182] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-d7813182]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d7813182],input[type=number][data-v-d7813182],input[type=password][data-v-d7813182],input[type=search][data-v-d7813182],input[type=text][data-v-d7813182],input[type=time][data-v-d7813182]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-d7813182]:hover,input[type=number][data-v-d7813182]:hover,input[type=password][data-v-d7813182]:hover,input[type=search][data-v-d7813182]:hover,input[type=text][data-v-d7813182]:hover,input[type=time][data-v-d7813182]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d7813182]:focus,input[type=number][data-v-d7813182]:focus,input[type=password][data-v-d7813182]:focus,input[type=search][data-v-d7813182]:focus,input[type=text][data-v-d7813182]:focus,input[type=time][data-v-d7813182]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d7813182],input[type=number].with-icon[data-v-d7813182],input[type=password].with-icon[data-v-d7813182],input[type=search].with-icon[data-v-d7813182],input[type=text].with-icon[data-v-d7813182],input[type=time].with-icon[data-v-d7813182]{padding-left:.3em}input[type=search][data-v-d7813182],input[type=text][data-v-d7813182]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-d7813182],.fade-in[data-v-d7813182]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-d7813182;-webkit-animation-name:fadeIn-d7813182}.fade-out[data-v-d7813182]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-d7813182;-webkit-animation-name:fadeOut-d7813182}@keyframes fadeIn-d7813182{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d7813182{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-d7813182]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d7813182;-webkit-animation-name:glow-d7813182}.loop[data-v-d7813182]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d7813182{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d7813182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d7813182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d7813182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-d7813182]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-d7813182]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-d7813182]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-d7813182]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-d7813182]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-d7813182]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-d7813182]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-d7813182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-d7813182]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-d7813182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-d7813182]{margin-right:.5em}.entity .head .icon[data-v-d7813182]:hover{color:#35b870}.entity .head .label[data-v-d7813182]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-d7813182]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-d7813182]:hover{color:#35b870}.entity .head .value[data-v-d7813182]{font-size:1.1em;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-d7813182]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-d7813182]{margin-right:2.5em}.entity .head .value-container[data-v-d7813182]{min-width:7em}.entity .head .unit[data-v-d7813182]{margin-left:.2em}.entity .head .pull-right[data-v-d7813182],.entity .head .value-container[data-v-d7813182]{padding-right:.5em}.entity .head .pull-right[data-v-d7813182] .power-switch,.entity .head .value-container[data-v-d7813182] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-d7813182]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-d7813182]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-d7813182]:hover{color:#35b870}.collapse-toggler[data-v-d7813182]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-d7813182]:hover{color:#35b870}.attributes .child[data-v-d7813182]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-d7813182]{flex-direction:column}}.attributes .child[data-v-d7813182]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-d7813182]:hover{cursor:auto}.attributes .child.head[data-v-d7813182]{cursor:pointer}.attributes .child.head[data-v-d7813182]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-d7813182]{font-weight:700}.attributes .child .value[data-v-d7813182]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-d7813182]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-d7813182]:last-child,.entity-container-wrapper.with-children[data-v-d7813182]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-d7813182]{animation:blink-animation-d7813182 1s steps(20,start)}@keyframes blink-animation-d7813182{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.entity .head .value[data-v-d7813182]{text-align:right;font-weight:700} \ No newline at end of file +.col-1[data-v-d7813182],.entity .head .icon[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d7813182]:first-child,.entity .head .icon[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d7813182]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d7813182]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d7813182]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d7813182]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d7813182],.entity .head .value-and-toggler[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d7813182]:first-child,.entity .head .value-and-toggler[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d7813182]:first-child{margin-left:26%!important}.col-offset-3[data-v-d7813182]:not(first-child){margin-left:30%!important}.col-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d7813182]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d7813182]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d7813182]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d7813182]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d7813182]:first-child{margin-left:52%!important}.col-offset-6[data-v-d7813182]:not(first-child){margin-left:56%!important}.col-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d7813182]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d7813182]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d7813182]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d7813182]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d7813182]:first-child{margin-left:78%!important}.col-offset-9[data-v-d7813182]:not(first-child){margin-left:82%!important}.col-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d7813182]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d7813182]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d7813182]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d7813182]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d7813182],.entity .head .value-container[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d7813182]:first-child,.entity .head .value-container[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-3[data-v-d7813182]{margin-left:26%}.col-no-margin-s-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-6[data-v-d7813182]{margin-left:52%}.col-no-margin-s-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d7813182],.entity .head .label[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d7813182]:first-child,.entity .head .label[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-9[data-v-d7813182]{margin-left:78%}.col-no-margin-s-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-s-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-d7813182],.attributes .child .value[data-v-d7813182],.col-s-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-d7813182]:first-child,.attributes .child .value[data-v-d7813182]:first-child,.col-s-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d7813182]{display:none!important}.s-visible[data-v-d7813182]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d7813182],.entity .head .value-container[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d7813182]:first-child,.entity .head .value-container[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-3[data-v-d7813182]{margin-left:26%}.col-no-margin-m-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-d7813182],.attributes .child .value[data-v-d7813182],.col-m-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-d7813182]:first-child,.attributes .child .value[data-v-d7813182]:first-child,.col-m-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-6[data-v-d7813182]{margin-left:52%}.col-no-margin-m-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d7813182],.entity .head .label[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d7813182]:first-child,.entity .head .label[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-9[data-v-d7813182]{margin-left:78%}.col-no-margin-m-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-m-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d7813182]{display:none!important}.m-visible[data-v-d7813182]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-3[data-v-d7813182]{margin-left:26%}.col-no-margin-l-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-6[data-v-d7813182]{margin-left:52%}.col-no-margin-l-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-9[data-v-d7813182]{margin-left:78%}.col-no-margin-l-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-l-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d7813182]{display:none!important}.l-visible[data-v-d7813182]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-3[data-v-d7813182]{margin-left:26%}.col-no-margin-xl-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-6[data-v-d7813182]{margin-left:52%}.col-no-margin-xl-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-9[data-v-d7813182]{margin-left:78%}.col-no-margin-xl-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-xl-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d7813182]{display:none!important}.xl-visible[data-v-d7813182]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d7813182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d7813182]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d7813182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d7813182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d7813182]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d7813182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d7813182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d7813182]{margin-left:26%}.col-no-margin-xxl-3[data-v-d7813182]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d7813182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d7813182]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d7813182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d7813182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d7813182]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d7813182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d7813182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d7813182]{margin-left:52%}.col-no-margin-xxl-6[data-v-d7813182]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d7813182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d7813182]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d7813182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d7813182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d7813182]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d7813182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d7813182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d7813182]{margin-left:78%}.col-no-margin-xxl-9[data-v-d7813182]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d7813182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d7813182]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d7813182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d7813182]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d7813182]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d7813182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d7813182]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d7813182]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d7813182]{display:none!important}.xxl-visible[data-v-d7813182]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d7813182]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d7813182]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d7813182]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d7813182]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d7813182]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d7813182]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d7813182]{display:none!important}}.vertical-center[data-v-d7813182]{display:flex;align-items:center}.horizontal-center[data-v-d7813182]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-d7813182],.pull-right[data-v-d7813182]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d7813182]{display:none!important}.no-content[data-v-d7813182]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d7813182]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d7813182]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d7813182]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d7813182]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d7813182]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d7813182]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d7813182],.btn[data-v-d7813182],button[data-v-d7813182]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d7813182],.btn-default[type=submit][data-v-d7813182],.btn.btn-primary[data-v-d7813182],.btn[type=submit][data-v-d7813182],button.btn-primary[data-v-d7813182],button[type=submit][data-v-d7813182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-d7813182]:hover,.btn[data-v-d7813182]:hover,button[data-v-d7813182]:hover{color:#35b870}.btn .icon[data-v-d7813182],.btn-default .icon[data-v-d7813182],button .icon[data-v-d7813182]{margin-right:.5em}.btn-default[data-v-d7813182]:disabled,.btn-default[disabled][data-v-d7813182],.btn[data-v-d7813182]:disabled,.btn[disabled][data-v-d7813182],button[data-v-d7813182]:disabled,button[disabled][data-v-d7813182]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-d7813182]{cursor:grab!important}.dragged[data-v-d7813182]{opacity:.5!important}input[type=password][data-v-d7813182],input[type=text][data-v-d7813182]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d7813182]:focus,input[type=text][data-v-d7813182]:focus{border:1px solid #35b870}button[data-v-d7813182],input[data-v-d7813182]{outline:none}input[type=text][data-v-d7813182]:hover,textarea[data-v-d7813182]:hover{border:1px solid #9cdfb0}ul[data-v-d7813182]{margin:0;padding:0;list-style:none}a[data-v-d7813182]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d7813182]:hover{color:#35b870}[data-v-d7813182]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d7813182]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d7813182]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d7813182]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-d7813182]{color:#ad1717}body[data-v-d7813182]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d7813182] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d7813182] .nav .path{cursor:pointer}.browser[data-v-d7813182] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d7813182] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-d7813182]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-d7813182]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d7813182],input[type=number][data-v-d7813182],input[type=password][data-v-d7813182],input[type=search][data-v-d7813182],input[type=text][data-v-d7813182],input[type=time][data-v-d7813182]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-d7813182]:hover,input[type=number][data-v-d7813182]:hover,input[type=password][data-v-d7813182]:hover,input[type=search][data-v-d7813182]:hover,input[type=text][data-v-d7813182]:hover,input[type=time][data-v-d7813182]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d7813182]:focus,input[type=number][data-v-d7813182]:focus,input[type=password][data-v-d7813182]:focus,input[type=search][data-v-d7813182]:focus,input[type=text][data-v-d7813182]:focus,input[type=time][data-v-d7813182]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d7813182],input[type=number].with-icon[data-v-d7813182],input[type=password].with-icon[data-v-d7813182],input[type=search].with-icon[data-v-d7813182],input[type=text].with-icon[data-v-d7813182],input[type=time].with-icon[data-v-d7813182]{padding-left:.3em}input[type=search][data-v-d7813182],input[type=text][data-v-d7813182]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-d7813182],.fade-in[data-v-d7813182]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-d7813182;-webkit-animation-name:fadeIn-d7813182}.fade-out[data-v-d7813182]{animation-fill-mode:both;animation-name:fadeOut-d7813182;-webkit-animation-name:fadeOut-d7813182}.expand[data-v-d7813182],.fade-out[data-v-d7813182]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-d7813182]{animation-fill-mode:both;animation-name:expand-d7813182;-webkit-animation-name:expand-d7813182}.shrink[data-v-d7813182]{animation-fill-mode:both;animation-name:shrink-d7813182;-webkit-animation-name:shrink-d7813182}.fold[data-v-d7813182],.shrink[data-v-d7813182]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-d7813182]{animation-fill-mode:both;animation-name:fold-d7813182;-webkit-animation-name:fold-d7813182}.unfold[data-v-d7813182]{animation-fill-mode:both;animation-name:unfold-d7813182;-webkit-animation-name:unfold-d7813182}.dim[data-v-d7813182],.unfold[data-v-d7813182]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-d7813182]{animation-fill-mode:both;animation-name:dim-d7813182;-webkit-animation-name:dim-d7813182}.brighten[data-v-d7813182]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-d7813182;-webkit-animation-name:brighten-d7813182}@keyframes fadeIn-d7813182{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d7813182{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-d7813182{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-d7813182{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-d7813182{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-d7813182{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-d7813182{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-d7813182{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-d7813182]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d7813182;-webkit-animation-name:glow-d7813182}.loop[data-v-d7813182]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d7813182{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d7813182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d7813182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d7813182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-d7813182]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-d7813182]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-d7813182]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-d7813182]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-d7813182]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-d7813182]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-d7813182]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-d7813182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-d7813182]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-d7813182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-d7813182]{margin-right:.5em}.entity .head .icon[data-v-d7813182]:hover{color:#35b870}.entity .head .label[data-v-d7813182]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-d7813182]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-d7813182]:hover{color:#35b870}.entity .head .value[data-v-d7813182]{font-size:1.1em;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-d7813182]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-d7813182]{margin-right:2.5em}.entity .head .value-container[data-v-d7813182]{min-width:7em}.entity .head .unit[data-v-d7813182]{margin-left:.2em}.entity .head .pull-right[data-v-d7813182],.entity .head .value-container[data-v-d7813182]{padding-right:.5em}.entity .head .pull-right[data-v-d7813182] .power-switch,.entity .head .value-container[data-v-d7813182] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-d7813182]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-d7813182]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-d7813182]:hover{color:#35b870}.collapse-toggler[data-v-d7813182]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-d7813182]:hover{color:#35b870}.attributes .child[data-v-d7813182]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-d7813182]{flex-direction:column}}.attributes .child[data-v-d7813182]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-d7813182]:hover{cursor:auto}.attributes .child.head[data-v-d7813182]{cursor:pointer}.attributes .child.head[data-v-d7813182]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-d7813182]{font-weight:700}.attributes .child .value[data-v-d7813182]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-d7813182]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-d7813182]:last-child,.entity-container-wrapper.with-children[data-v-d7813182]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-d7813182]{animation:blink-animation-d7813182 1s steps(20,start)}@keyframes blink-animation-d7813182{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.entity .head .value[data-v-d7813182]{text-align:right;font-weight:700} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/557.f2c6f156.css b/platypush/backend/http/webapp/dist/static/css/557.f2c6f156.css new file mode 100644 index 0000000000..0b0bf5232f --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/557.f2c6f156.css @@ -0,0 +1 @@ +.col-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5b7876c8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5b7876c8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5b7876c8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5b7876c8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5b7876c8]:first-child{margin-left:26%!important}.col-offset-3[data-v-5b7876c8]:not(first-child){margin-left:30%!important}.col-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5b7876c8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5b7876c8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5b7876c8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5b7876c8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5b7876c8]:first-child{margin-left:52%!important}.col-offset-6[data-v-5b7876c8]:not(first-child){margin-left:56%!important}.col-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5b7876c8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5b7876c8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5b7876c8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5b7876c8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5b7876c8]:first-child{margin-left:78%!important}.col-offset-9[data-v-5b7876c8]:not(first-child){margin-left:82%!important}.col-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5b7876c8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5b7876c8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5b7876c8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5b7876c8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-1[data-v-5b7876c8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-2[data-v-5b7876c8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-3[data-v-5b7876c8]{margin-left:26%}.col-no-margin-s-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-4[data-v-5b7876c8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-5[data-v-5b7876c8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-6[data-v-5b7876c8]{margin-left:52%}.col-no-margin-s-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-7[data-v-5b7876c8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-8[data-v-5b7876c8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-9[data-v-5b7876c8]{margin-left:78%}.col-no-margin-s-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-10[data-v-5b7876c8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-s-11[data-v-5b7876c8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5b7876c8]{display:none!important}.s-visible[data-v-5b7876c8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-1[data-v-5b7876c8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-2[data-v-5b7876c8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-3[data-v-5b7876c8]{margin-left:26%}.col-no-margin-m-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-4[data-v-5b7876c8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-5[data-v-5b7876c8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-6[data-v-5b7876c8]{margin-left:52%}.col-no-margin-m-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-7[data-v-5b7876c8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-8[data-v-5b7876c8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-9[data-v-5b7876c8]{margin-left:78%}.col-no-margin-m-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-10[data-v-5b7876c8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-m-11[data-v-5b7876c8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5b7876c8]{display:none!important}.m-visible[data-v-5b7876c8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-1[data-v-5b7876c8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-2[data-v-5b7876c8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-3[data-v-5b7876c8]{margin-left:26%}.col-no-margin-l-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-4[data-v-5b7876c8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-5[data-v-5b7876c8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-6[data-v-5b7876c8]{margin-left:52%}.col-no-margin-l-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-7[data-v-5b7876c8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-8[data-v-5b7876c8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-9[data-v-5b7876c8]{margin-left:78%}.col-no-margin-l-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-10[data-v-5b7876c8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-l-11[data-v-5b7876c8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5b7876c8]{display:none!important}.l-visible[data-v-5b7876c8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-1[data-v-5b7876c8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-2[data-v-5b7876c8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-3[data-v-5b7876c8]{margin-left:26%}.col-no-margin-xl-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-4[data-v-5b7876c8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-5[data-v-5b7876c8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-6[data-v-5b7876c8]{margin-left:52%}.col-no-margin-xl-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-7[data-v-5b7876c8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-8[data-v-5b7876c8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-9[data-v-5b7876c8]{margin-left:78%}.col-no-margin-xl-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-10[data-v-5b7876c8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xl-11[data-v-5b7876c8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5b7876c8]{display:none!important}.xl-visible[data-v-5b7876c8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5b7876c8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5b7876c8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5b7876c8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5b7876c8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5b7876c8]{margin-left:26%}.col-no-margin-xxl-3[data-v-5b7876c8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5b7876c8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5b7876c8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5b7876c8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5b7876c8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5b7876c8]{margin-left:52%}.col-no-margin-xxl-6[data-v-5b7876c8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5b7876c8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5b7876c8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5b7876c8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5b7876c8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5b7876c8]{margin-left:78%}.col-no-margin-xxl-9[data-v-5b7876c8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5b7876c8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5b7876c8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5b7876c8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5b7876c8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5b7876c8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5b7876c8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5b7876c8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5b7876c8]{display:none!important}.xxl-visible[data-v-5b7876c8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5b7876c8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5b7876c8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5b7876c8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5b7876c8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5b7876c8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5b7876c8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5b7876c8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5b7876c8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5b7876c8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5b7876c8]{display:none!important}}.vertical-center[data-v-5b7876c8]{display:flex;align-items:center}.horizontal-center[data-v-5b7876c8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5b7876c8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5b7876c8]{display:none!important}.no-content[data-v-5b7876c8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5b7876c8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5b7876c8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5b7876c8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5b7876c8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5b7876c8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5b7876c8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5b7876c8],.btn[data-v-5b7876c8],button[data-v-5b7876c8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5b7876c8],.btn-default[type=submit][data-v-5b7876c8],.btn.btn-primary[data-v-5b7876c8],.btn[type=submit][data-v-5b7876c8],button.btn-primary[data-v-5b7876c8],button[type=submit][data-v-5b7876c8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5b7876c8]:hover,.btn[data-v-5b7876c8]:hover,button[data-v-5b7876c8]:hover{color:#35b870}.btn .icon[data-v-5b7876c8],.btn-default .icon[data-v-5b7876c8],button .icon[data-v-5b7876c8]{margin-right:.5em}.btn-default[data-v-5b7876c8]:disabled,.btn-default[disabled][data-v-5b7876c8],.btn[data-v-5b7876c8]:disabled,.btn[disabled][data-v-5b7876c8],button[data-v-5b7876c8]:disabled,button[disabled][data-v-5b7876c8]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5b7876c8]{cursor:grab!important}.dragged[data-v-5b7876c8]{opacity:.5!important}input[type=password][data-v-5b7876c8],input[type=text][data-v-5b7876c8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5b7876c8]:focus,input[type=text][data-v-5b7876c8]:focus{border:1px solid #35b870}button[data-v-5b7876c8],input[data-v-5b7876c8]{outline:none}input[type=text][data-v-5b7876c8]:hover,textarea[data-v-5b7876c8]:hover{border:1px solid #9cdfb0}ul[data-v-5b7876c8]{margin:0;padding:0;list-style:none}a[data-v-5b7876c8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5b7876c8]:hover{color:#35b870}[data-v-5b7876c8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5b7876c8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5b7876c8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5b7876c8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5b7876c8]{color:#ad1717}body[data-v-5b7876c8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5b7876c8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5b7876c8] .nav .path{cursor:pointer}.browser[data-v-5b7876c8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5b7876c8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5b7876c8]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5b7876c8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5b7876c8],input[type=number][data-v-5b7876c8],input[type=password][data-v-5b7876c8],input[type=search][data-v-5b7876c8],input[type=text][data-v-5b7876c8],input[type=time][data-v-5b7876c8]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5b7876c8]:hover,input[type=number][data-v-5b7876c8]:hover,input[type=password][data-v-5b7876c8]:hover,input[type=search][data-v-5b7876c8]:hover,input[type=text][data-v-5b7876c8]:hover,input[type=time][data-v-5b7876c8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5b7876c8]:focus,input[type=number][data-v-5b7876c8]:focus,input[type=password][data-v-5b7876c8]:focus,input[type=search][data-v-5b7876c8]:focus,input[type=text][data-v-5b7876c8]:focus,input[type=time][data-v-5b7876c8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5b7876c8],input[type=number].with-icon[data-v-5b7876c8],input[type=password].with-icon[data-v-5b7876c8],input[type=search].with-icon[data-v-5b7876c8],input[type=text].with-icon[data-v-5b7876c8],input[type=time].with-icon[data-v-5b7876c8]{padding-left:.3em}input[type=search][data-v-5b7876c8],input[type=text][data-v-5b7876c8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5b7876c8]{animation-fill-mode:both;animation-name:fadeIn-5b7876c8;-webkit-animation-name:fadeIn-5b7876c8}.fade-in[data-v-5b7876c8],.fade-out[data-v-5b7876c8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5b7876c8]{animation-fill-mode:both;animation-name:fadeOut-5b7876c8;-webkit-animation-name:fadeOut-5b7876c8}.expand[data-v-5b7876c8]{animation-fill-mode:both;animation-name:expand-5b7876c8;-webkit-animation-name:expand-5b7876c8}.expand[data-v-5b7876c8],.shrink[data-v-5b7876c8]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-5b7876c8]{animation-fill-mode:both;animation-name:shrink-5b7876c8;-webkit-animation-name:shrink-5b7876c8}.fold[data-v-5b7876c8]{animation-fill-mode:both;animation-name:fold-5b7876c8;-webkit-animation-name:fold-5b7876c8}.fold[data-v-5b7876c8],.unfold[data-v-5b7876c8]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-5b7876c8]{animation-fill-mode:both;animation-name:unfold-5b7876c8;-webkit-animation-name:unfold-5b7876c8}.dim[data-v-5b7876c8]{animation-fill-mode:both;animation-name:dim-5b7876c8;-webkit-animation-name:dim-5b7876c8}.brighten[data-v-5b7876c8],.dim[data-v-5b7876c8]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-5b7876c8]{animation-fill-mode:both;animation-name:brighten-5b7876c8;-webkit-animation-name:brighten-5b7876c8}@keyframes fadeIn-5b7876c8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5b7876c8{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5b7876c8{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5b7876c8{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5b7876c8{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5b7876c8{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5b7876c8{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5b7876c8{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5b7876c8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5b7876c8;-webkit-animation-name:glow-5b7876c8}.loop[data-v-5b7876c8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5b7876c8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5b7876c8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5b7876c8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5b7876c8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-5b7876c8]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-5b7876c8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-5b7876c8]{background:#8fefb7}.item.selected[data-v-5b7876c8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-5b7876c8]{border-top:2px solid #35b870}.item[data-v-5b7876c8]::-moz-selection{background:transparent!important}.item[data-v-5b7876c8]::selection{background:transparent!important}.item .title[data-v-5b7876c8]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-5b7876c8]{display:inline-flex;align-items:center}.item .side.right[data-v-5b7876c8]{display:inline-flex;justify-content:right}.item .actions[data-v-5b7876c8],.item .duration[data-v-5b7876c8]{display:inline-flex;align-items:center}.item .duration[data-v-5b7876c8]{font-size:.85em;opacity:.7}.item .actions[data-v-5b7876c8] button{opacity:.65}.item .icon[data-v-5b7876c8]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-5b7876c8] .dropdown-container .item{box-shadow:none}.item[data-v-5b7876c8] .dropdown-container button{background:none;border:none}.item[data-v-5b7876c8] .dropdown-container button:hover{color:#35b870}[data-v-5b7876c8] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-5b7876c8] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-5b7876c8] .table-row{flex-direction:row;align-items:center}}[data-v-5b7876c8] .table-row .title,[data-v-5b7876c8] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-5b7876c8] .table-row .title,[data-v-5b7876c8] .table-row .value{display:inline-flex}}[data-v-5b7876c8] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-5b7876c8] .table-row .title{width:30%}[data-v-5b7876c8] .table-row .value{justify-content:right}}.entities-container[data-v-5b7876c8]{--groups-per-row:1;width:100%;height:100%;overflow:auto;color:#23513a;font-weight:400}@media screen and (min-width:1024px){.entities-container[data-v-5b7876c8]{--groups-per-row:2}}@media screen and (min-width:1408px){.entities-container[data-v-5b7876c8]{--groups-per-row:3}}.entities-container button[data-v-5b7876c8]{background:transparent;border:0}.entities-container button[data-v-5b7876c8]:hover{color:#35b870}.entities-container header[data-v-5b7876c8]{width:calc(100% - 2px);height:2.5em;display:flex;background:#f8f8f8;margin-left:2px;box-shadow:0 3px 2px -1px silver;position:relative}.entities-container header .right[data-v-5b7876c8]{position:absolute;right:0;text-align:right;margin-right:.5em;padding-right:0}.entities-container header .right button[data-v-5b7876c8]{padding:.5em 0}.entities-container .groups-canvas[data-v-5b7876c8]{width:100%;height:calc(100% - 2.5em);overflow:auto}@media screen and (max-width:calc(768px - 1px)){.entities-container .groups-container[data-v-5b7876c8]{background:#f8f8f8}}@media screen and (max-width:calc(1023px - 1px)){.entities-container .groups-container[data-v-5b7876c8]{display:flex;flex-direction:column;align-items:center}}@media screen and (min-width:1024px){.entities-container .groups-container[data-v-5b7876c8]{-moz-column-count:var(--groups-per-row);column-count:var(--groups-per-row)}}.entities-container .group[data-v-5b7876c8]{width:100%;max-width:600px;max-height:100%;position:relative;display:flex;-moz-column-break-inside:avoid;break-inside:avoid}@media screen and (max-width:calc(768px - 1px)){.entities-container .group[data-v-5b7876c8]{padding:0;margin-bottom:1em}}@media screen and (min-width:769px){.entities-container .group[data-v-5b7876c8]{padding:1em}}.entities-container .group .frame[data-v-5b7876c8]{width:100%;display:flex;flex-direction:column;flex-grow:1;position:relative;border-radius:1em;box-shadow:3px -2px 6px 1px #98b0a0}@media screen and (min-width:1024px){.entities-container .group .frame[data-v-5b7876c8]{max-height:calc(100vh - 4.5em)}}.entities-container .group .header[data-v-5b7876c8]{width:100%;height:3.5em;display:table;background:linear-gradient(0deg,#c0e8e4,#e4f8f4);box-shadow:0 1px 3px 1px #bbb}@media screen and (max-width:calc(768px - 1px)){.entities-container .group .header[data-v-5b7876c8]{border-bottom:1px solid #ddd}}@media screen and (min-width:769px){.entities-container .group .header[data-v-5b7876c8]{border-radius:1em 1em 0 0}}.entities-container .group .header .section[data-v-5b7876c8]{height:100%;display:table-cell;vertical-align:middle}.entities-container .group .header .section.left[data-v-5b7876c8],.entities-container .group .header .section.right[data-v-5b7876c8]{width:10%}.entities-container .group .header .section.right[data-v-5b7876c8]{text-align:right}.entities-container .group .header .section.center[data-v-5b7876c8]{width:80%;text-align:center}.entities-container .group .header .title[data-v-5b7876c8]{text-transform:capitalize}@media screen and (max-width:calc(768px - 1px)){.entities-container .group .header .title[data-v-5b7876c8]{font-weight:700}}.entities-container .group .body[data-v-5b7876c8]{max-height:calc(100% - 3.5em);overflow:auto;flex-grow:1}@media screen and (min-width:769px){.entities-container .group .body[data-v-5b7876c8]{background:#f8f8f8}}.entities-container .group .body .entity-frame[data-v-5b7876c8]{background:#fff}.entities-container .group .body .entity-frame[data-v-5b7876c8]:last-child{border-radius:0 0 1em 1em}.entities-container[data-v-5b7876c8] .dropdown-container .dropdown{min-width:10em;margin-left:0}.entities-container[data-v-5b7876c8] .dropdown-container .dropdown .item{box-shadow:none}.entities-container[data-v-5b7876c8] .dropdown-container button{background:none} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5638.245c2ace.css b/platypush/backend/http/webapp/dist/static/css/5638.8fd4b2fd.css similarity index 77% rename from platypush/backend/http/webapp/dist/static/css/5638.245c2ace.css rename to platypush/backend/http/webapp/dist/static/css/5638.8fd4b2fd.css index be59627ae1..73a3b0df5c 100644 --- a/platypush/backend/http/webapp/dist/static/css/5638.245c2ace.css +++ b/platypush/backend/http/webapp/dist/static/css/5638.8fd4b2fd.css @@ -1 +1 @@ -.col-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-44a3b988]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-44a3b988]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-44a3b988]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-44a3b988]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-44a3b988]:first-child{margin-left:26%!important}.col-offset-3[data-v-44a3b988]:not(first-child){margin-left:30%!important}.col-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-44a3b988]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-44a3b988]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-44a3b988]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-44a3b988]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-44a3b988]:first-child{margin-left:52%!important}.col-offset-6[data-v-44a3b988]:not(first-child){margin-left:56%!important}.col-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-44a3b988]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-44a3b988]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-44a3b988]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-44a3b988]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-44a3b988]:first-child{margin-left:78%!important}.col-offset-9[data-v-44a3b988]:not(first-child){margin-left:82%!important}.col-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-44a3b988]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-44a3b988]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-44a3b988]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-44a3b988]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-s-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-s-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-s-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-s-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-44a3b988]{display:none!important}.s-visible[data-v-44a3b988]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-m-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-m-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-m-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-m-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-44a3b988]{display:none!important}.m-visible[data-v-44a3b988]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-l-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-l-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-l-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-l-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-44a3b988]{display:none!important}.l-visible[data-v-44a3b988]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-xl-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-xl-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-xl-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-44a3b988]{display:none!important}.xl-visible[data-v-44a3b988]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-xxl-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-xxl-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-xxl-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-44a3b988]{display:none!important}.xxl-visible[data-v-44a3b988]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-44a3b988]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-44a3b988]{display:none!important}}.vertical-center[data-v-44a3b988]{display:flex;align-items:center}.horizontal-center[data-v-44a3b988]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-44a3b988]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-44a3b988]{display:none!important}.no-content[data-v-44a3b988]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-44a3b988]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-44a3b988]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-44a3b988]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-44a3b988]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-44a3b988]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-44a3b988]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-44a3b988],.btn[data-v-44a3b988],button[data-v-44a3b988]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-44a3b988],.btn-default[type=submit][data-v-44a3b988],.btn.btn-primary[data-v-44a3b988],.btn[type=submit][data-v-44a3b988],button.btn-primary[data-v-44a3b988],button[type=submit][data-v-44a3b988]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-44a3b988],.btn-default .icon[data-v-44a3b988],button .icon[data-v-44a3b988]{margin-right:.5em}input[type=password][data-v-44a3b988],input[type=text][data-v-44a3b988]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-44a3b988]:focus,input[type=text][data-v-44a3b988]:focus{border:1px solid #35b870}button[data-v-44a3b988],input[data-v-44a3b988]{outline:none}input[type=text][data-v-44a3b988]:hover,textarea[data-v-44a3b988]:hover{border:1px solid #9cdfb0}ul[data-v-44a3b988]{margin:0;padding:0;list-style:none}a[data-v-44a3b988]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-44a3b988]:hover{color:#35b870}[data-v-44a3b988]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-44a3b988]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-44a3b988]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-44a3b988]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-44a3b988]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-44a3b988] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-44a3b988] .nav .path{cursor:pointer}.browser[data-v-44a3b988] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-44a3b988] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-44a3b988]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-44a3b988],input[type=number][data-v-44a3b988],input[type=password][data-v-44a3b988],input[type=search][data-v-44a3b988],input[type=text][data-v-44a3b988],input[type=time][data-v-44a3b988]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-44a3b988]:hover,input[type=number][data-v-44a3b988]:hover,input[type=password][data-v-44a3b988]:hover,input[type=search][data-v-44a3b988]:hover,input[type=text][data-v-44a3b988]:hover,input[type=time][data-v-44a3b988]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-44a3b988]:focus,input[type=number][data-v-44a3b988]:focus,input[type=password][data-v-44a3b988]:focus,input[type=search][data-v-44a3b988]:focus,input[type=text][data-v-44a3b988]:focus,input[type=time][data-v-44a3b988]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-44a3b988],input[type=number].with-icon[data-v-44a3b988],input[type=password].with-icon[data-v-44a3b988],input[type=search].with-icon[data-v-44a3b988],input[type=text].with-icon[data-v-44a3b988],input[type=time].with-icon[data-v-44a3b988]{padding-left:.3em}input[type=search][data-v-44a3b988],input[type=text][data-v-44a3b988]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-44a3b988]{animation-fill-mode:both;animation-name:fadeIn-44a3b988;-webkit-animation-name:fadeIn-44a3b988}.fade-in[data-v-44a3b988],.fade-out[data-v-44a3b988]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-44a3b988]{animation-fill-mode:both;animation-name:fadeOut-44a3b988;-webkit-animation-name:fadeOut-44a3b988}@keyframes fadeIn-44a3b988{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-44a3b988{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-44a3b988]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-44a3b988;-webkit-animation-name:glow-44a3b988}.loop[data-v-44a3b988]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-44a3b988{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-44a3b988]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-44a3b988]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-44a3b988]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.calendar[data-v-44a3b988]{display:flex;padding:1em;flex-direction:column;width:100%;height:100%}.calendar .no-events[data-v-44a3b988]{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:1.75em}.calendar .event[data-v-44a3b988]{font-size:1.1em}.calendar .event-list[data-v-44a3b988]{margin-top:2em}.calendar .upcoming-event[data-v-44a3b988]{text-align:center;margin-bottom:.15em;font-size:1.2em}.calendar .upcoming-event .date[data-v-44a3b988]{font-size:1.1em}.calendar .upcoming-event .summary[data-v-44a3b988]{text-transform:uppercase;font-size:1.3em} \ No newline at end of file +.col-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-44a3b988]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-44a3b988]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-44a3b988]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-44a3b988]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-44a3b988]:first-child{margin-left:26%!important}.col-offset-3[data-v-44a3b988]:not(first-child){margin-left:30%!important}.col-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-44a3b988]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-44a3b988]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-44a3b988]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-44a3b988]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-44a3b988]:first-child{margin-left:52%!important}.col-offset-6[data-v-44a3b988]:not(first-child){margin-left:56%!important}.col-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-44a3b988]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-44a3b988]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-44a3b988]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-44a3b988]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-44a3b988]:first-child{margin-left:78%!important}.col-offset-9[data-v-44a3b988]:not(first-child){margin-left:82%!important}.col-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-44a3b988]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-44a3b988]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-44a3b988]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-44a3b988]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-s-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-s-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-s-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-s-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-s-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-44a3b988]{display:none!important}.s-visible[data-v-44a3b988]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-m-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-m-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-m-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-m-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-m-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-44a3b988]{display:none!important}.m-visible[data-v-44a3b988]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-l-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-l-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-l-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-l-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-l-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-44a3b988]{display:none!important}.l-visible[data-v-44a3b988]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-xl-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-xl-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-xl-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xl-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-44a3b988]{display:none!important}.xl-visible[data-v-44a3b988]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-1[data-v-44a3b988]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-44a3b988]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-2[data-v-44a3b988]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-44a3b988]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-3[data-v-44a3b988]{margin-left:26%}.col-no-margin-xxl-3[data-v-44a3b988]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-4[data-v-44a3b988]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-44a3b988]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-5[data-v-44a3b988]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-44a3b988]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-6[data-v-44a3b988]{margin-left:52%}.col-no-margin-xxl-6[data-v-44a3b988]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-7[data-v-44a3b988]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-44a3b988]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-8[data-v-44a3b988]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-44a3b988]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-9[data-v-44a3b988]{margin-left:78%}.col-no-margin-xxl-9[data-v-44a3b988]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-10[data-v-44a3b988]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-44a3b988]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-44a3b988]:first-child{margin-left:0}.col-offset-xxl-11[data-v-44a3b988]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-44a3b988]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-44a3b988]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-44a3b988]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-44a3b988]{display:none!important}.xxl-visible[data-v-44a3b988]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-44a3b988]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-44a3b988]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-44a3b988]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-44a3b988]{display:none!important}}.vertical-center[data-v-44a3b988]{display:flex;align-items:center}.horizontal-center[data-v-44a3b988]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-44a3b988]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-44a3b988]{display:none!important}.no-content[data-v-44a3b988]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-44a3b988]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-44a3b988]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-44a3b988]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-44a3b988]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-44a3b988]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-44a3b988]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-44a3b988],.btn[data-v-44a3b988],button[data-v-44a3b988]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-44a3b988],.btn-default[type=submit][data-v-44a3b988],.btn.btn-primary[data-v-44a3b988],.btn[type=submit][data-v-44a3b988],button.btn-primary[data-v-44a3b988],button[type=submit][data-v-44a3b988]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-44a3b988]:hover,.btn[data-v-44a3b988]:hover,button[data-v-44a3b988]:hover{color:#35b870}.btn .icon[data-v-44a3b988],.btn-default .icon[data-v-44a3b988],button .icon[data-v-44a3b988]{margin-right:.5em}.btn-default[data-v-44a3b988]:disabled,.btn-default[disabled][data-v-44a3b988],.btn[data-v-44a3b988]:disabled,.btn[disabled][data-v-44a3b988],button[data-v-44a3b988]:disabled,button[disabled][data-v-44a3b988]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-44a3b988]{cursor:grab!important}.dragged[data-v-44a3b988]{opacity:.5!important}input[type=password][data-v-44a3b988],input[type=text][data-v-44a3b988]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-44a3b988]:focus,input[type=text][data-v-44a3b988]:focus{border:1px solid #35b870}button[data-v-44a3b988],input[data-v-44a3b988]{outline:none}input[type=text][data-v-44a3b988]:hover,textarea[data-v-44a3b988]:hover{border:1px solid #9cdfb0}ul[data-v-44a3b988]{margin:0;padding:0;list-style:none}a[data-v-44a3b988]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-44a3b988]:hover{color:#35b870}[data-v-44a3b988]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-44a3b988]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-44a3b988]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-44a3b988]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-44a3b988]{color:#ad1717}body[data-v-44a3b988]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-44a3b988] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-44a3b988] .nav .path{cursor:pointer}.browser[data-v-44a3b988] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-44a3b988] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-44a3b988]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-44a3b988]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-44a3b988],input[type=number][data-v-44a3b988],input[type=password][data-v-44a3b988],input[type=search][data-v-44a3b988],input[type=text][data-v-44a3b988],input[type=time][data-v-44a3b988]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-44a3b988]:hover,input[type=number][data-v-44a3b988]:hover,input[type=password][data-v-44a3b988]:hover,input[type=search][data-v-44a3b988]:hover,input[type=text][data-v-44a3b988]:hover,input[type=time][data-v-44a3b988]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-44a3b988]:focus,input[type=number][data-v-44a3b988]:focus,input[type=password][data-v-44a3b988]:focus,input[type=search][data-v-44a3b988]:focus,input[type=text][data-v-44a3b988]:focus,input[type=time][data-v-44a3b988]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-44a3b988],input[type=number].with-icon[data-v-44a3b988],input[type=password].with-icon[data-v-44a3b988],input[type=search].with-icon[data-v-44a3b988],input[type=text].with-icon[data-v-44a3b988],input[type=time].with-icon[data-v-44a3b988]{padding-left:.3em}input[type=search][data-v-44a3b988],input[type=text][data-v-44a3b988]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-44a3b988]{animation-fill-mode:both;animation-name:fadeIn-44a3b988;-webkit-animation-name:fadeIn-44a3b988}.fade-in[data-v-44a3b988],.fade-out[data-v-44a3b988]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-44a3b988]{animation-fill-mode:both;animation-name:fadeOut-44a3b988;-webkit-animation-name:fadeOut-44a3b988}.expand[data-v-44a3b988]{animation-fill-mode:both;animation-name:expand-44a3b988;-webkit-animation-name:expand-44a3b988}.expand[data-v-44a3b988],.shrink[data-v-44a3b988]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-44a3b988]{animation-fill-mode:both;animation-name:shrink-44a3b988;-webkit-animation-name:shrink-44a3b988}.fold[data-v-44a3b988]{animation-fill-mode:both;animation-name:fold-44a3b988;-webkit-animation-name:fold-44a3b988}.fold[data-v-44a3b988],.unfold[data-v-44a3b988]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-44a3b988]{animation-fill-mode:both;animation-name:unfold-44a3b988;-webkit-animation-name:unfold-44a3b988}.dim[data-v-44a3b988]{animation-fill-mode:both;animation-name:dim-44a3b988;-webkit-animation-name:dim-44a3b988}.brighten[data-v-44a3b988],.dim[data-v-44a3b988]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-44a3b988]{animation-fill-mode:both;animation-name:brighten-44a3b988;-webkit-animation-name:brighten-44a3b988}@keyframes fadeIn-44a3b988{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-44a3b988{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-44a3b988{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-44a3b988{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-44a3b988{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-44a3b988{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-44a3b988{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-44a3b988{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-44a3b988]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-44a3b988;-webkit-animation-name:glow-44a3b988}.loop[data-v-44a3b988]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-44a3b988{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-44a3b988]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-44a3b988]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-44a3b988]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.calendar[data-v-44a3b988]{display:flex;padding:1em;flex-direction:column;width:100%;height:100%}.calendar .no-events[data-v-44a3b988]{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:1.75em}.calendar .event[data-v-44a3b988]{font-size:1.1em}.calendar .event-list[data-v-44a3b988]{margin-top:2em}.calendar .upcoming-event[data-v-44a3b988]{text-align:center;margin-bottom:.15em;font-size:1.2em}.calendar .upcoming-event .date[data-v-44a3b988]{font-size:1.1em}.calendar .upcoming-event .summary[data-v-44a3b988]{text-transform:uppercase;font-size:1.3em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5906.832a3a02.css b/platypush/backend/http/webapp/dist/static/css/5906.5764c6f4.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/5906.832a3a02.css rename to platypush/backend/http/webapp/dist/static/css/5906.5764c6f4.css index 88e7f89bbb..286d85667e 100644 --- a/platypush/backend/http/webapp/dist/static/css/5906.832a3a02.css +++ b/platypush/backend/http/webapp/dist/static/css/5906.5764c6f4.css @@ -1 +1 @@ -.col-1[data-v-1c0bfb77],.entity .head .icon[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1c0bfb77]:first-child,.entity .head .icon[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1c0bfb77]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1c0bfb77]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1c0bfb77]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1c0bfb77]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1c0bfb77],.entity .head .value-and-toggler[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1c0bfb77]:first-child,.entity .head .value-and-toggler[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1c0bfb77]:first-child{margin-left:26%!important}.col-offset-3[data-v-1c0bfb77]:not(first-child){margin-left:30%!important}.col-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1c0bfb77]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1c0bfb77]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1c0bfb77]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1c0bfb77]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1c0bfb77]:first-child{margin-left:52%!important}.col-offset-6[data-v-1c0bfb77]:not(first-child){margin-left:56%!important}.col-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1c0bfb77]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1c0bfb77]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1c0bfb77]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1c0bfb77]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1c0bfb77]:first-child{margin-left:78%!important}.col-offset-9[data-v-1c0bfb77]:not(first-child){margin-left:82%!important}.col-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1c0bfb77]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1c0bfb77]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1c0bfb77]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1c0bfb77]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1c0bfb77],.entity .head .value-container[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1c0bfb77]:first-child,.entity .head .value-container[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-s-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-s-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1c0bfb77],.entity .head .label[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1c0bfb77]:first-child,.entity .head .label[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-s-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-1c0bfb77],.attributes .child .value[data-v-1c0bfb77],.col-s-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-1c0bfb77]:first-child,.attributes .child .value[data-v-1c0bfb77]:first-child,.col-s-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1c0bfb77]{display:none!important}.s-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1c0bfb77],.entity .head .value-container[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1c0bfb77]:first-child,.entity .head .value-container[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-m-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-1c0bfb77],.attributes .child .value[data-v-1c0bfb77],.col-m-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-1c0bfb77]:first-child,.attributes .child .value[data-v-1c0bfb77]:first-child,.col-m-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-m-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1c0bfb77],.entity .head .label[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1c0bfb77]:first-child,.entity .head .label[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-m-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1c0bfb77]{display:none!important}.m-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-l-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-l-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-l-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1c0bfb77]{display:none!important}.l-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-xl-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-xl-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-xl-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1c0bfb77]{display:none!important}.xl-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-xxl-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-xxl-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-xxl-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1c0bfb77]{display:none!important}.xxl-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1c0bfb77]{display:none!important}}.vertical-center[data-v-1c0bfb77]{display:flex;align-items:center}.horizontal-center[data-v-1c0bfb77]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-1c0bfb77],.pull-right[data-v-1c0bfb77]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1c0bfb77]{display:none!important}.no-content[data-v-1c0bfb77]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1c0bfb77]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1c0bfb77],.btn[data-v-1c0bfb77],button[data-v-1c0bfb77]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1c0bfb77],.btn-default[type=submit][data-v-1c0bfb77],.btn.btn-primary[data-v-1c0bfb77],.btn[type=submit][data-v-1c0bfb77],button.btn-primary[data-v-1c0bfb77],button[type=submit][data-v-1c0bfb77]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1c0bfb77],.btn-default .icon[data-v-1c0bfb77],button .icon[data-v-1c0bfb77]{margin-right:.5em}input[type=password][data-v-1c0bfb77],input[type=text][data-v-1c0bfb77]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1c0bfb77]:focus,input[type=text][data-v-1c0bfb77]:focus{border:1px solid #35b870}button[data-v-1c0bfb77],input[data-v-1c0bfb77]{outline:none}input[type=text][data-v-1c0bfb77]:hover,textarea[data-v-1c0bfb77]:hover{border:1px solid #9cdfb0}ul[data-v-1c0bfb77]{margin:0;padding:0;list-style:none}a[data-v-1c0bfb77]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1c0bfb77]:hover{color:#35b870}[data-v-1c0bfb77]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1c0bfb77]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1c0bfb77]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1c0bfb77]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1c0bfb77]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1c0bfb77] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1c0bfb77] .nav .path{cursor:pointer}.browser[data-v-1c0bfb77] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1c0bfb77] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1c0bfb77]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1c0bfb77],input[type=number][data-v-1c0bfb77],input[type=password][data-v-1c0bfb77],input[type=search][data-v-1c0bfb77],input[type=text][data-v-1c0bfb77],input[type=time][data-v-1c0bfb77]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1c0bfb77]:hover,input[type=number][data-v-1c0bfb77]:hover,input[type=password][data-v-1c0bfb77]:hover,input[type=search][data-v-1c0bfb77]:hover,input[type=text][data-v-1c0bfb77]:hover,input[type=time][data-v-1c0bfb77]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1c0bfb77]:focus,input[type=number][data-v-1c0bfb77]:focus,input[type=password][data-v-1c0bfb77]:focus,input[type=search][data-v-1c0bfb77]:focus,input[type=text][data-v-1c0bfb77]:focus,input[type=time][data-v-1c0bfb77]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1c0bfb77],input[type=number].with-icon[data-v-1c0bfb77],input[type=password].with-icon[data-v-1c0bfb77],input[type=search].with-icon[data-v-1c0bfb77],input[type=text].with-icon[data-v-1c0bfb77],input[type=time].with-icon[data-v-1c0bfb77]{padding-left:.3em}input[type=search][data-v-1c0bfb77],input[type=text][data-v-1c0bfb77]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-1c0bfb77],.fade-in[data-v-1c0bfb77]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-1c0bfb77;-webkit-animation-name:fadeIn-1c0bfb77}.fade-out[data-v-1c0bfb77]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-1c0bfb77;-webkit-animation-name:fadeOut-1c0bfb77}@keyframes fadeIn-1c0bfb77{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1c0bfb77{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1c0bfb77]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1c0bfb77;-webkit-animation-name:glow-1c0bfb77}.loop[data-v-1c0bfb77]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1c0bfb77{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1c0bfb77]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1c0bfb77]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1c0bfb77]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-1c0bfb77]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-1c0bfb77]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-1c0bfb77]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-1c0bfb77]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-1c0bfb77]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-1c0bfb77]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-1c0bfb77]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-1c0bfb77]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-1c0bfb77]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-1c0bfb77]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-1c0bfb77]{margin-right:.5em}.entity .head .icon[data-v-1c0bfb77]:hover{color:#35b870}.entity .head .label[data-v-1c0bfb77]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-1c0bfb77]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-1c0bfb77]:hover{color:#35b870}.entity .head .value[data-v-1c0bfb77]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-1c0bfb77]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-1c0bfb77]{margin-right:2.5em}.entity .head .value-container[data-v-1c0bfb77]{min-width:7em}.entity .head .unit[data-v-1c0bfb77]{margin-left:.2em}.entity .head .pull-right[data-v-1c0bfb77],.entity .head .value-container[data-v-1c0bfb77]{padding-right:.5em}.entity .head .pull-right[data-v-1c0bfb77] .power-switch,.entity .head .value-container[data-v-1c0bfb77] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-1c0bfb77]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-1c0bfb77]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-1c0bfb77]:hover{color:#35b870}.collapse-toggler[data-v-1c0bfb77]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-1c0bfb77]:hover{color:#35b870}.attributes .child[data-v-1c0bfb77]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-1c0bfb77]{flex-direction:column}}.attributes .child[data-v-1c0bfb77]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-1c0bfb77]:hover{cursor:auto}.attributes .child.head[data-v-1c0bfb77]{cursor:pointer}.attributes .child.head[data-v-1c0bfb77]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-1c0bfb77]{font-weight:700}.attributes .child .value[data-v-1c0bfb77]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-1c0bfb77]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-1c0bfb77]:last-child,.entity-container-wrapper.with-children[data-v-1c0bfb77]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-1c0bfb77]{animation:blink-animation-1c0bfb77 1s steps(20,start)}@keyframes blink-animation-1c0bfb77{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.weather-icon-container[data-v-1c0bfb77]{display:flex;align-items:center;justify-content:center;height:2.5em}.weather-icon-container .weather-icon[data-v-1c0bfb77]{max-width:100%;height:100%;margin:.5em .5em .5em 1em} \ No newline at end of file +.col-1[data-v-1c0bfb77],.entity .head .icon[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1c0bfb77]:first-child,.entity .head .icon[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1c0bfb77]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1c0bfb77]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1c0bfb77]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1c0bfb77]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1c0bfb77],.entity .head .value-and-toggler[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1c0bfb77]:first-child,.entity .head .value-and-toggler[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1c0bfb77]:first-child{margin-left:26%!important}.col-offset-3[data-v-1c0bfb77]:not(first-child){margin-left:30%!important}.col-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1c0bfb77]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1c0bfb77]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1c0bfb77]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1c0bfb77]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1c0bfb77]:first-child{margin-left:52%!important}.col-offset-6[data-v-1c0bfb77]:not(first-child){margin-left:56%!important}.col-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1c0bfb77]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1c0bfb77]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1c0bfb77]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1c0bfb77]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1c0bfb77]:first-child{margin-left:78%!important}.col-offset-9[data-v-1c0bfb77]:not(first-child){margin-left:82%!important}.col-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1c0bfb77]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1c0bfb77]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1c0bfb77]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1c0bfb77]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1c0bfb77],.entity .head .value-container[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1c0bfb77]:first-child,.entity .head .value-container[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-s-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-s-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1c0bfb77],.entity .head .label[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1c0bfb77]:first-child,.entity .head .label[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-s-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-s-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-1c0bfb77],.attributes .child .value[data-v-1c0bfb77],.col-s-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-1c0bfb77]:first-child,.attributes .child .value[data-v-1c0bfb77]:first-child,.col-s-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1c0bfb77]{display:none!important}.s-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1c0bfb77],.entity .head .value-container[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1c0bfb77]:first-child,.entity .head .value-container[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-m-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-1c0bfb77],.attributes .child .value[data-v-1c0bfb77],.col-m-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-1c0bfb77]:first-child,.attributes .child .value[data-v-1c0bfb77]:first-child,.col-m-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-m-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1c0bfb77],.entity .head .label[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1c0bfb77]:first-child,.entity .head .label[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-m-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-m-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1c0bfb77]{display:none!important}.m-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-l-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-l-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-l-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-l-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1c0bfb77]{display:none!important}.l-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-xl-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-xl-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-xl-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xl-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1c0bfb77]{display:none!important}.xl-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1c0bfb77]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1c0bfb77]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1c0bfb77]{margin-left:26%}.col-no-margin-xxl-3[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1c0bfb77]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1c0bfb77]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1c0bfb77]{margin-left:52%}.col-no-margin-xxl-6[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1c0bfb77]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1c0bfb77]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1c0bfb77]{margin-left:78%}.col-no-margin-xxl-9[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1c0bfb77]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1c0bfb77]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1c0bfb77]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1c0bfb77]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1c0bfb77]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1c0bfb77]{display:none!important}.xxl-visible[data-v-1c0bfb77]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1c0bfb77]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1c0bfb77]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1c0bfb77]{display:none!important}}.vertical-center[data-v-1c0bfb77]{display:flex;align-items:center}.horizontal-center[data-v-1c0bfb77]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-1c0bfb77],.pull-right[data-v-1c0bfb77]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1c0bfb77]{display:none!important}.no-content[data-v-1c0bfb77]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1c0bfb77]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1c0bfb77]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1c0bfb77],.btn[data-v-1c0bfb77],button[data-v-1c0bfb77]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1c0bfb77],.btn-default[type=submit][data-v-1c0bfb77],.btn.btn-primary[data-v-1c0bfb77],.btn[type=submit][data-v-1c0bfb77],button.btn-primary[data-v-1c0bfb77],button[type=submit][data-v-1c0bfb77]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1c0bfb77]:hover,.btn[data-v-1c0bfb77]:hover,button[data-v-1c0bfb77]:hover{color:#35b870}.btn .icon[data-v-1c0bfb77],.btn-default .icon[data-v-1c0bfb77],button .icon[data-v-1c0bfb77]{margin-right:.5em}.btn-default[data-v-1c0bfb77]:disabled,.btn-default[disabled][data-v-1c0bfb77],.btn[data-v-1c0bfb77]:disabled,.btn[disabled][data-v-1c0bfb77],button[data-v-1c0bfb77]:disabled,button[disabled][data-v-1c0bfb77]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1c0bfb77]{cursor:grab!important}.dragged[data-v-1c0bfb77]{opacity:.5!important}input[type=password][data-v-1c0bfb77],input[type=text][data-v-1c0bfb77]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1c0bfb77]:focus,input[type=text][data-v-1c0bfb77]:focus{border:1px solid #35b870}button[data-v-1c0bfb77],input[data-v-1c0bfb77]{outline:none}input[type=text][data-v-1c0bfb77]:hover,textarea[data-v-1c0bfb77]:hover{border:1px solid #9cdfb0}ul[data-v-1c0bfb77]{margin:0;padding:0;list-style:none}a[data-v-1c0bfb77]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1c0bfb77]:hover{color:#35b870}[data-v-1c0bfb77]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1c0bfb77]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1c0bfb77]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1c0bfb77]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1c0bfb77]{color:#ad1717}body[data-v-1c0bfb77]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1c0bfb77] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1c0bfb77] .nav .path{cursor:pointer}.browser[data-v-1c0bfb77] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1c0bfb77] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1c0bfb77]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1c0bfb77]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1c0bfb77],input[type=number][data-v-1c0bfb77],input[type=password][data-v-1c0bfb77],input[type=search][data-v-1c0bfb77],input[type=text][data-v-1c0bfb77],input[type=time][data-v-1c0bfb77]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1c0bfb77]:hover,input[type=number][data-v-1c0bfb77]:hover,input[type=password][data-v-1c0bfb77]:hover,input[type=search][data-v-1c0bfb77]:hover,input[type=text][data-v-1c0bfb77]:hover,input[type=time][data-v-1c0bfb77]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1c0bfb77]:focus,input[type=number][data-v-1c0bfb77]:focus,input[type=password][data-v-1c0bfb77]:focus,input[type=search][data-v-1c0bfb77]:focus,input[type=text][data-v-1c0bfb77]:focus,input[type=time][data-v-1c0bfb77]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1c0bfb77],input[type=number].with-icon[data-v-1c0bfb77],input[type=password].with-icon[data-v-1c0bfb77],input[type=search].with-icon[data-v-1c0bfb77],input[type=text].with-icon[data-v-1c0bfb77],input[type=time].with-icon[data-v-1c0bfb77]{padding-left:.3em}input[type=search][data-v-1c0bfb77],input[type=text][data-v-1c0bfb77]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-1c0bfb77],.fade-in[data-v-1c0bfb77]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-1c0bfb77;-webkit-animation-name:fadeIn-1c0bfb77}.fade-out[data-v-1c0bfb77]{animation-fill-mode:both;animation-name:fadeOut-1c0bfb77;-webkit-animation-name:fadeOut-1c0bfb77}.expand[data-v-1c0bfb77],.fade-out[data-v-1c0bfb77]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-1c0bfb77]{animation-fill-mode:both;animation-name:expand-1c0bfb77;-webkit-animation-name:expand-1c0bfb77}.shrink[data-v-1c0bfb77]{animation-fill-mode:both;animation-name:shrink-1c0bfb77;-webkit-animation-name:shrink-1c0bfb77}.fold[data-v-1c0bfb77],.shrink[data-v-1c0bfb77]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-1c0bfb77]{animation-fill-mode:both;animation-name:fold-1c0bfb77;-webkit-animation-name:fold-1c0bfb77}.unfold[data-v-1c0bfb77]{animation-fill-mode:both;animation-name:unfold-1c0bfb77;-webkit-animation-name:unfold-1c0bfb77}.dim[data-v-1c0bfb77],.unfold[data-v-1c0bfb77]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-1c0bfb77]{animation-fill-mode:both;animation-name:dim-1c0bfb77;-webkit-animation-name:dim-1c0bfb77}.brighten[data-v-1c0bfb77]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-1c0bfb77;-webkit-animation-name:brighten-1c0bfb77}@keyframes fadeIn-1c0bfb77{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1c0bfb77{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1c0bfb77{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1c0bfb77{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1c0bfb77{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1c0bfb77{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1c0bfb77{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1c0bfb77{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1c0bfb77]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1c0bfb77;-webkit-animation-name:glow-1c0bfb77}.loop[data-v-1c0bfb77]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1c0bfb77{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1c0bfb77]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1c0bfb77]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1c0bfb77]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-1c0bfb77]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-1c0bfb77]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-1c0bfb77]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-1c0bfb77]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-1c0bfb77]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-1c0bfb77]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-1c0bfb77]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-1c0bfb77]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-1c0bfb77]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-1c0bfb77]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-1c0bfb77]{margin-right:.5em}.entity .head .icon[data-v-1c0bfb77]:hover{color:#35b870}.entity .head .label[data-v-1c0bfb77]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-1c0bfb77]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-1c0bfb77]:hover{color:#35b870}.entity .head .value[data-v-1c0bfb77]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-1c0bfb77]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-1c0bfb77]{margin-right:2.5em}.entity .head .value-container[data-v-1c0bfb77]{min-width:7em}.entity .head .unit[data-v-1c0bfb77]{margin-left:.2em}.entity .head .pull-right[data-v-1c0bfb77],.entity .head .value-container[data-v-1c0bfb77]{padding-right:.5em}.entity .head .pull-right[data-v-1c0bfb77] .power-switch,.entity .head .value-container[data-v-1c0bfb77] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-1c0bfb77]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-1c0bfb77]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-1c0bfb77]:hover{color:#35b870}.collapse-toggler[data-v-1c0bfb77]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-1c0bfb77]:hover{color:#35b870}.attributes .child[data-v-1c0bfb77]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-1c0bfb77]{flex-direction:column}}.attributes .child[data-v-1c0bfb77]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-1c0bfb77]:hover{cursor:auto}.attributes .child.head[data-v-1c0bfb77]{cursor:pointer}.attributes .child.head[data-v-1c0bfb77]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-1c0bfb77]{font-weight:700}.attributes .child .value[data-v-1c0bfb77]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-1c0bfb77]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-1c0bfb77]:last-child,.entity-container-wrapper.with-children[data-v-1c0bfb77]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-1c0bfb77]{animation:blink-animation-1c0bfb77 1s steps(20,start)}@keyframes blink-animation-1c0bfb77{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.weather-icon-container[data-v-1c0bfb77]{display:flex;align-items:center;justify-content:center;height:2.5em}.weather-icon-container .weather-icon[data-v-1c0bfb77]{max-width:100%;height:100%;margin:.5em .5em .5em 1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5933.949d7b2b.css b/platypush/backend/http/webapp/dist/static/css/5933.58e6489b.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/5933.949d7b2b.css rename to platypush/backend/http/webapp/dist/static/css/5933.58e6489b.css index 643cc3a4ad..a17a7354a8 100644 --- a/platypush/backend/http/webapp/dist/static/css/5933.949d7b2b.css +++ b/platypush/backend/http/webapp/dist/static/css/5933.58e6489b.css @@ -1 +1 @@ -.col-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-706a3bd1]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-706a3bd1]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-706a3bd1]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-706a3bd1]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-706a3bd1]:first-child{margin-left:26%!important}.col-offset-3[data-v-706a3bd1]:not(first-child){margin-left:30%!important}.col-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-706a3bd1]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-706a3bd1]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-706a3bd1]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-706a3bd1]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-706a3bd1]:first-child{margin-left:52%!important}.col-offset-6[data-v-706a3bd1]:not(first-child){margin-left:56%!important}.col-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-706a3bd1]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-706a3bd1]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-706a3bd1]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-706a3bd1]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-706a3bd1]:first-child{margin-left:78%!important}.col-offset-9[data-v-706a3bd1]:not(first-child){margin-left:82%!important}.col-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-706a3bd1]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-706a3bd1]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-706a3bd1]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-706a3bd1]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-s-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-s-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-s-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-s-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-706a3bd1]{display:none!important}.s-visible[data-v-706a3bd1]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-m-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-m-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-m-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-m-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-706a3bd1]{display:none!important}.m-visible[data-v-706a3bd1]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-l-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-l-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-l-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-l-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-706a3bd1]{display:none!important}.l-visible[data-v-706a3bd1]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-xl-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-xl-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-xl-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-706a3bd1]{display:none!important}.xl-visible[data-v-706a3bd1]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-xxl-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-xxl-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-xxl-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-706a3bd1]{display:none!important}.xxl-visible[data-v-706a3bd1]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-706a3bd1]{display:none!important}}.vertical-center[data-v-706a3bd1]{display:flex;align-items:center}.horizontal-center[data-v-706a3bd1]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-706a3bd1]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-706a3bd1]{display:none!important}.no-content[data-v-706a3bd1]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-706a3bd1]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-706a3bd1]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-706a3bd1]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-706a3bd1]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-706a3bd1]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-706a3bd1]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-706a3bd1],.btn[data-v-706a3bd1],button[data-v-706a3bd1]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-706a3bd1],.btn-default[type=submit][data-v-706a3bd1],.btn.btn-primary[data-v-706a3bd1],.btn[type=submit][data-v-706a3bd1],button.btn-primary[data-v-706a3bd1],button[type=submit][data-v-706a3bd1]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-706a3bd1],.btn-default .icon[data-v-706a3bd1],button .icon[data-v-706a3bd1]{margin-right:.5em}input[type=password][data-v-706a3bd1],input[type=text][data-v-706a3bd1]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-706a3bd1]:focus,input[type=text][data-v-706a3bd1]:focus{border:1px solid #35b870}button[data-v-706a3bd1],input[data-v-706a3bd1]{outline:none}input[type=text][data-v-706a3bd1]:hover,textarea[data-v-706a3bd1]:hover{border:1px solid #9cdfb0}ul[data-v-706a3bd1]{margin:0;padding:0;list-style:none}a[data-v-706a3bd1]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-706a3bd1]:hover{color:#35b870}[data-v-706a3bd1]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-706a3bd1]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-706a3bd1]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-706a3bd1]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-706a3bd1]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-706a3bd1] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-706a3bd1] .nav .path{cursor:pointer}.browser[data-v-706a3bd1] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-706a3bd1] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-706a3bd1]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-706a3bd1],input[type=number][data-v-706a3bd1],input[type=password][data-v-706a3bd1],input[type=search][data-v-706a3bd1],input[type=text][data-v-706a3bd1],input[type=time][data-v-706a3bd1]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-706a3bd1]:hover,input[type=number][data-v-706a3bd1]:hover,input[type=password][data-v-706a3bd1]:hover,input[type=search][data-v-706a3bd1]:hover,input[type=text][data-v-706a3bd1]:hover,input[type=time][data-v-706a3bd1]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-706a3bd1]:focus,input[type=number][data-v-706a3bd1]:focus,input[type=password][data-v-706a3bd1]:focus,input[type=search][data-v-706a3bd1]:focus,input[type=text][data-v-706a3bd1]:focus,input[type=time][data-v-706a3bd1]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-706a3bd1],input[type=number].with-icon[data-v-706a3bd1],input[type=password].with-icon[data-v-706a3bd1],input[type=search].with-icon[data-v-706a3bd1],input[type=text].with-icon[data-v-706a3bd1],input[type=time].with-icon[data-v-706a3bd1]{padding-left:.3em}input[type=search][data-v-706a3bd1],input[type=text][data-v-706a3bd1]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-706a3bd1]{animation-fill-mode:both;animation-name:fadeIn-706a3bd1;-webkit-animation-name:fadeIn-706a3bd1}.fade-in[data-v-706a3bd1],.fade-out[data-v-706a3bd1]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-706a3bd1]{animation-fill-mode:both;animation-name:fadeOut-706a3bd1;-webkit-animation-name:fadeOut-706a3bd1}@keyframes fadeIn-706a3bd1{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-706a3bd1{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-706a3bd1]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-706a3bd1;-webkit-animation-name:glow-706a3bd1}.loop[data-v-706a3bd1]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-706a3bd1{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-706a3bd1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-706a3bd1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-706a3bd1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.icon-container[data-v-706a3bd1]{display:inline-flex;width:3em;justify-content:center;text-align:center}.icon-container .icon[data-v-706a3bd1]{width:1em;height:1em} \ No newline at end of file +.col-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-706a3bd1]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-706a3bd1]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-706a3bd1]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-706a3bd1]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-706a3bd1]:first-child{margin-left:26%!important}.col-offset-3[data-v-706a3bd1]:not(first-child){margin-left:30%!important}.col-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-706a3bd1]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-706a3bd1]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-706a3bd1]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-706a3bd1]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-706a3bd1]:first-child{margin-left:52%!important}.col-offset-6[data-v-706a3bd1]:not(first-child){margin-left:56%!important}.col-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-706a3bd1]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-706a3bd1]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-706a3bd1]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-706a3bd1]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-706a3bd1]:first-child{margin-left:78%!important}.col-offset-9[data-v-706a3bd1]:not(first-child){margin-left:82%!important}.col-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-706a3bd1]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-706a3bd1]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-706a3bd1]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-706a3bd1]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-s-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-s-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-s-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-s-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-s-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-706a3bd1]{display:none!important}.s-visible[data-v-706a3bd1]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-m-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-m-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-m-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-m-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-m-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-706a3bd1]{display:none!important}.m-visible[data-v-706a3bd1]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-l-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-l-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-l-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-l-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-l-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-706a3bd1]{display:none!important}.l-visible[data-v-706a3bd1]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-xl-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-xl-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-xl-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xl-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-706a3bd1]{display:none!important}.xl-visible[data-v-706a3bd1]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-1[data-v-706a3bd1]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-706a3bd1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-2[data-v-706a3bd1]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-706a3bd1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-3[data-v-706a3bd1]{margin-left:26%}.col-no-margin-xxl-3[data-v-706a3bd1]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-4[data-v-706a3bd1]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-706a3bd1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-5[data-v-706a3bd1]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-706a3bd1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-6[data-v-706a3bd1]{margin-left:52%}.col-no-margin-xxl-6[data-v-706a3bd1]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-7[data-v-706a3bd1]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-706a3bd1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-8[data-v-706a3bd1]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-706a3bd1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-9[data-v-706a3bd1]{margin-left:78%}.col-no-margin-xxl-9[data-v-706a3bd1]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-10[data-v-706a3bd1]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-706a3bd1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-706a3bd1]:first-child{margin-left:0}.col-offset-xxl-11[data-v-706a3bd1]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-706a3bd1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-706a3bd1]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-706a3bd1]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-706a3bd1]{display:none!important}.xxl-visible[data-v-706a3bd1]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-706a3bd1]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-706a3bd1]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-706a3bd1]{display:none!important}}.vertical-center[data-v-706a3bd1]{display:flex;align-items:center}.horizontal-center[data-v-706a3bd1]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-706a3bd1]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-706a3bd1]{display:none!important}.no-content[data-v-706a3bd1]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-706a3bd1]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-706a3bd1]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-706a3bd1]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-706a3bd1]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-706a3bd1]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-706a3bd1]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-706a3bd1],.btn[data-v-706a3bd1],button[data-v-706a3bd1]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-706a3bd1],.btn-default[type=submit][data-v-706a3bd1],.btn.btn-primary[data-v-706a3bd1],.btn[type=submit][data-v-706a3bd1],button.btn-primary[data-v-706a3bd1],button[type=submit][data-v-706a3bd1]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-706a3bd1]:hover,.btn[data-v-706a3bd1]:hover,button[data-v-706a3bd1]:hover{color:#35b870}.btn .icon[data-v-706a3bd1],.btn-default .icon[data-v-706a3bd1],button .icon[data-v-706a3bd1]{margin-right:.5em}.btn-default[data-v-706a3bd1]:disabled,.btn-default[disabled][data-v-706a3bd1],.btn[data-v-706a3bd1]:disabled,.btn[disabled][data-v-706a3bd1],button[data-v-706a3bd1]:disabled,button[disabled][data-v-706a3bd1]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-706a3bd1]{cursor:grab!important}.dragged[data-v-706a3bd1]{opacity:.5!important}input[type=password][data-v-706a3bd1],input[type=text][data-v-706a3bd1]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-706a3bd1]:focus,input[type=text][data-v-706a3bd1]:focus{border:1px solid #35b870}button[data-v-706a3bd1],input[data-v-706a3bd1]{outline:none}input[type=text][data-v-706a3bd1]:hover,textarea[data-v-706a3bd1]:hover{border:1px solid #9cdfb0}ul[data-v-706a3bd1]{margin:0;padding:0;list-style:none}a[data-v-706a3bd1]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-706a3bd1]:hover{color:#35b870}[data-v-706a3bd1]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-706a3bd1]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-706a3bd1]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-706a3bd1]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-706a3bd1]{color:#ad1717}body[data-v-706a3bd1]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-706a3bd1] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-706a3bd1] .nav .path{cursor:pointer}.browser[data-v-706a3bd1] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-706a3bd1] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-706a3bd1]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-706a3bd1]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-706a3bd1],input[type=number][data-v-706a3bd1],input[type=password][data-v-706a3bd1],input[type=search][data-v-706a3bd1],input[type=text][data-v-706a3bd1],input[type=time][data-v-706a3bd1]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-706a3bd1]:hover,input[type=number][data-v-706a3bd1]:hover,input[type=password][data-v-706a3bd1]:hover,input[type=search][data-v-706a3bd1]:hover,input[type=text][data-v-706a3bd1]:hover,input[type=time][data-v-706a3bd1]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-706a3bd1]:focus,input[type=number][data-v-706a3bd1]:focus,input[type=password][data-v-706a3bd1]:focus,input[type=search][data-v-706a3bd1]:focus,input[type=text][data-v-706a3bd1]:focus,input[type=time][data-v-706a3bd1]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-706a3bd1],input[type=number].with-icon[data-v-706a3bd1],input[type=password].with-icon[data-v-706a3bd1],input[type=search].with-icon[data-v-706a3bd1],input[type=text].with-icon[data-v-706a3bd1],input[type=time].with-icon[data-v-706a3bd1]{padding-left:.3em}input[type=search][data-v-706a3bd1],input[type=text][data-v-706a3bd1]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-706a3bd1]{animation-fill-mode:both;animation-name:fadeIn-706a3bd1;-webkit-animation-name:fadeIn-706a3bd1}.fade-in[data-v-706a3bd1],.fade-out[data-v-706a3bd1]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-706a3bd1]{animation-fill-mode:both;animation-name:fadeOut-706a3bd1;-webkit-animation-name:fadeOut-706a3bd1}.expand[data-v-706a3bd1]{animation-fill-mode:both;animation-name:expand-706a3bd1;-webkit-animation-name:expand-706a3bd1}.expand[data-v-706a3bd1],.shrink[data-v-706a3bd1]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-706a3bd1]{animation-fill-mode:both;animation-name:shrink-706a3bd1;-webkit-animation-name:shrink-706a3bd1}.fold[data-v-706a3bd1]{animation-fill-mode:both;animation-name:fold-706a3bd1;-webkit-animation-name:fold-706a3bd1}.fold[data-v-706a3bd1],.unfold[data-v-706a3bd1]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-706a3bd1]{animation-fill-mode:both;animation-name:unfold-706a3bd1;-webkit-animation-name:unfold-706a3bd1}.dim[data-v-706a3bd1]{animation-fill-mode:both;animation-name:dim-706a3bd1;-webkit-animation-name:dim-706a3bd1}.brighten[data-v-706a3bd1],.dim[data-v-706a3bd1]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-706a3bd1]{animation-fill-mode:both;animation-name:brighten-706a3bd1;-webkit-animation-name:brighten-706a3bd1}@keyframes fadeIn-706a3bd1{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-706a3bd1{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-706a3bd1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-706a3bd1{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-706a3bd1{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-706a3bd1{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-706a3bd1{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-706a3bd1{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-706a3bd1]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-706a3bd1;-webkit-animation-name:glow-706a3bd1}.loop[data-v-706a3bd1]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-706a3bd1{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-706a3bd1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-706a3bd1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-706a3bd1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.icon-container[data-v-706a3bd1]{display:inline-flex;width:3em;justify-content:center;text-align:center}.icon-container .icon[data-v-706a3bd1]{width:1em;height:1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6016.558de04b.css b/platypush/backend/http/webapp/dist/static/css/6016.558de04b.css deleted file mode 100644 index 87211b7ede..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/6016.558de04b.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7543b7fe]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7543b7fe]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7543b7fe]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7543b7fe]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7543b7fe]:first-child{margin-left:26%!important}.col-offset-3[data-v-7543b7fe]:not(first-child){margin-left:30%!important}.col-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7543b7fe]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7543b7fe]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7543b7fe]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7543b7fe]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7543b7fe]:first-child{margin-left:52%!important}.col-offset-6[data-v-7543b7fe]:not(first-child){margin-left:56%!important}.col-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7543b7fe]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7543b7fe]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7543b7fe]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7543b7fe]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7543b7fe]:first-child{margin-left:78%!important}.col-offset-9[data-v-7543b7fe]:not(first-child){margin-left:82%!important}.col-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7543b7fe]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7543b7fe]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7543b7fe]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7543b7fe]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-1[data-v-7543b7fe]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-2[data-v-7543b7fe]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-3[data-v-7543b7fe]{margin-left:26%}.col-no-margin-s-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-4[data-v-7543b7fe]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-5[data-v-7543b7fe]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-6[data-v-7543b7fe]{margin-left:52%}.col-no-margin-s-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-7[data-v-7543b7fe]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-8[data-v-7543b7fe]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-9[data-v-7543b7fe]{margin-left:78%}.col-no-margin-s-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-10[data-v-7543b7fe]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-s-11[data-v-7543b7fe]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7543b7fe]{display:none!important}.s-visible[data-v-7543b7fe]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-1[data-v-7543b7fe]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-2[data-v-7543b7fe]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-3[data-v-7543b7fe]{margin-left:26%}.col-no-margin-m-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-4[data-v-7543b7fe]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-5[data-v-7543b7fe]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-6[data-v-7543b7fe]{margin-left:52%}.col-no-margin-m-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-7[data-v-7543b7fe]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-8[data-v-7543b7fe]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-9[data-v-7543b7fe]{margin-left:78%}.col-no-margin-m-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-10[data-v-7543b7fe]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-m-11[data-v-7543b7fe]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7543b7fe]{display:none!important}.m-visible[data-v-7543b7fe]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-1[data-v-7543b7fe]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-2[data-v-7543b7fe]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-3[data-v-7543b7fe]{margin-left:26%}.col-no-margin-l-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-4[data-v-7543b7fe]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-5[data-v-7543b7fe]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-6[data-v-7543b7fe]{margin-left:52%}.col-no-margin-l-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-7[data-v-7543b7fe]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-8[data-v-7543b7fe]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-9[data-v-7543b7fe]{margin-left:78%}.col-no-margin-l-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-10[data-v-7543b7fe]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-l-11[data-v-7543b7fe]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7543b7fe]{display:none!important}.l-visible[data-v-7543b7fe]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-1[data-v-7543b7fe]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-2[data-v-7543b7fe]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-3[data-v-7543b7fe]{margin-left:26%}.col-no-margin-xl-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-4[data-v-7543b7fe]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-5[data-v-7543b7fe]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-6[data-v-7543b7fe]{margin-left:52%}.col-no-margin-xl-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-7[data-v-7543b7fe]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-8[data-v-7543b7fe]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-9[data-v-7543b7fe]{margin-left:78%}.col-no-margin-xl-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-10[data-v-7543b7fe]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xl-11[data-v-7543b7fe]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7543b7fe]{display:none!important}.xl-visible[data-v-7543b7fe]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7543b7fe]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7543b7fe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7543b7fe]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7543b7fe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7543b7fe]{margin-left:26%}.col-no-margin-xxl-3[data-v-7543b7fe]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7543b7fe]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7543b7fe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7543b7fe]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7543b7fe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7543b7fe]{margin-left:52%}.col-no-margin-xxl-6[data-v-7543b7fe]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7543b7fe]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7543b7fe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7543b7fe]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7543b7fe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7543b7fe]{margin-left:78%}.col-no-margin-xxl-9[data-v-7543b7fe]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7543b7fe]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7543b7fe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7543b7fe]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7543b7fe]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7543b7fe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7543b7fe]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7543b7fe]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7543b7fe]{display:none!important}.xxl-visible[data-v-7543b7fe]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7543b7fe]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7543b7fe]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7543b7fe]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7543b7fe]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7543b7fe]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7543b7fe]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7543b7fe]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7543b7fe]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7543b7fe]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7543b7fe]{display:none!important}}.vertical-center[data-v-7543b7fe]{display:flex;align-items:center}.horizontal-center[data-v-7543b7fe]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7543b7fe]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7543b7fe]{display:none!important}.no-content[data-v-7543b7fe]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7543b7fe]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7543b7fe]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7543b7fe]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7543b7fe]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7543b7fe]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7543b7fe]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7543b7fe],.btn[data-v-7543b7fe],button[data-v-7543b7fe]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7543b7fe],.btn-default[type=submit][data-v-7543b7fe],.btn.btn-primary[data-v-7543b7fe],.btn[type=submit][data-v-7543b7fe],button.btn-primary[data-v-7543b7fe],button[type=submit][data-v-7543b7fe]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7543b7fe],.btn-default .icon[data-v-7543b7fe],button .icon[data-v-7543b7fe]{margin-right:.5em}input[type=password][data-v-7543b7fe],input[type=text][data-v-7543b7fe]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7543b7fe]:focus,input[type=text][data-v-7543b7fe]:focus{border:1px solid #35b870}button[data-v-7543b7fe],input[data-v-7543b7fe]{outline:none}input[type=text][data-v-7543b7fe]:hover,textarea[data-v-7543b7fe]:hover{border:1px solid #9cdfb0}ul[data-v-7543b7fe]{margin:0;padding:0;list-style:none}a[data-v-7543b7fe]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7543b7fe]:hover{color:#35b870}[data-v-7543b7fe]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7543b7fe]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7543b7fe]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7543b7fe]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7543b7fe]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7543b7fe] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7543b7fe] .nav .path{cursor:pointer}.browser[data-v-7543b7fe] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7543b7fe] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7543b7fe]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7543b7fe],input[type=number][data-v-7543b7fe],input[type=password][data-v-7543b7fe],input[type=search][data-v-7543b7fe],input[type=text][data-v-7543b7fe],input[type=time][data-v-7543b7fe]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7543b7fe]:hover,input[type=number][data-v-7543b7fe]:hover,input[type=password][data-v-7543b7fe]:hover,input[type=search][data-v-7543b7fe]:hover,input[type=text][data-v-7543b7fe]:hover,input[type=time][data-v-7543b7fe]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7543b7fe]:focus,input[type=number][data-v-7543b7fe]:focus,input[type=password][data-v-7543b7fe]:focus,input[type=search][data-v-7543b7fe]:focus,input[type=text][data-v-7543b7fe]:focus,input[type=time][data-v-7543b7fe]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7543b7fe],input[type=number].with-icon[data-v-7543b7fe],input[type=password].with-icon[data-v-7543b7fe],input[type=search].with-icon[data-v-7543b7fe],input[type=text].with-icon[data-v-7543b7fe],input[type=time].with-icon[data-v-7543b7fe]{padding-left:.3em}input[type=search][data-v-7543b7fe],input[type=text][data-v-7543b7fe]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7543b7fe]{animation-fill-mode:both;animation-name:fadeIn-7543b7fe;-webkit-animation-name:fadeIn-7543b7fe}.fade-in[data-v-7543b7fe],.fade-out[data-v-7543b7fe]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7543b7fe]{animation-fill-mode:both;animation-name:fadeOut-7543b7fe;-webkit-animation-name:fadeOut-7543b7fe}@keyframes fadeIn-7543b7fe{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7543b7fe{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7543b7fe]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7543b7fe;-webkit-animation-name:glow-7543b7fe}.loop[data-v-7543b7fe]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7543b7fe{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7543b7fe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7543b7fe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7543b7fe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-7543b7fe]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-7543b7fe]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-7543b7fe]{background:#8fefb7}.item.selected[data-v-7543b7fe]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-7543b7fe]{border-top:2px solid #35b870}.item[data-v-7543b7fe]::-moz-selection{background:transparent!important}.item[data-v-7543b7fe]::selection{background:transparent!important}.item .title[data-v-7543b7fe]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-7543b7fe]{display:inline-flex;align-items:center}.item .side.right[data-v-7543b7fe]{display:inline-flex;justify-content:right}.item .actions[data-v-7543b7fe],.item .duration[data-v-7543b7fe]{display:inline-flex;align-items:center}.item .duration[data-v-7543b7fe]{font-size:.85em;opacity:.7}.item .actions[data-v-7543b7fe] button{opacity:.65}.item .icon[data-v-7543b7fe]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-7543b7fe] .dropdown-container .item{box-shadow:none}.item[data-v-7543b7fe] .dropdown-container button{background:none;border:none}.item[data-v-7543b7fe] .dropdown-container button:hover{color:#35b870}[data-v-7543b7fe] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-7543b7fe] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-7543b7fe] .table-row{flex-direction:row;align-items:center}}[data-v-7543b7fe] .table-row .title,[data-v-7543b7fe] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-7543b7fe] .table-row .title,[data-v-7543b7fe] .table-row .value{display:inline-flex}}[data-v-7543b7fe] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-7543b7fe] .table-row .title{width:30%}[data-v-7543b7fe] .table-row .value{justify-content:right}}.browser[data-v-7543b7fe]{height:100%;display:flex;flex-direction:column}.browser .item .actions[data-v-7543b7fe]{display:inline-flex;justify-content:right}.browser .items[data-v-7543b7fe]{height:calc(100% - 2.5em);overflow:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6096.a3036d52.css b/platypush/backend/http/webapp/dist/static/css/6096.a3036d52.css deleted file mode 100644 index adbc86295b..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/6096.a3036d52.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4d9c871b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4d9c871b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4d9c871b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4d9c871b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4d9c871b]:first-child{margin-left:26%!important}.col-offset-3[data-v-4d9c871b]:not(first-child){margin-left:30%!important}.col-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4d9c871b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4d9c871b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4d9c871b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4d9c871b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4d9c871b]:first-child{margin-left:52%!important}.col-offset-6[data-v-4d9c871b]:not(first-child){margin-left:56%!important}.col-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4d9c871b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4d9c871b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4d9c871b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4d9c871b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4d9c871b]:first-child{margin-left:78%!important}.col-offset-9[data-v-4d9c871b]:not(first-child){margin-left:82%!important}.col-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4d9c871b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4d9c871b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4d9c871b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4d9c871b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-s-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-s-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-s-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4d9c871b]{display:none!important}.s-visible[data-v-4d9c871b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-m-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-m-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-m-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4d9c871b]{display:none!important}.m-visible[data-v-4d9c871b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-l-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-l-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-l-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4d9c871b]{display:none!important}.l-visible[data-v-4d9c871b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-xl-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-xl-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-xl-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4d9c871b]{display:none!important}.xl-visible[data-v-4d9c871b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-xxl-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-xxl-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-xxl-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4d9c871b]{display:none!important}.xxl-visible[data-v-4d9c871b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4d9c871b]{display:none!important}}.vertical-center[data-v-4d9c871b]{display:flex;align-items:center}.horizontal-center[data-v-4d9c871b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4d9c871b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4d9c871b]{display:none!important}.no-content[data-v-4d9c871b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4d9c871b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4d9c871b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4d9c871b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4d9c871b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4d9c871b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4d9c871b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4d9c871b],.btn[data-v-4d9c871b],button[data-v-4d9c871b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4d9c871b],.btn-default[type=submit][data-v-4d9c871b],.btn.btn-primary[data-v-4d9c871b],.btn[type=submit][data-v-4d9c871b],button.btn-primary[data-v-4d9c871b],button[type=submit][data-v-4d9c871b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4d9c871b],.btn-default .icon[data-v-4d9c871b],button .icon[data-v-4d9c871b]{margin-right:.5em}input[type=password][data-v-4d9c871b],input[type=text][data-v-4d9c871b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4d9c871b]:focus,input[type=text][data-v-4d9c871b]:focus{border:1px solid #35b870}button[data-v-4d9c871b],input[data-v-4d9c871b]{outline:none}input[type=text][data-v-4d9c871b]:hover,textarea[data-v-4d9c871b]:hover{border:1px solid #9cdfb0}ul[data-v-4d9c871b]{margin:0;padding:0;list-style:none}a[data-v-4d9c871b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4d9c871b]:hover{color:#35b870}[data-v-4d9c871b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4d9c871b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4d9c871b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4d9c871b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4d9c871b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4d9c871b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4d9c871b] .nav .path{cursor:pointer}.browser[data-v-4d9c871b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4d9c871b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4d9c871b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4d9c871b],input[type=number][data-v-4d9c871b],input[type=password][data-v-4d9c871b],input[type=search][data-v-4d9c871b],input[type=text][data-v-4d9c871b],input[type=time][data-v-4d9c871b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4d9c871b]:hover,input[type=number][data-v-4d9c871b]:hover,input[type=password][data-v-4d9c871b]:hover,input[type=search][data-v-4d9c871b]:hover,input[type=text][data-v-4d9c871b]:hover,input[type=time][data-v-4d9c871b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4d9c871b]:focus,input[type=number][data-v-4d9c871b]:focus,input[type=password][data-v-4d9c871b]:focus,input[type=search][data-v-4d9c871b]:focus,input[type=text][data-v-4d9c871b]:focus,input[type=time][data-v-4d9c871b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4d9c871b],input[type=number].with-icon[data-v-4d9c871b],input[type=password].with-icon[data-v-4d9c871b],input[type=search].with-icon[data-v-4d9c871b],input[type=text].with-icon[data-v-4d9c871b],input[type=time].with-icon[data-v-4d9c871b]{padding-left:.3em}input[type=search][data-v-4d9c871b],input[type=text][data-v-4d9c871b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4d9c871b]{animation-fill-mode:both;animation-name:fadeIn-4d9c871b;-webkit-animation-name:fadeIn-4d9c871b}.fade-in[data-v-4d9c871b],.fade-out[data-v-4d9c871b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4d9c871b]{animation-fill-mode:both;animation-name:fadeOut-4d9c871b;-webkit-animation-name:fadeOut-4d9c871b}@keyframes fadeIn-4d9c871b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4d9c871b{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-4d9c871b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4d9c871b;-webkit-animation-name:glow-4d9c871b}.loop[data-v-4d9c871b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4d9c871b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4d9c871b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4d9c871b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4d9c871b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.loading[data-v-4d9c871b]{display:flex;align-items:center;justify-content:center;font-size:3em;position:absolute;top:0;left:0;width:100%;height:100%;background:#909090;opacity:.5}.icon[data-v-4d9c871b]{display:inline-block;position:relative;width:80px;height:80px}.icon div[data-v-4d9c871b]{position:absolute;top:33px;width:13px;height:13px;border-radius:50%;background:#fff;animation-timing-function:cubic-bezier(0,1,1,0)}.icon div[data-v-4d9c871b]:first-child{left:8px;animation:lds-ellipsis1-4d9c871b .6s infinite}.icon div[data-v-4d9c871b]:nth-child(2){left:8px;animation:lds-ellipsis2-4d9c871b .6s infinite}.icon div[data-v-4d9c871b]:nth-child(3){left:32px;animation:lds-ellipsis2-4d9c871b .6s infinite}.icon div[data-v-4d9c871b]:nth-child(4){left:56px;animation:lds-ellipsis3-4d9c871b .6s infinite}@keyframes lds-ellipsis1-4d9c871b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes lds-ellipsis3-4d9c871b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes lds-ellipsis2-4d9c871b{0%{transform:translate(0)}to{transform:translate(24px)}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6217.54339076.css b/platypush/backend/http/webapp/dist/static/css/6217.9d3928a2.css similarity index 79% rename from platypush/backend/http/webapp/dist/static/css/6217.54339076.css rename to platypush/backend/http/webapp/dist/static/css/6217.9d3928a2.css index 3671b6a780..e80fa4aeb6 100644 --- a/platypush/backend/http/webapp/dist/static/css/6217.54339076.css +++ b/platypush/backend/http/webapp/dist/static/css/6217.9d3928a2.css @@ -1 +1 @@ -.col-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0353c248]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0353c248]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0353c248]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0353c248]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0353c248]:first-child{margin-left:26%!important}.col-offset-3[data-v-0353c248]:not(first-child){margin-left:30%!important}.col-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0353c248]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0353c248]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0353c248]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0353c248]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0353c248]:first-child{margin-left:52%!important}.col-offset-6[data-v-0353c248]:not(first-child){margin-left:56%!important}.col-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0353c248]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0353c248]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0353c248]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0353c248]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0353c248]:first-child{margin-left:78%!important}.col-offset-9[data-v-0353c248]:not(first-child){margin-left:82%!important}.col-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0353c248]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0353c248]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0353c248]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0353c248]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-3[data-v-0353c248]{margin-left:26%}.col-no-margin-s-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-6[data-v-0353c248]{margin-left:52%}.col-no-margin-s-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-9[data-v-0353c248]{margin-left:78%}.col-no-margin-s-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0353c248]{display:none!important}.s-visible[data-v-0353c248]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-3[data-v-0353c248]{margin-left:26%}.col-no-margin-m-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-6[data-v-0353c248]{margin-left:52%}.col-no-margin-m-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-9[data-v-0353c248]{margin-left:78%}.col-no-margin-m-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0353c248]{display:none!important}.m-visible[data-v-0353c248]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-3[data-v-0353c248]{margin-left:26%}.col-no-margin-l-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-6[data-v-0353c248]{margin-left:52%}.col-no-margin-l-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-9[data-v-0353c248]{margin-left:78%}.col-no-margin-l-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0353c248]{display:none!important}.l-visible[data-v-0353c248]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-3[data-v-0353c248]{margin-left:26%}.col-no-margin-xl-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-6[data-v-0353c248]{margin-left:52%}.col-no-margin-xl-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-9[data-v-0353c248]{margin-left:78%}.col-no-margin-xl-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0353c248]{display:none!important}.xl-visible[data-v-0353c248]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0353c248]{margin-left:26%}.col-no-margin-xxl-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0353c248]{margin-left:52%}.col-no-margin-xxl-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0353c248]{margin-left:78%}.col-no-margin-xxl-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0353c248]{display:none!important}.xxl-visible[data-v-0353c248]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0353c248]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0353c248]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0353c248]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0353c248]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0353c248]{display:none!important}}.vertical-center[data-v-0353c248]{display:flex;align-items:center}.horizontal-center[data-v-0353c248]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0353c248]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0353c248]{display:none!important}.no-content[data-v-0353c248]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0353c248]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0353c248]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0353c248]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0353c248]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0353c248]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0353c248]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0353c248],.btn[data-v-0353c248],button[data-v-0353c248]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0353c248],.btn-default[type=submit][data-v-0353c248],.btn.btn-primary[data-v-0353c248],.btn[type=submit][data-v-0353c248],button.btn-primary[data-v-0353c248],button[type=submit][data-v-0353c248]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0353c248],.btn-default .icon[data-v-0353c248],button .icon[data-v-0353c248]{margin-right:.5em}input[type=password][data-v-0353c248],input[type=text][data-v-0353c248]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0353c248]:focus,input[type=text][data-v-0353c248]:focus{border:1px solid #35b870}button[data-v-0353c248],input[data-v-0353c248]{outline:none}input[type=text][data-v-0353c248]:hover,textarea[data-v-0353c248]:hover{border:1px solid #9cdfb0}ul[data-v-0353c248]{margin:0;padding:0;list-style:none}a[data-v-0353c248]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0353c248]:hover{color:#35b870}[data-v-0353c248]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0353c248]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0353c248]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0353c248]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0353c248]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0353c248] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0353c248] .nav .path{cursor:pointer}.browser[data-v-0353c248] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0353c248] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0353c248]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0353c248],input[type=number][data-v-0353c248],input[type=password][data-v-0353c248],input[type=search][data-v-0353c248],input[type=text][data-v-0353c248],input[type=time][data-v-0353c248]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0353c248]:hover,input[type=number][data-v-0353c248]:hover,input[type=password][data-v-0353c248]:hover,input[type=search][data-v-0353c248]:hover,input[type=text][data-v-0353c248]:hover,input[type=time][data-v-0353c248]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0353c248]:focus,input[type=number][data-v-0353c248]:focus,input[type=password][data-v-0353c248]:focus,input[type=search][data-v-0353c248]:focus,input[type=text][data-v-0353c248]:focus,input[type=time][data-v-0353c248]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0353c248],input[type=number].with-icon[data-v-0353c248],input[type=password].with-icon[data-v-0353c248],input[type=search].with-icon[data-v-0353c248],input[type=text].with-icon[data-v-0353c248],input[type=time].with-icon[data-v-0353c248]{padding-left:.3em}input[type=search][data-v-0353c248],input[type=text][data-v-0353c248]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0353c248]{animation-fill-mode:both;animation-name:fadeIn-0353c248;-webkit-animation-name:fadeIn-0353c248}.fade-in[data-v-0353c248],.fade-out[data-v-0353c248]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0353c248]{animation-fill-mode:both;animation-name:fadeOut-0353c248;-webkit-animation-name:fadeOut-0353c248}@keyframes fadeIn-0353c248{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0353c248{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0353c248]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0353c248;-webkit-animation-name:glow-0353c248}.loop[data-v-0353c248]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0353c248{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0353c248]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0353c248]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0353c248]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.extension-icon img[data-v-0353c248]{width:100%;height:100%} \ No newline at end of file +.col-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0353c248]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0353c248]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0353c248]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0353c248]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0353c248]:first-child{margin-left:26%!important}.col-offset-3[data-v-0353c248]:not(first-child){margin-left:30%!important}.col-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0353c248]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0353c248]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0353c248]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0353c248]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0353c248]:first-child{margin-left:52%!important}.col-offset-6[data-v-0353c248]:not(first-child){margin-left:56%!important}.col-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0353c248]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0353c248]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0353c248]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0353c248]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0353c248]:first-child{margin-left:78%!important}.col-offset-9[data-v-0353c248]:not(first-child){margin-left:82%!important}.col-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0353c248]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0353c248]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0353c248]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0353c248]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-3[data-v-0353c248]{margin-left:26%}.col-no-margin-s-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-6[data-v-0353c248]{margin-left:52%}.col-no-margin-s-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-9[data-v-0353c248]{margin-left:78%}.col-no-margin-s-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-s-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0353c248]{display:none!important}.s-visible[data-v-0353c248]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-3[data-v-0353c248]{margin-left:26%}.col-no-margin-m-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-6[data-v-0353c248]{margin-left:52%}.col-no-margin-m-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-9[data-v-0353c248]{margin-left:78%}.col-no-margin-m-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-m-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0353c248]{display:none!important}.m-visible[data-v-0353c248]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-3[data-v-0353c248]{margin-left:26%}.col-no-margin-l-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-6[data-v-0353c248]{margin-left:52%}.col-no-margin-l-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-9[data-v-0353c248]{margin-left:78%}.col-no-margin-l-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-l-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0353c248]{display:none!important}.l-visible[data-v-0353c248]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-3[data-v-0353c248]{margin-left:26%}.col-no-margin-xl-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-6[data-v-0353c248]{margin-left:52%}.col-no-margin-xl-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-9[data-v-0353c248]{margin-left:78%}.col-no-margin-xl-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-xl-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0353c248]{display:none!important}.xl-visible[data-v-0353c248]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0353c248]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0353c248]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0353c248]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0353c248]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0353c248]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0353c248]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0353c248]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0353c248]{margin-left:26%}.col-no-margin-xxl-3[data-v-0353c248]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0353c248]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0353c248]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0353c248]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0353c248]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0353c248]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0353c248]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0353c248]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0353c248]{margin-left:52%}.col-no-margin-xxl-6[data-v-0353c248]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0353c248]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0353c248]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0353c248]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0353c248]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0353c248]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0353c248]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0353c248]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0353c248]{margin-left:78%}.col-no-margin-xxl-9[data-v-0353c248]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0353c248]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0353c248]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0353c248]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0353c248]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0353c248]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0353c248]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0353c248]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0353c248]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0353c248]{display:none!important}.xxl-visible[data-v-0353c248]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0353c248]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0353c248]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0353c248]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0353c248]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0353c248]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0353c248]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0353c248]{display:none!important}}.vertical-center[data-v-0353c248]{display:flex;align-items:center}.horizontal-center[data-v-0353c248]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0353c248]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0353c248]{display:none!important}.no-content[data-v-0353c248]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0353c248]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0353c248]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0353c248]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0353c248]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0353c248]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0353c248]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0353c248],.btn[data-v-0353c248],button[data-v-0353c248]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0353c248],.btn-default[type=submit][data-v-0353c248],.btn.btn-primary[data-v-0353c248],.btn[type=submit][data-v-0353c248],button.btn-primary[data-v-0353c248],button[type=submit][data-v-0353c248]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-0353c248]:hover,.btn[data-v-0353c248]:hover,button[data-v-0353c248]:hover{color:#35b870}.btn .icon[data-v-0353c248],.btn-default .icon[data-v-0353c248],button .icon[data-v-0353c248]{margin-right:.5em}.btn-default[data-v-0353c248]:disabled,.btn-default[disabled][data-v-0353c248],.btn[data-v-0353c248]:disabled,.btn[disabled][data-v-0353c248],button[data-v-0353c248]:disabled,button[disabled][data-v-0353c248]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-0353c248]{cursor:grab!important}.dragged[data-v-0353c248]{opacity:.5!important}input[type=password][data-v-0353c248],input[type=text][data-v-0353c248]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0353c248]:focus,input[type=text][data-v-0353c248]:focus{border:1px solid #35b870}button[data-v-0353c248],input[data-v-0353c248]{outline:none}input[type=text][data-v-0353c248]:hover,textarea[data-v-0353c248]:hover{border:1px solid #9cdfb0}ul[data-v-0353c248]{margin:0;padding:0;list-style:none}a[data-v-0353c248]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0353c248]:hover{color:#35b870}[data-v-0353c248]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0353c248]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0353c248]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0353c248]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-0353c248]{color:#ad1717}body[data-v-0353c248]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0353c248] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0353c248] .nav .path{cursor:pointer}.browser[data-v-0353c248] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0353c248] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-0353c248]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-0353c248]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0353c248],input[type=number][data-v-0353c248],input[type=password][data-v-0353c248],input[type=search][data-v-0353c248],input[type=text][data-v-0353c248],input[type=time][data-v-0353c248]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-0353c248]:hover,input[type=number][data-v-0353c248]:hover,input[type=password][data-v-0353c248]:hover,input[type=search][data-v-0353c248]:hover,input[type=text][data-v-0353c248]:hover,input[type=time][data-v-0353c248]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0353c248]:focus,input[type=number][data-v-0353c248]:focus,input[type=password][data-v-0353c248]:focus,input[type=search][data-v-0353c248]:focus,input[type=text][data-v-0353c248]:focus,input[type=time][data-v-0353c248]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0353c248],input[type=number].with-icon[data-v-0353c248],input[type=password].with-icon[data-v-0353c248],input[type=search].with-icon[data-v-0353c248],input[type=text].with-icon[data-v-0353c248],input[type=time].with-icon[data-v-0353c248]{padding-left:.3em}input[type=search][data-v-0353c248],input[type=text][data-v-0353c248]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0353c248]{animation-fill-mode:both;animation-name:fadeIn-0353c248;-webkit-animation-name:fadeIn-0353c248}.fade-in[data-v-0353c248],.fade-out[data-v-0353c248]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0353c248]{animation-fill-mode:both;animation-name:fadeOut-0353c248;-webkit-animation-name:fadeOut-0353c248}.expand[data-v-0353c248]{animation-fill-mode:both;animation-name:expand-0353c248;-webkit-animation-name:expand-0353c248}.expand[data-v-0353c248],.shrink[data-v-0353c248]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-0353c248]{animation-fill-mode:both;animation-name:shrink-0353c248;-webkit-animation-name:shrink-0353c248}.fold[data-v-0353c248]{animation-fill-mode:both;animation-name:fold-0353c248;-webkit-animation-name:fold-0353c248}.fold[data-v-0353c248],.unfold[data-v-0353c248]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-0353c248]{animation-fill-mode:both;animation-name:unfold-0353c248;-webkit-animation-name:unfold-0353c248}.dim[data-v-0353c248]{animation-fill-mode:both;animation-name:dim-0353c248;-webkit-animation-name:dim-0353c248}.brighten[data-v-0353c248],.dim[data-v-0353c248]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-0353c248]{animation-fill-mode:both;animation-name:brighten-0353c248;-webkit-animation-name:brighten-0353c248}@keyframes fadeIn-0353c248{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0353c248{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-0353c248{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-0353c248{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-0353c248{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-0353c248{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-0353c248{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-0353c248{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-0353c248]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0353c248;-webkit-animation-name:glow-0353c248}.loop[data-v-0353c248]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0353c248{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0353c248]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0353c248]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0353c248]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.extension-icon img[data-v-0353c248]{width:100%;height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6281.cdb5d498.css b/platypush/backend/http/webapp/dist/static/css/6281.cdb5d498.css deleted file mode 100644 index 527608ba74..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/6281.cdb5d498.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f812ef1c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f812ef1c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f812ef1c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f812ef1c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f812ef1c]:first-child{margin-left:26%!important}.col-offset-3[data-v-f812ef1c]:not(first-child){margin-left:30%!important}.col-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f812ef1c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f812ef1c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f812ef1c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f812ef1c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f812ef1c]:first-child{margin-left:52%!important}.col-offset-6[data-v-f812ef1c]:not(first-child){margin-left:56%!important}.col-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f812ef1c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f812ef1c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f812ef1c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f812ef1c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f812ef1c]:first-child{margin-left:78%!important}.col-offset-9[data-v-f812ef1c]:not(first-child){margin-left:82%!important}.col-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f812ef1c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f812ef1c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f812ef1c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f812ef1c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-1[data-v-f812ef1c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-2[data-v-f812ef1c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-3[data-v-f812ef1c]{margin-left:26%}.col-no-margin-s-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-4[data-v-f812ef1c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-5[data-v-f812ef1c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-6[data-v-f812ef1c]{margin-left:52%}.col-no-margin-s-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-7[data-v-f812ef1c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-8[data-v-f812ef1c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-9[data-v-f812ef1c]{margin-left:78%}.col-no-margin-s-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-10[data-v-f812ef1c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-s-11[data-v-f812ef1c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f812ef1c]{display:none!important}.s-visible[data-v-f812ef1c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-1[data-v-f812ef1c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-2[data-v-f812ef1c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-3[data-v-f812ef1c]{margin-left:26%}.col-no-margin-m-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-4[data-v-f812ef1c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-5[data-v-f812ef1c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-6[data-v-f812ef1c]{margin-left:52%}.col-no-margin-m-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-7[data-v-f812ef1c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-8[data-v-f812ef1c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-9[data-v-f812ef1c]{margin-left:78%}.col-no-margin-m-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-10[data-v-f812ef1c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-m-11[data-v-f812ef1c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f812ef1c]{display:none!important}.m-visible[data-v-f812ef1c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-1[data-v-f812ef1c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-2[data-v-f812ef1c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-3[data-v-f812ef1c]{margin-left:26%}.col-no-margin-l-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-4[data-v-f812ef1c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-5[data-v-f812ef1c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-6[data-v-f812ef1c]{margin-left:52%}.col-no-margin-l-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-7[data-v-f812ef1c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-8[data-v-f812ef1c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-9[data-v-f812ef1c]{margin-left:78%}.col-no-margin-l-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-10[data-v-f812ef1c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-l-11[data-v-f812ef1c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f812ef1c]{display:none!important}.l-visible[data-v-f812ef1c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-1[data-v-f812ef1c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-2[data-v-f812ef1c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-3[data-v-f812ef1c]{margin-left:26%}.col-no-margin-xl-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-4[data-v-f812ef1c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-5[data-v-f812ef1c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-6[data-v-f812ef1c]{margin-left:52%}.col-no-margin-xl-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-7[data-v-f812ef1c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-8[data-v-f812ef1c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-9[data-v-f812ef1c]{margin-left:78%}.col-no-margin-xl-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-10[data-v-f812ef1c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xl-11[data-v-f812ef1c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f812ef1c]{display:none!important}.xl-visible[data-v-f812ef1c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f812ef1c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f812ef1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f812ef1c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f812ef1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f812ef1c]{margin-left:26%}.col-no-margin-xxl-3[data-v-f812ef1c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f812ef1c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f812ef1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f812ef1c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f812ef1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f812ef1c]{margin-left:52%}.col-no-margin-xxl-6[data-v-f812ef1c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f812ef1c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f812ef1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f812ef1c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f812ef1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f812ef1c]{margin-left:78%}.col-no-margin-xxl-9[data-v-f812ef1c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f812ef1c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f812ef1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f812ef1c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f812ef1c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f812ef1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f812ef1c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f812ef1c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f812ef1c]{display:none!important}.xxl-visible[data-v-f812ef1c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f812ef1c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f812ef1c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f812ef1c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f812ef1c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f812ef1c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f812ef1c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f812ef1c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f812ef1c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f812ef1c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f812ef1c]{display:none!important}}.vertical-center[data-v-f812ef1c]{display:flex;align-items:center}.horizontal-center[data-v-f812ef1c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f812ef1c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f812ef1c]{display:none!important}.no-content[data-v-f812ef1c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f812ef1c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f812ef1c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f812ef1c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f812ef1c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f812ef1c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f812ef1c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f812ef1c],.btn[data-v-f812ef1c],button[data-v-f812ef1c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f812ef1c],.btn-default[type=submit][data-v-f812ef1c],.btn.btn-primary[data-v-f812ef1c],.btn[type=submit][data-v-f812ef1c],button.btn-primary[data-v-f812ef1c],button[type=submit][data-v-f812ef1c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f812ef1c],.btn-default .icon[data-v-f812ef1c],button .icon[data-v-f812ef1c]{margin-right:.5em}input[type=password][data-v-f812ef1c],input[type=text][data-v-f812ef1c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f812ef1c]:focus,input[type=text][data-v-f812ef1c]:focus{border:1px solid #35b870}button[data-v-f812ef1c],input[data-v-f812ef1c]{outline:none}input[type=text][data-v-f812ef1c]:hover,textarea[data-v-f812ef1c]:hover{border:1px solid #9cdfb0}ul[data-v-f812ef1c]{margin:0;padding:0;list-style:none}a[data-v-f812ef1c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f812ef1c]:hover{color:#35b870}[data-v-f812ef1c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f812ef1c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f812ef1c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f812ef1c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f812ef1c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f812ef1c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f812ef1c] .nav .path{cursor:pointer}.browser[data-v-f812ef1c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f812ef1c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-f812ef1c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f812ef1c],input[type=number][data-v-f812ef1c],input[type=password][data-v-f812ef1c],input[type=search][data-v-f812ef1c],input[type=text][data-v-f812ef1c],input[type=time][data-v-f812ef1c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-f812ef1c]:hover,input[type=number][data-v-f812ef1c]:hover,input[type=password][data-v-f812ef1c]:hover,input[type=search][data-v-f812ef1c]:hover,input[type=text][data-v-f812ef1c]:hover,input[type=time][data-v-f812ef1c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f812ef1c]:focus,input[type=number][data-v-f812ef1c]:focus,input[type=password][data-v-f812ef1c]:focus,input[type=search][data-v-f812ef1c]:focus,input[type=text][data-v-f812ef1c]:focus,input[type=time][data-v-f812ef1c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f812ef1c],input[type=number].with-icon[data-v-f812ef1c],input[type=password].with-icon[data-v-f812ef1c],input[type=search].with-icon[data-v-f812ef1c],input[type=text].with-icon[data-v-f812ef1c],input[type=time].with-icon[data-v-f812ef1c]{padding-left:.3em}input[type=search][data-v-f812ef1c],input[type=text][data-v-f812ef1c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f812ef1c]{animation-fill-mode:both;animation-name:fadeIn-f812ef1c;-webkit-animation-name:fadeIn-f812ef1c}.fade-in[data-v-f812ef1c],.fade-out[data-v-f812ef1c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f812ef1c]{animation-fill-mode:both;animation-name:fadeOut-f812ef1c;-webkit-animation-name:fadeOut-f812ef1c}@keyframes fadeIn-f812ef1c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f812ef1c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-f812ef1c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f812ef1c;-webkit-animation-name:glow-f812ef1c}.loop[data-v-f812ef1c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f812ef1c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f812ef1c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f812ef1c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f812ef1c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.floating-btn[data-v-f812ef1c]{position:absolute;bottom:0;right:0;margin:auto 1em 1em auto}.floating-btn button[data-v-f812ef1c]{background:linear-gradient(90deg,#09ae80,#47e2b3 120%)!important;color:#fff!important;width:4em;height:4em;border-radius:2em;border:none!important;padding:0;box-shadow:2.5px 2.5px 3px 0 silver}.floating-btn button[data-v-f812ef1c]:hover{background:linear-gradient(90deg,#29d89f,#09bc8a 70%)!important}.floating-btn[data-v-f812ef1c] button .icon-container{width:4em}.floating-btn[data-v-f812ef1c] button .icon-container .icon{margin:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6324.0166f2db.css b/platypush/backend/http/webapp/dist/static/css/6324.611abb15.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/6324.0166f2db.css rename to platypush/backend/http/webapp/dist/static/css/6324.611abb15.css index 9e64fe2160..47e93dac54 100644 --- a/platypush/backend/http/webapp/dist/static/css/6324.0166f2db.css +++ b/platypush/backend/http/webapp/dist/static/css/6324.611abb15.css @@ -1 +1 @@ -.col-1[data-v-31c67fb5],.entity .head .icon[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-31c67fb5]:first-child,.entity .head .icon[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-31c67fb5]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-31c67fb5]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-31c67fb5]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-31c67fb5]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-31c67fb5],.entity .head .value-and-toggler[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-31c67fb5]:first-child,.entity .head .value-and-toggler[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-31c67fb5]:first-child{margin-left:26%!important}.col-offset-3[data-v-31c67fb5]:not(first-child){margin-left:30%!important}.col-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-31c67fb5]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-31c67fb5]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-31c67fb5]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-31c67fb5]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-31c67fb5]:first-child{margin-left:52%!important}.col-offset-6[data-v-31c67fb5]:not(first-child){margin-left:56%!important}.col-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-31c67fb5]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-31c67fb5]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-31c67fb5]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-31c67fb5]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-31c67fb5]:first-child{margin-left:78%!important}.col-offset-9[data-v-31c67fb5]:not(first-child){margin-left:82%!important}.col-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-31c67fb5]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-31c67fb5]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-31c67fb5]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-31c67fb5]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-31c67fb5],.entity .head .value-container[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-31c67fb5]:first-child,.entity .head .value-container[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-s-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-s-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-31c67fb5],.entity .head .label[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-31c67fb5]:first-child,.entity .head .label[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-s-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-31c67fb5],.attributes .child .value[data-v-31c67fb5],.col-s-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-31c67fb5]:first-child,.attributes .child .value[data-v-31c67fb5]:first-child,.col-s-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-s-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-31c67fb5]{display:none!important}.s-visible[data-v-31c67fb5]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-31c67fb5],.entity .head .value-container[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-31c67fb5]:first-child,.entity .head .value-container[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-m-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-31c67fb5],.attributes .child .value[data-v-31c67fb5],.col-m-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-31c67fb5]:first-child,.attributes .child .value[data-v-31c67fb5]:first-child,.col-m-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-m-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-31c67fb5],.entity .head .label[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-31c67fb5]:first-child,.entity .head .label[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-m-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-m-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-31c67fb5]{display:none!important}.m-visible[data-v-31c67fb5]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-l-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-l-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-l-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-l-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-31c67fb5]{display:none!important}.l-visible[data-v-31c67fb5]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-xl-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-xl-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-xl-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-31c67fb5]{display:none!important}.xl-visible[data-v-31c67fb5]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-xxl-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-xxl-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-xxl-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-31c67fb5]{display:none!important}.xxl-visible[data-v-31c67fb5]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-31c67fb5]{display:none!important}}.vertical-center[data-v-31c67fb5]{display:flex;align-items:center}.horizontal-center[data-v-31c67fb5]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-31c67fb5],.pull-right[data-v-31c67fb5]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-31c67fb5]{display:none!important}.no-content[data-v-31c67fb5]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-31c67fb5]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-31c67fb5]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-31c67fb5]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-31c67fb5]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-31c67fb5]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-31c67fb5]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-31c67fb5],.btn[data-v-31c67fb5],button[data-v-31c67fb5]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-31c67fb5],.btn-default[type=submit][data-v-31c67fb5],.btn.btn-primary[data-v-31c67fb5],.btn[type=submit][data-v-31c67fb5],button.btn-primary[data-v-31c67fb5],button[type=submit][data-v-31c67fb5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-31c67fb5],.btn-default .icon[data-v-31c67fb5],button .icon[data-v-31c67fb5]{margin-right:.5em}input[type=password][data-v-31c67fb5],input[type=text][data-v-31c67fb5]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-31c67fb5]:focus,input[type=text][data-v-31c67fb5]:focus{border:1px solid #35b870}button[data-v-31c67fb5],input[data-v-31c67fb5]{outline:none}input[type=text][data-v-31c67fb5]:hover,textarea[data-v-31c67fb5]:hover{border:1px solid #9cdfb0}ul[data-v-31c67fb5]{margin:0;padding:0;list-style:none}a[data-v-31c67fb5]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-31c67fb5]:hover{color:#35b870}[data-v-31c67fb5]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-31c67fb5]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-31c67fb5]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-31c67fb5]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-31c67fb5]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-31c67fb5] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-31c67fb5] .nav .path{cursor:pointer}.browser[data-v-31c67fb5] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-31c67fb5] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-31c67fb5]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-31c67fb5],input[type=number][data-v-31c67fb5],input[type=password][data-v-31c67fb5],input[type=search][data-v-31c67fb5],input[type=text][data-v-31c67fb5],input[type=time][data-v-31c67fb5]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-31c67fb5]:hover,input[type=number][data-v-31c67fb5]:hover,input[type=password][data-v-31c67fb5]:hover,input[type=search][data-v-31c67fb5]:hover,input[type=text][data-v-31c67fb5]:hover,input[type=time][data-v-31c67fb5]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-31c67fb5]:focus,input[type=number][data-v-31c67fb5]:focus,input[type=password][data-v-31c67fb5]:focus,input[type=search][data-v-31c67fb5]:focus,input[type=text][data-v-31c67fb5]:focus,input[type=time][data-v-31c67fb5]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-31c67fb5],input[type=number].with-icon[data-v-31c67fb5],input[type=password].with-icon[data-v-31c67fb5],input[type=search].with-icon[data-v-31c67fb5],input[type=text].with-icon[data-v-31c67fb5],input[type=time].with-icon[data-v-31c67fb5]{padding-left:.3em}input[type=search][data-v-31c67fb5],input[type=text][data-v-31c67fb5]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-31c67fb5],.fade-in[data-v-31c67fb5]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-31c67fb5;-webkit-animation-name:fadeIn-31c67fb5}.fade-out[data-v-31c67fb5]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-31c67fb5;-webkit-animation-name:fadeOut-31c67fb5}@keyframes fadeIn-31c67fb5{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-31c67fb5{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-31c67fb5]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-31c67fb5;-webkit-animation-name:glow-31c67fb5}.loop[data-v-31c67fb5]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-31c67fb5{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-31c67fb5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-31c67fb5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-31c67fb5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-31c67fb5]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-31c67fb5]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-31c67fb5]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-31c67fb5]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-31c67fb5]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-31c67fb5]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-31c67fb5]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-31c67fb5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-31c67fb5]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-31c67fb5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-31c67fb5]{margin-right:.5em}.entity .head .icon[data-v-31c67fb5]:hover{color:#35b870}.entity .head .label[data-v-31c67fb5]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-31c67fb5]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-31c67fb5]:hover{color:#35b870}.entity .head .value[data-v-31c67fb5]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-31c67fb5]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-31c67fb5]{margin-right:2.5em}.entity .head .value-container[data-v-31c67fb5]{min-width:7em}.entity .head .unit[data-v-31c67fb5]{margin-left:.2em}.entity .head .pull-right[data-v-31c67fb5],.entity .head .value-container[data-v-31c67fb5]{padding-right:.5em}.entity .head .pull-right[data-v-31c67fb5] .power-switch,.entity .head .value-container[data-v-31c67fb5] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-31c67fb5]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-31c67fb5]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-31c67fb5]:hover{color:#35b870}.collapse-toggler[data-v-31c67fb5]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-31c67fb5]:hover{color:#35b870}.attributes .child[data-v-31c67fb5]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-31c67fb5]{flex-direction:column}}.attributes .child[data-v-31c67fb5]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-31c67fb5]:hover{cursor:auto}.attributes .child.head[data-v-31c67fb5]{cursor:pointer}.attributes .child.head[data-v-31c67fb5]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-31c67fb5]{font-weight:700}.attributes .child .value[data-v-31c67fb5]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-31c67fb5]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-31c67fb5]:last-child,.entity-container-wrapper.with-children[data-v-31c67fb5]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-31c67fb5]{animation:blink-animation-31c67fb5 1s steps(20,start)}@keyframes blink-animation-31c67fb5{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.variable-container .head .collapse-toggler[data-v-31c67fb5],.variable-container .head .icon[data-v-31c67fb5]{width:2em}.variable-container .head .label[data-v-31c67fb5],.variable-container .head .value-and-toggler[data-v-31c67fb5]{min-width:calc(50% - 3em);max-width:calc(50% - 3em)}.variable-container .head .label[data-v-31c67fb5]{margin-left:1em}.variable-container .head .value-and-toggler[data-v-31c67fb5]{text-align:right}.variable-container form .row input[type=text][data-v-31c67fb5],.variable-container form .row[data-v-31c67fb5],.variable-container form[data-v-31c67fb5]{width:100%} \ No newline at end of file +.col-1[data-v-31c67fb5],.entity .head .icon[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-31c67fb5]:first-child,.entity .head .icon[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-31c67fb5]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-31c67fb5]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-31c67fb5]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-31c67fb5]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-31c67fb5],.entity .head .value-and-toggler[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-31c67fb5]:first-child,.entity .head .value-and-toggler[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-31c67fb5]:first-child{margin-left:26%!important}.col-offset-3[data-v-31c67fb5]:not(first-child){margin-left:30%!important}.col-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-31c67fb5]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-31c67fb5]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-31c67fb5]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-31c67fb5]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-31c67fb5]:first-child{margin-left:52%!important}.col-offset-6[data-v-31c67fb5]:not(first-child){margin-left:56%!important}.col-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-31c67fb5]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-31c67fb5]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-31c67fb5]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-31c67fb5]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-31c67fb5]:first-child{margin-left:78%!important}.col-offset-9[data-v-31c67fb5]:not(first-child){margin-left:82%!important}.col-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-31c67fb5]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-31c67fb5]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-31c67fb5]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-31c67fb5]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-31c67fb5],.entity .head .value-container[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-31c67fb5]:first-child,.entity .head .value-container[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-s-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-s-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-31c67fb5],.entity .head .label[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-31c67fb5]:first-child,.entity .head .label[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-s-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-s-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-31c67fb5],.attributes .child .value[data-v-31c67fb5],.col-s-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-31c67fb5]:first-child,.attributes .child .value[data-v-31c67fb5]:first-child,.col-s-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-s-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-31c67fb5]{display:none!important}.s-visible[data-v-31c67fb5]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-31c67fb5],.entity .head .value-container[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-31c67fb5]:first-child,.entity .head .value-container[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-m-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-31c67fb5],.attributes .child .value[data-v-31c67fb5],.col-m-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-31c67fb5]:first-child,.attributes .child .value[data-v-31c67fb5]:first-child,.col-m-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-m-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-31c67fb5],.entity .head .label[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-31c67fb5]:first-child,.entity .head .label[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-m-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-m-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-m-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-31c67fb5]{display:none!important}.m-visible[data-v-31c67fb5]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-l-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-l-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-l-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-l-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-l-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-31c67fb5]{display:none!important}.l-visible[data-v-31c67fb5]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-xl-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-xl-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-xl-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xl-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-31c67fb5]{display:none!important}.xl-visible[data-v-31c67fb5]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-1[data-v-31c67fb5]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-31c67fb5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-2[data-v-31c67fb5]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-31c67fb5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-3[data-v-31c67fb5]{margin-left:26%}.col-no-margin-xxl-3[data-v-31c67fb5]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-4[data-v-31c67fb5]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-31c67fb5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-5[data-v-31c67fb5]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-31c67fb5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-6[data-v-31c67fb5]{margin-left:52%}.col-no-margin-xxl-6[data-v-31c67fb5]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-7[data-v-31c67fb5]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-31c67fb5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-8[data-v-31c67fb5]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-31c67fb5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-9[data-v-31c67fb5]{margin-left:78%}.col-no-margin-xxl-9[data-v-31c67fb5]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-10[data-v-31c67fb5]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-31c67fb5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-31c67fb5]:first-child{margin-left:0}.col-offset-xxl-11[data-v-31c67fb5]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-31c67fb5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-31c67fb5]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-31c67fb5]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-31c67fb5]{display:none!important}.xxl-visible[data-v-31c67fb5]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-31c67fb5]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-31c67fb5]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-31c67fb5]{display:none!important}}.vertical-center[data-v-31c67fb5]{display:flex;align-items:center}.horizontal-center[data-v-31c67fb5]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-31c67fb5],.pull-right[data-v-31c67fb5]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-31c67fb5]{display:none!important}.no-content[data-v-31c67fb5]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-31c67fb5]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-31c67fb5]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-31c67fb5]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-31c67fb5]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-31c67fb5]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-31c67fb5]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-31c67fb5],.btn[data-v-31c67fb5],button[data-v-31c67fb5]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-31c67fb5],.btn-default[type=submit][data-v-31c67fb5],.btn.btn-primary[data-v-31c67fb5],.btn[type=submit][data-v-31c67fb5],button.btn-primary[data-v-31c67fb5],button[type=submit][data-v-31c67fb5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-31c67fb5]:hover,.btn[data-v-31c67fb5]:hover,button[data-v-31c67fb5]:hover{color:#35b870}.btn .icon[data-v-31c67fb5],.btn-default .icon[data-v-31c67fb5],button .icon[data-v-31c67fb5]{margin-right:.5em}.btn-default[data-v-31c67fb5]:disabled,.btn-default[disabled][data-v-31c67fb5],.btn[data-v-31c67fb5]:disabled,.btn[disabled][data-v-31c67fb5],button[data-v-31c67fb5]:disabled,button[disabled][data-v-31c67fb5]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-31c67fb5]{cursor:grab!important}.dragged[data-v-31c67fb5]{opacity:.5!important}input[type=password][data-v-31c67fb5],input[type=text][data-v-31c67fb5]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-31c67fb5]:focus,input[type=text][data-v-31c67fb5]:focus{border:1px solid #35b870}button[data-v-31c67fb5],input[data-v-31c67fb5]{outline:none}input[type=text][data-v-31c67fb5]:hover,textarea[data-v-31c67fb5]:hover{border:1px solid #9cdfb0}ul[data-v-31c67fb5]{margin:0;padding:0;list-style:none}a[data-v-31c67fb5]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-31c67fb5]:hover{color:#35b870}[data-v-31c67fb5]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-31c67fb5]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-31c67fb5]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-31c67fb5]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-31c67fb5]{color:#ad1717}body[data-v-31c67fb5]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-31c67fb5] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-31c67fb5] .nav .path{cursor:pointer}.browser[data-v-31c67fb5] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-31c67fb5] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-31c67fb5]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-31c67fb5]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-31c67fb5],input[type=number][data-v-31c67fb5],input[type=password][data-v-31c67fb5],input[type=search][data-v-31c67fb5],input[type=text][data-v-31c67fb5],input[type=time][data-v-31c67fb5]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-31c67fb5]:hover,input[type=number][data-v-31c67fb5]:hover,input[type=password][data-v-31c67fb5]:hover,input[type=search][data-v-31c67fb5]:hover,input[type=text][data-v-31c67fb5]:hover,input[type=time][data-v-31c67fb5]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-31c67fb5]:focus,input[type=number][data-v-31c67fb5]:focus,input[type=password][data-v-31c67fb5]:focus,input[type=search][data-v-31c67fb5]:focus,input[type=text][data-v-31c67fb5]:focus,input[type=time][data-v-31c67fb5]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-31c67fb5],input[type=number].with-icon[data-v-31c67fb5],input[type=password].with-icon[data-v-31c67fb5],input[type=search].with-icon[data-v-31c67fb5],input[type=text].with-icon[data-v-31c67fb5],input[type=time].with-icon[data-v-31c67fb5]{padding-left:.3em}input[type=search][data-v-31c67fb5],input[type=text][data-v-31c67fb5]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-31c67fb5],.fade-in[data-v-31c67fb5]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-31c67fb5;-webkit-animation-name:fadeIn-31c67fb5}.fade-out[data-v-31c67fb5]{animation-fill-mode:both;animation-name:fadeOut-31c67fb5;-webkit-animation-name:fadeOut-31c67fb5}.expand[data-v-31c67fb5],.fade-out[data-v-31c67fb5]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-31c67fb5]{animation-fill-mode:both;animation-name:expand-31c67fb5;-webkit-animation-name:expand-31c67fb5}.shrink[data-v-31c67fb5]{animation-fill-mode:both;animation-name:shrink-31c67fb5;-webkit-animation-name:shrink-31c67fb5}.fold[data-v-31c67fb5],.shrink[data-v-31c67fb5]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-31c67fb5]{animation-fill-mode:both;animation-name:fold-31c67fb5;-webkit-animation-name:fold-31c67fb5}.unfold[data-v-31c67fb5]{animation-fill-mode:both;animation-name:unfold-31c67fb5;-webkit-animation-name:unfold-31c67fb5}.dim[data-v-31c67fb5],.unfold[data-v-31c67fb5]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-31c67fb5]{animation-fill-mode:both;animation-name:dim-31c67fb5;-webkit-animation-name:dim-31c67fb5}.brighten[data-v-31c67fb5]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-31c67fb5;-webkit-animation-name:brighten-31c67fb5}@keyframes fadeIn-31c67fb5{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-31c67fb5{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-31c67fb5{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-31c67fb5{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-31c67fb5{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-31c67fb5{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-31c67fb5{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-31c67fb5{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-31c67fb5]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-31c67fb5;-webkit-animation-name:glow-31c67fb5}.loop[data-v-31c67fb5]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-31c67fb5{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-31c67fb5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-31c67fb5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-31c67fb5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-31c67fb5]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-31c67fb5]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-31c67fb5]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-31c67fb5]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-31c67fb5]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-31c67fb5]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-31c67fb5]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-31c67fb5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-31c67fb5]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-31c67fb5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-31c67fb5]{margin-right:.5em}.entity .head .icon[data-v-31c67fb5]:hover{color:#35b870}.entity .head .label[data-v-31c67fb5]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-31c67fb5]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-31c67fb5]:hover{color:#35b870}.entity .head .value[data-v-31c67fb5]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-31c67fb5]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-31c67fb5]{margin-right:2.5em}.entity .head .value-container[data-v-31c67fb5]{min-width:7em}.entity .head .unit[data-v-31c67fb5]{margin-left:.2em}.entity .head .pull-right[data-v-31c67fb5],.entity .head .value-container[data-v-31c67fb5]{padding-right:.5em}.entity .head .pull-right[data-v-31c67fb5] .power-switch,.entity .head .value-container[data-v-31c67fb5] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-31c67fb5]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-31c67fb5]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-31c67fb5]:hover{color:#35b870}.collapse-toggler[data-v-31c67fb5]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-31c67fb5]:hover{color:#35b870}.attributes .child[data-v-31c67fb5]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-31c67fb5]{flex-direction:column}}.attributes .child[data-v-31c67fb5]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-31c67fb5]:hover{cursor:auto}.attributes .child.head[data-v-31c67fb5]{cursor:pointer}.attributes .child.head[data-v-31c67fb5]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-31c67fb5]{font-weight:700}.attributes .child .value[data-v-31c67fb5]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-31c67fb5]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-31c67fb5]:last-child,.entity-container-wrapper.with-children[data-v-31c67fb5]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-31c67fb5]{animation:blink-animation-31c67fb5 1s steps(20,start)}@keyframes blink-animation-31c67fb5{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.variable-container .head .collapse-toggler[data-v-31c67fb5],.variable-container .head .icon[data-v-31c67fb5]{width:2em}.variable-container .head .label[data-v-31c67fb5],.variable-container .head .value-and-toggler[data-v-31c67fb5]{min-width:calc(50% - 3em);max-width:calc(50% - 3em)}.variable-container .head .label[data-v-31c67fb5]{margin-left:1em}.variable-container .head .value-and-toggler[data-v-31c67fb5]{text-align:right}.variable-container form .row input[type=text][data-v-31c67fb5],.variable-container form .row[data-v-31c67fb5],.variable-container form[data-v-31c67fb5]{width:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6429.44836618.css b/platypush/backend/http/webapp/dist/static/css/6429.44836618.css new file mode 100644 index 0000000000..20ebd5e27e --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6429.44836618.css @@ -0,0 +1 @@ +.col-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-8eed74b0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-8eed74b0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-8eed74b0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-8eed74b0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-8eed74b0]:first-child{margin-left:26%!important}.col-offset-3[data-v-8eed74b0]:not(first-child){margin-left:30%!important}.col-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-8eed74b0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-8eed74b0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-8eed74b0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-8eed74b0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-8eed74b0]:first-child{margin-left:52%!important}.col-offset-6[data-v-8eed74b0]:not(first-child){margin-left:56%!important}.col-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-8eed74b0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-8eed74b0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-8eed74b0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-8eed74b0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-8eed74b0]:first-child{margin-left:78%!important}.col-offset-9[data-v-8eed74b0]:not(first-child){margin-left:82%!important}.col-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-8eed74b0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-8eed74b0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-8eed74b0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-8eed74b0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-s-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-s-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-s-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-8eed74b0]{display:none!important}.s-visible[data-v-8eed74b0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-m-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-m-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-m-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-8eed74b0]{display:none!important}.m-visible[data-v-8eed74b0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-l-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-l-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-l-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-8eed74b0]{display:none!important}.l-visible[data-v-8eed74b0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-xl-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-xl-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-xl-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-8eed74b0]{display:none!important}.xl-visible[data-v-8eed74b0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-xxl-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-xxl-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-xxl-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-8eed74b0]{display:none!important}.xxl-visible[data-v-8eed74b0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-8eed74b0]{display:none!important}}.vertical-center[data-v-8eed74b0]{display:flex;align-items:center}.horizontal-center[data-v-8eed74b0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-8eed74b0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-8eed74b0]{display:none!important}.no-content[data-v-8eed74b0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-8eed74b0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-8eed74b0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-8eed74b0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-8eed74b0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-8eed74b0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-8eed74b0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-8eed74b0],.btn[data-v-8eed74b0],button[data-v-8eed74b0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-8eed74b0],.btn-default[type=submit][data-v-8eed74b0],.btn.btn-primary[data-v-8eed74b0],.btn[type=submit][data-v-8eed74b0],button.btn-primary[data-v-8eed74b0],button[type=submit][data-v-8eed74b0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-8eed74b0]:hover,.btn[data-v-8eed74b0]:hover,button[data-v-8eed74b0]:hover{color:#35b870}.btn .icon[data-v-8eed74b0],.btn-default .icon[data-v-8eed74b0],button .icon[data-v-8eed74b0]{margin-right:.5em}.btn-default[data-v-8eed74b0]:disabled,.btn-default[disabled][data-v-8eed74b0],.btn[data-v-8eed74b0]:disabled,.btn[disabled][data-v-8eed74b0],button[data-v-8eed74b0]:disabled,button[disabled][data-v-8eed74b0]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-8eed74b0]{cursor:grab!important}.dragged[data-v-8eed74b0]{opacity:.5!important}input[type=password][data-v-8eed74b0],input[type=text][data-v-8eed74b0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-8eed74b0]:focus,input[type=text][data-v-8eed74b0]:focus{border:1px solid #35b870}button[data-v-8eed74b0],input[data-v-8eed74b0]{outline:none}input[type=text][data-v-8eed74b0]:hover,textarea[data-v-8eed74b0]:hover{border:1px solid #9cdfb0}ul[data-v-8eed74b0]{margin:0;padding:0;list-style:none}a[data-v-8eed74b0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-8eed74b0]:hover{color:#35b870}[data-v-8eed74b0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-8eed74b0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-8eed74b0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-8eed74b0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-8eed74b0]{color:#ad1717}body[data-v-8eed74b0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-8eed74b0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-8eed74b0] .nav .path{cursor:pointer}.browser[data-v-8eed74b0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-8eed74b0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-8eed74b0]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-8eed74b0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-8eed74b0],input[type=number][data-v-8eed74b0],input[type=password][data-v-8eed74b0],input[type=search][data-v-8eed74b0],input[type=text][data-v-8eed74b0],input[type=time][data-v-8eed74b0]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-8eed74b0]:hover,input[type=number][data-v-8eed74b0]:hover,input[type=password][data-v-8eed74b0]:hover,input[type=search][data-v-8eed74b0]:hover,input[type=text][data-v-8eed74b0]:hover,input[type=time][data-v-8eed74b0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-8eed74b0]:focus,input[type=number][data-v-8eed74b0]:focus,input[type=password][data-v-8eed74b0]:focus,input[type=search][data-v-8eed74b0]:focus,input[type=text][data-v-8eed74b0]:focus,input[type=time][data-v-8eed74b0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-8eed74b0],input[type=number].with-icon[data-v-8eed74b0],input[type=password].with-icon[data-v-8eed74b0],input[type=search].with-icon[data-v-8eed74b0],input[type=text].with-icon[data-v-8eed74b0],input[type=time].with-icon[data-v-8eed74b0]{padding-left:.3em}input[type=search][data-v-8eed74b0],input[type=text][data-v-8eed74b0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-8eed74b0]{animation-fill-mode:both;animation-name:fadeIn-8eed74b0;-webkit-animation-name:fadeIn-8eed74b0}.fade-in[data-v-8eed74b0],.fade-out[data-v-8eed74b0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-8eed74b0]{animation-fill-mode:both;animation-name:fadeOut-8eed74b0;-webkit-animation-name:fadeOut-8eed74b0}.expand[data-v-8eed74b0]{animation-fill-mode:both;animation-name:expand-8eed74b0;-webkit-animation-name:expand-8eed74b0}.expand[data-v-8eed74b0],.shrink[data-v-8eed74b0]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-8eed74b0]{animation-fill-mode:both;animation-name:shrink-8eed74b0;-webkit-animation-name:shrink-8eed74b0}.fold[data-v-8eed74b0]{animation-fill-mode:both;animation-name:fold-8eed74b0;-webkit-animation-name:fold-8eed74b0}.fold[data-v-8eed74b0],.unfold[data-v-8eed74b0]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-8eed74b0]{animation-fill-mode:both;animation-name:unfold-8eed74b0;-webkit-animation-name:unfold-8eed74b0}.dim[data-v-8eed74b0]{animation-fill-mode:both;animation-name:dim-8eed74b0;-webkit-animation-name:dim-8eed74b0}.brighten[data-v-8eed74b0],.dim[data-v-8eed74b0]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-8eed74b0]{animation-fill-mode:both;animation-name:brighten-8eed74b0;-webkit-animation-name:brighten-8eed74b0}@keyframes fadeIn-8eed74b0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-8eed74b0{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-8eed74b0{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-8eed74b0{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-8eed74b0{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-8eed74b0{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-8eed74b0{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-8eed74b0{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-8eed74b0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-8eed74b0;-webkit-animation-name:glow-8eed74b0}.loop[data-v-8eed74b0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-8eed74b0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-8eed74b0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-8eed74b0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-8eed74b0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.info[data-v-8eed74b0]{min-width:50vw;max-width:800px}.info .row[data-v-8eed74b0]{display:flex;align-items:center;margin-bottom:5px;border-bottom:1px solid #e1e4e8}@media screen and (max-width:calc(1024px - 1px)){.info .row[data-v-8eed74b0]{flex-direction:column}}@media screen and (min-width:1024px){.info .row[data-v-8eed74b0]{flex-direction:row}}.info .label[data-v-8eed74b0]{width:10em;font-weight:700;margin-right:5px}.info .value[data-v-8eed74b0]{width:calc(100% - 10em);flex:1;text-align:right}.info .value button[data-v-8eed74b0]{background:none;border:none;cursor:pointer}.info .value button i[data-v-8eed74b0]{font-size:1.2em}.info .value button[data-v-8eed74b0]:hover{color:#35b870}.col-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0ae4cd8d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0ae4cd8d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0ae4cd8d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0ae4cd8d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0ae4cd8d]:first-child{margin-left:26%!important}.col-offset-3[data-v-0ae4cd8d]:not(first-child){margin-left:30%!important}.col-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0ae4cd8d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0ae4cd8d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0ae4cd8d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0ae4cd8d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0ae4cd8d]:first-child{margin-left:52%!important}.col-offset-6[data-v-0ae4cd8d]:not(first-child){margin-left:56%!important}.col-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0ae4cd8d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0ae4cd8d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0ae4cd8d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0ae4cd8d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0ae4cd8d]:first-child{margin-left:78%!important}.col-offset-9[data-v-0ae4cd8d]:not(first-child){margin-left:82%!important}.col-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0ae4cd8d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0ae4cd8d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0ae4cd8d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0ae4cd8d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-s-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-s-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-s-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0ae4cd8d]{display:none!important}.s-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-m-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-m-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-m-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0ae4cd8d]{display:none!important}.m-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-l-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-l-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-l-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0ae4cd8d]{display:none!important}.l-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-xl-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-xl-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-xl-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0ae4cd8d]{display:none!important}.xl-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-xxl-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-xxl-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-xxl-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0ae4cd8d]{display:none!important}.xxl-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0ae4cd8d]{display:none!important}}.vertical-center[data-v-0ae4cd8d]{display:flex;align-items:center}.horizontal-center[data-v-0ae4cd8d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0ae4cd8d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0ae4cd8d]{display:none!important}.no-content[data-v-0ae4cd8d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0ae4cd8d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0ae4cd8d],.btn[data-v-0ae4cd8d],button[data-v-0ae4cd8d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0ae4cd8d],.btn-default[type=submit][data-v-0ae4cd8d],.btn.btn-primary[data-v-0ae4cd8d],.btn[type=submit][data-v-0ae4cd8d],button.btn-primary[data-v-0ae4cd8d],button[type=submit][data-v-0ae4cd8d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-0ae4cd8d]:hover,.btn[data-v-0ae4cd8d]:hover,button[data-v-0ae4cd8d]:hover{color:#35b870}.btn .icon[data-v-0ae4cd8d],.btn-default .icon[data-v-0ae4cd8d],button .icon[data-v-0ae4cd8d]{margin-right:.5em}.btn-default[data-v-0ae4cd8d]:disabled,.btn-default[disabled][data-v-0ae4cd8d],.btn[data-v-0ae4cd8d]:disabled,.btn[disabled][data-v-0ae4cd8d],button[data-v-0ae4cd8d]:disabled,button[disabled][data-v-0ae4cd8d]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-0ae4cd8d]{cursor:grab!important}.dragged[data-v-0ae4cd8d]{opacity:.5!important}input[type=password][data-v-0ae4cd8d],input[type=text][data-v-0ae4cd8d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0ae4cd8d]:focus,input[type=text][data-v-0ae4cd8d]:focus{border:1px solid #35b870}button[data-v-0ae4cd8d],input[data-v-0ae4cd8d]{outline:none}input[type=text][data-v-0ae4cd8d]:hover,textarea[data-v-0ae4cd8d]:hover{border:1px solid #9cdfb0}ul[data-v-0ae4cd8d]{margin:0;padding:0;list-style:none}a[data-v-0ae4cd8d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0ae4cd8d]:hover{color:#35b870}[data-v-0ae4cd8d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0ae4cd8d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0ae4cd8d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0ae4cd8d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-0ae4cd8d]{color:#ad1717}body[data-v-0ae4cd8d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0ae4cd8d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0ae4cd8d] .nav .path{cursor:pointer}.browser[data-v-0ae4cd8d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0ae4cd8d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-0ae4cd8d]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-0ae4cd8d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0ae4cd8d],input[type=number][data-v-0ae4cd8d],input[type=password][data-v-0ae4cd8d],input[type=search][data-v-0ae4cd8d],input[type=text][data-v-0ae4cd8d],input[type=time][data-v-0ae4cd8d]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-0ae4cd8d]:hover,input[type=number][data-v-0ae4cd8d]:hover,input[type=password][data-v-0ae4cd8d]:hover,input[type=search][data-v-0ae4cd8d]:hover,input[type=text][data-v-0ae4cd8d]:hover,input[type=time][data-v-0ae4cd8d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0ae4cd8d]:focus,input[type=number][data-v-0ae4cd8d]:focus,input[type=password][data-v-0ae4cd8d]:focus,input[type=search][data-v-0ae4cd8d]:focus,input[type=text][data-v-0ae4cd8d]:focus,input[type=time][data-v-0ae4cd8d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0ae4cd8d],input[type=number].with-icon[data-v-0ae4cd8d],input[type=password].with-icon[data-v-0ae4cd8d],input[type=search].with-icon[data-v-0ae4cd8d],input[type=text].with-icon[data-v-0ae4cd8d],input[type=time].with-icon[data-v-0ae4cd8d]{padding-left:.3em}input[type=search][data-v-0ae4cd8d],input[type=text][data-v-0ae4cd8d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:fadeIn-0ae4cd8d;-webkit-animation-name:fadeIn-0ae4cd8d}.fade-in[data-v-0ae4cd8d],.fade-out[data-v-0ae4cd8d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:fadeOut-0ae4cd8d;-webkit-animation-name:fadeOut-0ae4cd8d}.expand[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:expand-0ae4cd8d;-webkit-animation-name:expand-0ae4cd8d}.expand[data-v-0ae4cd8d],.shrink[data-v-0ae4cd8d]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:shrink-0ae4cd8d;-webkit-animation-name:shrink-0ae4cd8d}.fold[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:fold-0ae4cd8d;-webkit-animation-name:fold-0ae4cd8d}.fold[data-v-0ae4cd8d],.unfold[data-v-0ae4cd8d]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:unfold-0ae4cd8d;-webkit-animation-name:unfold-0ae4cd8d}.dim[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:dim-0ae4cd8d;-webkit-animation-name:dim-0ae4cd8d}.brighten[data-v-0ae4cd8d],.dim[data-v-0ae4cd8d]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:brighten-0ae4cd8d;-webkit-animation-name:brighten-0ae4cd8d}@keyframes fadeIn-0ae4cd8d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0ae4cd8d{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-0ae4cd8d{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-0ae4cd8d{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-0ae4cd8d{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-0ae4cd8d{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-0ae4cd8d{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-0ae4cd8d{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-0ae4cd8d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0ae4cd8d;-webkit-animation-name:glow-0ae4cd8d}.loop[data-v-0ae4cd8d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0ae4cd8d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0ae4cd8d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0ae4cd8d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0ae4cd8d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-0ae4cd8d]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header .row[data-v-0ae4cd8d]{display:flex;align-items:center}.header .side[data-v-0ae4cd8d]{display:inline-flex;align-items:center}.header .side.right[data-v-0ae4cd8d]{position:absolute;font-size:1.1em;right:.7em;justify-content:right}.header[data-v-0ae4cd8d] button{background:none;padding:0 .25em;border:0}.header[data-v-0ae4cd8d] button:hover{color:#38cf80}.header form[data-v-0ae4cd8d]{width:100%;display:flex;padding:0;border:0;border-radius:0;box-shadow:none;background:initial}.header .button-container[data-v-0ae4cd8d]{width:3em;position:relative;padding:0}.header[data-v-0ae4cd8d] .loading{width:5em;font-size:1em;left:-.5em;border-radius:0 1em 1em 0}.header [type=submit][data-v-0ae4cd8d]{width:100%;height:100%;background:#f1f3f2;border:1px solid #ddd;border-radius:0 1em 1em 0;margin-left:-.5em;cursor:pointer}.header [type=submit][data-v-0ae4cd8d]:hover{background:linear-gradient(90deg,#b4f6ee,#dbfff5)}.header .search-box[data-v-0ae4cd8d]{width:100%;max-width:600px;margin-left:.5em}.header .search-box input[type=search][data-v-0ae4cd8d]{width:100%}.col-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5185ff00]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5185ff00]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5185ff00]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5185ff00]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5185ff00]:first-child{margin-left:26%!important}.col-offset-3[data-v-5185ff00]:not(first-child){margin-left:30%!important}.col-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5185ff00]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5185ff00]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5185ff00]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5185ff00]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5185ff00]:first-child{margin-left:52%!important}.col-offset-6[data-v-5185ff00]:not(first-child){margin-left:56%!important}.col-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5185ff00]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5185ff00]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5185ff00]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5185ff00]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5185ff00]:first-child{margin-left:78%!important}.col-offset-9[data-v-5185ff00]:not(first-child){margin-left:82%!important}.col-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5185ff00]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5185ff00]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5185ff00]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5185ff00]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-s-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-s-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-s-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5185ff00]{display:none!important}.s-visible[data-v-5185ff00]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-m-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-m-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-m-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5185ff00]{display:none!important}.m-visible[data-v-5185ff00]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-l-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-l-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-l-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5185ff00]{display:none!important}.l-visible[data-v-5185ff00]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-xl-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-xl-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-xl-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5185ff00]{display:none!important}.xl-visible[data-v-5185ff00]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-xxl-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-xxl-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-xxl-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5185ff00]{display:none!important}.xxl-visible[data-v-5185ff00]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5185ff00]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5185ff00]{display:none!important}}.vertical-center[data-v-5185ff00]{display:flex;align-items:center}.horizontal-center[data-v-5185ff00]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5185ff00]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5185ff00]{display:none!important}.no-content[data-v-5185ff00]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5185ff00]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5185ff00]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5185ff00]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5185ff00]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5185ff00]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5185ff00]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5185ff00],.btn[data-v-5185ff00],button[data-v-5185ff00]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5185ff00],.btn-default[type=submit][data-v-5185ff00],.btn.btn-primary[data-v-5185ff00],.btn[type=submit][data-v-5185ff00],button.btn-primary[data-v-5185ff00],button[type=submit][data-v-5185ff00]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5185ff00]:hover,.btn[data-v-5185ff00]:hover,button[data-v-5185ff00]:hover{color:#35b870}.btn .icon[data-v-5185ff00],.btn-default .icon[data-v-5185ff00],button .icon[data-v-5185ff00]{margin-right:.5em}.btn-default[data-v-5185ff00]:disabled,.btn-default[disabled][data-v-5185ff00],.btn[data-v-5185ff00]:disabled,.btn[disabled][data-v-5185ff00],button[data-v-5185ff00]:disabled,button[disabled][data-v-5185ff00]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5185ff00]{cursor:grab!important}.dragged[data-v-5185ff00]{opacity:.5!important}input[type=password][data-v-5185ff00],input[type=text][data-v-5185ff00]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5185ff00]:focus,input[type=text][data-v-5185ff00]:focus{border:1px solid #35b870}button[data-v-5185ff00],input[data-v-5185ff00]{outline:none}input[type=text][data-v-5185ff00]:hover,textarea[data-v-5185ff00]:hover{border:1px solid #9cdfb0}ul[data-v-5185ff00]{margin:0;padding:0;list-style:none}a[data-v-5185ff00]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5185ff00]:hover{color:#35b870}[data-v-5185ff00]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5185ff00]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5185ff00]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5185ff00]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5185ff00]{color:#ad1717}body[data-v-5185ff00]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5185ff00] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5185ff00] .nav .path{cursor:pointer}.browser[data-v-5185ff00] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5185ff00] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5185ff00]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5185ff00]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5185ff00],input[type=number][data-v-5185ff00],input[type=password][data-v-5185ff00],input[type=search][data-v-5185ff00],input[type=text][data-v-5185ff00],input[type=time][data-v-5185ff00]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5185ff00]:hover,input[type=number][data-v-5185ff00]:hover,input[type=password][data-v-5185ff00]:hover,input[type=search][data-v-5185ff00]:hover,input[type=text][data-v-5185ff00]:hover,input[type=time][data-v-5185ff00]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5185ff00]:focus,input[type=number][data-v-5185ff00]:focus,input[type=password][data-v-5185ff00]:focus,input[type=search][data-v-5185ff00]:focus,input[type=text][data-v-5185ff00]:focus,input[type=time][data-v-5185ff00]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5185ff00],input[type=number].with-icon[data-v-5185ff00],input[type=password].with-icon[data-v-5185ff00],input[type=search].with-icon[data-v-5185ff00],input[type=text].with-icon[data-v-5185ff00],input[type=time].with-icon[data-v-5185ff00]{padding-left:.3em}input[type=search][data-v-5185ff00],input[type=text][data-v-5185ff00]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5185ff00]{animation-fill-mode:both;animation-name:fadeIn-5185ff00;-webkit-animation-name:fadeIn-5185ff00}.fade-in[data-v-5185ff00],.fade-out[data-v-5185ff00]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5185ff00]{animation-fill-mode:both;animation-name:fadeOut-5185ff00;-webkit-animation-name:fadeOut-5185ff00}.expand[data-v-5185ff00]{animation-fill-mode:both;animation-name:expand-5185ff00;-webkit-animation-name:expand-5185ff00}.expand[data-v-5185ff00],.shrink[data-v-5185ff00]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-5185ff00]{animation-fill-mode:both;animation-name:shrink-5185ff00;-webkit-animation-name:shrink-5185ff00}.fold[data-v-5185ff00]{animation-fill-mode:both;animation-name:fold-5185ff00;-webkit-animation-name:fold-5185ff00}.fold[data-v-5185ff00],.unfold[data-v-5185ff00]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-5185ff00]{animation-fill-mode:both;animation-name:unfold-5185ff00;-webkit-animation-name:unfold-5185ff00}.dim[data-v-5185ff00]{animation-fill-mode:both;animation-name:dim-5185ff00;-webkit-animation-name:dim-5185ff00}.brighten[data-v-5185ff00],.dim[data-v-5185ff00]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-5185ff00]{animation-fill-mode:both;animation-name:brighten-5185ff00;-webkit-animation-name:brighten-5185ff00}@keyframes fadeIn-5185ff00{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5185ff00{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5185ff00{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5185ff00{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5185ff00{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5185ff00{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5185ff00{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5185ff00{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5185ff00]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5185ff00;-webkit-animation-name:glow-5185ff00}.loop[data-v-5185ff00]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5185ff00{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5185ff00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5185ff00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5185ff00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}nav[data-v-5185ff00]{width:2.8em;height:calc(100% + 3.3em);margin-top:-3.3em;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;box-shadow:2.5px 0 4.5px 2px #5e5e5e;margin-left:2.5px;overflow:hidden}nav .menu-button[data-v-5185ff00]{position:absolute;top:.75em;left:0;width:100%;display:inline-flex;justify-content:center;padding:0;margin:0;font-size:1.2em;border:0;background:none;cursor:pointer;z-index:1}nav .menu-button[data-v-5185ff00]:hover{color:#35b870}nav li[data-v-5185ff00]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7}nav li.selected[data-v-5185ff00],nav li[data-v-5185ff00]:hover{border-radius:1.2em;margin:0 .2em}nav li[data-v-5185ff00]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-5185ff00]{background:rgba(160,245,178,.95)}.col-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-52a230bc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-52a230bc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-52a230bc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-52a230bc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-52a230bc]:first-child{margin-left:26%!important}.col-offset-3[data-v-52a230bc]:not(first-child){margin-left:30%!important}.col-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-52a230bc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-52a230bc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-52a230bc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-52a230bc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-52a230bc]:first-child{margin-left:52%!important}.col-offset-6[data-v-52a230bc]:not(first-child){margin-left:56%!important}.col-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-52a230bc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-52a230bc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-52a230bc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-52a230bc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-52a230bc]:first-child{margin-left:78%!important}.col-offset-9[data-v-52a230bc]:not(first-child){margin-left:82%!important}.col-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-52a230bc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-52a230bc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-52a230bc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-52a230bc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-s-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-s-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-s-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-52a230bc]{display:none!important}.s-visible[data-v-52a230bc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-m-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-m-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-m-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-52a230bc]{display:none!important}.m-visible[data-v-52a230bc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-l-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-l-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-l-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-52a230bc]{display:none!important}.l-visible[data-v-52a230bc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-xl-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-xl-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-xl-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-52a230bc]{display:none!important}.xl-visible[data-v-52a230bc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-xxl-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-xxl-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-xxl-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-52a230bc]{display:none!important}.xxl-visible[data-v-52a230bc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-52a230bc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-52a230bc]{display:none!important}}.vertical-center[data-v-52a230bc]{display:flex;align-items:center}.horizontal-center[data-v-52a230bc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-52a230bc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-52a230bc]{display:none!important}.no-content[data-v-52a230bc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-52a230bc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-52a230bc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-52a230bc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-52a230bc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-52a230bc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-52a230bc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-52a230bc],.btn[data-v-52a230bc],button[data-v-52a230bc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-52a230bc],.btn-default[type=submit][data-v-52a230bc],.btn.btn-primary[data-v-52a230bc],.btn[type=submit][data-v-52a230bc],button.btn-primary[data-v-52a230bc],button[type=submit][data-v-52a230bc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-52a230bc]:hover,.btn[data-v-52a230bc]:hover,button[data-v-52a230bc]:hover{color:#35b870}.btn .icon[data-v-52a230bc],.btn-default .icon[data-v-52a230bc],button .icon[data-v-52a230bc]{margin-right:.5em}.btn-default[data-v-52a230bc]:disabled,.btn-default[disabled][data-v-52a230bc],.btn[data-v-52a230bc]:disabled,.btn[disabled][data-v-52a230bc],button[data-v-52a230bc]:disabled,button[disabled][data-v-52a230bc]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-52a230bc]{cursor:grab!important}.dragged[data-v-52a230bc]{opacity:.5!important}input[type=password][data-v-52a230bc],input[type=text][data-v-52a230bc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-52a230bc]:focus,input[type=text][data-v-52a230bc]:focus{border:1px solid #35b870}button[data-v-52a230bc],input[data-v-52a230bc]{outline:none}input[type=text][data-v-52a230bc]:hover,textarea[data-v-52a230bc]:hover{border:1px solid #9cdfb0}ul[data-v-52a230bc]{margin:0;padding:0;list-style:none}a[data-v-52a230bc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-52a230bc]:hover{color:#35b870}[data-v-52a230bc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-52a230bc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-52a230bc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-52a230bc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-52a230bc]{color:#ad1717}body[data-v-52a230bc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-52a230bc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-52a230bc] .nav .path{cursor:pointer}.browser[data-v-52a230bc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-52a230bc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-52a230bc]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-52a230bc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-52a230bc],input[type=number][data-v-52a230bc],input[type=password][data-v-52a230bc],input[type=search][data-v-52a230bc],input[type=text][data-v-52a230bc],input[type=time][data-v-52a230bc]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-52a230bc]:hover,input[type=number][data-v-52a230bc]:hover,input[type=password][data-v-52a230bc]:hover,input[type=search][data-v-52a230bc]:hover,input[type=text][data-v-52a230bc]:hover,input[type=time][data-v-52a230bc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-52a230bc]:focus,input[type=number][data-v-52a230bc]:focus,input[type=password][data-v-52a230bc]:focus,input[type=search][data-v-52a230bc]:focus,input[type=text][data-v-52a230bc]:focus,input[type=time][data-v-52a230bc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-52a230bc],input[type=number].with-icon[data-v-52a230bc],input[type=password].with-icon[data-v-52a230bc],input[type=search].with-icon[data-v-52a230bc],input[type=text].with-icon[data-v-52a230bc],input[type=time].with-icon[data-v-52a230bc]{padding-left:.3em}input[type=search][data-v-52a230bc],input[type=text][data-v-52a230bc]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-52a230bc]{animation-fill-mode:both;animation-name:fadeIn-52a230bc;-webkit-animation-name:fadeIn-52a230bc}.fade-in[data-v-52a230bc],.fade-out[data-v-52a230bc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-52a230bc]{animation-fill-mode:both;animation-name:fadeOut-52a230bc;-webkit-animation-name:fadeOut-52a230bc}.expand[data-v-52a230bc]{animation-fill-mode:both;animation-name:expand-52a230bc;-webkit-animation-name:expand-52a230bc}.expand[data-v-52a230bc],.shrink[data-v-52a230bc]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-52a230bc]{animation-fill-mode:both;animation-name:shrink-52a230bc;-webkit-animation-name:shrink-52a230bc}.fold[data-v-52a230bc]{animation-fill-mode:both;animation-name:fold-52a230bc;-webkit-animation-name:fold-52a230bc}.fold[data-v-52a230bc],.unfold[data-v-52a230bc]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-52a230bc]{animation-fill-mode:both;animation-name:unfold-52a230bc;-webkit-animation-name:unfold-52a230bc}.dim[data-v-52a230bc]{animation-fill-mode:both;animation-name:dim-52a230bc;-webkit-animation-name:dim-52a230bc}.brighten[data-v-52a230bc],.dim[data-v-52a230bc]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-52a230bc]{animation-fill-mode:both;animation-name:brighten-52a230bc;-webkit-animation-name:brighten-52a230bc}@keyframes fadeIn-52a230bc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-52a230bc{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-52a230bc{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-52a230bc{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-52a230bc{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-52a230bc{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-52a230bc{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-52a230bc{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-52a230bc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-52a230bc;-webkit-animation-name:glow-52a230bc}.loop[data-v-52a230bc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-52a230bc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-52a230bc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-52a230bc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-52a230bc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.results-container[data-v-52a230bc]{width:100%;height:100%;background:#fff;display:flex;flex-wrap:wrap}.results-container .no-content[data-v-52a230bc]{width:100%;height:100%;text-align:center}.results-container .results[data-v-52a230bc]{width:100%;height:100%;display:flex;flex-direction:column;overflow-y:auto}.results-container .result[data-v-52a230bc]{width:100%;display:flex;border-bottom:1px solid #e1e4e8;gap:1em;padding:.5em 0;cursor:pointer}.results-container .result[data-v-52a230bc]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.results-container .result .info[data-v-52a230bc]{width:calc(100% - 5em);padding:.5em}.results-container .result .additional-info[data-v-52a230bc]{font-size:.8em;opacity:.7;display:flex}.results-container .result .additional-info .separator[data-v-52a230bc]{font-size:1.5em;margin-right:.5em}.results-container .result .additional-info .info-pill[data-v-52a230bc]{display:flex;align-items:center;margin-right:.5em}.results-container .result .additional-info .info-pill .label[data-v-52a230bc]{font-weight:700}.results-container .result .additional-info .info-pill .separator[data-v-52a230bc]{margin:-.2em .25em 0 .25em;font-size:2em}.results-container .result .actions[data-v-52a230bc]{display:flex;align-items:center;justify-content:center;width:5em}.results-container .result .actions button[data-v-52a230bc]{background:none;opacity:.8;border:none;padding:.25em;cursor:pointer}.results-container .result .actions button[data-v-52a230bc]:hover{color:#35b870}.results-container .result .actions button[data-v-52a230bc]:first-child{margin-right:1em}.col-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-250eee36]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-250eee36]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-250eee36]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-250eee36]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-250eee36]:first-child{margin-left:26%!important}.col-offset-3[data-v-250eee36]:not(first-child){margin-left:30%!important}.col-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-250eee36]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-250eee36]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-250eee36]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-250eee36]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-250eee36]:first-child{margin-left:52%!important}.col-offset-6[data-v-250eee36]:not(first-child){margin-left:56%!important}.col-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-250eee36]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-250eee36]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-250eee36]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-250eee36]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-250eee36]:first-child{margin-left:78%!important}.col-offset-9[data-v-250eee36]:not(first-child){margin-left:82%!important}.col-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-250eee36]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-250eee36]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-250eee36]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-250eee36]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-3[data-v-250eee36]{margin-left:26%}.col-no-margin-s-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-6[data-v-250eee36]{margin-left:52%}.col-no-margin-s-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-9[data-v-250eee36]{margin-left:78%}.col-no-margin-s-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-s-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-250eee36]{display:none!important}.s-visible[data-v-250eee36]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-3[data-v-250eee36]{margin-left:26%}.col-no-margin-m-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-6[data-v-250eee36]{margin-left:52%}.col-no-margin-m-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-9[data-v-250eee36]{margin-left:78%}.col-no-margin-m-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-m-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-250eee36]{display:none!important}.m-visible[data-v-250eee36]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-3[data-v-250eee36]{margin-left:26%}.col-no-margin-l-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-6[data-v-250eee36]{margin-left:52%}.col-no-margin-l-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-9[data-v-250eee36]{margin-left:78%}.col-no-margin-l-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-l-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-250eee36]{display:none!important}.l-visible[data-v-250eee36]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-3[data-v-250eee36]{margin-left:26%}.col-no-margin-xl-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-6[data-v-250eee36]{margin-left:52%}.col-no-margin-xl-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-9[data-v-250eee36]{margin-left:78%}.col-no-margin-xl-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-250eee36]{display:none!important}.xl-visible[data-v-250eee36]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-3[data-v-250eee36]{margin-left:26%}.col-no-margin-xxl-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-6[data-v-250eee36]{margin-left:52%}.col-no-margin-xxl-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-9[data-v-250eee36]{margin-left:78%}.col-no-margin-xxl-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-250eee36]{display:none!important}.xxl-visible[data-v-250eee36]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-250eee36]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-250eee36]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-250eee36]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-250eee36]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-250eee36]{display:none!important}}.vertical-center[data-v-250eee36]{display:flex;align-items:center}.horizontal-center[data-v-250eee36]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-250eee36]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-250eee36]{display:none!important}.no-content[data-v-250eee36]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-250eee36]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-250eee36]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-250eee36]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-250eee36]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-250eee36]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-250eee36]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-250eee36],.btn[data-v-250eee36],button[data-v-250eee36]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-250eee36],.btn-default[type=submit][data-v-250eee36],.btn.btn-primary[data-v-250eee36],.btn[type=submit][data-v-250eee36],button.btn-primary[data-v-250eee36],button[type=submit][data-v-250eee36]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-250eee36]:hover,.btn[data-v-250eee36]:hover,button[data-v-250eee36]:hover{color:#35b870}.btn .icon[data-v-250eee36],.btn-default .icon[data-v-250eee36],button .icon[data-v-250eee36]{margin-right:.5em}.btn-default[data-v-250eee36]:disabled,.btn-default[disabled][data-v-250eee36],.btn[data-v-250eee36]:disabled,.btn[disabled][data-v-250eee36],button[data-v-250eee36]:disabled,button[disabled][data-v-250eee36]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-250eee36]{cursor:grab!important}.dragged[data-v-250eee36]{opacity:.5!important}input[type=password][data-v-250eee36],input[type=text][data-v-250eee36]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-250eee36]:focus,input[type=text][data-v-250eee36]:focus{border:1px solid #35b870}button[data-v-250eee36],input[data-v-250eee36]{outline:none}input[type=text][data-v-250eee36]:hover,textarea[data-v-250eee36]:hover{border:1px solid #9cdfb0}ul[data-v-250eee36]{margin:0;padding:0;list-style:none}a[data-v-250eee36]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-250eee36]:hover{color:#35b870}[data-v-250eee36]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-250eee36]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-250eee36]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-250eee36]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-250eee36]{color:#ad1717}body[data-v-250eee36]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-250eee36] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-250eee36] .nav .path{cursor:pointer}.browser[data-v-250eee36] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-250eee36] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-250eee36]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-250eee36]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-250eee36],input[type=number][data-v-250eee36],input[type=password][data-v-250eee36],input[type=search][data-v-250eee36],input[type=text][data-v-250eee36],input[type=time][data-v-250eee36]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-250eee36]:hover,input[type=number][data-v-250eee36]:hover,input[type=password][data-v-250eee36]:hover,input[type=search][data-v-250eee36]:hover,input[type=text][data-v-250eee36]:hover,input[type=time][data-v-250eee36]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-250eee36]:focus,input[type=number][data-v-250eee36]:focus,input[type=password][data-v-250eee36]:focus,input[type=search][data-v-250eee36]:focus,input[type=text][data-v-250eee36]:focus,input[type=time][data-v-250eee36]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-250eee36],input[type=number].with-icon[data-v-250eee36],input[type=password].with-icon[data-v-250eee36],input[type=search].with-icon[data-v-250eee36],input[type=text].with-icon[data-v-250eee36],input[type=time].with-icon[data-v-250eee36]{padding-left:.3em}input[type=search][data-v-250eee36],input[type=text][data-v-250eee36]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-250eee36]{animation-fill-mode:both;animation-name:fadeIn-250eee36;-webkit-animation-name:fadeIn-250eee36}.fade-in[data-v-250eee36],.fade-out[data-v-250eee36]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-250eee36]{animation-fill-mode:both;animation-name:fadeOut-250eee36;-webkit-animation-name:fadeOut-250eee36}.expand[data-v-250eee36]{animation-fill-mode:both;animation-name:expand-250eee36;-webkit-animation-name:expand-250eee36}.expand[data-v-250eee36],.shrink[data-v-250eee36]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-250eee36]{animation-fill-mode:both;animation-name:shrink-250eee36;-webkit-animation-name:shrink-250eee36}.fold[data-v-250eee36]{animation-fill-mode:both;animation-name:fold-250eee36;-webkit-animation-name:fold-250eee36}.fold[data-v-250eee36],.unfold[data-v-250eee36]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-250eee36]{animation-fill-mode:both;animation-name:unfold-250eee36;-webkit-animation-name:unfold-250eee36}.dim[data-v-250eee36]{animation-fill-mode:both;animation-name:dim-250eee36;-webkit-animation-name:dim-250eee36}.brighten[data-v-250eee36],.dim[data-v-250eee36]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-250eee36]{animation-fill-mode:both;animation-name:brighten-250eee36;-webkit-animation-name:brighten-250eee36}@keyframes fadeIn-250eee36{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-250eee36{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-250eee36{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-250eee36{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-250eee36{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-250eee36{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-250eee36{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-250eee36{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-250eee36]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-250eee36;-webkit-animation-name:glow-250eee36}.loop[data-v-250eee36]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-250eee36{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-250eee36]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-250eee36]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-250eee36]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header-container.with-nav[data-v-250eee36]{width:calc(100% - 2.8em)}.torrent-container[data-v-250eee36]{width:100%;height:100%;position:relative}.torrent-container main[data-v-250eee36]{width:100%;height:calc(100% - 3.3em);display:flex}.torrent-container .view-container[data-v-250eee36]{width:100%;height:100%;overflow:auto;padding-top:.2em}.torrent-container .view-container.with-nav[data-v-250eee36]{width:calc(100% - 2.8em)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6429.79156821.css b/platypush/backend/http/webapp/dist/static/css/6429.79156821.css deleted file mode 100644 index 906481066e..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/6429.79156821.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-8eed74b0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-8eed74b0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-8eed74b0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-8eed74b0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-8eed74b0]:first-child{margin-left:26%!important}.col-offset-3[data-v-8eed74b0]:not(first-child){margin-left:30%!important}.col-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-8eed74b0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-8eed74b0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-8eed74b0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-8eed74b0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-8eed74b0]:first-child{margin-left:52%!important}.col-offset-6[data-v-8eed74b0]:not(first-child){margin-left:56%!important}.col-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-8eed74b0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-8eed74b0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-8eed74b0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-8eed74b0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-8eed74b0]:first-child{margin-left:78%!important}.col-offset-9[data-v-8eed74b0]:not(first-child){margin-left:82%!important}.col-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-8eed74b0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-8eed74b0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-8eed74b0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-8eed74b0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-s-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-s-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-s-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-s-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-8eed74b0]{display:none!important}.s-visible[data-v-8eed74b0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-m-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-m-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-m-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-m-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-8eed74b0]{display:none!important}.m-visible[data-v-8eed74b0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-l-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-l-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-l-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-l-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-8eed74b0]{display:none!important}.l-visible[data-v-8eed74b0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-xl-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-xl-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-xl-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xl-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-8eed74b0]{display:none!important}.xl-visible[data-v-8eed74b0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-8eed74b0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-8eed74b0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-8eed74b0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-8eed74b0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-8eed74b0]{margin-left:26%}.col-no-margin-xxl-3[data-v-8eed74b0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-8eed74b0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-8eed74b0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-8eed74b0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-8eed74b0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-8eed74b0]{margin-left:52%}.col-no-margin-xxl-6[data-v-8eed74b0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-8eed74b0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-8eed74b0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-8eed74b0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-8eed74b0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-8eed74b0]{margin-left:78%}.col-no-margin-xxl-9[data-v-8eed74b0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-8eed74b0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-8eed74b0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-8eed74b0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-8eed74b0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-8eed74b0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-8eed74b0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-8eed74b0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-8eed74b0]{display:none!important}.xxl-visible[data-v-8eed74b0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-8eed74b0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-8eed74b0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-8eed74b0]{display:none!important}}.vertical-center[data-v-8eed74b0]{display:flex;align-items:center}.horizontal-center[data-v-8eed74b0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-8eed74b0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-8eed74b0]{display:none!important}.no-content[data-v-8eed74b0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-8eed74b0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-8eed74b0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-8eed74b0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-8eed74b0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-8eed74b0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-8eed74b0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-8eed74b0],.btn[data-v-8eed74b0],button[data-v-8eed74b0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-8eed74b0],.btn-default[type=submit][data-v-8eed74b0],.btn.btn-primary[data-v-8eed74b0],.btn[type=submit][data-v-8eed74b0],button.btn-primary[data-v-8eed74b0],button[type=submit][data-v-8eed74b0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-8eed74b0],.btn-default .icon[data-v-8eed74b0],button .icon[data-v-8eed74b0]{margin-right:.5em}input[type=password][data-v-8eed74b0],input[type=text][data-v-8eed74b0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-8eed74b0]:focus,input[type=text][data-v-8eed74b0]:focus{border:1px solid #35b870}button[data-v-8eed74b0],input[data-v-8eed74b0]{outline:none}input[type=text][data-v-8eed74b0]:hover,textarea[data-v-8eed74b0]:hover{border:1px solid #9cdfb0}ul[data-v-8eed74b0]{margin:0;padding:0;list-style:none}a[data-v-8eed74b0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-8eed74b0]:hover{color:#35b870}[data-v-8eed74b0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-8eed74b0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-8eed74b0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-8eed74b0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-8eed74b0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-8eed74b0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-8eed74b0] .nav .path{cursor:pointer}.browser[data-v-8eed74b0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-8eed74b0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-8eed74b0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-8eed74b0],input[type=number][data-v-8eed74b0],input[type=password][data-v-8eed74b0],input[type=search][data-v-8eed74b0],input[type=text][data-v-8eed74b0],input[type=time][data-v-8eed74b0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-8eed74b0]:hover,input[type=number][data-v-8eed74b0]:hover,input[type=password][data-v-8eed74b0]:hover,input[type=search][data-v-8eed74b0]:hover,input[type=text][data-v-8eed74b0]:hover,input[type=time][data-v-8eed74b0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-8eed74b0]:focus,input[type=number][data-v-8eed74b0]:focus,input[type=password][data-v-8eed74b0]:focus,input[type=search][data-v-8eed74b0]:focus,input[type=text][data-v-8eed74b0]:focus,input[type=time][data-v-8eed74b0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-8eed74b0],input[type=number].with-icon[data-v-8eed74b0],input[type=password].with-icon[data-v-8eed74b0],input[type=search].with-icon[data-v-8eed74b0],input[type=text].with-icon[data-v-8eed74b0],input[type=time].with-icon[data-v-8eed74b0]{padding-left:.3em}input[type=search][data-v-8eed74b0],input[type=text][data-v-8eed74b0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-8eed74b0]{animation-fill-mode:both;animation-name:fadeIn-8eed74b0;-webkit-animation-name:fadeIn-8eed74b0}.fade-in[data-v-8eed74b0],.fade-out[data-v-8eed74b0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-8eed74b0]{animation-fill-mode:both;animation-name:fadeOut-8eed74b0;-webkit-animation-name:fadeOut-8eed74b0}@keyframes fadeIn-8eed74b0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-8eed74b0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-8eed74b0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-8eed74b0;-webkit-animation-name:glow-8eed74b0}.loop[data-v-8eed74b0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-8eed74b0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-8eed74b0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-8eed74b0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-8eed74b0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.info[data-v-8eed74b0]{min-width:50vw;max-width:800px}.info .row[data-v-8eed74b0]{display:flex;align-items:center;margin-bottom:5px;border-bottom:1px solid #e1e4e8}@media screen and (max-width:calc(1024px - 1px)){.info .row[data-v-8eed74b0]{flex-direction:column}}@media screen and (min-width:1024px){.info .row[data-v-8eed74b0]{flex-direction:row}}.info .label[data-v-8eed74b0]{width:10em;font-weight:700;margin-right:5px}.info .value[data-v-8eed74b0]{width:calc(100% - 10em);flex:1;text-align:right}.info .value button[data-v-8eed74b0]{background:none;border:none;cursor:pointer}.info .value button i[data-v-8eed74b0]{font-size:1.2em}.info .value button[data-v-8eed74b0]:hover{color:#35b870}.col-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0ae4cd8d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0ae4cd8d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0ae4cd8d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0ae4cd8d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0ae4cd8d]:first-child{margin-left:26%!important}.col-offset-3[data-v-0ae4cd8d]:not(first-child){margin-left:30%!important}.col-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0ae4cd8d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0ae4cd8d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0ae4cd8d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0ae4cd8d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0ae4cd8d]:first-child{margin-left:52%!important}.col-offset-6[data-v-0ae4cd8d]:not(first-child){margin-left:56%!important}.col-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0ae4cd8d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0ae4cd8d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0ae4cd8d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0ae4cd8d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0ae4cd8d]:first-child{margin-left:78%!important}.col-offset-9[data-v-0ae4cd8d]:not(first-child){margin-left:82%!important}.col-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0ae4cd8d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0ae4cd8d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0ae4cd8d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0ae4cd8d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-s-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-s-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-s-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-s-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0ae4cd8d]{display:none!important}.s-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-m-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-m-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-m-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-m-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0ae4cd8d]{display:none!important}.m-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-l-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-l-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-l-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-l-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0ae4cd8d]{display:none!important}.l-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-xl-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-xl-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-xl-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xl-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0ae4cd8d]{display:none!important}.xl-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0ae4cd8d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0ae4cd8d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0ae4cd8d]{margin-left:26%}.col-no-margin-xxl-3[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0ae4cd8d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0ae4cd8d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0ae4cd8d]{margin-left:52%}.col-no-margin-xxl-6[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0ae4cd8d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0ae4cd8d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0ae4cd8d]{margin-left:78%}.col-no-margin-xxl-9[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0ae4cd8d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0ae4cd8d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0ae4cd8d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0ae4cd8d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0ae4cd8d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0ae4cd8d]{display:none!important}.xxl-visible[data-v-0ae4cd8d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0ae4cd8d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0ae4cd8d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0ae4cd8d]{display:none!important}}.vertical-center[data-v-0ae4cd8d]{display:flex;align-items:center}.horizontal-center[data-v-0ae4cd8d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0ae4cd8d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0ae4cd8d]{display:none!important}.no-content[data-v-0ae4cd8d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0ae4cd8d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0ae4cd8d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0ae4cd8d],.btn[data-v-0ae4cd8d],button[data-v-0ae4cd8d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0ae4cd8d],.btn-default[type=submit][data-v-0ae4cd8d],.btn.btn-primary[data-v-0ae4cd8d],.btn[type=submit][data-v-0ae4cd8d],button.btn-primary[data-v-0ae4cd8d],button[type=submit][data-v-0ae4cd8d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0ae4cd8d],.btn-default .icon[data-v-0ae4cd8d],button .icon[data-v-0ae4cd8d]{margin-right:.5em}input[type=password][data-v-0ae4cd8d],input[type=text][data-v-0ae4cd8d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0ae4cd8d]:focus,input[type=text][data-v-0ae4cd8d]:focus{border:1px solid #35b870}button[data-v-0ae4cd8d],input[data-v-0ae4cd8d]{outline:none}input[type=text][data-v-0ae4cd8d]:hover,textarea[data-v-0ae4cd8d]:hover{border:1px solid #9cdfb0}ul[data-v-0ae4cd8d]{margin:0;padding:0;list-style:none}a[data-v-0ae4cd8d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0ae4cd8d]:hover{color:#35b870}[data-v-0ae4cd8d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0ae4cd8d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0ae4cd8d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0ae4cd8d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0ae4cd8d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0ae4cd8d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0ae4cd8d] .nav .path{cursor:pointer}.browser[data-v-0ae4cd8d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0ae4cd8d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0ae4cd8d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0ae4cd8d],input[type=number][data-v-0ae4cd8d],input[type=password][data-v-0ae4cd8d],input[type=search][data-v-0ae4cd8d],input[type=text][data-v-0ae4cd8d],input[type=time][data-v-0ae4cd8d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0ae4cd8d]:hover,input[type=number][data-v-0ae4cd8d]:hover,input[type=password][data-v-0ae4cd8d]:hover,input[type=search][data-v-0ae4cd8d]:hover,input[type=text][data-v-0ae4cd8d]:hover,input[type=time][data-v-0ae4cd8d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0ae4cd8d]:focus,input[type=number][data-v-0ae4cd8d]:focus,input[type=password][data-v-0ae4cd8d]:focus,input[type=search][data-v-0ae4cd8d]:focus,input[type=text][data-v-0ae4cd8d]:focus,input[type=time][data-v-0ae4cd8d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0ae4cd8d],input[type=number].with-icon[data-v-0ae4cd8d],input[type=password].with-icon[data-v-0ae4cd8d],input[type=search].with-icon[data-v-0ae4cd8d],input[type=text].with-icon[data-v-0ae4cd8d],input[type=time].with-icon[data-v-0ae4cd8d]{padding-left:.3em}input[type=search][data-v-0ae4cd8d],input[type=text][data-v-0ae4cd8d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:fadeIn-0ae4cd8d;-webkit-animation-name:fadeIn-0ae4cd8d}.fade-in[data-v-0ae4cd8d],.fade-out[data-v-0ae4cd8d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0ae4cd8d]{animation-fill-mode:both;animation-name:fadeOut-0ae4cd8d;-webkit-animation-name:fadeOut-0ae4cd8d}@keyframes fadeIn-0ae4cd8d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0ae4cd8d{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0ae4cd8d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0ae4cd8d;-webkit-animation-name:glow-0ae4cd8d}.loop[data-v-0ae4cd8d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0ae4cd8d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0ae4cd8d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0ae4cd8d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0ae4cd8d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-0ae4cd8d]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header .row[data-v-0ae4cd8d]{display:flex;align-items:center}.header .side[data-v-0ae4cd8d]{display:inline-flex;align-items:center}.header .side.right[data-v-0ae4cd8d]{position:absolute;font-size:1.1em;right:.7em;justify-content:right}.header[data-v-0ae4cd8d] button{background:none;padding:0 .25em;border:0}.header[data-v-0ae4cd8d] button:hover{color:#38cf80}.header form[data-v-0ae4cd8d]{width:100%;display:flex;padding:0;border:0;border-radius:0;box-shadow:none;background:initial}.header .button-container[data-v-0ae4cd8d]{width:3em;position:relative;padding:0}.header[data-v-0ae4cd8d] .loading{width:5em;font-size:1em;left:-.5em;border-radius:0 1em 1em 0}.header [type=submit][data-v-0ae4cd8d]{width:100%;height:100%;background:#f1f3f2;border:1px solid #ddd;border-radius:0 1em 1em 0;margin-left:-.5em;cursor:pointer}.header [type=submit][data-v-0ae4cd8d]:hover{background:linear-gradient(90deg,#b4f6ee,#dbfff5)}.header .search-box[data-v-0ae4cd8d]{width:100%;max-width:600px;margin-left:.5em}.header .search-box input[type=search][data-v-0ae4cd8d]{width:100%}.col-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5185ff00]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5185ff00]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5185ff00]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5185ff00]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5185ff00]:first-child{margin-left:26%!important}.col-offset-3[data-v-5185ff00]:not(first-child){margin-left:30%!important}.col-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5185ff00]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5185ff00]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5185ff00]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5185ff00]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5185ff00]:first-child{margin-left:52%!important}.col-offset-6[data-v-5185ff00]:not(first-child){margin-left:56%!important}.col-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5185ff00]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5185ff00]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5185ff00]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5185ff00]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5185ff00]:first-child{margin-left:78%!important}.col-offset-9[data-v-5185ff00]:not(first-child){margin-left:82%!important}.col-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5185ff00]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5185ff00]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5185ff00]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5185ff00]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-s-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-s-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-s-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-s-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5185ff00]{display:none!important}.s-visible[data-v-5185ff00]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-m-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-m-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-m-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-m-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5185ff00]{display:none!important}.m-visible[data-v-5185ff00]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-l-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-l-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-l-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-l-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5185ff00]{display:none!important}.l-visible[data-v-5185ff00]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-xl-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-xl-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-xl-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xl-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5185ff00]{display:none!important}.xl-visible[data-v-5185ff00]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5185ff00]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5185ff00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5185ff00]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5185ff00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5185ff00]{margin-left:26%}.col-no-margin-xxl-3[data-v-5185ff00]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5185ff00]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5185ff00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5185ff00]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5185ff00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5185ff00]{margin-left:52%}.col-no-margin-xxl-6[data-v-5185ff00]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5185ff00]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5185ff00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5185ff00]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5185ff00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5185ff00]{margin-left:78%}.col-no-margin-xxl-9[data-v-5185ff00]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5185ff00]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5185ff00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5185ff00]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5185ff00]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5185ff00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5185ff00]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5185ff00]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5185ff00]{display:none!important}.xxl-visible[data-v-5185ff00]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5185ff00]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5185ff00]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5185ff00]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5185ff00]{display:none!important}}.vertical-center[data-v-5185ff00]{display:flex;align-items:center}.horizontal-center[data-v-5185ff00]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5185ff00]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5185ff00]{display:none!important}.no-content[data-v-5185ff00]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5185ff00]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5185ff00]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5185ff00]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5185ff00]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5185ff00]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5185ff00]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5185ff00],.btn[data-v-5185ff00],button[data-v-5185ff00]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5185ff00],.btn-default[type=submit][data-v-5185ff00],.btn.btn-primary[data-v-5185ff00],.btn[type=submit][data-v-5185ff00],button.btn-primary[data-v-5185ff00],button[type=submit][data-v-5185ff00]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5185ff00],.btn-default .icon[data-v-5185ff00],button .icon[data-v-5185ff00]{margin-right:.5em}input[type=password][data-v-5185ff00],input[type=text][data-v-5185ff00]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5185ff00]:focus,input[type=text][data-v-5185ff00]:focus{border:1px solid #35b870}button[data-v-5185ff00],input[data-v-5185ff00]{outline:none}input[type=text][data-v-5185ff00]:hover,textarea[data-v-5185ff00]:hover{border:1px solid #9cdfb0}ul[data-v-5185ff00]{margin:0;padding:0;list-style:none}a[data-v-5185ff00]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5185ff00]:hover{color:#35b870}[data-v-5185ff00]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5185ff00]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5185ff00]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5185ff00]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5185ff00]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5185ff00] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5185ff00] .nav .path{cursor:pointer}.browser[data-v-5185ff00] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5185ff00] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-5185ff00]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5185ff00],input[type=number][data-v-5185ff00],input[type=password][data-v-5185ff00],input[type=search][data-v-5185ff00],input[type=text][data-v-5185ff00],input[type=time][data-v-5185ff00]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-5185ff00]:hover,input[type=number][data-v-5185ff00]:hover,input[type=password][data-v-5185ff00]:hover,input[type=search][data-v-5185ff00]:hover,input[type=text][data-v-5185ff00]:hover,input[type=time][data-v-5185ff00]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5185ff00]:focus,input[type=number][data-v-5185ff00]:focus,input[type=password][data-v-5185ff00]:focus,input[type=search][data-v-5185ff00]:focus,input[type=text][data-v-5185ff00]:focus,input[type=time][data-v-5185ff00]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5185ff00],input[type=number].with-icon[data-v-5185ff00],input[type=password].with-icon[data-v-5185ff00],input[type=search].with-icon[data-v-5185ff00],input[type=text].with-icon[data-v-5185ff00],input[type=time].with-icon[data-v-5185ff00]{padding-left:.3em}input[type=search][data-v-5185ff00],input[type=text][data-v-5185ff00]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5185ff00]{animation-fill-mode:both;animation-name:fadeIn-5185ff00;-webkit-animation-name:fadeIn-5185ff00}.fade-in[data-v-5185ff00],.fade-out[data-v-5185ff00]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5185ff00]{animation-fill-mode:both;animation-name:fadeOut-5185ff00;-webkit-animation-name:fadeOut-5185ff00}@keyframes fadeIn-5185ff00{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5185ff00{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-5185ff00]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5185ff00;-webkit-animation-name:glow-5185ff00}.loop[data-v-5185ff00]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5185ff00{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5185ff00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5185ff00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5185ff00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}nav[data-v-5185ff00]{width:2.8em;height:calc(100% + 3.3em);margin-top:-3.3em;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;box-shadow:2.5px 0 4.5px 2px #5e5e5e;margin-left:2.5px;overflow:hidden}nav .menu-button[data-v-5185ff00]{position:absolute;top:.75em;left:0;width:100%;display:inline-flex;justify-content:center;padding:0;margin:0;font-size:1.2em;border:0;background:none;cursor:pointer;z-index:1}nav .menu-button[data-v-5185ff00]:hover{color:#35b870}nav li[data-v-5185ff00]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7}nav li.selected[data-v-5185ff00],nav li[data-v-5185ff00]:hover{border-radius:1.2em;margin:0 .2em}nav li[data-v-5185ff00]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-5185ff00]{background:rgba(160,245,178,.95)}.col-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-52a230bc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-52a230bc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-52a230bc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-52a230bc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-52a230bc]:first-child{margin-left:26%!important}.col-offset-3[data-v-52a230bc]:not(first-child){margin-left:30%!important}.col-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-52a230bc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-52a230bc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-52a230bc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-52a230bc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-52a230bc]:first-child{margin-left:52%!important}.col-offset-6[data-v-52a230bc]:not(first-child){margin-left:56%!important}.col-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-52a230bc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-52a230bc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-52a230bc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-52a230bc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-52a230bc]:first-child{margin-left:78%!important}.col-offset-9[data-v-52a230bc]:not(first-child){margin-left:82%!important}.col-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-52a230bc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-52a230bc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-52a230bc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-52a230bc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-s-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-s-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-s-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-s-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-52a230bc]{display:none!important}.s-visible[data-v-52a230bc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-m-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-m-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-m-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-m-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-52a230bc]{display:none!important}.m-visible[data-v-52a230bc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-l-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-l-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-l-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-l-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-52a230bc]{display:none!important}.l-visible[data-v-52a230bc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-xl-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-xl-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-xl-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xl-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-52a230bc]{display:none!important}.xl-visible[data-v-52a230bc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-52a230bc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-52a230bc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-52a230bc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-52a230bc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-52a230bc]{margin-left:26%}.col-no-margin-xxl-3[data-v-52a230bc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-52a230bc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-52a230bc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-52a230bc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-52a230bc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-52a230bc]{margin-left:52%}.col-no-margin-xxl-6[data-v-52a230bc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-52a230bc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-52a230bc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-52a230bc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-52a230bc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-52a230bc]{margin-left:78%}.col-no-margin-xxl-9[data-v-52a230bc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-52a230bc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-52a230bc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-52a230bc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-52a230bc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-52a230bc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-52a230bc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-52a230bc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-52a230bc]{display:none!important}.xxl-visible[data-v-52a230bc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-52a230bc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-52a230bc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-52a230bc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-52a230bc]{display:none!important}}.vertical-center[data-v-52a230bc]{display:flex;align-items:center}.horizontal-center[data-v-52a230bc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-52a230bc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-52a230bc]{display:none!important}.no-content[data-v-52a230bc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-52a230bc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-52a230bc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-52a230bc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-52a230bc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-52a230bc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-52a230bc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-52a230bc],.btn[data-v-52a230bc],button[data-v-52a230bc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-52a230bc],.btn-default[type=submit][data-v-52a230bc],.btn.btn-primary[data-v-52a230bc],.btn[type=submit][data-v-52a230bc],button.btn-primary[data-v-52a230bc],button[type=submit][data-v-52a230bc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-52a230bc],.btn-default .icon[data-v-52a230bc],button .icon[data-v-52a230bc]{margin-right:.5em}input[type=password][data-v-52a230bc],input[type=text][data-v-52a230bc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-52a230bc]:focus,input[type=text][data-v-52a230bc]:focus{border:1px solid #35b870}button[data-v-52a230bc],input[data-v-52a230bc]{outline:none}input[type=text][data-v-52a230bc]:hover,textarea[data-v-52a230bc]:hover{border:1px solid #9cdfb0}ul[data-v-52a230bc]{margin:0;padding:0;list-style:none}a[data-v-52a230bc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-52a230bc]:hover{color:#35b870}[data-v-52a230bc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-52a230bc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-52a230bc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-52a230bc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-52a230bc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-52a230bc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-52a230bc] .nav .path{cursor:pointer}.browser[data-v-52a230bc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-52a230bc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-52a230bc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-52a230bc],input[type=number][data-v-52a230bc],input[type=password][data-v-52a230bc],input[type=search][data-v-52a230bc],input[type=text][data-v-52a230bc],input[type=time][data-v-52a230bc]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-52a230bc]:hover,input[type=number][data-v-52a230bc]:hover,input[type=password][data-v-52a230bc]:hover,input[type=search][data-v-52a230bc]:hover,input[type=text][data-v-52a230bc]:hover,input[type=time][data-v-52a230bc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-52a230bc]:focus,input[type=number][data-v-52a230bc]:focus,input[type=password][data-v-52a230bc]:focus,input[type=search][data-v-52a230bc]:focus,input[type=text][data-v-52a230bc]:focus,input[type=time][data-v-52a230bc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-52a230bc],input[type=number].with-icon[data-v-52a230bc],input[type=password].with-icon[data-v-52a230bc],input[type=search].with-icon[data-v-52a230bc],input[type=text].with-icon[data-v-52a230bc],input[type=time].with-icon[data-v-52a230bc]{padding-left:.3em}input[type=search][data-v-52a230bc],input[type=text][data-v-52a230bc]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-52a230bc]{animation-fill-mode:both;animation-name:fadeIn-52a230bc;-webkit-animation-name:fadeIn-52a230bc}.fade-in[data-v-52a230bc],.fade-out[data-v-52a230bc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-52a230bc]{animation-fill-mode:both;animation-name:fadeOut-52a230bc;-webkit-animation-name:fadeOut-52a230bc}@keyframes fadeIn-52a230bc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-52a230bc{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-52a230bc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-52a230bc;-webkit-animation-name:glow-52a230bc}.loop[data-v-52a230bc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-52a230bc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-52a230bc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-52a230bc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-52a230bc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.results-container[data-v-52a230bc]{width:100%;height:100%;background:#fff;display:flex;flex-wrap:wrap}.results-container .no-content[data-v-52a230bc]{width:100%;height:100%;text-align:center}.results-container .results[data-v-52a230bc]{width:100%;height:100%;display:flex;flex-direction:column;overflow-y:auto}.results-container .result[data-v-52a230bc]{width:100%;display:flex;border-bottom:1px solid #e1e4e8;gap:1em;padding:.5em 0;cursor:pointer}.results-container .result[data-v-52a230bc]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.results-container .result .info[data-v-52a230bc]{width:calc(100% - 5em);padding:.5em}.results-container .result .additional-info[data-v-52a230bc]{font-size:.8em;opacity:.7;display:flex}.results-container .result .additional-info .separator[data-v-52a230bc]{font-size:1.5em;margin-right:.5em}.results-container .result .additional-info .info-pill[data-v-52a230bc]{display:flex;align-items:center;margin-right:.5em}.results-container .result .additional-info .info-pill .label[data-v-52a230bc]{font-weight:700}.results-container .result .additional-info .info-pill .separator[data-v-52a230bc]{margin:-.2em .25em 0 .25em;font-size:2em}.results-container .result .actions[data-v-52a230bc]{display:flex;align-items:center;justify-content:center;width:5em}.results-container .result .actions button[data-v-52a230bc]{background:none;opacity:.8;border:none;padding:.25em;cursor:pointer}.results-container .result .actions button[data-v-52a230bc]:hover{color:#35b870}.results-container .result .actions button[data-v-52a230bc]:first-child{margin-right:1em}.col-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-250eee36]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-250eee36]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-250eee36]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-250eee36]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-250eee36]:first-child{margin-left:26%!important}.col-offset-3[data-v-250eee36]:not(first-child){margin-left:30%!important}.col-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-250eee36]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-250eee36]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-250eee36]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-250eee36]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-250eee36]:first-child{margin-left:52%!important}.col-offset-6[data-v-250eee36]:not(first-child){margin-left:56%!important}.col-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-250eee36]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-250eee36]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-250eee36]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-250eee36]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-250eee36]:first-child{margin-left:78%!important}.col-offset-9[data-v-250eee36]:not(first-child){margin-left:82%!important}.col-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-250eee36]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-250eee36]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-250eee36]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-250eee36]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-3[data-v-250eee36]{margin-left:26%}.col-no-margin-s-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-6[data-v-250eee36]{margin-left:52%}.col-no-margin-s-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-9[data-v-250eee36]{margin-left:78%}.col-no-margin-s-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-s-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-s-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-250eee36]{display:none!important}.s-visible[data-v-250eee36]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-3[data-v-250eee36]{margin-left:26%}.col-no-margin-m-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-6[data-v-250eee36]{margin-left:52%}.col-no-margin-m-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-9[data-v-250eee36]{margin-left:78%}.col-no-margin-m-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-m-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-m-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-250eee36]{display:none!important}.m-visible[data-v-250eee36]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-3[data-v-250eee36]{margin-left:26%}.col-no-margin-l-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-6[data-v-250eee36]{margin-left:52%}.col-no-margin-l-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-9[data-v-250eee36]{margin-left:78%}.col-no-margin-l-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-l-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-l-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-250eee36]{display:none!important}.l-visible[data-v-250eee36]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-3[data-v-250eee36]{margin-left:26%}.col-no-margin-xl-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-6[data-v-250eee36]{margin-left:52%}.col-no-margin-xl-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-9[data-v-250eee36]{margin-left:78%}.col-no-margin-xl-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-xl-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-250eee36]{display:none!important}.xl-visible[data-v-250eee36]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-250eee36]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-1[data-v-250eee36]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-250eee36]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-250eee36]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-2[data-v-250eee36]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-250eee36]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-250eee36]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-3[data-v-250eee36]{margin-left:26%}.col-no-margin-xxl-3[data-v-250eee36]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-250eee36]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-4[data-v-250eee36]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-250eee36]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-250eee36]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-5[data-v-250eee36]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-250eee36]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-250eee36]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-6[data-v-250eee36]{margin-left:52%}.col-no-margin-xxl-6[data-v-250eee36]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-250eee36]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-7[data-v-250eee36]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-250eee36]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-250eee36]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-8[data-v-250eee36]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-250eee36]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-250eee36]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-9[data-v-250eee36]{margin-left:78%}.col-no-margin-xxl-9[data-v-250eee36]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-250eee36]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-10[data-v-250eee36]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-250eee36]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-250eee36]:first-child{margin-left:0}.col-offset-xxl-11[data-v-250eee36]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-250eee36]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-250eee36]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-250eee36]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-250eee36]{display:none!important}.xxl-visible[data-v-250eee36]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-250eee36]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-250eee36]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-250eee36]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-250eee36]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-250eee36]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-250eee36]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-250eee36]{display:none!important}}.vertical-center[data-v-250eee36]{display:flex;align-items:center}.horizontal-center[data-v-250eee36]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-250eee36]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-250eee36]{display:none!important}.no-content[data-v-250eee36]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-250eee36]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-250eee36]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-250eee36]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-250eee36]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-250eee36]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-250eee36]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-250eee36],.btn[data-v-250eee36],button[data-v-250eee36]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-250eee36],.btn-default[type=submit][data-v-250eee36],.btn.btn-primary[data-v-250eee36],.btn[type=submit][data-v-250eee36],button.btn-primary[data-v-250eee36],button[type=submit][data-v-250eee36]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-250eee36],.btn-default .icon[data-v-250eee36],button .icon[data-v-250eee36]{margin-right:.5em}input[type=password][data-v-250eee36],input[type=text][data-v-250eee36]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-250eee36]:focus,input[type=text][data-v-250eee36]:focus{border:1px solid #35b870}button[data-v-250eee36],input[data-v-250eee36]{outline:none}input[type=text][data-v-250eee36]:hover,textarea[data-v-250eee36]:hover{border:1px solid #9cdfb0}ul[data-v-250eee36]{margin:0;padding:0;list-style:none}a[data-v-250eee36]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-250eee36]:hover{color:#35b870}[data-v-250eee36]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-250eee36]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-250eee36]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-250eee36]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-250eee36]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-250eee36] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-250eee36] .nav .path{cursor:pointer}.browser[data-v-250eee36] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-250eee36] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-250eee36]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-250eee36],input[type=number][data-v-250eee36],input[type=password][data-v-250eee36],input[type=search][data-v-250eee36],input[type=text][data-v-250eee36],input[type=time][data-v-250eee36]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-250eee36]:hover,input[type=number][data-v-250eee36]:hover,input[type=password][data-v-250eee36]:hover,input[type=search][data-v-250eee36]:hover,input[type=text][data-v-250eee36]:hover,input[type=time][data-v-250eee36]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-250eee36]:focus,input[type=number][data-v-250eee36]:focus,input[type=password][data-v-250eee36]:focus,input[type=search][data-v-250eee36]:focus,input[type=text][data-v-250eee36]:focus,input[type=time][data-v-250eee36]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-250eee36],input[type=number].with-icon[data-v-250eee36],input[type=password].with-icon[data-v-250eee36],input[type=search].with-icon[data-v-250eee36],input[type=text].with-icon[data-v-250eee36],input[type=time].with-icon[data-v-250eee36]{padding-left:.3em}input[type=search][data-v-250eee36],input[type=text][data-v-250eee36]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-250eee36]{animation-fill-mode:both;animation-name:fadeIn-250eee36;-webkit-animation-name:fadeIn-250eee36}.fade-in[data-v-250eee36],.fade-out[data-v-250eee36]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-250eee36]{animation-fill-mode:both;animation-name:fadeOut-250eee36;-webkit-animation-name:fadeOut-250eee36}@keyframes fadeIn-250eee36{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-250eee36{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-250eee36]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-250eee36;-webkit-animation-name:glow-250eee36}.loop[data-v-250eee36]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-250eee36{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-250eee36]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-250eee36]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-250eee36]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header-container.with-nav[data-v-250eee36]{width:calc(100% - 2.8em)}.torrent-container[data-v-250eee36]{width:100%;height:100%;position:relative}.torrent-container main[data-v-250eee36]{width:100%;height:calc(100% - 3.3em);display:flex}.torrent-container .view-container[data-v-250eee36]{width:100%;height:100%;overflow:auto;padding-top:.2em}.torrent-container .view-container.with-nav[data-v-250eee36]{width:calc(100% - 2.8em)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/65.712466ff.css b/platypush/backend/http/webapp/dist/static/css/65.14c0a64c.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/65.712466ff.css rename to platypush/backend/http/webapp/dist/static/css/65.14c0a64c.css index b5fd47b1e4..847112ccd2 100644 --- a/platypush/backend/http/webapp/dist/static/css/65.712466ff.css +++ b/platypush/backend/http/webapp/dist/static/css/65.14c0a64c.css @@ -1 +1 @@ -.col-1,.entity .head .icon{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child,.entity .head .icon:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3,.entity .head .value-and-toggler{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child,.entity .head .value-and-toggler:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3,.entity .head .value-container{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3:first-child,.entity .head .value-container:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8,.entity .head .label{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8:first-child,.entity .head .label:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label,.attributes .child .value,.col-s-12{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label:first-child,.attributes .child .value:first-child,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2,.entity .head .value-container{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2:first-child,.entity .head .value-container:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label,.attributes .child .value,.col-m-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label:first-child,.attributes .child .value:first-child,.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9,.entity .head .label{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9:first-child,.entity .head .label:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container,.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.entity .body,.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.entity .body,.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster{cursor:pointer;width:100%}.entity-container .adjuster.with-children{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container{border-bottom:1px solid #ccc;border-radius:0}}.entity{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon{margin-right:.5em}.entity .head .icon:hover{color:#35b870}.entity .head .label{margin-top:.25em;margin-left:.5em}.entity .head .name{display:inline-flex;word-break:break-all}.entity .head .name:hover{color:#35b870}.entity .head .value{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value{margin-right:2.5em}.entity .head .value-container{min-width:7em}.entity .head .unit{margin-left:.2em}.entity .head .pull-right,.entity .head .value-container{padding-right:.5em}.entity .head .pull-right :deep(.power-switch),.entity .head .value-container :deep(.power-switch){display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button:hover{color:#35b870}.collapse-toggler{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler:hover{color:#35b870}.attributes .child{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child{flex-direction:column}}.attributes .child:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child:hover{cursor:auto}.attributes .child.head{cursor:pointer}.attributes .child.head:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label{font-weight:700}.attributes .child .value{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed),.entity-container-wrapper.with-children:not(.collapsed) .children .child:last-child{box-shadow:0 3px 4px 0 silver}.blink{animation:blink-animation 1s steps(20,start)}@keyframes blink-animation{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1,.entity .head .icon{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child,.entity .head .icon:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3,.entity .head .value-and-toggler{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child,.entity .head .value-and-toggler:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3,.entity .head .value-container{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3:first-child,.entity .head .value-container:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8,.entity .head .label{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8:first-child,.entity .head .label:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label,.attributes .child .value,.col-s-12{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label:first-child,.attributes .child .value:first-child,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2,.entity .head .value-container{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2:first-child,.entity .head .value-container:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label,.attributes .child .value,.col-m-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label:first-child,.attributes .child .value:first-child,.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9,.entity .head .label{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9:first-child,.entity .head .label:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container,.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.entity .body,.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.entity .body,.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster{cursor:pointer;width:100%}.entity-container .adjuster.with-children{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container{border-bottom:1px solid #ccc;border-radius:0}}.entity{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon{margin-right:.5em}.entity .head .icon:hover{color:#35b870}.entity .head .label{margin-top:.25em;margin-left:.5em}.entity .head .name{display:inline-flex;word-break:break-all}.entity .head .name:hover{color:#35b870}.entity .head .value{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value{margin-right:2.5em}.entity .head .value-container{min-width:7em}.entity .head .unit{margin-left:.2em}.entity .head .pull-right,.entity .head .value-container{padding-right:.5em}.entity .head .pull-right :deep(.power-switch),.entity .head .value-container :deep(.power-switch){display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button:hover{color:#35b870}.collapse-toggler{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler:hover{color:#35b870}.attributes .child{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child{flex-direction:column}}.attributes .child:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child:hover{cursor:auto}.attributes .child.head{cursor:pointer}.attributes .child.head:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label{font-weight:700}.attributes .child .value{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed),.entity-container-wrapper.with-children:not(.collapsed) .children .child:last-child{box-shadow:0 3px 4px 0 silver}.blink{animation:blink-animation 1s steps(20,start)}@keyframes blink-animation{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6517.df2ff86e.css b/platypush/backend/http/webapp/dist/static/css/6517.df2ff86e.css new file mode 100644 index 0000000000..1df2d3b826 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6517.df2ff86e.css @@ -0,0 +1 @@ +.col-1[data-v-544409fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-1[data-v-544409fc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-544409fc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-544409fc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-544409fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-2[data-v-544409fc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-544409fc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-544409fc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-544409fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-3[data-v-544409fc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-544409fc]:first-child{margin-left:26%!important}.col-offset-3[data-v-544409fc]:not(first-child){margin-left:30%!important}.col-4[data-v-544409fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-4[data-v-544409fc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-544409fc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-544409fc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-544409fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-5[data-v-544409fc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-544409fc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-544409fc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-544409fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-6[data-v-544409fc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-544409fc]:first-child{margin-left:52%!important}.col-offset-6[data-v-544409fc]:not(first-child){margin-left:56%!important}.col-7[data-v-544409fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-7[data-v-544409fc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-544409fc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-544409fc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-544409fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-8[data-v-544409fc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-544409fc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-544409fc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-544409fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-9[data-v-544409fc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-544409fc]:first-child{margin-left:78%!important}.col-offset-9[data-v-544409fc]:not(first-child){margin-left:82%!important}.col-10[data-v-544409fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-10[data-v-544409fc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-544409fc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-544409fc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-544409fc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-544409fc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-544409fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-1[data-v-544409fc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-544409fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-544409fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-2[data-v-544409fc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-544409fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-544409fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-3[data-v-544409fc]{margin-left:26%}.col-no-margin-s-3[data-v-544409fc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-544409fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-4[data-v-544409fc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-544409fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-544409fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-5[data-v-544409fc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-544409fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-544409fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-6[data-v-544409fc]{margin-left:52%}.col-no-margin-s-6[data-v-544409fc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-544409fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-7[data-v-544409fc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-544409fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-544409fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-8[data-v-544409fc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-544409fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-544409fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-9[data-v-544409fc]{margin-left:78%}.col-no-margin-s-9[data-v-544409fc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-544409fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-10[data-v-544409fc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-544409fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-544409fc]:first-child{margin-left:0}.col-offset-s-11[data-v-544409fc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-544409fc]{display:none!important}.s-visible[data-v-544409fc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-544409fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-1[data-v-544409fc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-544409fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-544409fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-2[data-v-544409fc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-544409fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-544409fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-3[data-v-544409fc]{margin-left:26%}.col-no-margin-m-3[data-v-544409fc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-544409fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-4[data-v-544409fc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-544409fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-544409fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-5[data-v-544409fc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-544409fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-544409fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-6[data-v-544409fc]{margin-left:52%}.col-no-margin-m-6[data-v-544409fc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-544409fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-7[data-v-544409fc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-544409fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-544409fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-8[data-v-544409fc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-544409fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-544409fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-9[data-v-544409fc]{margin-left:78%}.col-no-margin-m-9[data-v-544409fc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-544409fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-10[data-v-544409fc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-544409fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-544409fc]:first-child{margin-left:0}.col-offset-m-11[data-v-544409fc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-544409fc]{display:none!important}.m-visible[data-v-544409fc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-544409fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-1[data-v-544409fc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-544409fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-544409fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-2[data-v-544409fc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-544409fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-544409fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-3[data-v-544409fc]{margin-left:26%}.col-no-margin-l-3[data-v-544409fc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-544409fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-4[data-v-544409fc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-544409fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-544409fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-5[data-v-544409fc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-544409fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-544409fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-6[data-v-544409fc]{margin-left:52%}.col-no-margin-l-6[data-v-544409fc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-544409fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-7[data-v-544409fc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-544409fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-544409fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-8[data-v-544409fc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-544409fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-544409fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-9[data-v-544409fc]{margin-left:78%}.col-no-margin-l-9[data-v-544409fc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-544409fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-10[data-v-544409fc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-544409fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-544409fc]:first-child{margin-left:0}.col-offset-l-11[data-v-544409fc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-544409fc]{display:none!important}.l-visible[data-v-544409fc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-544409fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-1[data-v-544409fc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-544409fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-544409fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-2[data-v-544409fc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-544409fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-544409fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-3[data-v-544409fc]{margin-left:26%}.col-no-margin-xl-3[data-v-544409fc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-544409fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-4[data-v-544409fc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-544409fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-544409fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-5[data-v-544409fc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-544409fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-544409fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-6[data-v-544409fc]{margin-left:52%}.col-no-margin-xl-6[data-v-544409fc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-544409fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-7[data-v-544409fc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-544409fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-544409fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-8[data-v-544409fc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-544409fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-544409fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-9[data-v-544409fc]{margin-left:78%}.col-no-margin-xl-9[data-v-544409fc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-544409fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-10[data-v-544409fc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-544409fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-544409fc]:first-child{margin-left:0}.col-offset-xl-11[data-v-544409fc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-544409fc]{display:none!important}.xl-visible[data-v-544409fc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-544409fc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-544409fc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-544409fc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-544409fc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-544409fc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-544409fc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-544409fc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-544409fc]{margin-left:26%}.col-no-margin-xxl-3[data-v-544409fc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-544409fc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-544409fc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-544409fc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-544409fc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-544409fc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-544409fc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-544409fc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-544409fc]{margin-left:52%}.col-no-margin-xxl-6[data-v-544409fc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-544409fc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-544409fc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-544409fc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-544409fc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-544409fc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-544409fc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-544409fc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-544409fc]{margin-left:78%}.col-no-margin-xxl-9[data-v-544409fc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-544409fc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-544409fc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-544409fc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-544409fc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-544409fc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-544409fc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-544409fc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-544409fc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-544409fc]{display:none!important}.xxl-visible[data-v-544409fc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-544409fc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-544409fc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-544409fc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-544409fc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-544409fc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-544409fc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-544409fc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-544409fc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-544409fc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-544409fc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-544409fc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-544409fc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-544409fc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-544409fc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-544409fc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-544409fc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-544409fc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-544409fc]{display:none!important}}.vertical-center[data-v-544409fc]{display:flex;align-items:center}.horizontal-center[data-v-544409fc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-544409fc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-544409fc]{display:none!important}.no-content[data-v-544409fc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-544409fc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-544409fc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-544409fc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-544409fc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-544409fc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-544409fc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-544409fc],.btn[data-v-544409fc],button[data-v-544409fc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-544409fc],.btn-default[type=submit][data-v-544409fc],.btn.btn-primary[data-v-544409fc],.btn[type=submit][data-v-544409fc],button.btn-primary[data-v-544409fc],button[type=submit][data-v-544409fc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-544409fc]:hover,.btn[data-v-544409fc]:hover,button[data-v-544409fc]:hover{color:#35b870}.btn .icon[data-v-544409fc],.btn-default .icon[data-v-544409fc],button .icon[data-v-544409fc]{margin-right:.5em}.btn-default[data-v-544409fc]:disabled,.btn-default[disabled][data-v-544409fc],.btn[data-v-544409fc]:disabled,.btn[disabled][data-v-544409fc],button[data-v-544409fc]:disabled,button[disabled][data-v-544409fc]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-544409fc]{cursor:grab!important}.dragged[data-v-544409fc]{opacity:.5!important}input[type=password][data-v-544409fc],input[type=text][data-v-544409fc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-544409fc]:focus,input[type=text][data-v-544409fc]:focus{border:1px solid #35b870}button[data-v-544409fc],input[data-v-544409fc]{outline:none}input[type=text][data-v-544409fc]:hover,textarea[data-v-544409fc]:hover{border:1px solid #9cdfb0}ul[data-v-544409fc]{margin:0;padding:0;list-style:none}a[data-v-544409fc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-544409fc]:hover{color:#35b870}[data-v-544409fc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-544409fc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-544409fc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-544409fc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-544409fc]{color:#ad1717}body[data-v-544409fc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-544409fc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-544409fc] .nav .path{cursor:pointer}.browser[data-v-544409fc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-544409fc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-544409fc]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-544409fc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-544409fc],input[type=number][data-v-544409fc],input[type=password][data-v-544409fc],input[type=search][data-v-544409fc],input[type=text][data-v-544409fc],input[type=time][data-v-544409fc]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-544409fc]:hover,input[type=number][data-v-544409fc]:hover,input[type=password][data-v-544409fc]:hover,input[type=search][data-v-544409fc]:hover,input[type=text][data-v-544409fc]:hover,input[type=time][data-v-544409fc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-544409fc]:focus,input[type=number][data-v-544409fc]:focus,input[type=password][data-v-544409fc]:focus,input[type=search][data-v-544409fc]:focus,input[type=text][data-v-544409fc]:focus,input[type=time][data-v-544409fc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-544409fc],input[type=number].with-icon[data-v-544409fc],input[type=password].with-icon[data-v-544409fc],input[type=search].with-icon[data-v-544409fc],input[type=text].with-icon[data-v-544409fc],input[type=time].with-icon[data-v-544409fc]{padding-left:.3em}input[type=search][data-v-544409fc],input[type=text][data-v-544409fc]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-544409fc]{animation-fill-mode:both;animation-name:fadeIn-544409fc;-webkit-animation-name:fadeIn-544409fc}.fade-in[data-v-544409fc],.fade-out[data-v-544409fc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-544409fc]{animation-fill-mode:both;animation-name:fadeOut-544409fc;-webkit-animation-name:fadeOut-544409fc}.expand[data-v-544409fc]{animation-fill-mode:both;animation-name:expand-544409fc;-webkit-animation-name:expand-544409fc}.expand[data-v-544409fc],.shrink[data-v-544409fc]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-544409fc]{animation-fill-mode:both;animation-name:shrink-544409fc;-webkit-animation-name:shrink-544409fc}.fold[data-v-544409fc]{animation-fill-mode:both;animation-name:fold-544409fc;-webkit-animation-name:fold-544409fc}.fold[data-v-544409fc],.unfold[data-v-544409fc]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-544409fc]{animation-fill-mode:both;animation-name:unfold-544409fc;-webkit-animation-name:unfold-544409fc}.dim[data-v-544409fc]{animation-fill-mode:both;animation-name:dim-544409fc;-webkit-animation-name:dim-544409fc}.brighten[data-v-544409fc],.dim[data-v-544409fc]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-544409fc]{animation-fill-mode:both;animation-name:brighten-544409fc;-webkit-animation-name:brighten-544409fc}@keyframes fadeIn-544409fc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-544409fc{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-544409fc{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-544409fc{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-544409fc{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-544409fc{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-544409fc{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-544409fc{0%{filter:brightness(.5)}to{filter:brightness(1)}}.floating-btn button.with-glow[data-v-544409fc]:not(:disabled),.glow[data-v-544409fc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-544409fc;-webkit-animation-name:glow-544409fc}.loop[data-v-544409fc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-544409fc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-544409fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-544409fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-544409fc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.floating-btn[data-v-544409fc]{position:absolute}.floating-btn.left[data-v-544409fc]{left:0;margin-left:1em}.floating-btn.right[data-v-544409fc]{right:0;margin-right:1em}.floating-btn.top[data-v-544409fc]{top:0;margin-top:1em}.floating-btn.bottom[data-v-544409fc]{bottom:0;margin-bottom:1em}.floating-btn button[data-v-544409fc]{background:linear-gradient(90deg,#09ae80,#47e2b3 120%)!important;color:#fff!important;width:4em;height:4em;border-radius:2em;border:none!important;padding:0;box-shadow:2.5px 2.5px 3px 0 silver}.floating-btn button[data-v-544409fc]:hover{background:linear-gradient(90deg,#29d89f,#09bc8a 70%)!important}.floating-btn button[data-v-544409fc]:disabled,.floating-btn button[disabled][data-v-544409fc]{background:#e4e4e4!important;color:#9b9b9b!important;cursor:not-allowed}.floating-btn button.with-glow[data-v-544409fc]:not(:disabled){background:#f4f5f6!important;color:#17ad17!important;box-shadow:0 0 1px 1px #32b646!important}.floating-btn button.with-glow[data-v-544409fc]:not(:disabled):hover{box-shadow:0 0 1px 1px #9cdfb0!important;color:#27ee5e!important}.floating-btn[data-v-544409fc] button .icon-container{width:4em}.floating-btn[data-v-544409fc] button .icon-container .icon{margin:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6523.9f1785cc.css b/platypush/backend/http/webapp/dist/static/css/6523.21976e39.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/6523.9f1785cc.css rename to platypush/backend/http/webapp/dist/static/css/6523.21976e39.css index 6fe71fca7a..36be721ea8 100644 --- a/platypush/backend/http/webapp/dist/static/css/6523.9f1785cc.css +++ b/platypush/backend/http/webapp/dist/static/css/6523.21976e39.css @@ -1 +1 @@ -.col-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-24745ce0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-24745ce0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-24745ce0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-24745ce0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-24745ce0]:first-child{margin-left:26%!important}.col-offset-3[data-v-24745ce0]:not(first-child){margin-left:30%!important}.col-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-24745ce0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-24745ce0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-24745ce0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-24745ce0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-24745ce0]:first-child{margin-left:52%!important}.col-offset-6[data-v-24745ce0]:not(first-child){margin-left:56%!important}.col-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-24745ce0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-24745ce0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-24745ce0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-24745ce0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-24745ce0]:first-child{margin-left:78%!important}.col-offset-9[data-v-24745ce0]:not(first-child){margin-left:82%!important}.col-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-24745ce0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-24745ce0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-24745ce0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-24745ce0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-s-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-s-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-s-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-24745ce0]{display:none!important}.s-visible[data-v-24745ce0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-m-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-m-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-m-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-24745ce0]{display:none!important}.m-visible[data-v-24745ce0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-l-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-l-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-l-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-24745ce0]{display:none!important}.l-visible[data-v-24745ce0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-xl-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-xl-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-xl-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-24745ce0]{display:none!important}.xl-visible[data-v-24745ce0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-xxl-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-xxl-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-xxl-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-24745ce0]{display:none!important}.xxl-visible[data-v-24745ce0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-24745ce0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-24745ce0]{display:none!important}}.vertical-center[data-v-24745ce0]{display:flex;align-items:center}.horizontal-center[data-v-24745ce0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-24745ce0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-24745ce0]{display:none!important}.no-content[data-v-24745ce0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-24745ce0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-24745ce0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-24745ce0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-24745ce0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-24745ce0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-24745ce0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-24745ce0],.btn[data-v-24745ce0],button[data-v-24745ce0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-24745ce0],.btn-default[type=submit][data-v-24745ce0],.btn.btn-primary[data-v-24745ce0],.btn[type=submit][data-v-24745ce0],button.btn-primary[data-v-24745ce0],button[type=submit][data-v-24745ce0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-24745ce0],.btn-default .icon[data-v-24745ce0],button .icon[data-v-24745ce0]{margin-right:.5em}input[type=password][data-v-24745ce0],input[type=text][data-v-24745ce0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-24745ce0]:focus,input[type=text][data-v-24745ce0]:focus{border:1px solid #35b870}button[data-v-24745ce0],input[data-v-24745ce0]{outline:none}input[type=text][data-v-24745ce0]:hover,textarea[data-v-24745ce0]:hover{border:1px solid #9cdfb0}ul[data-v-24745ce0]{margin:0;padding:0;list-style:none}a[data-v-24745ce0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-24745ce0]:hover{color:#35b870}[data-v-24745ce0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-24745ce0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-24745ce0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-24745ce0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-24745ce0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-24745ce0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-24745ce0] .nav .path{cursor:pointer}.browser[data-v-24745ce0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-24745ce0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-24745ce0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-24745ce0],input[type=number][data-v-24745ce0],input[type=password][data-v-24745ce0],input[type=search][data-v-24745ce0],input[type=text][data-v-24745ce0],input[type=time][data-v-24745ce0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-24745ce0]:hover,input[type=number][data-v-24745ce0]:hover,input[type=password][data-v-24745ce0]:hover,input[type=search][data-v-24745ce0]:hover,input[type=text][data-v-24745ce0]:hover,input[type=time][data-v-24745ce0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-24745ce0]:focus,input[type=number][data-v-24745ce0]:focus,input[type=password][data-v-24745ce0]:focus,input[type=search][data-v-24745ce0]:focus,input[type=text][data-v-24745ce0]:focus,input[type=time][data-v-24745ce0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-24745ce0],input[type=number].with-icon[data-v-24745ce0],input[type=password].with-icon[data-v-24745ce0],input[type=search].with-icon[data-v-24745ce0],input[type=text].with-icon[data-v-24745ce0],input[type=time].with-icon[data-v-24745ce0]{padding-left:.3em}input[type=search][data-v-24745ce0],input[type=text][data-v-24745ce0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-24745ce0]{animation-fill-mode:both;animation-name:fadeIn-24745ce0;-webkit-animation-name:fadeIn-24745ce0}.fade-in[data-v-24745ce0],.fade-out[data-v-24745ce0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-24745ce0]{animation-fill-mode:both;animation-name:fadeOut-24745ce0;-webkit-animation-name:fadeOut-24745ce0}@keyframes fadeIn-24745ce0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-24745ce0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-24745ce0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-24745ce0;-webkit-animation-name:glow-24745ce0}.loop[data-v-24745ce0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-24745ce0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-24745ce0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-24745ce0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-24745ce0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.rss-news[data-v-24745ce0]{width:100%;height:100%;display:flex;align-items:center;letter-spacing:.025em}.rss-news .article[data-v-24745ce0]{width:90%;padding:0 2em}.rss-news .article .source[data-v-24745ce0]{font-size:1.7em;font-weight:700;margin-bottom:.5em}.rss-news .article .title[data-v-24745ce0]{font-size:1.8em;font-weight:400;margin-bottom:.5em}.rss-news .article .published[data-v-24745ce0]{text-align:right;font-size:1.1em} \ No newline at end of file +.col-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-24745ce0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-24745ce0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-24745ce0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-24745ce0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-24745ce0]:first-child{margin-left:26%!important}.col-offset-3[data-v-24745ce0]:not(first-child){margin-left:30%!important}.col-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-24745ce0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-24745ce0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-24745ce0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-24745ce0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-24745ce0]:first-child{margin-left:52%!important}.col-offset-6[data-v-24745ce0]:not(first-child){margin-left:56%!important}.col-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-24745ce0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-24745ce0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-24745ce0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-24745ce0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-24745ce0]:first-child{margin-left:78%!important}.col-offset-9[data-v-24745ce0]:not(first-child){margin-left:82%!important}.col-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-24745ce0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-24745ce0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-24745ce0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-24745ce0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-s-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-s-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-s-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-s-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-24745ce0]{display:none!important}.s-visible[data-v-24745ce0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-m-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-m-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-m-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-m-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-24745ce0]{display:none!important}.m-visible[data-v-24745ce0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-l-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-l-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-l-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-l-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-24745ce0]{display:none!important}.l-visible[data-v-24745ce0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-xl-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-xl-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-xl-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xl-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-24745ce0]{display:none!important}.xl-visible[data-v-24745ce0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-24745ce0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-24745ce0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-24745ce0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-24745ce0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-24745ce0]{margin-left:26%}.col-no-margin-xxl-3[data-v-24745ce0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-24745ce0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-24745ce0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-24745ce0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-24745ce0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-24745ce0]{margin-left:52%}.col-no-margin-xxl-6[data-v-24745ce0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-24745ce0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-24745ce0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-24745ce0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-24745ce0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-24745ce0]{margin-left:78%}.col-no-margin-xxl-9[data-v-24745ce0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-24745ce0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-24745ce0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-24745ce0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-24745ce0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-24745ce0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-24745ce0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-24745ce0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-24745ce0]{display:none!important}.xxl-visible[data-v-24745ce0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-24745ce0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-24745ce0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-24745ce0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-24745ce0]{display:none!important}}.vertical-center[data-v-24745ce0]{display:flex;align-items:center}.horizontal-center[data-v-24745ce0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-24745ce0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-24745ce0]{display:none!important}.no-content[data-v-24745ce0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-24745ce0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-24745ce0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-24745ce0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-24745ce0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-24745ce0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-24745ce0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-24745ce0],.btn[data-v-24745ce0],button[data-v-24745ce0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-24745ce0],.btn-default[type=submit][data-v-24745ce0],.btn.btn-primary[data-v-24745ce0],.btn[type=submit][data-v-24745ce0],button.btn-primary[data-v-24745ce0],button[type=submit][data-v-24745ce0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-24745ce0]:hover,.btn[data-v-24745ce0]:hover,button[data-v-24745ce0]:hover{color:#35b870}.btn .icon[data-v-24745ce0],.btn-default .icon[data-v-24745ce0],button .icon[data-v-24745ce0]{margin-right:.5em}.btn-default[data-v-24745ce0]:disabled,.btn-default[disabled][data-v-24745ce0],.btn[data-v-24745ce0]:disabled,.btn[disabled][data-v-24745ce0],button[data-v-24745ce0]:disabled,button[disabled][data-v-24745ce0]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-24745ce0]{cursor:grab!important}.dragged[data-v-24745ce0]{opacity:.5!important}input[type=password][data-v-24745ce0],input[type=text][data-v-24745ce0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-24745ce0]:focus,input[type=text][data-v-24745ce0]:focus{border:1px solid #35b870}button[data-v-24745ce0],input[data-v-24745ce0]{outline:none}input[type=text][data-v-24745ce0]:hover,textarea[data-v-24745ce0]:hover{border:1px solid #9cdfb0}ul[data-v-24745ce0]{margin:0;padding:0;list-style:none}a[data-v-24745ce0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-24745ce0]:hover{color:#35b870}[data-v-24745ce0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-24745ce0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-24745ce0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-24745ce0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-24745ce0]{color:#ad1717}body[data-v-24745ce0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-24745ce0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-24745ce0] .nav .path{cursor:pointer}.browser[data-v-24745ce0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-24745ce0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-24745ce0]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-24745ce0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-24745ce0],input[type=number][data-v-24745ce0],input[type=password][data-v-24745ce0],input[type=search][data-v-24745ce0],input[type=text][data-v-24745ce0],input[type=time][data-v-24745ce0]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-24745ce0]:hover,input[type=number][data-v-24745ce0]:hover,input[type=password][data-v-24745ce0]:hover,input[type=search][data-v-24745ce0]:hover,input[type=text][data-v-24745ce0]:hover,input[type=time][data-v-24745ce0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-24745ce0]:focus,input[type=number][data-v-24745ce0]:focus,input[type=password][data-v-24745ce0]:focus,input[type=search][data-v-24745ce0]:focus,input[type=text][data-v-24745ce0]:focus,input[type=time][data-v-24745ce0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-24745ce0],input[type=number].with-icon[data-v-24745ce0],input[type=password].with-icon[data-v-24745ce0],input[type=search].with-icon[data-v-24745ce0],input[type=text].with-icon[data-v-24745ce0],input[type=time].with-icon[data-v-24745ce0]{padding-left:.3em}input[type=search][data-v-24745ce0],input[type=text][data-v-24745ce0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-24745ce0]{animation-fill-mode:both;animation-name:fadeIn-24745ce0;-webkit-animation-name:fadeIn-24745ce0}.fade-in[data-v-24745ce0],.fade-out[data-v-24745ce0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-24745ce0]{animation-fill-mode:both;animation-name:fadeOut-24745ce0;-webkit-animation-name:fadeOut-24745ce0}.expand[data-v-24745ce0]{animation-fill-mode:both;animation-name:expand-24745ce0;-webkit-animation-name:expand-24745ce0}.expand[data-v-24745ce0],.shrink[data-v-24745ce0]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-24745ce0]{animation-fill-mode:both;animation-name:shrink-24745ce0;-webkit-animation-name:shrink-24745ce0}.fold[data-v-24745ce0]{animation-fill-mode:both;animation-name:fold-24745ce0;-webkit-animation-name:fold-24745ce0}.fold[data-v-24745ce0],.unfold[data-v-24745ce0]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-24745ce0]{animation-fill-mode:both;animation-name:unfold-24745ce0;-webkit-animation-name:unfold-24745ce0}.dim[data-v-24745ce0]{animation-fill-mode:both;animation-name:dim-24745ce0;-webkit-animation-name:dim-24745ce0}.brighten[data-v-24745ce0],.dim[data-v-24745ce0]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-24745ce0]{animation-fill-mode:both;animation-name:brighten-24745ce0;-webkit-animation-name:brighten-24745ce0}@keyframes fadeIn-24745ce0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-24745ce0{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-24745ce0{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-24745ce0{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-24745ce0{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-24745ce0{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-24745ce0{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-24745ce0{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-24745ce0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-24745ce0;-webkit-animation-name:glow-24745ce0}.loop[data-v-24745ce0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-24745ce0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-24745ce0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-24745ce0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-24745ce0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.rss-news[data-v-24745ce0]{width:100%;height:100%;display:flex;align-items:center;letter-spacing:.025em}.rss-news .article[data-v-24745ce0]{width:90%;padding:0 2em}.rss-news .article .source[data-v-24745ce0]{font-size:1.7em;font-weight:700;margin-bottom:.5em}.rss-news .article .title[data-v-24745ce0]{font-size:1.8em;font-weight:400;margin-bottom:.5em}.rss-news .article .published[data-v-24745ce0]{text-align:right;font-size:1.1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6561.93704195.css b/platypush/backend/http/webapp/dist/static/css/6561.93704195.css deleted file mode 100644 index 5ff49acc6c..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/6561.93704195.css +++ /dev/null @@ -1 +0,0 @@ -.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}*{box-sizing:border-box}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,select,textarea{font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{box-sizing:content-box;-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}pre,textarea{overflow:auto}body,html{font-family:Verdana,sans-serif;font-size:15px;line-height:1.5}html{overflow-x:hidden}.w3-slim,.w3-wide,h1,h2,h3,h4,h5,h6{font-family:Segoe UI,Arial,sans-serif}h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}.w3-serif{font-family:Times New Roman,Times,serif}h1,h2,h3,h4,h5,h6{font-weight:400;margin:10px 0}.w3-wide{letter-spacing:4px}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{font-weight:inherit}hr{height:0;border:0;border-top:1px solid #eee;margin:20px 0}img{margin-bottom:-5px}a{color:inherit}.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #ccc}.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(2n){background-color:#f1f1f1}.w3-table-all tr:nth-child(odd){background-color:#fff}.w3-table-all tr:nth-child(2n){background-color:#f1f1f1}.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}.w3-centered tr td,.w3-centered tr th{text-align:center}.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:6px 8px;display:table-cell;text-align:left;vertical-align:top}.w3-table td:first-child,.w3-table th:first-child,.w3-table-all td:first-child,.w3-table-all th:first-child{padding-left:16px}.w3-btn,.w3-btn-block{border:none;display:inline-block;outline:0;padding:6px 16px;vertical-align:middle;overflow:hidden;text-decoration:none!important;color:#fff;background-color:#000;text-align:center;cursor:pointer;white-space:nowrap}.w3-btn-floating-large:disabled,.w3-btn-floating:disabled,.w3-btn:disabled,.w3-disabled{cursor:not-allowed;opacity:.3}.w3-btn-block.w3-disabled,.w3-btn-floating.w3-disabled *,.w3-btn-floating:disabled *,.w3-btn.w3-disabled *,.w3-btn:disabled *{pointer-events:none}.w3-btn-block.w3-disabled:hover,.w3-btn-floating-large.w3-disabled:hover,.w3-btn-floating-large:disabled:hover,.w3-btn-floating.w3-disabled:hover,.w3-btn-floating:disabled:hover,.w3-btn.w3-disabled:hover,.w3-btn:disabled:hover{box-shadow:none}.w3-btn-block:hover,.w3-btn-floating-large:hover,.w3-btn-floating:hover,.w3-btn:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.w3-btn-block{width:100%}.w3-btn,.w3-btn-floating,.w3-btn-floating-large,.w3-closenav,.w3-opennav{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.w3-btn-floating,.w3-btn-floating-large{display:inline-block;text-align:center;color:#fff;background-color:#000;position:relative;overflow:hidden;z-index:1;padding:0;border-radius:50%;cursor:pointer;font-size:24px}.w3-btn-floating{width:40px;height:40px;line-height:40px}.w3-btn-floating-large{width:56px;height:56px;line-height:56px}.w3-btn-group .w3-btn{float:left}.w3-btn-bar .w3-btn{box-shadow:none;background-color:inherit;color:inherit;float:left}.w3-btn-bar .w3-btn:hover{background-color:#ccc}.w3-ripple{position:relative;overflow:hidden}.w3-ripple:after{content:"";background:#ccc;position:absolute;padding:300%;bottom:0;left:0;opacity:0;transition:.8s}.w3-ripple:active:after{padding:0;opacity:1;transition:0s}.w3-badge,.w3-sign,.w3-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}.w3-badge{border-radius:50%}ul.w3-ul{list-style-type:none;padding:0;margin:0}ul.w3-ul li{padding:6px 2px 6px 16px;border-bottom:1px solid #ddd}ul.w3-ul li:last-child{border-bottom:none}.w3-display-container,.w3-tooltip{position:relative}.w3-fluid{max-width:100%;height:auto}.w3-tooltip .w3-text{display:none}.w3-tooltip:hover .w3-text{display:inline-block}.w3-navbar{list-style-type:none;margin:0;padding:0;overflow:hidden}.w3-navbar li{float:left}.w3-navbar li a,.w3-navitem{display:block;padding:8px 16px}.w3-navbar li a:hover{color:#000;background-color:#ccc}.w3-navbar .w3-dropdown-click,.w3-navbar .w3-dropdown-hover{position:static}.w3-navbar .w3-dropdown-click:hover,.w3-navbar .w3-dropdown-hover:first-child,.w3-navbar .w3-dropdown-hover:hover{background-color:#ccc;color:#000}.w3-accordion-content a,.w3-dropdown-content a,.w3-dropnav a,.w3-navbar a,.w3-sidenav a,.w3-topnav a{text-decoration:none!important}.w3-navbar .w3-opennav.w3-right{float:right!important}.w3-topnav{padding:8px 8px}.w3-topnav a{padding:0 8px;border-bottom:3px solid transparent;transition:border-bottom .3s}.w3-topnav a:hover{border-bottom:3px solid #fff}.w3-topnav .w3-dropdown-hover a{border-bottom:0}.w3-closenav,.w3-opennav{color:inherit}.w3-closenav:hover,.w3-opennav:hover{cursor:pointer;opacity:.8}.w3-accordion-content a,.w3-btn,.w3-btn-block,.w3-btn-floating,.w3-btn-floating-large,.w3-closebtn,.w3-closenav,.w3-dropdown-click:hover,.w3-dropdown-content a,.w3-dropdown-hover:hover,.w3-dropnav a,.w3-hover-amber,.w3-hover-aqua,.w3-hover-black,.w3-hover-blue,.w3-hover-blue-grey,.w3-hover-brown,.w3-hover-cyan,.w3-hover-dark-grey,.w3-hover-deep-orange,.w3-hover-deep-purple,.w3-hover-green,.w3-hover-grey,.w3-hover-indigo,.w3-hover-khaki,.w3-hover-light-blue,.w3-hover-light-green,.w3-hover-light-grey,.w3-hover-lime,.w3-hover-opacity,.w3-hover-opacity-off,.w3-hover-orange,.w3-hover-pink,.w3-hover-purple,.w3-hover-red,.w3-hover-sand,.w3-hover-shadow,.w3-hover-teal,.w3-hover-text-amber,.w3-hover-text-aqua,.w3-hover-text-black,.w3-hover-text-blue,.w3-hover-text-blue-grey,.w3-hover-text-brown,.w3-hover-text-cyan,.w3-hover-text-dark-grey,.w3-hover-text-deep-orange,.w3-hover-text-deep-purple,.w3-hover-text-green,.w3-hover-text-grey,.w3-hover-text-indigo,.w3-hover-text-khaki,.w3-hover-text-light-blue,.w3-hover-text-light-green,.w3-hover-text-light-grey,.w3-hover-text-lime,.w3-hover-text-orange,.w3-hover-text-pink,.w3-hover-text-purple,.w3-hover-text-red,.w3-hover-text-sand,.w3-hover-text-teal,.w3-hover-text-white,.w3-hover-text-yellow,.w3-hover-white,.w3-hover-yellow,.w3-hoverable li,.w3-hoverable tbody tr,.w3-navbar a,.w3-opennav,.w3-pagination li a,.w3-sidenav a{transition:background-color .3s,color .15s,box-shadow .3s,opacity .3s}.w3-sidenav{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}.w3-sidenav a{padding:4px 2px 4px 16px}.w3-sidenav a:hover{background-color:#ccc}.w3-dropnav a,.w3-sidenav a{display:block}.w3-dropnav a:hover,.w3-sidenav .w3-dropdown-click:hover,.w3-sidenav .w3-dropdown-hover:first-child,.w3-sidenav .w3-dropdown-hover:hover{background-color:#ccc;color:#000}.w3-sidenav .w3-dropdown-click,.w3-sidenav .w3-dropdown-hover{width:100%}.w3-sidenav .w3-dropdown-click .w3-dropdown-content,.w3-sidenav .w3-dropdown-hover .w3-dropdown-content{min-width:100%}#main,.w3-main{transition:margin-left .4s}.w3-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:#000;background-color:rgba(0,0,0,.4)}.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}.w3-closebtn{text-decoration:none;float:right;font-size:24px;font-weight:700;color:inherit}.w3-closebtn:focus,.w3-closebtn:hover{color:#000;text-decoration:none;cursor:pointer}.w3-pagination{display:inline-block;padding:0;margin:0}.w3-pagination li{display:inline}.w3-pagination li a{text-decoration:none;color:#000;float:left;padding:8px 16px}.w3-pagination li a:hover{background-color:#ccc}.w3-group,.w3-input-group{margin-top:24px;margin-bottom:24px}.w3-input{padding:8px;display:block;border:none;border-bottom:1px solid gray;width:100%}.w3-label{color:#009688}.w3-input:not(:valid)~.w3-validate{color:#f44336}.w3-select{padding:9px 0;width:100%;color:#000;border:1px solid transparent;border-bottom:1px solid #009688}.w3-select select:focus{color:#000;border:1px solid #009688}.w3-select option[disabled]{color:#009688}.w3-dropdown-click,.w3-dropdown-hover{position:relative;display:inline-block;cursor:pointer}.w3-dropdown-hover:hover .w3-dropdown-content{display:block;z-index:1}.w3-dropdown-content{cursor:auto;color:#000;background-color:#fff;display:none;position:absolute;min-width:160px;margin:0;padding:0}.w3-dropdown-content a{padding:6px 16px;display:block}.w3-dropdown-content a:hover{background-color:#ccc}.w3-accordion{width:100%;cursor:pointer}.w3-accordion-content{cursor:auto;display:none;position:relative;width:100%;margin:0;padding:0}.w3-accordion-content a{padding:6px 16px;display:block}.w3-accordion-content a:hover{background-color:#ccc}.w3-progress-container{width:100%;height:1.5em;position:relative;background-color:#f1f1f1}.w3-progressbar{background-color:#757575;height:100%;position:absolute;line-height:inherit}input[type=checkbox].w3-check,input[type=radio].w3-radio{width:24px;height:24px;position:relative;top:6px}input[type=checkbox].w3-check:checked+.w3-validate,input[type=radio].w3-radio:checked+.w3-validate{color:#009688}input[type=checkbox].w3-check:disabled+.w3-validate,input[type=radio].w3-radio:disabled+.w3-validate{color:#aaa}.w3-responsive{overflow-x:auto}.w3-btn-bar:after,.w3-btn-bar:before,.w3-btn-group:after,.w3-btn-group:before,.w3-clear:after,.w3-container:after,.w3-panel:after,.w3-row-padding:after,.w3-row:after,.w3-topnav:after{content:"";display:table;clear:both}.w3-col,.w3-half,.w3-quarter,.w3-third,.w3-threequarter,.w3-twothird{float:left;width:100%}.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12,.w3-half,.w3-quarter,.w3-third,.w3-threequarter,.w3-twothird{width:99.99999%}@media only screen and (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%}.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}}@media only screen and (min-width:993px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3,.w3-quarter{width:24.99999%}.w3-col.l4,.w3-third{width:33.33333%}.w3-col.l5{width:41.66666%}.w3-col.l6,.w3-half{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8,.w3-twothird{width:66.66666%}.w3-col.l9,.w3-threequarter{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}.w3-content{max-width:980px;margin:auto}.w3-rest{overflow:hidden}.w3-hide{display:none!important}.w3-show,.w3-show-block{display:block!important}.w3-show-inline-block{display:inline-block!important}@media(max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}}@media(max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}}@media(min-width:993px){.w3-modal-content{width:900px}}@media screen and (max-width:600px){.w3-topnav a{display:block}.w3-navbar li:not(.w3-opennav){float:none;width:100%!important}.w3-navbar li.w3-right{float:none!important}.w3-navbar .w3-dropdown-click .w3-dropdown-content,.w3-navbar .w3-dropdown-hover .w3-dropdown-content,.w3-topnav .w3-dropdown-hover .w3-dropdown-content{position:relative}.w3-navbar,.w3-topnav{text-align:center}}@media(max-width:600px){.w3-hide-small{display:none!important}}@media(max-width:992px)and (min-width:601px){.w3-hide-medium{display:none!important}}@media(min-width:993px){.w3-hide-large{display:none!important}}@media screen and (max-width:992px){.w3-sidenav.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:993px){.w3-sidenav.w3-collapse{display:block!important}}.w3-bottom,.w3-top{position:fixed;width:100%;z-index:1}.w3-top{top:0}.w3-bottom{bottom:0}.w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);z-index:2}.w3-left{float:left!important}.w3-right{float:right!important}.w3-tiny{font-size:10px!important}.w3-small{font-size:12px!important}.w3-medium{font-size:15px!important}.w3-large{font-size:18px!important}.w3-xlarge{font-size:24px!important}.w3-xxlarge{font-size:36px!important}.w3-xxxlarge{font-size:48px!important}.w3-jumbo{font-size:64px!important}.w3-vertical{word-break:break-all;line-height:1;text-align:center;width:.6em}.w3-left-align{text-align:left!important}.w3-right-align{text-align:right!important}.w3-justify{text-align:justify!important}.w3-center{text-align:center!important}.w3-display-topleft{position:absolute;left:0;top:0}.w3-display-topright{position:absolute;right:0;top:0}.w3-display-bottomleft{position:absolute;left:0;bottom:0}.w3-display-bottomright{position:absolute;right:0;bottom:0}.w3-display-middle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}.w3-display-topmiddle{top:0}.w3-display-bottommiddle,.w3-display-topmiddle{position:absolute;left:0;width:100%;text-align:center}.w3-display-bottommiddle{bottom:0}.w3-circle{border-radius:50%!important}.w3-round-small{border-radius:2px!important}.w3-round,.w3-round-medium{border-radius:4px!important}.w3-round-large{border-radius:8px!important}.w3-round-xlarge{border-radius:16px!important}.w3-round-xxlarge{border-radius:32px!important}.w3-round-jumbo{border-radius:64px!important}.w3-border-0{border:0!important}.w3-border{border:1px solid #ccc!important}.w3-border-top{border-top:1px solid #ccc!important}.w3-border-bottom{border-bottom:1px solid #ccc!important}.w3-border-left{border-left:1px solid #ccc!important}.w3-border-right{border-right:1px solid #ccc!important}.w3-margin{margin:16px!important}.w3-margin-0{margin:0!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:16px!important}.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}.w3-section{margin-top:16px!important;margin-bottom:16px!important}.w3-padding-tiny{padding:2px 4px!important}.w3-padding-small{padding:4px 8px!important}.w3-form,.w3-padding,.w3-padding-medium{padding:8px 16px!important}.w3-padding-large{padding:12px 24px!important}.w3-padding-xlarge{padding:16px 32px!important}.w3-padding-xxlarge{padding:24px 48px!important}.w3-padding-jumbo{padding:32px 64px!important}.w3-padding-4{padding-top:4px!important;padding-bottom:4px!important}.w3-padding-8{padding-top:8px!important;padding-bottom:8px!important}.w3-padding-12{padding-top:12px!important;padding-bottom:12px!important}.w3-padding-16{padding-top:16px!important;padding-bottom:16px!important}.w3-padding-24{padding-top:24px!important;padding-bottom:24px!important}.w3-padding-32{padding-top:32px!important;padding-bottom:32px!important}.w3-padding-48{padding-top:48px!important;padding-bottom:48px!important}.w3-padding-64{padding-top:64px!important;padding-bottom:64px!important}.w3-padding-128{padding-top:128px!important;padding-bottom:128px!important}.w3-padding-0{padding:0!important}.w3-padding-top{padding-top:8px!important}.w3-padding-bottom{padding-bottom:8px!important}.w3-padding-left{padding-left:16px!important}.w3-padding-right{padding-right:16px!important}.w3-topbar{border-top:6px solid #ccc!important}.w3-bottombar{border-bottom:6px solid #ccc!important}.w3-leftbar{border-left:6px solid #ccc!important}.w3-rightbar{border-right:6px solid #ccc!important}.w3-row-padding,.w3-row-padding>.w3-col,.w3-row-padding>.w3-half,.w3-row-padding>.w3-quarter,.w3-row-padding>.w3-third,.w3-row-padding>.w3-threequarter,.w3-row-padding>.w3-twothird{padding:0 8px}.w3-spin{animation:w3-spin 2s linear infinite;-webkit-animation:w3-spin 2s linear infinite}@keyframes w3-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.w3-container,.w3-panel{padding:.01em 16px}.w3-panel{margin-top:16px!important;margin-bottom:16px!important}.w3-example{background-color:#f1f1f1;padding:.01em 16px}.w3-code,.w3-codespan{font-family:Consolas,courier new;font-size:16px}.w3-code{line-height:1.4;width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #009688;word-wrap:break-word}.w3-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}.w3-code,.w3-example,.w3-reference{margin:20px 0}.w3-card{border:1px solid #ccc}.w3-card-2,.w3-example{box-shadow:0 2px 4px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)!important}.w3-card-4,.w3-hover-shadow:hover{box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)!important}.w3-card-8{box-shadow:0 8px 16px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)!important}.w3-card-12{box-shadow:0 12px 16px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19)!important}.w3-card-16{box-shadow:0 16px 24px 0 rgba(0,0,0,.22),0 25px 55px 0 rgba(0,0,0,.21)!important}.w3-card-24{box-shadow:0 24px 24px 0 rgba(0,0,0,.2),0 40px 77px 0 rgba(0,0,0,.22)!important}.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}to{opacity:0}}.w3-animate-opacity{animation:opac 1.5s}@keyframes opac{0%{opacity:0}to{opacity:1}}.w3-animate-top{position:relative;animation:animatetop .4s}@keyframes animatetop{0%{top:-300px;opacity:0}to{top:0;opacity:1}}.w3-animate-left{position:relative;animation:animateleft .4s}@keyframes animateleft{0%{left:-300px;opacity:0}to{left:0;opacity:1}}.w3-animate-right{position:relative;animation:animateright .4s}@keyframes animateright{0%{right:-300px;opacity:0}to{right:0;opacity:1}}.w3-animate-bottom{position:relative;animation:animatebottom .4s}@keyframes animatebottom{0%{bottom:-300px;opacity:0}to{bottom:0;opacity:1}}.w3-animate-zoom{animation:animatezoom .6s}@keyframes animatezoom{0%{transform:scale(0)}to{transform:scale(1)}}.w3-animate-input{transition:width .4s ease-in-out}.w3-animate-input:focus{width:100%!important}.w3-hover-opacity:hover,.w3-opacity{opacity:.6;filter:alpha(opacity=60);-webkit-backface-visibility:hidden}.w3-hover-opacity-off:hover,.w3-opacity-off{opacity:1;filter:alpha(opacity=100);-webkit-backface-visibility:hidden}.w3-text-shadow{text-shadow:1px 1px 0 #444}.w3-text-shadow-white{text-shadow:1px 1px 0 #ddd}.w3-hover-none:hover,.w3-transparent{background-color:transparent!important}.w3-hover-none:hover{box-shadow:none!important}.w3-amber,.w3-hover-amber:hover{color:#000!important;background-color:#ffc107!important}.w3-aqua,.w3-hover-aqua:hover{color:#000!important;background-color:aqua!important}.w3-blue,.w3-hover-blue:hover{color:#fff!important;background-color:#2196f3!important}.w3-hover-light-blue:hover,.w3-light-blue{color:#000!important;background-color:skyblue!important}.w3-brown,.w3-hover-brown:hover{color:#fff!important;background-color:#795548!important}.w3-cyan,.w3-hover-cyan:hover{color:#000!important;background-color:#00bcd4!important}.w3-blue-grey,.w3-hover-blue-grey:hover{color:#fff!important;background-color:#607d8b!important}.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#4caf50!important}.w3-hover-light-green:hover,.w3-light-green{color:#000!important;background-color:#8bc34a!important}.w3-hover-indigo:hover,.w3-indigo{color:#fff!important;background-color:#3f51b5!important}.w3-hover-khaki:hover,.w3-khaki{color:#000!important;background-color:khaki!important}.w3-hover-lime:hover,.w3-lime{color:#000!important;background-color:#cddc39!important}.w3-hover-orange:hover,.w3-orange{color:#000!important;background-color:#ff9800!important}.w3-deep-orange,.w3-hover-deep-orange:hover{color:#fff!important;background-color:#ff5722!important}.w3-hover-pink:hover,.w3-pink{color:#fff!important;background-color:#e91e63!important}.w3-hover-purple:hover,.w3-purple{color:#fff!important;background-color:#9c27b0!important}.w3-deep-purple,.w3-hover-deep-purple:hover{color:#fff!important;background-color:#673ab7!important}.w3-hover-red:hover,.w3-red{color:#fff!important;background-color:#f44336!important}.w3-hover-sand:hover,.w3-sand{color:#000!important;background-color:oldlace!important}.w3-hover-teal:hover,.w3-teal{color:#fff!important;background-color:#009688!important}.w3-hover-yellow:hover,.w3-yellow{color:#000!important;background-color:#ffeb3b!important}.w3-hover-white:hover,.w3-white{color:#000!important;background-color:#fff!important}.w3-black,.w3-hover-black:hover{color:#fff!important;background-color:#000!important}.w3-grey,.w3-hover-grey:hover{color:#000!important;background-color:#9e9e9e!important}.w3-hover-light-grey:hover,.w3-light-grey{color:#000!important;background-color:#f1f1f1!important}.w3-dark-grey,.w3-hover-dark-grey:hover{color:#fff!important;background-color:#616161!important}.w3-hover-pale-red:hover,.w3-pale-red{color:#000!important;background-color:#fdd!important}.w3-hover-pale-green:hover,.w3-pale-green{color:#000!important;background-color:#dfd!important}.w3-hover-pale-yellow:hover,.w3-pale-yellow{color:#000!important;background-color:#ffc!important}.w3-hover-pale-blue:hover,.w3-pale-blue{color:#000!important;background-color:#dff!important}.w3-hover-text-amber:hover,.w3-text-amber{color:#ffc107!important}.w3-hover-text-aqua:hover,.w3-text-aqua{color:aqua!important}.w3-hover-text-blue:hover,.w3-text-blue{color:#2196f3!important}.w3-hover-text-light-blue:hover,.w3-text-light-blue{color:skyblue!important}.w3-hover-text-brown:hover,.w3-text-brown{color:#795548!important}.w3-hover-text-cyan:hover,.w3-text-cyan{color:#00bcd4!important}.w3-hover-text-blue-grey:hover,.w3-text-blue-grey{color:#607d8b!important}.w3-hover-text-green:hover,.w3-text-green{color:#4caf50!important}.w3-hover-text-light-green:hover,.w3-text-light-green{color:#8bc34a!important}.w3-hover-text-indigo:hover,.w3-text-indigo{color:#3f51b5!important}.w3-hover-text-khaki:hover,.w3-text-khaki{color:#b4aa50!important}.w3-hover-text-lime:hover,.w3-text-lime{color:#cddc39!important}.w3-hover-text-orange:hover,.w3-text-orange{color:#ff9800!important}.w3-hover-text-deep-orange:hover,.w3-text-deep-orange{color:#ff5722!important}.w3-hover-text-pink:hover,.w3-text-pink{color:#e91e63!important}.w3-hover-text-purple:hover,.w3-text-purple{color:#9c27b0!important}.w3-hover-text-deep-purple:hover,.w3-text-deep-purple{color:#673ab7!important}.w3-hover-text-red:hover,.w3-text-red{color:#f44336!important}.w3-hover-text-sand:hover,.w3-text-sand{color:oldlace!important}.w3-hover-text-teal:hover,.w3-text-teal{color:#009688!important}.w3-hover-text-yellow:hover,.w3-text-yellow{color:#d2be0e!important}.w3-hover-text-white:hover,.w3-text-white{color:#fff!important}.w3-hover-text-black:hover,.w3-text-black{color:#000!important}.w3-hover-text-grey:hover,.w3-text-grey{color:#757575!important}.w3-hover-text-light-grey:hover,.w3-text-light-grey{color:#f1f1f1!important}.w3-hover-text-dark-grey:hover,.w3-text-dark-grey{color:#3a3a3a!important}.w3-border-amber,.w3-hover-border-amber:hover{border-color:#ffc107!important}.w3-border-aqua,.w3-hover-border-aqua:hover{border-color:aqua!important}.w3-border-blue,.w3-hover-border-blue:hover{border-color:#2196f3!important}.w3-border-light-blue,.w3-hover-border-light-blue:hover{border-color:skyblue!important}.w3-border-brown,.w3-hover-border-brown:hover{border-color:#795548!important}.w3-border-cyan,.w3-hover-border-cyan:hover{border-color:#00bcd4!important}.w3-border-blue-grey,.w3-hover-blue-grey:hover{border-color:#607d8b!important}.w3-border-green,.w3-hover-border-green:hover{border-color:#4caf50!important}.w3-border-light-green,.w3-hover-border-light-green:hover{border-color:#8bc34a!important}.w3-border-indigo,.w3-hover-border-indigo:hover{border-color:#3f51b5!important}.w3-border-khaki,.w3-hover-border-khaki:hover{border-color:khaki!important}.w3-border-lime,.w3-hover-border-lime:hover{border-color:#cddc39!important}.w3-border-orange,.w3-hover-border-orange:hover{border-color:#ff9800!important}.w3-border-deep-orange,.w3-hover-border-deep-orange:hover{border-color:#ff5722!important}.w3-border-pink,.w3-hover-border-pink:hover{border-color:#e91e63!important}.w3-border-purple,.w3-hover-border-purple:hover{border-color:#9c27b0!important}.w3-border-deep-purple,.w3-hover-border-deep-purple:hover{border-color:#673ab7!important}.w3-border-red,.w3-hover-border-red:hover{border-color:#f44336!important}.w3-border-sand,.w3-hover-border-sand:hover{border-color:oldlace!important}.w3-border-teal,.w3-hover-border-teal:hover{border-color:#009688!important}.w3-border-yellow,.w3-hover-border-yellow:hover{border-color:#ffeb3b!important}.w3-border-white,.w3-hover-border-white:hover{border-color:#fff!important}.w3-border-black,.w3-hover-border-black:hover{border-color:#000!important}.w3-border-grey,.w3-hover-border-grey:hover{border-color:#9e9e9e!important}.w3-border-light-grey,.w3-hover-border-light-grey:hover{border-color:#f1f1f1!important}.w3-border-dark-grey,.w3-hover-border-dark-grey:hover{border-color:#616161!important}.w3-border-pale-red,.w3-hover-border-pale-red:hover{border-color:#ffe7e7!important}.w3-border-pale-green,.w3-hover-border-pale-green:hover{border-color:#e7ffe7!important}.w3-border-pale-yellow,.w3-hover-border-pale-yellow:hover{border-color:#ffc!important}.w3-border-pale-blue,.w3-hover-border-pale-blue:hover{border-color:#e7ffff!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6561.dca0bf04.css b/platypush/backend/http/webapp/dist/static/css/6561.dca0bf04.css new file mode 100644 index 0000000000..c8d5e337af --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6561.dca0bf04.css @@ -0,0 +1 @@ +.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}*{box-sizing:border-box}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,select,textarea{font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{box-sizing:content-box;-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}pre,textarea{overflow:auto}body,html{font-family:Verdana,sans-serif;font-size:15px;line-height:1.5}html{overflow-x:hidden}.w3-slim,.w3-wide,h1,h2,h3,h4,h5,h6{font-family:Segoe UI,Arial,sans-serif}h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}.w3-serif{font-family:Times New Roman,Times,serif}h1,h2,h3,h4,h5,h6{font-weight:400;margin:10px 0}.w3-wide{letter-spacing:4px}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{font-weight:inherit}hr{height:0;border:0;border-top:1px solid #eee;margin:20px 0}img{margin-bottom:-5px}a{color:inherit}.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #ccc}.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(2n){background-color:#f1f1f1}.w3-table-all tr:nth-child(odd){background-color:#fff}.w3-table-all tr:nth-child(2n){background-color:#f1f1f1}.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}.w3-centered tr td,.w3-centered tr th{text-align:center}.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:6px 8px;display:table-cell;text-align:left;vertical-align:top}.w3-table td:first-child,.w3-table th:first-child,.w3-table-all td:first-child,.w3-table-all th:first-child{padding-left:16px}.w3-btn,.w3-btn-block{border:none;display:inline-block;outline:0;padding:6px 16px;vertical-align:middle;overflow:hidden;text-decoration:none!important;color:#fff;background-color:#000;text-align:center;cursor:pointer;white-space:nowrap}.w3-btn-floating-large:disabled,.w3-btn-floating:disabled,.w3-btn:disabled,.w3-disabled{cursor:not-allowed;opacity:.3}.w3-btn-block.w3-disabled,.w3-btn-floating.w3-disabled *,.w3-btn-floating:disabled *,.w3-btn.w3-disabled *,.w3-btn:disabled *{pointer-events:none}.w3-btn-block.w3-disabled:hover,.w3-btn-floating-large.w3-disabled:hover,.w3-btn-floating-large:disabled:hover,.w3-btn-floating.w3-disabled:hover,.w3-btn-floating:disabled:hover,.w3-btn.w3-disabled:hover,.w3-btn:disabled:hover{box-shadow:none}.w3-btn-block:hover,.w3-btn-floating-large:hover,.w3-btn-floating:hover,.w3-btn:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.w3-btn-block{width:100%}.w3-btn,.w3-btn-floating,.w3-btn-floating-large,.w3-closenav,.w3-opennav{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.w3-btn-floating,.w3-btn-floating-large{display:inline-block;text-align:center;color:#fff;background-color:#000;position:relative;overflow:hidden;z-index:1;padding:0;border-radius:50%;cursor:pointer;font-size:24px}.w3-btn-floating{width:40px;height:40px;line-height:40px}.w3-btn-floating-large{width:56px;height:56px;line-height:56px}.w3-btn-group .w3-btn{float:left}.w3-btn-bar .w3-btn{box-shadow:none;background-color:inherit;color:inherit;float:left}.w3-btn-bar .w3-btn:hover{background-color:#ccc}.w3-ripple{position:relative;overflow:hidden}.w3-ripple:after{content:"";background:#ccc;position:absolute;padding:300%;bottom:0;left:0;opacity:0;transition:.8s}.w3-ripple:active:after{padding:0;opacity:1;transition:0s}.w3-badge,.w3-sign,.w3-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}.w3-badge{border-radius:50%}ul.w3-ul{list-style-type:none;padding:0;margin:0}ul.w3-ul li{padding:6px 2px 6px 16px;border-bottom:1px solid #ddd}ul.w3-ul li:last-child{border-bottom:none}.w3-display-container,.w3-tooltip{position:relative}.w3-fluid{max-width:100%;height:auto}.w3-tooltip .w3-text{display:none}.w3-tooltip:hover .w3-text{display:inline-block}.w3-navbar{list-style-type:none;margin:0;padding:0;overflow:hidden}.w3-navbar li{float:left}.w3-navbar li a,.w3-navitem{display:block;padding:8px 16px}.w3-navbar li a:hover{color:#000;background-color:#ccc}.w3-navbar .w3-dropdown-click,.w3-navbar .w3-dropdown-hover{position:static}.w3-navbar .w3-dropdown-click:hover,.w3-navbar .w3-dropdown-hover:first-child,.w3-navbar .w3-dropdown-hover:hover{background-color:#ccc;color:#000}.w3-accordion-content a,.w3-dropdown-content a,.w3-dropnav a,.w3-navbar a,.w3-sidenav a,.w3-topnav a{text-decoration:none!important}.w3-navbar .w3-opennav.w3-right{float:right!important}.w3-topnav{padding:8px 8px}.w3-topnav a{padding:0 8px;border-bottom:3px solid transparent;transition:border-bottom .3s}.w3-topnav a:hover{border-bottom:3px solid #fff}.w3-topnav .w3-dropdown-hover a{border-bottom:0}.w3-closenav,.w3-opennav{color:inherit}.w3-closenav:hover,.w3-opennav:hover{cursor:pointer;opacity:.8}.w3-accordion-content a,.w3-btn,.w3-btn-block,.w3-btn-floating,.w3-btn-floating-large,.w3-closebtn,.w3-closenav,.w3-dropdown-click:hover,.w3-dropdown-content a,.w3-dropdown-hover:hover,.w3-dropnav a,.w3-hover-amber,.w3-hover-aqua,.w3-hover-black,.w3-hover-blue,.w3-hover-blue-grey,.w3-hover-brown,.w3-hover-cyan,.w3-hover-dark-grey,.w3-hover-deep-orange,.w3-hover-deep-purple,.w3-hover-green,.w3-hover-grey,.w3-hover-indigo,.w3-hover-khaki,.w3-hover-light-blue,.w3-hover-light-green,.w3-hover-light-grey,.w3-hover-lime,.w3-hover-opacity,.w3-hover-opacity-off,.w3-hover-orange,.w3-hover-pink,.w3-hover-purple,.w3-hover-red,.w3-hover-sand,.w3-hover-shadow,.w3-hover-teal,.w3-hover-text-amber,.w3-hover-text-aqua,.w3-hover-text-black,.w3-hover-text-blue,.w3-hover-text-blue-grey,.w3-hover-text-brown,.w3-hover-text-cyan,.w3-hover-text-dark-grey,.w3-hover-text-deep-orange,.w3-hover-text-deep-purple,.w3-hover-text-green,.w3-hover-text-grey,.w3-hover-text-indigo,.w3-hover-text-khaki,.w3-hover-text-light-blue,.w3-hover-text-light-green,.w3-hover-text-light-grey,.w3-hover-text-lime,.w3-hover-text-orange,.w3-hover-text-pink,.w3-hover-text-purple,.w3-hover-text-red,.w3-hover-text-sand,.w3-hover-text-teal,.w3-hover-text-white,.w3-hover-text-yellow,.w3-hover-white,.w3-hover-yellow,.w3-hoverable li,.w3-hoverable tbody tr,.w3-navbar a,.w3-opennav,.w3-pagination li a,.w3-sidenav a{transition:background-color .3s,color .15s,box-shadow .3s,opacity .3s}.w3-sidenav{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}.w3-sidenav a{padding:4px 2px 4px 16px}.w3-sidenav a:hover{background-color:#ccc}.w3-dropnav a,.w3-sidenav a{display:block}.w3-dropnav a:hover,.w3-sidenav .w3-dropdown-click:hover,.w3-sidenav .w3-dropdown-hover:first-child,.w3-sidenav .w3-dropdown-hover:hover{background-color:#ccc;color:#000}.w3-sidenav .w3-dropdown-click,.w3-sidenav .w3-dropdown-hover{width:100%}.w3-sidenav .w3-dropdown-click .w3-dropdown-content,.w3-sidenav .w3-dropdown-hover .w3-dropdown-content{min-width:100%}#main,.w3-main{transition:margin-left .4s}.w3-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:#000;background-color:rgba(0,0,0,.4)}.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}.w3-closebtn{text-decoration:none;float:right;font-size:24px;font-weight:700;color:inherit}.w3-closebtn:focus,.w3-closebtn:hover{color:#000;text-decoration:none;cursor:pointer}.w3-pagination{display:inline-block;padding:0;margin:0}.w3-pagination li{display:inline}.w3-pagination li a{text-decoration:none;color:#000;float:left;padding:8px 16px}.w3-pagination li a:hover{background-color:#ccc}.w3-group,.w3-input-group{margin-top:24px;margin-bottom:24px}.w3-input{padding:8px;display:block;border:none;border-bottom:1px solid gray;width:100%}.w3-label{color:#009688}.w3-input:not(:valid)~.w3-validate{color:#f44336}.w3-select{padding:9px 0;width:100%;color:#000;border:1px solid transparent;border-bottom:1px solid #009688}.w3-select select:focus{color:#000;border:1px solid #009688}.w3-select option[disabled]{color:#009688}.w3-dropdown-click,.w3-dropdown-hover{position:relative;display:inline-block;cursor:pointer}.w3-dropdown-hover:hover .w3-dropdown-content{display:block;z-index:1}.w3-dropdown-content{cursor:auto;color:#000;background-color:#fff;display:none;position:absolute;min-width:160px;margin:0;padding:0}.w3-dropdown-content a{padding:6px 16px;display:block}.w3-dropdown-content a:hover{background-color:#ccc}.w3-accordion{width:100%;cursor:pointer}.w3-accordion-content{cursor:auto;display:none;position:relative;width:100%;margin:0;padding:0}.w3-accordion-content a{padding:6px 16px;display:block}.w3-accordion-content a:hover{background-color:#ccc}.w3-progress-container{width:100%;height:1.5em;position:relative;background-color:#f1f1f1}.w3-progressbar{background-color:#757575;height:100%;position:absolute;line-height:inherit}input[type=checkbox].w3-check,input[type=radio].w3-radio{width:24px;height:24px;position:relative;top:6px}input[type=checkbox].w3-check:checked+.w3-validate,input[type=radio].w3-radio:checked+.w3-validate{color:#009688}input[type=checkbox].w3-check:disabled+.w3-validate,input[type=radio].w3-radio:disabled+.w3-validate{color:#aaa}.w3-responsive{overflow-x:auto}.w3-btn-bar:after,.w3-btn-bar:before,.w3-btn-group:after,.w3-btn-group:before,.w3-clear:after,.w3-container:after,.w3-panel:after,.w3-row-padding:after,.w3-row:after,.w3-topnav:after{content:"";display:table;clear:both}.w3-col,.w3-half,.w3-quarter,.w3-third,.w3-threequarter,.w3-twothird{float:left;width:100%}.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12,.w3-half,.w3-quarter,.w3-third,.w3-threequarter,.w3-twothird{width:99.99999%}@media only screen and (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%}.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}}@media only screen and (min-width:993px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3,.w3-quarter{width:24.99999%}.w3-col.l4,.w3-third{width:33.33333%}.w3-col.l5{width:41.66666%}.w3-col.l6,.w3-half{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8,.w3-twothird{width:66.66666%}.w3-col.l9,.w3-threequarter{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}.w3-content{max-width:980px;margin:auto}.w3-rest{overflow:hidden}.w3-hide{display:none!important}.w3-show,.w3-show-block{display:block!important}.w3-show-inline-block{display:inline-block!important}@media(max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}}@media(max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}}@media(min-width:993px){.w3-modal-content{width:900px}}@media screen and (max-width:600px){.w3-topnav a{display:block}.w3-navbar li:not(.w3-opennav){float:none;width:100%!important}.w3-navbar li.w3-right{float:none!important}.w3-navbar .w3-dropdown-click .w3-dropdown-content,.w3-navbar .w3-dropdown-hover .w3-dropdown-content,.w3-topnav .w3-dropdown-hover .w3-dropdown-content{position:relative}.w3-navbar,.w3-topnav{text-align:center}}@media(max-width:600px){.w3-hide-small{display:none!important}}@media(max-width:992px)and (min-width:601px){.w3-hide-medium{display:none!important}}@media(min-width:993px){.w3-hide-large{display:none!important}}@media screen and (max-width:992px){.w3-sidenav.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:993px){.w3-sidenav.w3-collapse{display:block!important}}.w3-bottom,.w3-top{position:fixed;width:100%;z-index:1}.w3-top{top:0}.w3-bottom{bottom:0}.w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);z-index:2}.w3-left{float:left!important}.w3-right{float:right!important}.w3-tiny{font-size:10px!important}.w3-small{font-size:12px!important}.w3-medium{font-size:15px!important}.w3-large{font-size:18px!important}.w3-xlarge{font-size:24px!important}.w3-xxlarge{font-size:36px!important}.w3-xxxlarge{font-size:48px!important}.w3-jumbo{font-size:64px!important}.w3-vertical{word-break:break-all;line-height:1;text-align:center;width:.6em}.w3-left-align{text-align:left!important}.w3-right-align{text-align:right!important}.w3-justify{text-align:justify!important}.w3-center{text-align:center!important}.w3-display-topleft{position:absolute;left:0;top:0}.w3-display-topright{position:absolute;right:0;top:0}.w3-display-bottomleft{position:absolute;left:0;bottom:0}.w3-display-bottomright{position:absolute;right:0;bottom:0}.w3-display-middle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}.w3-display-topmiddle{top:0}.w3-display-bottommiddle,.w3-display-topmiddle{position:absolute;left:0;width:100%;text-align:center}.w3-display-bottommiddle{bottom:0}.w3-circle{border-radius:50%!important}.w3-round-small{border-radius:2px!important}.w3-round,.w3-round-medium{border-radius:4px!important}.w3-round-large{border-radius:8px!important}.w3-round-xlarge{border-radius:16px!important}.w3-round-xxlarge{border-radius:32px!important}.w3-round-jumbo{border-radius:64px!important}.w3-border-0{border:0!important}.w3-border{border:1px solid #ccc!important}.w3-border-top{border-top:1px solid #ccc!important}.w3-border-bottom{border-bottom:1px solid #ccc!important}.w3-border-left{border-left:1px solid #ccc!important}.w3-border-right{border-right:1px solid #ccc!important}.w3-margin{margin:16px!important}.w3-margin-0{margin:0!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:16px!important}.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}.w3-section{margin-top:16px!important;margin-bottom:16px!important}.w3-padding-tiny{padding:2px 4px!important}.w3-padding-small{padding:4px 8px!important}.w3-form,.w3-padding,.w3-padding-medium{padding:8px 16px!important}.w3-padding-large{padding:12px 24px!important}.w3-padding-xlarge{padding:16px 32px!important}.w3-padding-xxlarge{padding:24px 48px!important}.w3-padding-jumbo{padding:32px 64px!important}.w3-padding-4{padding-top:4px!important;padding-bottom:4px!important}.w3-padding-8{padding-top:8px!important;padding-bottom:8px!important}.w3-padding-12{padding-top:12px!important;padding-bottom:12px!important}.w3-padding-16{padding-top:16px!important;padding-bottom:16px!important}.w3-padding-24{padding-top:24px!important;padding-bottom:24px!important}.w3-padding-32{padding-top:32px!important;padding-bottom:32px!important}.w3-padding-48{padding-top:48px!important;padding-bottom:48px!important}.w3-padding-64{padding-top:64px!important;padding-bottom:64px!important}.w3-padding-128{padding-top:128px!important;padding-bottom:128px!important}.w3-padding-0{padding:0!important}.w3-padding-top{padding-top:8px!important}.w3-padding-bottom{padding-bottom:8px!important}.w3-padding-left{padding-left:16px!important}.w3-padding-right{padding-right:16px!important}.w3-topbar{border-top:6px solid #ccc!important}.w3-bottombar{border-bottom:6px solid #ccc!important}.w3-leftbar{border-left:6px solid #ccc!important}.w3-rightbar{border-right:6px solid #ccc!important}.w3-row-padding,.w3-row-padding>.w3-col,.w3-row-padding>.w3-half,.w3-row-padding>.w3-quarter,.w3-row-padding>.w3-third,.w3-row-padding>.w3-threequarter,.w3-row-padding>.w3-twothird{padding:0 8px}.w3-spin{animation:w3-spin 2s linear infinite;-webkit-animation:w3-spin 2s linear infinite}@keyframes w3-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.w3-container,.w3-panel{padding:.01em 16px}.w3-panel{margin-top:16px!important;margin-bottom:16px!important}.w3-example{background-color:#f1f1f1;padding:.01em 16px}.w3-code,.w3-codespan{font-family:Consolas,courier new;font-size:16px}.w3-code{line-height:1.4;width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #009688;word-wrap:break-word}.w3-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}.w3-code,.w3-example,.w3-reference{margin:20px 0}.w3-card{border:1px solid #ccc}.w3-card-2,.w3-example{box-shadow:0 2px 4px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)!important}.w3-card-4,.w3-hover-shadow:hover{box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)!important}.w3-card-8{box-shadow:0 8px 16px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)!important}.w3-card-12{box-shadow:0 12px 16px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19)!important}.w3-card-16{box-shadow:0 16px 24px 0 rgba(0,0,0,.22),0 25px 55px 0 rgba(0,0,0,.21)!important}.w3-card-24{box-shadow:0 24px 24px 0 rgba(0,0,0,.2),0 40px 77px 0 rgba(0,0,0,.22)!important}.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}to{opacity:0}}.w3-animate-opacity{animation:opac 1.5s}@keyframes opac{0%{opacity:0}to{opacity:1}}.w3-animate-top{position:relative;animation:animatetop .4s}@keyframes animatetop{0%{top:-300px;opacity:0}to{top:0;opacity:1}}.w3-animate-left{position:relative;animation:animateleft .4s}@keyframes animateleft{0%{left:-300px;opacity:0}to{left:0;opacity:1}}.w3-animate-right{position:relative;animation:animateright .4s}@keyframes animateright{0%{right:-300px;opacity:0}to{right:0;opacity:1}}.w3-animate-bottom{position:relative;animation:animatebottom .4s}@keyframes animatebottom{0%{bottom:-300px;opacity:0}to{bottom:0;opacity:1}}.w3-animate-zoom{animation:animatezoom .6s}@keyframes animatezoom{0%{transform:scale(0)}to{transform:scale(1)}}.w3-animate-input{transition:width .4s ease-in-out}.w3-animate-input:focus{width:100%!important}.w3-hover-opacity:hover,.w3-opacity{opacity:.6;filter:alpha(opacity=60);-webkit-backface-visibility:hidden}.w3-hover-opacity-off:hover,.w3-opacity-off{opacity:1;filter:alpha(opacity=100);-webkit-backface-visibility:hidden}.w3-text-shadow{text-shadow:1px 1px 0 #444}.w3-text-shadow-white{text-shadow:1px 1px 0 #ddd}.w3-hover-none:hover,.w3-transparent{background-color:transparent!important}.w3-hover-none:hover{box-shadow:none!important}.w3-amber,.w3-hover-amber:hover{color:#000!important;background-color:#ffc107!important}.w3-aqua,.w3-hover-aqua:hover{color:#000!important;background-color:aqua!important}.w3-blue,.w3-hover-blue:hover{color:#fff!important;background-color:#2196f3!important}.w3-hover-light-blue:hover,.w3-light-blue{color:#000!important;background-color:skyblue!important}.w3-brown,.w3-hover-brown:hover{color:#fff!important;background-color:#795548!important}.w3-cyan,.w3-hover-cyan:hover{color:#000!important;background-color:#00bcd4!important}.w3-blue-grey,.w3-hover-blue-grey:hover{color:#fff!important;background-color:#607d8b!important}.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#4caf50!important}.w3-hover-light-green:hover,.w3-light-green{color:#000!important;background-color:#8bc34a!important}.w3-hover-indigo:hover,.w3-indigo{color:#fff!important;background-color:#3f51b5!important}.w3-hover-khaki:hover,.w3-khaki{color:#000!important;background-color:khaki!important}.w3-hover-lime:hover,.w3-lime{color:#000!important;background-color:#cddc39!important}.w3-hover-orange:hover,.w3-orange{color:#000!important;background-color:#ff9800!important}.w3-deep-orange,.w3-hover-deep-orange:hover{color:#fff!important;background-color:#ff5722!important}.w3-hover-pink:hover,.w3-pink{color:#fff!important;background-color:#e91e63!important}.w3-hover-purple:hover,.w3-purple{color:#fff!important;background-color:#9c27b0!important}.w3-deep-purple,.w3-hover-deep-purple:hover{color:#fff!important;background-color:#673ab7!important}.w3-hover-red:hover,.w3-red{color:#fff!important;background-color:#f44336!important}.w3-hover-sand:hover,.w3-sand{color:#000!important;background-color:oldlace!important}.w3-hover-teal:hover,.w3-teal{color:#fff!important;background-color:#009688!important}.w3-hover-yellow:hover,.w3-yellow{color:#000!important;background-color:#ffeb3b!important}.w3-hover-white:hover,.w3-white{color:#000!important;background-color:#fff!important}.w3-black,.w3-hover-black:hover{color:#fff!important;background-color:#000!important}.w3-grey,.w3-hover-grey:hover{color:#000!important;background-color:#9e9e9e!important}.w3-hover-light-grey:hover,.w3-light-grey{color:#000!important;background-color:#f1f1f1!important}.w3-dark-grey,.w3-hover-dark-grey:hover{color:#fff!important;background-color:#616161!important}.w3-hover-pale-red:hover,.w3-pale-red{color:#000!important;background-color:#fdd!important}.w3-hover-pale-green:hover,.w3-pale-green{color:#000!important;background-color:#dfd!important}.w3-hover-pale-yellow:hover,.w3-pale-yellow{color:#000!important;background-color:#ffc!important}.w3-hover-pale-blue:hover,.w3-pale-blue{color:#000!important;background-color:#dff!important}.w3-hover-text-amber:hover,.w3-text-amber{color:#ffc107!important}.w3-hover-text-aqua:hover,.w3-text-aqua{color:aqua!important}.w3-hover-text-blue:hover,.w3-text-blue{color:#2196f3!important}.w3-hover-text-light-blue:hover,.w3-text-light-blue{color:skyblue!important}.w3-hover-text-brown:hover,.w3-text-brown{color:#795548!important}.w3-hover-text-cyan:hover,.w3-text-cyan{color:#00bcd4!important}.w3-hover-text-blue-grey:hover,.w3-text-blue-grey{color:#607d8b!important}.w3-hover-text-green:hover,.w3-text-green{color:#4caf50!important}.w3-hover-text-light-green:hover,.w3-text-light-green{color:#8bc34a!important}.w3-hover-text-indigo:hover,.w3-text-indigo{color:#3f51b5!important}.w3-hover-text-khaki:hover,.w3-text-khaki{color:#b4aa50!important}.w3-hover-text-lime:hover,.w3-text-lime{color:#cddc39!important}.w3-hover-text-orange:hover,.w3-text-orange{color:#ff9800!important}.w3-hover-text-deep-orange:hover,.w3-text-deep-orange{color:#ff5722!important}.w3-hover-text-pink:hover,.w3-text-pink{color:#e91e63!important}.w3-hover-text-purple:hover,.w3-text-purple{color:#9c27b0!important}.w3-hover-text-deep-purple:hover,.w3-text-deep-purple{color:#673ab7!important}.w3-hover-text-red:hover,.w3-text-red{color:#f44336!important}.w3-hover-text-sand:hover,.w3-text-sand{color:oldlace!important}.w3-hover-text-teal:hover,.w3-text-teal{color:#009688!important}.w3-hover-text-yellow:hover,.w3-text-yellow{color:#d2be0e!important}.w3-hover-text-white:hover,.w3-text-white{color:#fff!important}.w3-hover-text-black:hover,.w3-text-black{color:#000!important}.w3-hover-text-grey:hover,.w3-text-grey{color:#757575!important}.w3-hover-text-light-grey:hover,.w3-text-light-grey{color:#f1f1f1!important}.w3-hover-text-dark-grey:hover,.w3-text-dark-grey{color:#3a3a3a!important}.w3-border-amber,.w3-hover-border-amber:hover{border-color:#ffc107!important}.w3-border-aqua,.w3-hover-border-aqua:hover{border-color:aqua!important}.w3-border-blue,.w3-hover-border-blue:hover{border-color:#2196f3!important}.w3-border-light-blue,.w3-hover-border-light-blue:hover{border-color:skyblue!important}.w3-border-brown,.w3-hover-border-brown:hover{border-color:#795548!important}.w3-border-cyan,.w3-hover-border-cyan:hover{border-color:#00bcd4!important}.w3-border-blue-grey,.w3-hover-blue-grey:hover{border-color:#607d8b!important}.w3-border-green,.w3-hover-border-green:hover{border-color:#4caf50!important}.w3-border-light-green,.w3-hover-border-light-green:hover{border-color:#8bc34a!important}.w3-border-indigo,.w3-hover-border-indigo:hover{border-color:#3f51b5!important}.w3-border-khaki,.w3-hover-border-khaki:hover{border-color:khaki!important}.w3-border-lime,.w3-hover-border-lime:hover{border-color:#cddc39!important}.w3-border-orange,.w3-hover-border-orange:hover{border-color:#ff9800!important}.w3-border-deep-orange,.w3-hover-border-deep-orange:hover{border-color:#ff5722!important}.w3-border-pink,.w3-hover-border-pink:hover{border-color:#e91e63!important}.w3-border-purple,.w3-hover-border-purple:hover{border-color:#9c27b0!important}.w3-border-deep-purple,.w3-hover-border-deep-purple:hover{border-color:#673ab7!important}.w3-border-red,.w3-hover-border-red:hover{border-color:#f44336!important}.w3-border-sand,.w3-hover-border-sand:hover{border-color:oldlace!important}.w3-border-teal,.w3-hover-border-teal:hover{border-color:#009688!important}.w3-border-yellow,.w3-hover-border-yellow:hover{border-color:#ffeb3b!important}.w3-border-white,.w3-hover-border-white:hover{border-color:#fff!important}.w3-border-black,.w3-hover-border-black:hover{border-color:#000!important}.w3-border-grey,.w3-hover-border-grey:hover{border-color:#9e9e9e!important}.w3-border-light-grey,.w3-hover-border-light-grey:hover{border-color:#f1f1f1!important}.w3-border-dark-grey,.w3-hover-border-dark-grey:hover{border-color:#616161!important}.w3-border-pale-red,.w3-hover-border-pale-red:hover{border-color:#ffe7e7!important}.w3-border-pale-green,.w3-hover-border-pale-green:hover{border-color:#e7ffe7!important}.w3-border-pale-yellow,.w3-hover-border-pale-yellow:hover{border-color:#ffc!important}.w3-border-pale-blue,.w3-hover-border-pale-blue:hover{border-color:#e7ffff!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6602.e64a7f9e.css b/platypush/backend/http/webapp/dist/static/css/6602.e64a7f9e.css new file mode 100644 index 0000000000..3080720ffb --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6602.e64a7f9e.css @@ -0,0 +1 @@ +.col-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-edd6404c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-edd6404c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-edd6404c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-edd6404c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-edd6404c]:first-child{margin-left:26%!important}.col-offset-3[data-v-edd6404c]:not(first-child){margin-left:30%!important}.col-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-edd6404c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-edd6404c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-edd6404c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-edd6404c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-edd6404c]:first-child{margin-left:52%!important}.col-offset-6[data-v-edd6404c]:not(first-child){margin-left:56%!important}.col-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-edd6404c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-edd6404c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-edd6404c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-edd6404c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-edd6404c]:first-child{margin-left:78%!important}.col-offset-9[data-v-edd6404c]:not(first-child){margin-left:82%!important}.col-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-edd6404c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-edd6404c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-edd6404c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-edd6404c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-1[data-v-edd6404c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-2[data-v-edd6404c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-3[data-v-edd6404c]{margin-left:26%}.col-no-margin-s-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-4[data-v-edd6404c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-5[data-v-edd6404c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-6[data-v-edd6404c]{margin-left:52%}.col-no-margin-s-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-7[data-v-edd6404c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-8[data-v-edd6404c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-9[data-v-edd6404c]{margin-left:78%}.col-no-margin-s-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-10[data-v-edd6404c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-edd6404c]:first-child{margin-left:0}.col-offset-s-11[data-v-edd6404c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-edd6404c]{display:none!important}.s-visible[data-v-edd6404c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-1[data-v-edd6404c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-2[data-v-edd6404c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-3[data-v-edd6404c]{margin-left:26%}.col-no-margin-m-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-4[data-v-edd6404c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-5[data-v-edd6404c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-6[data-v-edd6404c]{margin-left:52%}.col-no-margin-m-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-7[data-v-edd6404c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-8[data-v-edd6404c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-9[data-v-edd6404c]{margin-left:78%}.col-no-margin-m-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-10[data-v-edd6404c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-edd6404c]:first-child{margin-left:0}.col-offset-m-11[data-v-edd6404c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-edd6404c]{display:none!important}.m-visible[data-v-edd6404c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-1[data-v-edd6404c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-2[data-v-edd6404c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-3[data-v-edd6404c]{margin-left:26%}.col-no-margin-l-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-4[data-v-edd6404c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-5[data-v-edd6404c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-6[data-v-edd6404c]{margin-left:52%}.col-no-margin-l-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-7[data-v-edd6404c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-8[data-v-edd6404c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-9[data-v-edd6404c]{margin-left:78%}.col-no-margin-l-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-10[data-v-edd6404c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-edd6404c]:first-child{margin-left:0}.col-offset-l-11[data-v-edd6404c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-edd6404c]{display:none!important}.l-visible[data-v-edd6404c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-1[data-v-edd6404c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-2[data-v-edd6404c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-3[data-v-edd6404c]{margin-left:26%}.col-no-margin-xl-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-4[data-v-edd6404c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-5[data-v-edd6404c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-6[data-v-edd6404c]{margin-left:52%}.col-no-margin-xl-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-7[data-v-edd6404c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-8[data-v-edd6404c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-9[data-v-edd6404c]{margin-left:78%}.col-no-margin-xl-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-10[data-v-edd6404c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xl-11[data-v-edd6404c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-edd6404c]{display:none!important}.xl-visible[data-v-edd6404c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-edd6404c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-edd6404c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-edd6404c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-edd6404c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-edd6404c]{margin-left:26%}.col-no-margin-xxl-3[data-v-edd6404c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-edd6404c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-edd6404c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-edd6404c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-edd6404c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-edd6404c]{margin-left:52%}.col-no-margin-xxl-6[data-v-edd6404c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-edd6404c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-edd6404c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-edd6404c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-edd6404c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-edd6404c]{margin-left:78%}.col-no-margin-xxl-9[data-v-edd6404c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-edd6404c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-edd6404c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-edd6404c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-edd6404c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-edd6404c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-edd6404c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-edd6404c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-edd6404c]{display:none!important}.xxl-visible[data-v-edd6404c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-edd6404c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-edd6404c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-edd6404c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-edd6404c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-edd6404c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-edd6404c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-edd6404c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-edd6404c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-edd6404c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-edd6404c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-edd6404c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-edd6404c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-edd6404c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-edd6404c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-edd6404c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-edd6404c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-edd6404c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-edd6404c]{display:none!important}}.vertical-center[data-v-edd6404c]{display:flex;align-items:center}.horizontal-center[data-v-edd6404c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-edd6404c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-edd6404c]{display:none!important}.no-content[data-v-edd6404c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-edd6404c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-edd6404c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-edd6404c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-edd6404c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-edd6404c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-edd6404c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-edd6404c],.btn[data-v-edd6404c],button[data-v-edd6404c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-edd6404c],.btn-default[type=submit][data-v-edd6404c],.btn.btn-primary[data-v-edd6404c],.btn[type=submit][data-v-edd6404c],button.btn-primary[data-v-edd6404c],button[type=submit][data-v-edd6404c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-edd6404c]:hover,.btn[data-v-edd6404c]:hover,button[data-v-edd6404c]:hover{color:#35b870}.btn .icon[data-v-edd6404c],.btn-default .icon[data-v-edd6404c],button .icon[data-v-edd6404c]{margin-right:.5em}.btn-default[data-v-edd6404c]:disabled,.btn-default[disabled][data-v-edd6404c],.btn[data-v-edd6404c]:disabled,.btn[disabled][data-v-edd6404c],button[data-v-edd6404c]:disabled,button[disabled][data-v-edd6404c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-edd6404c]{cursor:grab!important}.dragged[data-v-edd6404c]{opacity:.5!important}input[type=password][data-v-edd6404c],input[type=text][data-v-edd6404c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-edd6404c]:focus,input[type=text][data-v-edd6404c]:focus{border:1px solid #35b870}button[data-v-edd6404c],input[data-v-edd6404c]{outline:none}input[type=text][data-v-edd6404c]:hover,textarea[data-v-edd6404c]:hover{border:1px solid #9cdfb0}ul[data-v-edd6404c]{margin:0;padding:0;list-style:none}a[data-v-edd6404c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-edd6404c]:hover{color:#35b870}[data-v-edd6404c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-edd6404c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-edd6404c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-edd6404c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-edd6404c]{color:#ad1717}body[data-v-edd6404c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-edd6404c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-edd6404c] .nav .path{cursor:pointer}.browser[data-v-edd6404c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-edd6404c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-edd6404c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-edd6404c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-edd6404c],input[type=number][data-v-edd6404c],input[type=password][data-v-edd6404c],input[type=search][data-v-edd6404c],input[type=text][data-v-edd6404c],input[type=time][data-v-edd6404c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-edd6404c]:hover,input[type=number][data-v-edd6404c]:hover,input[type=password][data-v-edd6404c]:hover,input[type=search][data-v-edd6404c]:hover,input[type=text][data-v-edd6404c]:hover,input[type=time][data-v-edd6404c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-edd6404c]:focus,input[type=number][data-v-edd6404c]:focus,input[type=password][data-v-edd6404c]:focus,input[type=search][data-v-edd6404c]:focus,input[type=text][data-v-edd6404c]:focus,input[type=time][data-v-edd6404c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-edd6404c],input[type=number].with-icon[data-v-edd6404c],input[type=password].with-icon[data-v-edd6404c],input[type=search].with-icon[data-v-edd6404c],input[type=text].with-icon[data-v-edd6404c],input[type=time].with-icon[data-v-edd6404c]{padding-left:.3em}input[type=search][data-v-edd6404c],input[type=text][data-v-edd6404c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-edd6404c]{animation-fill-mode:both;animation-name:fadeIn-edd6404c;-webkit-animation-name:fadeIn-edd6404c}.fade-in[data-v-edd6404c],.fade-out[data-v-edd6404c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-edd6404c]{animation-fill-mode:both;animation-name:fadeOut-edd6404c;-webkit-animation-name:fadeOut-edd6404c}.expand[data-v-edd6404c]{animation-fill-mode:both;animation-name:expand-edd6404c;-webkit-animation-name:expand-edd6404c}.expand[data-v-edd6404c],.shrink[data-v-edd6404c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-edd6404c]{animation-fill-mode:both;animation-name:shrink-edd6404c;-webkit-animation-name:shrink-edd6404c}.fold[data-v-edd6404c]{animation-fill-mode:both;animation-name:fold-edd6404c;-webkit-animation-name:fold-edd6404c}.fold[data-v-edd6404c],.unfold[data-v-edd6404c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-edd6404c]{animation-fill-mode:both;animation-name:unfold-edd6404c;-webkit-animation-name:unfold-edd6404c}.dim[data-v-edd6404c]{animation-fill-mode:both;animation-name:dim-edd6404c;-webkit-animation-name:dim-edd6404c}.brighten[data-v-edd6404c],.dim[data-v-edd6404c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-edd6404c]{animation-fill-mode:both;animation-name:brighten-edd6404c;-webkit-animation-name:brighten-edd6404c}@keyframes fadeIn-edd6404c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-edd6404c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-edd6404c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-edd6404c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-edd6404c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-edd6404c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-edd6404c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-edd6404c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-edd6404c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-edd6404c;-webkit-animation-name:glow-edd6404c}.loop[data-v-edd6404c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-edd6404c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-edd6404c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-edd6404c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-edd6404c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:768px){nav[data-v-edd6404c]{width:100%;height:100vh;background:#4c4c4c;color:#fff;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav.collapsed[data-v-edd6404c]{box-shadow:1px 1px 1px 1px silver;margin-bottom:2px;z-index:1}nav[data-v-edd6404c]:not(.collapsed){position:absolute;top:0;left:0;z-index:5}nav:not(.collapsed) .icon.status[data-v-edd6404c]{top:.75em!important;left:2em}}@media screen and (min-width:769px){nav[data-v-edd6404c]{width:calc(16em - 2vw);min-width:calc(16em - 2vw);height:100%;overflow:auto;background:#4c4c4c;color:#fff;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5);z-index:1}}@media screen and (min-width:1024px){nav[data-v-edd6404c]{width:20em;min-width:20em}}nav li[data-v-edd6404c]{border-bottom:1px solid hsla(0,0%,100%,.15);cursor:pointer;list-style:none}nav li a[data-v-edd6404c]{display:flex;color:#fff;padding:1em .5em;text-decoration:none;align-items:center}nav li a[data-v-edd6404c]:hover{color:#fff}nav li.selected[data-v-edd6404c]{background:rgba(80,120,110,.8);border:1px solid transparent}nav li[data-v-edd6404c]:hover{background:#5a8c78;border:1px solid transparent}nav li .name[data-v-edd6404c]{margin-left:.5em;flex-grow:1}nav li .icon[data-v-edd6404c]{margin-right:.5em}nav .toggler[data-v-edd6404c]{width:100%;height:2em;background:rgba(0,0,0,.25);display:flex;font-size:1.5em;position:relative;cursor:pointer;padding:.4em;align-items:center;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav .toggler .icon.status[data-v-edd6404c]{position:absolute;top:1.3em;right:.5em;font-size:.5em}nav .toggler .icon.status.ok[data-v-edd6404c]{color:#17ad17}nav .toggler .icon.status.error[data-v-edd6404c]{color:#ad1717}nav .hostname[data-v-edd6404c]{font-size:.7em;margin-top:-.2em}@media screen and (min-width:769px){nav .hostname[data-v-edd6404c]{margin-left:1em}}@media screen and (max-width:768px){nav .hostname[data-v-edd6404c]{text-align:right;margin-right:.25em;flex-grow:1}}nav .plugins[data-v-edd6404c]{height:calc(100% - 14.5em);overflow:auto}nav .plugins[data-v-edd6404c] .icon{display:inline-flex}nav .plugins[data-v-edd6404c] .icon .extension-icon{margin-left:0;display:inline-flex}nav .plugins .expander button[data-v-edd6404c]{background:none;color:#fff;border:none;padding:0}nav .plugins .expander button[data-v-edd6404c]:hover{color:#35b870}nav .footer[data-v-edd6404c]{height:11.4em;background:rgba(0,0,0,.25);padding:0;margin:0}nav .footer li[data-v-edd6404c]:last-child{border:0}nav ul li .icon[data-v-edd6404c]{margin-right:0}nav ul li .icon i[data-v-edd6404c],nav ul li .icon img[data-v-edd6404c]{width:1.5em;height:1em}nav ul li .icon i[data-v-edd6404c]{padding-left:.25em}nav .icon.status[data-v-edd6404c]{width:1em}nav.collapsed[data-v-edd6404c]{display:flex;flex-direction:column;margin-right:1px}@media screen and (min-width:769px){nav.collapsed[data-v-edd6404c]{width:2.5em;min-width:2.5em;max-width:2.5em;background:#fff;color:#5e5e5e;box-shadow:1px 0 2px 1px #bbb}nav.collapsed .hostname[data-v-edd6404c]{display:none}}@media screen and (max-width:768px){nav.collapsed[data-v-edd6404c]{height:auto}}nav.collapsed li a[data-v-edd6404c]{display:block}nav.collapsed a[data-v-edd6404c]{color:#5e5e5e;padding:.25em 0}nav.collapsed a[data-v-edd6404c]:hover{color:#5e5e5e}nav.collapsed .toggler[data-v-edd6404c]{height:2em;text-align:center;box-shadow:none;background:none}nav.collapsed .toggler .icon.status[data-v-edd6404c]{top:.75em;left:2em}@media screen and (max-width:calc(769px - 1px)){nav.collapsed .toggler[data-v-edd6404c]{background:#3c3c3c;color:#fff}nav.collapsed .toggler .icon.status[data-v-edd6404c]{top:.75em!important}}nav.collapsed .footer[data-v-edd6404c]{height:7.5em;background:none;padding:0;margin-bottom:.5em;box-shadow:none}@media screen and (max-width:768px){nav.collapsed .footer[data-v-edd6404c]{display:none}}nav.collapsed ul[data-v-edd6404c]{display:flex;flex-direction:column;justify-content:center;height:calc(100% - 9.5em);overflow:hidden}@media screen and (min-width:769px)and (max-width:1023px){nav.collapsed ul.plugins[data-v-edd6404c]{margin:2em 0}}nav.collapsed ul[data-v-edd6404c]:hover{overflow:auto}nav.collapsed ul li[data-v-edd6404c]{border:none;padding:0;text-align:center}nav.collapsed ul li.selected[data-v-edd6404c],nav.collapsed ul li[data-v-edd6404c]:hover{border-radius:1em;margin:0 .2em}nav.collapsed ul li.selected[data-v-edd6404c]{background:rgba(160,245,178,.95)}nav.collapsed ul li[data-v-edd6404c]:hover{background:rgba(160,245,178,.6)}nav.collapsed ul li .icon[data-v-edd6404c]{margin-right:0}@media screen and (max-width:768px){nav.collapsed ul li[data-v-edd6404c]{display:none}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/669.dd1b6ede.css b/platypush/backend/http/webapp/dist/static/css/669.2932b8cc.css similarity index 69% rename from platypush/backend/http/webapp/dist/static/css/669.dd1b6ede.css rename to platypush/backend/http/webapp/dist/static/css/669.2932b8cc.css index 018dbc6d14..be282cce41 100644 --- a/platypush/backend/http/webapp/dist/static/css/669.dd1b6ede.css +++ b/platypush/backend/http/webapp/dist/static/css/669.2932b8cc.css @@ -1 +1 @@ -.col-1[data-v-4e3d4a40],.entity .head .icon[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4e3d4a40]:first-child,.entity .head .icon[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4e3d4a40]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4e3d4a40]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4e3d4a40]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4e3d4a40]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4e3d4a40],.entity .head .value-and-toggler[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4e3d4a40]:first-child,.entity .head .value-and-toggler[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4e3d4a40]:first-child{margin-left:26%!important}.col-offset-3[data-v-4e3d4a40]:not(first-child){margin-left:30%!important}.col-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4e3d4a40]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4e3d4a40]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4e3d4a40]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4e3d4a40]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4e3d4a40]:first-child{margin-left:52%!important}.col-offset-6[data-v-4e3d4a40]:not(first-child){margin-left:56%!important}.col-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4e3d4a40]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4e3d4a40]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4e3d4a40]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4e3d4a40]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4e3d4a40]:first-child{margin-left:78%!important}.col-offset-9[data-v-4e3d4a40]:not(first-child){margin-left:82%!important}.col-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4e3d4a40]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4e3d4a40]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4e3d4a40]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4e3d4a40]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4e3d4a40],.entity .head .value-container[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4e3d4a40]:first-child,.entity .head .value-container[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-s-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-s-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4e3d4a40],.entity .head .label[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4e3d4a40]:first-child,.entity .head .label[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-s-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-4e3d4a40],.attributes .child .value[data-v-4e3d4a40],.col-s-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-4e3d4a40]:first-child,.attributes .child .value[data-v-4e3d4a40]:first-child,.col-s-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4e3d4a40]{display:none!important}.s-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4e3d4a40],.entity .head .value-container[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4e3d4a40]:first-child,.entity .head .value-container[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-m-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-4e3d4a40],.attributes .child .value[data-v-4e3d4a40],.col-m-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-4e3d4a40]:first-child,.attributes .child .value[data-v-4e3d4a40]:first-child,.col-m-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-m-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4e3d4a40],.entity .head .label[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4e3d4a40]:first-child,.entity .head .label[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-m-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4e3d4a40]{display:none!important}.m-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-l-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-l-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-l-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4e3d4a40]{display:none!important}.l-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-xl-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-xl-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-xl-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4e3d4a40]{display:none!important}.xl-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-xxl-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-xxl-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-xxl-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4e3d4a40]{display:none!important}.xxl-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4e3d4a40]{display:none!important}}.vertical-center[data-v-4e3d4a40]{display:flex;align-items:center}.horizontal-center[data-v-4e3d4a40]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-4e3d4a40],.pull-right[data-v-4e3d4a40]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4e3d4a40]{display:none!important}.no-content[data-v-4e3d4a40]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4e3d4a40]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4e3d4a40],.btn[data-v-4e3d4a40],button[data-v-4e3d4a40]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4e3d4a40],.btn-default[type=submit][data-v-4e3d4a40],.btn.btn-primary[data-v-4e3d4a40],.btn[type=submit][data-v-4e3d4a40],button.btn-primary[data-v-4e3d4a40],button[type=submit][data-v-4e3d4a40]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4e3d4a40],.btn-default .icon[data-v-4e3d4a40],button .icon[data-v-4e3d4a40]{margin-right:.5em}input[type=password][data-v-4e3d4a40],input[type=text][data-v-4e3d4a40]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4e3d4a40]:focus,input[type=text][data-v-4e3d4a40]:focus{border:1px solid #35b870}button[data-v-4e3d4a40],input[data-v-4e3d4a40]{outline:none}input[type=text][data-v-4e3d4a40]:hover,textarea[data-v-4e3d4a40]:hover{border:1px solid #9cdfb0}ul[data-v-4e3d4a40]{margin:0;padding:0;list-style:none}a[data-v-4e3d4a40]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4e3d4a40]:hover{color:#35b870}[data-v-4e3d4a40]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4e3d4a40]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4e3d4a40]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4e3d4a40]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4e3d4a40]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4e3d4a40] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4e3d4a40] .nav .path{cursor:pointer}.browser[data-v-4e3d4a40] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4e3d4a40] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4e3d4a40]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4e3d4a40],input[type=number][data-v-4e3d4a40],input[type=password][data-v-4e3d4a40],input[type=search][data-v-4e3d4a40],input[type=text][data-v-4e3d4a40],input[type=time][data-v-4e3d4a40]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4e3d4a40]:hover,input[type=number][data-v-4e3d4a40]:hover,input[type=password][data-v-4e3d4a40]:hover,input[type=search][data-v-4e3d4a40]:hover,input[type=text][data-v-4e3d4a40]:hover,input[type=time][data-v-4e3d4a40]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4e3d4a40]:focus,input[type=number][data-v-4e3d4a40]:focus,input[type=password][data-v-4e3d4a40]:focus,input[type=search][data-v-4e3d4a40]:focus,input[type=text][data-v-4e3d4a40]:focus,input[type=time][data-v-4e3d4a40]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4e3d4a40],input[type=number].with-icon[data-v-4e3d4a40],input[type=password].with-icon[data-v-4e3d4a40],input[type=search].with-icon[data-v-4e3d4a40],input[type=text].with-icon[data-v-4e3d4a40],input[type=time].with-icon[data-v-4e3d4a40]{padding-left:.3em}input[type=search][data-v-4e3d4a40],input[type=text][data-v-4e3d4a40]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-4e3d4a40],.fade-in[data-v-4e3d4a40]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-4e3d4a40;-webkit-animation-name:fadeIn-4e3d4a40}.fade-out[data-v-4e3d4a40]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-4e3d4a40;-webkit-animation-name:fadeOut-4e3d4a40}@keyframes fadeIn-4e3d4a40{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4e3d4a40{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-4e3d4a40]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4e3d4a40;-webkit-animation-name:glow-4e3d4a40}.loop[data-v-4e3d4a40]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4e3d4a40{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4e3d4a40]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4e3d4a40]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4e3d4a40]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-4e3d4a40]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-4e3d4a40]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-4e3d4a40]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-4e3d4a40]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-4e3d4a40]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-4e3d4a40]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-4e3d4a40]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-4e3d4a40]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-4e3d4a40]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-4e3d4a40]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-4e3d4a40]{margin-right:.5em}.entity .head .icon[data-v-4e3d4a40]:hover{color:#35b870}.entity .head .label[data-v-4e3d4a40]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-4e3d4a40]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-4e3d4a40]:hover{color:#35b870}.entity .head .value[data-v-4e3d4a40]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-4e3d4a40]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-4e3d4a40]{margin-right:2.5em}.entity .head .value-container[data-v-4e3d4a40]{min-width:7em}.entity .head .unit[data-v-4e3d4a40]{margin-left:.2em}.entity .head .pull-right[data-v-4e3d4a40],.entity .head .value-container[data-v-4e3d4a40]{padding-right:.5em}.entity .head .pull-right[data-v-4e3d4a40] .power-switch,.entity .head .value-container[data-v-4e3d4a40] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-4e3d4a40]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-4e3d4a40]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-4e3d4a40]:hover{color:#35b870}.collapse-toggler[data-v-4e3d4a40]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-4e3d4a40]:hover{color:#35b870}.attributes .child[data-v-4e3d4a40]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-4e3d4a40]{flex-direction:column}}.attributes .child[data-v-4e3d4a40]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-4e3d4a40]:hover{cursor:auto}.attributes .child.head[data-v-4e3d4a40]{cursor:pointer}.attributes .child.head[data-v-4e3d4a40]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-4e3d4a40]{font-weight:700}.attributes .child .value[data-v-4e3d4a40]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-4e3d4a40]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-4e3d4a40]:last-child,.entity-container-wrapper.with-children[data-v-4e3d4a40]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-4e3d4a40]{animation:blink-animation-4e3d4a40 1s steps(20,start)}@keyframes blink-animation-4e3d4a40{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.variable-modal-container form[data-v-4e3d4a40]{padding:1em 0}.variable-modal-container form label[data-v-4e3d4a40]{font-weight:700}.variable-modal-container form .row[data-v-4e3d4a40]{padding:.25em 1em;display:flex;align-items:center}@media screen and (max-width:calc(769px - 1px)){.variable-modal-container form .row[data-v-4e3d4a40]{flex-direction:column}}.variable-modal-container form .row input[type=text][data-v-4e3d4a40]{width:100%}.variable-modal-container form .button-container[data-v-4e3d4a40]{display:flex;justify-content:center;margin-top:.5em;margin-bottom:-.75em;padding-top:.5em;border-top:1px solid #e1e4e8}.variable-modal-container form .button-container button[data-v-4e3d4a40]{min-width:10em;background:none;border-radius:1.5em}.variable-modal-container form .button-container button[data-v-4e3d4a40]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){.variable-modal-container form .value[data-v-4e3d4a40]{text-align:right}} \ No newline at end of file +.col-1[data-v-4e3d4a40],.entity .head .icon[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4e3d4a40]:first-child,.entity .head .icon[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4e3d4a40]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4e3d4a40]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4e3d4a40]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4e3d4a40]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4e3d4a40],.entity .head .value-and-toggler[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4e3d4a40]:first-child,.entity .head .value-and-toggler[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4e3d4a40]:first-child{margin-left:26%!important}.col-offset-3[data-v-4e3d4a40]:not(first-child){margin-left:30%!important}.col-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4e3d4a40]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4e3d4a40]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4e3d4a40]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4e3d4a40]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4e3d4a40]:first-child{margin-left:52%!important}.col-offset-6[data-v-4e3d4a40]:not(first-child){margin-left:56%!important}.col-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4e3d4a40]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4e3d4a40]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4e3d4a40]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4e3d4a40]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4e3d4a40]:first-child{margin-left:78%!important}.col-offset-9[data-v-4e3d4a40]:not(first-child){margin-left:82%!important}.col-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4e3d4a40]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4e3d4a40]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4e3d4a40]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4e3d4a40]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4e3d4a40],.entity .head .value-container[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4e3d4a40]:first-child,.entity .head .value-container[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-s-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-s-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4e3d4a40],.entity .head .label[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4e3d4a40]:first-child,.entity .head .label[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-s-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-s-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-4e3d4a40],.attributes .child .value[data-v-4e3d4a40],.col-s-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-4e3d4a40]:first-child,.attributes .child .value[data-v-4e3d4a40]:first-child,.col-s-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4e3d4a40]{display:none!important}.s-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4e3d4a40],.entity .head .value-container[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4e3d4a40]:first-child,.entity .head .value-container[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-m-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-4e3d4a40],.attributes .child .value[data-v-4e3d4a40],.col-m-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-4e3d4a40]:first-child,.attributes .child .value[data-v-4e3d4a40]:first-child,.col-m-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-m-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4e3d4a40],.entity .head .label[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4e3d4a40]:first-child,.entity .head .label[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-m-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-m-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4e3d4a40]{display:none!important}.m-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-l-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-l-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-l-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-l-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4e3d4a40]{display:none!important}.l-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-xl-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-xl-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-xl-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xl-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4e3d4a40]{display:none!important}.xl-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4e3d4a40]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4e3d4a40]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4e3d4a40]{margin-left:26%}.col-no-margin-xxl-3[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4e3d4a40]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4e3d4a40]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4e3d4a40]{margin-left:52%}.col-no-margin-xxl-6[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4e3d4a40]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4e3d4a40]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4e3d4a40]{margin-left:78%}.col-no-margin-xxl-9[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4e3d4a40]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4e3d4a40]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4e3d4a40]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4e3d4a40]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4e3d4a40]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4e3d4a40]{display:none!important}.xxl-visible[data-v-4e3d4a40]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4e3d4a40]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4e3d4a40]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4e3d4a40]{display:none!important}}.vertical-center[data-v-4e3d4a40]{display:flex;align-items:center}.horizontal-center[data-v-4e3d4a40]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-4e3d4a40],.pull-right[data-v-4e3d4a40]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4e3d4a40]{display:none!important}.no-content[data-v-4e3d4a40]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4e3d4a40]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4e3d4a40]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4e3d4a40],.btn[data-v-4e3d4a40],button[data-v-4e3d4a40]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4e3d4a40],.btn-default[type=submit][data-v-4e3d4a40],.btn.btn-primary[data-v-4e3d4a40],.btn[type=submit][data-v-4e3d4a40],button.btn-primary[data-v-4e3d4a40],button[type=submit][data-v-4e3d4a40]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-4e3d4a40]:hover,.btn[data-v-4e3d4a40]:hover,button[data-v-4e3d4a40]:hover{color:#35b870}.btn .icon[data-v-4e3d4a40],.btn-default .icon[data-v-4e3d4a40],button .icon[data-v-4e3d4a40]{margin-right:.5em}.btn-default[data-v-4e3d4a40]:disabled,.btn-default[disabled][data-v-4e3d4a40],.btn[data-v-4e3d4a40]:disabled,.btn[disabled][data-v-4e3d4a40],button[data-v-4e3d4a40]:disabled,button[disabled][data-v-4e3d4a40]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-4e3d4a40]{cursor:grab!important}.dragged[data-v-4e3d4a40]{opacity:.5!important}input[type=password][data-v-4e3d4a40],input[type=text][data-v-4e3d4a40]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4e3d4a40]:focus,input[type=text][data-v-4e3d4a40]:focus{border:1px solid #35b870}button[data-v-4e3d4a40],input[data-v-4e3d4a40]{outline:none}input[type=text][data-v-4e3d4a40]:hover,textarea[data-v-4e3d4a40]:hover{border:1px solid #9cdfb0}ul[data-v-4e3d4a40]{margin:0;padding:0;list-style:none}a[data-v-4e3d4a40]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4e3d4a40]:hover{color:#35b870}[data-v-4e3d4a40]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4e3d4a40]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4e3d4a40]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4e3d4a40]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-4e3d4a40]{color:#ad1717}body[data-v-4e3d4a40]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4e3d4a40] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4e3d4a40] .nav .path{cursor:pointer}.browser[data-v-4e3d4a40] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4e3d4a40] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-4e3d4a40]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-4e3d4a40]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4e3d4a40],input[type=number][data-v-4e3d4a40],input[type=password][data-v-4e3d4a40],input[type=search][data-v-4e3d4a40],input[type=text][data-v-4e3d4a40],input[type=time][data-v-4e3d4a40]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-4e3d4a40]:hover,input[type=number][data-v-4e3d4a40]:hover,input[type=password][data-v-4e3d4a40]:hover,input[type=search][data-v-4e3d4a40]:hover,input[type=text][data-v-4e3d4a40]:hover,input[type=time][data-v-4e3d4a40]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4e3d4a40]:focus,input[type=number][data-v-4e3d4a40]:focus,input[type=password][data-v-4e3d4a40]:focus,input[type=search][data-v-4e3d4a40]:focus,input[type=text][data-v-4e3d4a40]:focus,input[type=time][data-v-4e3d4a40]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4e3d4a40],input[type=number].with-icon[data-v-4e3d4a40],input[type=password].with-icon[data-v-4e3d4a40],input[type=search].with-icon[data-v-4e3d4a40],input[type=text].with-icon[data-v-4e3d4a40],input[type=time].with-icon[data-v-4e3d4a40]{padding-left:.3em}input[type=search][data-v-4e3d4a40],input[type=text][data-v-4e3d4a40]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-4e3d4a40],.fade-in[data-v-4e3d4a40]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-4e3d4a40;-webkit-animation-name:fadeIn-4e3d4a40}.fade-out[data-v-4e3d4a40]{animation-fill-mode:both;animation-name:fadeOut-4e3d4a40;-webkit-animation-name:fadeOut-4e3d4a40}.expand[data-v-4e3d4a40],.fade-out[data-v-4e3d4a40]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-4e3d4a40]{animation-fill-mode:both;animation-name:expand-4e3d4a40;-webkit-animation-name:expand-4e3d4a40}.shrink[data-v-4e3d4a40]{animation-fill-mode:both;animation-name:shrink-4e3d4a40;-webkit-animation-name:shrink-4e3d4a40}.fold[data-v-4e3d4a40],.shrink[data-v-4e3d4a40]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-4e3d4a40]{animation-fill-mode:both;animation-name:fold-4e3d4a40;-webkit-animation-name:fold-4e3d4a40}.unfold[data-v-4e3d4a40]{animation-fill-mode:both;animation-name:unfold-4e3d4a40;-webkit-animation-name:unfold-4e3d4a40}.dim[data-v-4e3d4a40],.unfold[data-v-4e3d4a40]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-4e3d4a40]{animation-fill-mode:both;animation-name:dim-4e3d4a40;-webkit-animation-name:dim-4e3d4a40}.brighten[data-v-4e3d4a40]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-4e3d4a40;-webkit-animation-name:brighten-4e3d4a40}@keyframes fadeIn-4e3d4a40{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4e3d4a40{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-4e3d4a40{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-4e3d4a40{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-4e3d4a40{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-4e3d4a40{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-4e3d4a40{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-4e3d4a40{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-4e3d4a40]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4e3d4a40;-webkit-animation-name:glow-4e3d4a40}.loop[data-v-4e3d4a40]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4e3d4a40{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4e3d4a40]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4e3d4a40]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4e3d4a40]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-4e3d4a40]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-4e3d4a40]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-4e3d4a40]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-4e3d4a40]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-4e3d4a40]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-4e3d4a40]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-4e3d4a40]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-4e3d4a40]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-4e3d4a40]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-4e3d4a40]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-4e3d4a40]{margin-right:.5em}.entity .head .icon[data-v-4e3d4a40]:hover{color:#35b870}.entity .head .label[data-v-4e3d4a40]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-4e3d4a40]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-4e3d4a40]:hover{color:#35b870}.entity .head .value[data-v-4e3d4a40]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-4e3d4a40]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-4e3d4a40]{margin-right:2.5em}.entity .head .value-container[data-v-4e3d4a40]{min-width:7em}.entity .head .unit[data-v-4e3d4a40]{margin-left:.2em}.entity .head .pull-right[data-v-4e3d4a40],.entity .head .value-container[data-v-4e3d4a40]{padding-right:.5em}.entity .head .pull-right[data-v-4e3d4a40] .power-switch,.entity .head .value-container[data-v-4e3d4a40] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-4e3d4a40]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-4e3d4a40]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-4e3d4a40]:hover{color:#35b870}.collapse-toggler[data-v-4e3d4a40]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-4e3d4a40]:hover{color:#35b870}.attributes .child[data-v-4e3d4a40]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-4e3d4a40]{flex-direction:column}}.attributes .child[data-v-4e3d4a40]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-4e3d4a40]:hover{cursor:auto}.attributes .child.head[data-v-4e3d4a40]{cursor:pointer}.attributes .child.head[data-v-4e3d4a40]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-4e3d4a40]{font-weight:700}.attributes .child .value[data-v-4e3d4a40]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-4e3d4a40]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-4e3d4a40]:last-child,.entity-container-wrapper.with-children[data-v-4e3d4a40]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-4e3d4a40]{animation:blink-animation-4e3d4a40 1s steps(20,start)}@keyframes blink-animation-4e3d4a40{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.variable-modal-container form[data-v-4e3d4a40]{padding:1em 0}.variable-modal-container form label[data-v-4e3d4a40]{font-weight:700}.variable-modal-container form .row[data-v-4e3d4a40]{padding:.25em 1em;display:flex;align-items:center}@media screen and (max-width:calc(769px - 1px)){.variable-modal-container form .row[data-v-4e3d4a40]{flex-direction:column}}.variable-modal-container form .row input[type=text][data-v-4e3d4a40]{width:100%}.variable-modal-container form .button-container[data-v-4e3d4a40]{display:flex;justify-content:center;margin-top:.5em;margin-bottom:-.75em;padding-top:.5em;border-top:1px solid #e1e4e8}.variable-modal-container form .button-container button[data-v-4e3d4a40]{min-width:10em;background:none;border-radius:1.5em}.variable-modal-container form .button-container button[data-v-4e3d4a40]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){.variable-modal-container form .value[data-v-4e3d4a40]{text-align:right}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6734.0e8a5c69.css b/platypush/backend/http/webapp/dist/static/css/6734.0e8a5c69.css new file mode 100644 index 0000000000..a3feaa3859 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6734.0e8a5c69.css @@ -0,0 +1 @@ +.col-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2b03213a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2b03213a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2b03213a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2b03213a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2b03213a]:first-child{margin-left:26%!important}.col-offset-3[data-v-2b03213a]:not(first-child){margin-left:30%!important}.col-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2b03213a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2b03213a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2b03213a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2b03213a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2b03213a]:first-child{margin-left:52%!important}.col-offset-6[data-v-2b03213a]:not(first-child){margin-left:56%!important}.col-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2b03213a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2b03213a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2b03213a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2b03213a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2b03213a]:first-child{margin-left:78%!important}.col-offset-9[data-v-2b03213a]:not(first-child){margin-left:82%!important}.col-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2b03213a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2b03213a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2b03213a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2b03213a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-1[data-v-2b03213a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-2[data-v-2b03213a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-3[data-v-2b03213a]{margin-left:26%}.col-no-margin-s-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-4[data-v-2b03213a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-5[data-v-2b03213a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-6[data-v-2b03213a]{margin-left:52%}.col-no-margin-s-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-7[data-v-2b03213a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-8[data-v-2b03213a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-9[data-v-2b03213a]{margin-left:78%}.col-no-margin-s-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-10[data-v-2b03213a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2b03213a]:first-child{margin-left:0}.col-offset-s-11[data-v-2b03213a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2b03213a]{display:none!important}.s-visible[data-v-2b03213a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-1[data-v-2b03213a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-2[data-v-2b03213a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-3[data-v-2b03213a]{margin-left:26%}.col-no-margin-m-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-4[data-v-2b03213a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-5[data-v-2b03213a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-6[data-v-2b03213a]{margin-left:52%}.col-no-margin-m-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-7[data-v-2b03213a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-8[data-v-2b03213a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-9[data-v-2b03213a]{margin-left:78%}.col-no-margin-m-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-10[data-v-2b03213a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2b03213a]:first-child{margin-left:0}.col-offset-m-11[data-v-2b03213a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2b03213a]{display:none!important}.m-visible[data-v-2b03213a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-1[data-v-2b03213a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-2[data-v-2b03213a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-3[data-v-2b03213a]{margin-left:26%}.col-no-margin-l-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-4[data-v-2b03213a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-5[data-v-2b03213a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-6[data-v-2b03213a]{margin-left:52%}.col-no-margin-l-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-7[data-v-2b03213a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-8[data-v-2b03213a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-9[data-v-2b03213a]{margin-left:78%}.col-no-margin-l-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-10[data-v-2b03213a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2b03213a]:first-child{margin-left:0}.col-offset-l-11[data-v-2b03213a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2b03213a]{display:none!important}.l-visible[data-v-2b03213a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-1[data-v-2b03213a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-2[data-v-2b03213a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-3[data-v-2b03213a]{margin-left:26%}.col-no-margin-xl-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-4[data-v-2b03213a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-5[data-v-2b03213a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-6[data-v-2b03213a]{margin-left:52%}.col-no-margin-xl-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-7[data-v-2b03213a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-8[data-v-2b03213a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-9[data-v-2b03213a]{margin-left:78%}.col-no-margin-xl-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-10[data-v-2b03213a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xl-11[data-v-2b03213a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2b03213a]{display:none!important}.xl-visible[data-v-2b03213a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2b03213a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2b03213a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2b03213a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2b03213a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2b03213a]{margin-left:26%}.col-no-margin-xxl-3[data-v-2b03213a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2b03213a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2b03213a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2b03213a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2b03213a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2b03213a]{margin-left:52%}.col-no-margin-xxl-6[data-v-2b03213a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2b03213a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2b03213a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2b03213a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2b03213a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2b03213a]{margin-left:78%}.col-no-margin-xxl-9[data-v-2b03213a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2b03213a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2b03213a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2b03213a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2b03213a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2b03213a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2b03213a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2b03213a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2b03213a]{display:none!important}.xxl-visible[data-v-2b03213a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2b03213a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2b03213a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2b03213a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2b03213a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2b03213a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2b03213a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2b03213a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2b03213a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2b03213a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2b03213a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2b03213a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2b03213a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2b03213a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2b03213a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2b03213a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2b03213a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2b03213a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2b03213a]{display:none!important}}.vertical-center[data-v-2b03213a]{display:flex;align-items:center}.horizontal-center[data-v-2b03213a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2b03213a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2b03213a]{display:none!important}.no-content[data-v-2b03213a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2b03213a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2b03213a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2b03213a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2b03213a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2b03213a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2b03213a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2b03213a],.btn[data-v-2b03213a],button[data-v-2b03213a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2b03213a],.btn-default[type=submit][data-v-2b03213a],.btn.btn-primary[data-v-2b03213a],.btn[type=submit][data-v-2b03213a],button.btn-primary[data-v-2b03213a],button[type=submit][data-v-2b03213a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2b03213a]:hover,.btn[data-v-2b03213a]:hover,button[data-v-2b03213a]:hover{color:#35b870}.btn .icon[data-v-2b03213a],.btn-default .icon[data-v-2b03213a],button .icon[data-v-2b03213a]{margin-right:.5em}.btn-default[data-v-2b03213a]:disabled,.btn-default[disabled][data-v-2b03213a],.btn[data-v-2b03213a]:disabled,.btn[disabled][data-v-2b03213a],button[data-v-2b03213a]:disabled,button[disabled][data-v-2b03213a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2b03213a]{cursor:grab!important}.dragged[data-v-2b03213a]{opacity:.5!important}input[type=password][data-v-2b03213a],input[type=text][data-v-2b03213a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2b03213a]:focus,input[type=text][data-v-2b03213a]:focus{border:1px solid #35b870}button[data-v-2b03213a],input[data-v-2b03213a]{outline:none}input[type=text][data-v-2b03213a]:hover,textarea[data-v-2b03213a]:hover{border:1px solid #9cdfb0}ul[data-v-2b03213a]{margin:0;padding:0;list-style:none}a[data-v-2b03213a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2b03213a]:hover{color:#35b870}[data-v-2b03213a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2b03213a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2b03213a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2b03213a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2b03213a]{color:#ad1717}body[data-v-2b03213a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2b03213a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2b03213a] .nav .path{cursor:pointer}.browser[data-v-2b03213a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2b03213a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2b03213a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2b03213a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2b03213a],input[type=number][data-v-2b03213a],input[type=password][data-v-2b03213a],input[type=search][data-v-2b03213a],input[type=text][data-v-2b03213a],input[type=time][data-v-2b03213a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2b03213a]:hover,input[type=number][data-v-2b03213a]:hover,input[type=password][data-v-2b03213a]:hover,input[type=search][data-v-2b03213a]:hover,input[type=text][data-v-2b03213a]:hover,input[type=time][data-v-2b03213a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2b03213a]:focus,input[type=number][data-v-2b03213a]:focus,input[type=password][data-v-2b03213a]:focus,input[type=search][data-v-2b03213a]:focus,input[type=text][data-v-2b03213a]:focus,input[type=time][data-v-2b03213a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2b03213a],input[type=number].with-icon[data-v-2b03213a],input[type=password].with-icon[data-v-2b03213a],input[type=search].with-icon[data-v-2b03213a],input[type=text].with-icon[data-v-2b03213a],input[type=time].with-icon[data-v-2b03213a]{padding-left:.3em}input[type=search][data-v-2b03213a],input[type=text][data-v-2b03213a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2b03213a]{animation-fill-mode:both;animation-name:fadeIn-2b03213a;-webkit-animation-name:fadeIn-2b03213a}.fade-in[data-v-2b03213a],.fade-out[data-v-2b03213a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2b03213a]{animation-fill-mode:both;animation-name:fadeOut-2b03213a;-webkit-animation-name:fadeOut-2b03213a}.expand[data-v-2b03213a]{animation-fill-mode:both;animation-name:expand-2b03213a;-webkit-animation-name:expand-2b03213a}.expand[data-v-2b03213a],.shrink[data-v-2b03213a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2b03213a]{animation-fill-mode:both;animation-name:shrink-2b03213a;-webkit-animation-name:shrink-2b03213a}.fold[data-v-2b03213a]{animation-fill-mode:both;animation-name:fold-2b03213a;-webkit-animation-name:fold-2b03213a}.fold[data-v-2b03213a],.unfold[data-v-2b03213a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2b03213a]{animation-fill-mode:both;animation-name:unfold-2b03213a;-webkit-animation-name:unfold-2b03213a}.dim[data-v-2b03213a]{animation-fill-mode:both;animation-name:dim-2b03213a;-webkit-animation-name:dim-2b03213a}.brighten[data-v-2b03213a],.dim[data-v-2b03213a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2b03213a]{animation-fill-mode:both;animation-name:brighten-2b03213a;-webkit-animation-name:brighten-2b03213a}@keyframes fadeIn-2b03213a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2b03213a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2b03213a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2b03213a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2b03213a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2b03213a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2b03213a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2b03213a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2b03213a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2b03213a;-webkit-animation-name:glow-2b03213a}.loop[data-v-2b03213a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2b03213a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2b03213a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2b03213a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2b03213a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-2b03213a] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-2b03213a] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-2b03213a] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-2b03213a] .item .icon i{font-size:40px}.grid[data-v-2b03213a] .item .icon img{width:40px;height:40px}[data-v-2b03213a] .nav{height:2.5em}.media-browser .media-browser-body[data-v-2b03213a],.media-browser[data-v-2b03213a]{height:100%}.col-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-615e8fce]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-615e8fce]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-615e8fce]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-615e8fce]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-615e8fce]:first-child{margin-left:26%!important}.col-offset-3[data-v-615e8fce]:not(first-child){margin-left:30%!important}.col-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-615e8fce]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-615e8fce]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-615e8fce]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-615e8fce]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-615e8fce]:first-child{margin-left:52%!important}.col-offset-6[data-v-615e8fce]:not(first-child){margin-left:56%!important}.col-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-615e8fce]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-615e8fce]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-615e8fce]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-615e8fce]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-615e8fce]:first-child{margin-left:78%!important}.col-offset-9[data-v-615e8fce]:not(first-child){margin-left:82%!important}.col-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-615e8fce]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-615e8fce]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-615e8fce]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-615e8fce]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-1[data-v-615e8fce]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-2[data-v-615e8fce]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-3[data-v-615e8fce]{margin-left:26%}.col-no-margin-s-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-4[data-v-615e8fce]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-5[data-v-615e8fce]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-6[data-v-615e8fce]{margin-left:52%}.col-no-margin-s-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-7[data-v-615e8fce]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-8[data-v-615e8fce]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-9[data-v-615e8fce]{margin-left:78%}.col-no-margin-s-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-10[data-v-615e8fce]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-615e8fce]:first-child{margin-left:0}.col-offset-s-11[data-v-615e8fce]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-s-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-615e8fce]{display:none!important}.s-visible[data-v-615e8fce]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-1[data-v-615e8fce]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-2[data-v-615e8fce]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-3[data-v-615e8fce]{margin-left:26%}.col-no-margin-m-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-4[data-v-615e8fce]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-5[data-v-615e8fce]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-6[data-v-615e8fce]{margin-left:52%}.col-no-margin-m-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-7[data-v-615e8fce]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-8[data-v-615e8fce]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-9[data-v-615e8fce]{margin-left:78%}.col-no-margin-m-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-10[data-v-615e8fce]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-615e8fce]:first-child{margin-left:0}.col-offset-m-11[data-v-615e8fce]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-m-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-615e8fce]{display:none!important}.m-visible[data-v-615e8fce]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-1[data-v-615e8fce]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-2[data-v-615e8fce]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-3[data-v-615e8fce]{margin-left:26%}.col-no-margin-l-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-4[data-v-615e8fce]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-5[data-v-615e8fce]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-6[data-v-615e8fce]{margin-left:52%}.col-no-margin-l-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-7[data-v-615e8fce]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-8[data-v-615e8fce]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-9[data-v-615e8fce]{margin-left:78%}.col-no-margin-l-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-10[data-v-615e8fce]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-615e8fce]:first-child{margin-left:0}.col-offset-l-11[data-v-615e8fce]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-l-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-615e8fce]{display:none!important}.l-visible[data-v-615e8fce]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-1[data-v-615e8fce]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-2[data-v-615e8fce]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-3[data-v-615e8fce]{margin-left:26%}.col-no-margin-xl-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-4[data-v-615e8fce]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-5[data-v-615e8fce]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-6[data-v-615e8fce]{margin-left:52%}.col-no-margin-xl-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-7[data-v-615e8fce]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-8[data-v-615e8fce]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-9[data-v-615e8fce]{margin-left:78%}.col-no-margin-xl-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-10[data-v-615e8fce]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xl-11[data-v-615e8fce]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-615e8fce]{display:none!important}.xl-visible[data-v-615e8fce]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-1[data-v-615e8fce]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-615e8fce]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-2[data-v-615e8fce]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-615e8fce]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-3[data-v-615e8fce]{margin-left:26%}.col-no-margin-xxl-3[data-v-615e8fce]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-4[data-v-615e8fce]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-615e8fce]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-5[data-v-615e8fce]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-615e8fce]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-6[data-v-615e8fce]{margin-left:52%}.col-no-margin-xxl-6[data-v-615e8fce]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-7[data-v-615e8fce]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-615e8fce]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-8[data-v-615e8fce]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-615e8fce]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-9[data-v-615e8fce]{margin-left:78%}.col-no-margin-xxl-9[data-v-615e8fce]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-10[data-v-615e8fce]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-615e8fce]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-615e8fce]:first-child{margin-left:0}.col-offset-xxl-11[data-v-615e8fce]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-615e8fce]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-615e8fce]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-615e8fce]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-615e8fce]{display:none!important}.xxl-visible[data-v-615e8fce]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-615e8fce]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-615e8fce]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-615e8fce]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-615e8fce]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-615e8fce]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-615e8fce]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-615e8fce]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-615e8fce]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-615e8fce]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-615e8fce]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-615e8fce]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-615e8fce]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-615e8fce]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-615e8fce]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-615e8fce]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-615e8fce]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-615e8fce]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-615e8fce]{display:none!important}}.vertical-center[data-v-615e8fce]{display:flex;align-items:center}.horizontal-center[data-v-615e8fce]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-615e8fce]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-615e8fce]{display:none!important}.no-content[data-v-615e8fce]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-615e8fce]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-615e8fce]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-615e8fce]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-615e8fce]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-615e8fce]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-615e8fce]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-615e8fce],.btn[data-v-615e8fce],button[data-v-615e8fce]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-615e8fce],.btn-default[type=submit][data-v-615e8fce],.btn.btn-primary[data-v-615e8fce],.btn[type=submit][data-v-615e8fce],button.btn-primary[data-v-615e8fce],button[type=submit][data-v-615e8fce]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-615e8fce]:hover,.btn[data-v-615e8fce]:hover,button[data-v-615e8fce]:hover{color:#35b870}.btn .icon[data-v-615e8fce],.btn-default .icon[data-v-615e8fce],button .icon[data-v-615e8fce]{margin-right:.5em}.btn-default[data-v-615e8fce]:disabled,.btn-default[disabled][data-v-615e8fce],.btn[data-v-615e8fce]:disabled,.btn[disabled][data-v-615e8fce],button[data-v-615e8fce]:disabled,button[disabled][data-v-615e8fce]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-615e8fce]{cursor:grab!important}.dragged[data-v-615e8fce]{opacity:.5!important}input[type=password][data-v-615e8fce],input[type=text][data-v-615e8fce]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-615e8fce]:focus,input[type=text][data-v-615e8fce]:focus{border:1px solid #35b870}button[data-v-615e8fce],input[data-v-615e8fce]{outline:none}input[type=text][data-v-615e8fce]:hover,textarea[data-v-615e8fce]:hover{border:1px solid #9cdfb0}ul[data-v-615e8fce]{margin:0;padding:0;list-style:none}a[data-v-615e8fce]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-615e8fce]:hover{color:#35b870}[data-v-615e8fce]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-615e8fce]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-615e8fce]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-615e8fce]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-615e8fce]{color:#ad1717}body[data-v-615e8fce]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-615e8fce] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-615e8fce] .nav .path{cursor:pointer}.browser[data-v-615e8fce] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-615e8fce] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-615e8fce]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-615e8fce]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-615e8fce],input[type=number][data-v-615e8fce],input[type=password][data-v-615e8fce],input[type=search][data-v-615e8fce],input[type=text][data-v-615e8fce],input[type=time][data-v-615e8fce]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-615e8fce]:hover,input[type=number][data-v-615e8fce]:hover,input[type=password][data-v-615e8fce]:hover,input[type=search][data-v-615e8fce]:hover,input[type=text][data-v-615e8fce]:hover,input[type=time][data-v-615e8fce]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-615e8fce]:focus,input[type=number][data-v-615e8fce]:focus,input[type=password][data-v-615e8fce]:focus,input[type=search][data-v-615e8fce]:focus,input[type=text][data-v-615e8fce]:focus,input[type=time][data-v-615e8fce]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-615e8fce],input[type=number].with-icon[data-v-615e8fce],input[type=password].with-icon[data-v-615e8fce],input[type=search].with-icon[data-v-615e8fce],input[type=text].with-icon[data-v-615e8fce],input[type=time].with-icon[data-v-615e8fce]{padding-left:.3em}input[type=search][data-v-615e8fce],input[type=text][data-v-615e8fce]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-615e8fce]{animation-fill-mode:both;animation-name:fadeIn-615e8fce;-webkit-animation-name:fadeIn-615e8fce}.fade-in[data-v-615e8fce],.fade-out[data-v-615e8fce]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-615e8fce]{animation-fill-mode:both;animation-name:fadeOut-615e8fce;-webkit-animation-name:fadeOut-615e8fce}.expand[data-v-615e8fce]{animation-fill-mode:both;animation-name:expand-615e8fce;-webkit-animation-name:expand-615e8fce}.expand[data-v-615e8fce],.shrink[data-v-615e8fce]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-615e8fce]{animation-fill-mode:both;animation-name:shrink-615e8fce;-webkit-animation-name:shrink-615e8fce}.fold[data-v-615e8fce]{animation-fill-mode:both;animation-name:fold-615e8fce;-webkit-animation-name:fold-615e8fce}.fold[data-v-615e8fce],.unfold[data-v-615e8fce]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-615e8fce]{animation-fill-mode:both;animation-name:unfold-615e8fce;-webkit-animation-name:unfold-615e8fce}.dim[data-v-615e8fce]{animation-fill-mode:both;animation-name:dim-615e8fce;-webkit-animation-name:dim-615e8fce}.brighten[data-v-615e8fce],.dim[data-v-615e8fce]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-615e8fce]{animation-fill-mode:both;animation-name:brighten-615e8fce;-webkit-animation-name:brighten-615e8fce}@keyframes fadeIn-615e8fce{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-615e8fce{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-615e8fce{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-615e8fce{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-615e8fce{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-615e8fce{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-615e8fce{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-615e8fce{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-615e8fce]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-615e8fce;-webkit-animation-name:glow-615e8fce}.loop[data-v-615e8fce]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-615e8fce{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-615e8fce]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-615e8fce]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-615e8fce]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-615e8fce]{color:#d21}.embed-player[data-v-615e8fce]{background-color:#000;overflow:hidden}.embed-player .player-container[data-v-615e8fce],.embed-player[data-v-615e8fce]{position:relative;width:100%;height:100%}.embed-player .player-container.youtube[data-v-615e8fce]{min-width:95vw;min-height:90vh}.embed-player .audio-container[data-v-615e8fce]{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;height:100%;min-width:50vw;min-height:50vh;background-color:#000}.embed-player .audio-container audio[data-v-615e8fce]{height:2.5em}.embed-player .audio-container .poster-container[data-v-615e8fce]{width:100%;height:calc(100% - 2.5em);display:flex;justify-content:center;align-items:center}.embed-player .audio-container .poster-container img[data-v-615e8fce]{max-width:100%;max-height:100%}.embed-player audio[data-v-615e8fce],.embed-player video[data-v-615e8fce]{width:100%;height:100%}.embed-player iframe[data-v-615e8fce]{width:95%;height:95%}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-players .plugins{display:none}.media-players .no-results{padding:1em}.dropdown-container .refresh{font-weight:700;font-size:.8em;opacity:.7}.dropdown-container .player.selected .item{color:#32b646}.col-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3e938a5b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3e938a5b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3e938a5b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3e938a5b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3e938a5b]:first-child{margin-left:26%!important}.col-offset-3[data-v-3e938a5b]:not(first-child){margin-left:30%!important}.col-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3e938a5b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3e938a5b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3e938a5b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3e938a5b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3e938a5b]:first-child{margin-left:52%!important}.col-offset-6[data-v-3e938a5b]:not(first-child){margin-left:56%!important}.col-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3e938a5b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3e938a5b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3e938a5b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3e938a5b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3e938a5b]:first-child{margin-left:78%!important}.col-offset-9[data-v-3e938a5b]:not(first-child){margin-left:82%!important}.col-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3e938a5b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3e938a5b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3e938a5b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3e938a5b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-1[data-v-3e938a5b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-2[data-v-3e938a5b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-3[data-v-3e938a5b]{margin-left:26%}.col-no-margin-s-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-4[data-v-3e938a5b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-5[data-v-3e938a5b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-6[data-v-3e938a5b]{margin-left:52%}.col-no-margin-s-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-7[data-v-3e938a5b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-8[data-v-3e938a5b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-9[data-v-3e938a5b]{margin-left:78%}.col-no-margin-s-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-10[data-v-3e938a5b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-s-11[data-v-3e938a5b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3e938a5b]{display:none!important}.s-visible[data-v-3e938a5b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-1[data-v-3e938a5b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-2[data-v-3e938a5b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-3[data-v-3e938a5b]{margin-left:26%}.col-no-margin-m-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-4[data-v-3e938a5b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-5[data-v-3e938a5b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-6[data-v-3e938a5b]{margin-left:52%}.col-no-margin-m-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-7[data-v-3e938a5b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-8[data-v-3e938a5b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-9[data-v-3e938a5b]{margin-left:78%}.col-no-margin-m-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-10[data-v-3e938a5b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-m-11[data-v-3e938a5b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3e938a5b]{display:none!important}.m-visible[data-v-3e938a5b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-1[data-v-3e938a5b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-2[data-v-3e938a5b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-3[data-v-3e938a5b]{margin-left:26%}.col-no-margin-l-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-4[data-v-3e938a5b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-5[data-v-3e938a5b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-6[data-v-3e938a5b]{margin-left:52%}.col-no-margin-l-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-7[data-v-3e938a5b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-8[data-v-3e938a5b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-9[data-v-3e938a5b]{margin-left:78%}.col-no-margin-l-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-10[data-v-3e938a5b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-l-11[data-v-3e938a5b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3e938a5b]{display:none!important}.l-visible[data-v-3e938a5b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-1[data-v-3e938a5b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-2[data-v-3e938a5b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-3[data-v-3e938a5b]{margin-left:26%}.col-no-margin-xl-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-4[data-v-3e938a5b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-5[data-v-3e938a5b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-6[data-v-3e938a5b]{margin-left:52%}.col-no-margin-xl-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-7[data-v-3e938a5b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-8[data-v-3e938a5b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-9[data-v-3e938a5b]{margin-left:78%}.col-no-margin-xl-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-10[data-v-3e938a5b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xl-11[data-v-3e938a5b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3e938a5b]{display:none!important}.xl-visible[data-v-3e938a5b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3e938a5b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3e938a5b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3e938a5b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3e938a5b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3e938a5b]{margin-left:26%}.col-no-margin-xxl-3[data-v-3e938a5b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3e938a5b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3e938a5b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3e938a5b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3e938a5b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3e938a5b]{margin-left:52%}.col-no-margin-xxl-6[data-v-3e938a5b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3e938a5b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3e938a5b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3e938a5b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3e938a5b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3e938a5b]{margin-left:78%}.col-no-margin-xxl-9[data-v-3e938a5b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3e938a5b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3e938a5b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3e938a5b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3e938a5b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3e938a5b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3e938a5b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3e938a5b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3e938a5b]{display:none!important}.xxl-visible[data-v-3e938a5b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3e938a5b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3e938a5b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3e938a5b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3e938a5b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3e938a5b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3e938a5b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3e938a5b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3e938a5b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3e938a5b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3e938a5b]{display:none!important}}.vertical-center[data-v-3e938a5b]{display:flex;align-items:center}.horizontal-center[data-v-3e938a5b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3e938a5b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3e938a5b]{display:none!important}.no-content[data-v-3e938a5b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3e938a5b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3e938a5b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3e938a5b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3e938a5b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3e938a5b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3e938a5b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3e938a5b],.btn[data-v-3e938a5b],button[data-v-3e938a5b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3e938a5b],.btn-default[type=submit][data-v-3e938a5b],.btn.btn-primary[data-v-3e938a5b],.btn[type=submit][data-v-3e938a5b],button.btn-primary[data-v-3e938a5b],button[type=submit][data-v-3e938a5b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3e938a5b]:hover,.btn[data-v-3e938a5b]:hover,button[data-v-3e938a5b]:hover{color:#35b870}.btn .icon[data-v-3e938a5b],.btn-default .icon[data-v-3e938a5b],button .icon[data-v-3e938a5b]{margin-right:.5em}.btn-default[data-v-3e938a5b]:disabled,.btn-default[disabled][data-v-3e938a5b],.btn[data-v-3e938a5b]:disabled,.btn[disabled][data-v-3e938a5b],button[data-v-3e938a5b]:disabled,button[disabled][data-v-3e938a5b]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3e938a5b]{cursor:grab!important}.dragged[data-v-3e938a5b]{opacity:.5!important}input[type=password][data-v-3e938a5b],input[type=text][data-v-3e938a5b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3e938a5b]:focus,input[type=text][data-v-3e938a5b]:focus{border:1px solid #35b870}button[data-v-3e938a5b],input[data-v-3e938a5b]{outline:none}input[type=text][data-v-3e938a5b]:hover,textarea[data-v-3e938a5b]:hover{border:1px solid #9cdfb0}ul[data-v-3e938a5b]{margin:0;padding:0;list-style:none}a[data-v-3e938a5b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3e938a5b]:hover{color:#35b870}[data-v-3e938a5b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3e938a5b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3e938a5b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3e938a5b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3e938a5b]{color:#ad1717}body[data-v-3e938a5b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3e938a5b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3e938a5b] .nav .path{cursor:pointer}.browser[data-v-3e938a5b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3e938a5b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3e938a5b]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3e938a5b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3e938a5b],input[type=number][data-v-3e938a5b],input[type=password][data-v-3e938a5b],input[type=search][data-v-3e938a5b],input[type=text][data-v-3e938a5b],input[type=time][data-v-3e938a5b]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3e938a5b]:hover,input[type=number][data-v-3e938a5b]:hover,input[type=password][data-v-3e938a5b]:hover,input[type=search][data-v-3e938a5b]:hover,input[type=text][data-v-3e938a5b]:hover,input[type=time][data-v-3e938a5b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3e938a5b]:focus,input[type=number][data-v-3e938a5b]:focus,input[type=password][data-v-3e938a5b]:focus,input[type=search][data-v-3e938a5b]:focus,input[type=text][data-v-3e938a5b]:focus,input[type=time][data-v-3e938a5b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3e938a5b],input[type=number].with-icon[data-v-3e938a5b],input[type=password].with-icon[data-v-3e938a5b],input[type=search].with-icon[data-v-3e938a5b],input[type=text].with-icon[data-v-3e938a5b],input[type=time].with-icon[data-v-3e938a5b]{padding-left:.3em}input[type=search][data-v-3e938a5b],input[type=text][data-v-3e938a5b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3e938a5b]{animation-fill-mode:both;animation-name:fadeIn-3e938a5b;-webkit-animation-name:fadeIn-3e938a5b}.fade-in[data-v-3e938a5b],.fade-out[data-v-3e938a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3e938a5b]{animation-fill-mode:both;animation-name:fadeOut-3e938a5b;-webkit-animation-name:fadeOut-3e938a5b}.expand[data-v-3e938a5b]{animation-fill-mode:both;animation-name:expand-3e938a5b;-webkit-animation-name:expand-3e938a5b}.expand[data-v-3e938a5b],.shrink[data-v-3e938a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-3e938a5b]{animation-fill-mode:both;animation-name:shrink-3e938a5b;-webkit-animation-name:shrink-3e938a5b}.fold[data-v-3e938a5b]{animation-fill-mode:both;animation-name:fold-3e938a5b;-webkit-animation-name:fold-3e938a5b}.fold[data-v-3e938a5b],.unfold[data-v-3e938a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-3e938a5b]{animation-fill-mode:both;animation-name:unfold-3e938a5b;-webkit-animation-name:unfold-3e938a5b}.dim[data-v-3e938a5b]{animation-fill-mode:both;animation-name:dim-3e938a5b;-webkit-animation-name:dim-3e938a5b}.brighten[data-v-3e938a5b],.dim[data-v-3e938a5b]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-3e938a5b]{animation-fill-mode:both;animation-name:brighten-3e938a5b;-webkit-animation-name:brighten-3e938a5b}@keyframes fadeIn-3e938a5b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3e938a5b{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3e938a5b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3e938a5b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3e938a5b{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3e938a5b{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3e938a5b{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3e938a5b{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3e938a5b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3e938a5b;-webkit-animation-name:glow-3e938a5b}.loop[data-v-3e938a5b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3e938a5b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3e938a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3e938a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3e938a5b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-3e938a5b]{color:#d21}.header[data-v-3e938a5b]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header .filter-btn.selected[data-v-3e938a5b]{color:#32b646}.header .row[data-v-3e938a5b]{display:flex;align-items:center}.header.with-filter[data-v-3e938a5b]{height:6.3em;padding-bottom:0}.header .side[data-v-3e938a5b]{display:inline-flex;align-items:center}.header .side.right[data-v-3e938a5b]{justify-content:right;direction:rtl}.header[data-v-3e938a5b] button{background:none;padding:0 .5em;border:0}.header[data-v-3e938a5b] button:hover{color:#38cf80}.header form[data-v-3e938a5b]{width:100%;padding:0;border:0;border-radius:0;box-shadow:none;background:initial}.header .search-box[data-v-3e938a5b]{width:100%;margin-left:.5em}.header .search-box input[type=search][data-v-3e938a5b]{width:100%}.header .filter[data-v-3e938a5b]{width:100%;height:3em;margin-top:.5em}.header .filter label[data-v-3e938a5b]{display:inline-flex;flex-direction:row;margin-right:1em}.header .captions-btn[data-v-3e938a5b],.header .filter label input[data-v-3e938a5b]{margin-right:.5em}.header .captions-btn.selected[data-v-3e938a5b]{color:#32b646}.col-1[data-v-e857a488]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-1[data-v-e857a488]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e857a488]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e857a488]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e857a488]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-2[data-v-e857a488]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e857a488]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e857a488]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e857a488],[data-v-e857a488] .modal-body .row .attr{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e857a488]:first-child,[data-v-e857a488] .modal-body .row .attr:first-child{margin-left:0}.col-no-margin-3[data-v-e857a488]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e857a488]:first-child{margin-left:26%!important}.col-offset-3[data-v-e857a488]:not(first-child){margin-left:30%!important}.col-4[data-v-e857a488]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-4[data-v-e857a488]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e857a488]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e857a488]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e857a488]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-5[data-v-e857a488]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e857a488]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e857a488]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e857a488]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-6[data-v-e857a488]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e857a488]:first-child{margin-left:52%!important}.col-offset-6[data-v-e857a488]:not(first-child){margin-left:56%!important}.col-7[data-v-e857a488]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-7[data-v-e857a488]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e857a488]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e857a488]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e857a488]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-8[data-v-e857a488]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e857a488]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e857a488]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e857a488],[data-v-e857a488] .modal-body .row .value{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e857a488]:first-child,[data-v-e857a488] .modal-body .row .value:first-child{margin-left:0}.col-no-margin-9[data-v-e857a488]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e857a488]:first-child{margin-left:78%!important}.col-offset-9[data-v-e857a488]:not(first-child){margin-left:82%!important}.col-10[data-v-e857a488]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-10[data-v-e857a488]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e857a488]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e857a488]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e857a488]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e857a488]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e857a488]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-1[data-v-e857a488]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e857a488]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e857a488]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-2[data-v-e857a488]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e857a488]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e857a488]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-3[data-v-e857a488]{margin-left:26%}.col-no-margin-s-3[data-v-e857a488]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e857a488]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-4[data-v-e857a488]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e857a488]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e857a488]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-5[data-v-e857a488]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e857a488]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e857a488]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-6[data-v-e857a488]{margin-left:52%}.col-no-margin-s-6[data-v-e857a488]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e857a488]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-7[data-v-e857a488]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e857a488]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e857a488]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-8[data-v-e857a488]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e857a488]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e857a488]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-9[data-v-e857a488]{margin-left:78%}.col-no-margin-s-9[data-v-e857a488]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e857a488]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-10[data-v-e857a488]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e857a488]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e857a488]:first-child{margin-left:0}.col-offset-s-11[data-v-e857a488]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e857a488]{display:none!important}.s-visible[data-v-e857a488]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e857a488]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-1[data-v-e857a488]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e857a488]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e857a488]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-2[data-v-e857a488]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e857a488]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e857a488]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-3[data-v-e857a488]{margin-left:26%}.col-no-margin-m-3[data-v-e857a488]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e857a488]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-4[data-v-e857a488]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e857a488]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e857a488]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-5[data-v-e857a488]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e857a488]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e857a488]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-6[data-v-e857a488]{margin-left:52%}.col-no-margin-m-6[data-v-e857a488]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e857a488]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-7[data-v-e857a488]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e857a488]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e857a488]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-8[data-v-e857a488]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e857a488]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e857a488]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-9[data-v-e857a488]{margin-left:78%}.col-no-margin-m-9[data-v-e857a488]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e857a488]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-10[data-v-e857a488]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e857a488]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e857a488]:first-child{margin-left:0}.col-offset-m-11[data-v-e857a488]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e857a488]{display:none!important}.m-visible[data-v-e857a488]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e857a488]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-1[data-v-e857a488]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e857a488]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e857a488]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-2[data-v-e857a488]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e857a488]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e857a488]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-3[data-v-e857a488]{margin-left:26%}.col-no-margin-l-3[data-v-e857a488]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e857a488]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-4[data-v-e857a488]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e857a488]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e857a488]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-5[data-v-e857a488]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e857a488]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e857a488]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-6[data-v-e857a488]{margin-left:52%}.col-no-margin-l-6[data-v-e857a488]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e857a488]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-7[data-v-e857a488]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e857a488]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e857a488]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-8[data-v-e857a488]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e857a488]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e857a488]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-9[data-v-e857a488]{margin-left:78%}.col-no-margin-l-9[data-v-e857a488]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e857a488]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-10[data-v-e857a488]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e857a488]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e857a488]:first-child{margin-left:0}.col-offset-l-11[data-v-e857a488]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e857a488]{display:none!important}.l-visible[data-v-e857a488]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e857a488]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-1[data-v-e857a488]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e857a488]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e857a488]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-2[data-v-e857a488]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e857a488]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e857a488]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-3[data-v-e857a488]{margin-left:26%}.col-no-margin-xl-3[data-v-e857a488]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e857a488]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-4[data-v-e857a488]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e857a488]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e857a488]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-5[data-v-e857a488]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e857a488]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e857a488]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-6[data-v-e857a488]{margin-left:52%}.col-no-margin-xl-6[data-v-e857a488]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e857a488]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-7[data-v-e857a488]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e857a488]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e857a488]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-8[data-v-e857a488]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e857a488]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e857a488]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-9[data-v-e857a488]{margin-left:78%}.col-no-margin-xl-9[data-v-e857a488]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e857a488]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-10[data-v-e857a488]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e857a488]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e857a488]:first-child{margin-left:0}.col-offset-xl-11[data-v-e857a488]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e857a488]{display:none!important}.xl-visible[data-v-e857a488]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e857a488]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e857a488]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e857a488]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e857a488]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e857a488]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e857a488]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e857a488]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e857a488]{margin-left:26%}.col-no-margin-xxl-3[data-v-e857a488]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e857a488]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e857a488]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e857a488]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e857a488]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e857a488]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e857a488]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e857a488]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e857a488]{margin-left:52%}.col-no-margin-xxl-6[data-v-e857a488]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e857a488]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e857a488]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e857a488]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e857a488]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e857a488]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e857a488]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e857a488]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e857a488]{margin-left:78%}.col-no-margin-xxl-9[data-v-e857a488]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e857a488]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e857a488]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e857a488]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e857a488]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e857a488]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e857a488]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e857a488]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e857a488]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e857a488]{display:none!important}.xxl-visible[data-v-e857a488]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e857a488]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e857a488]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e857a488]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e857a488]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e857a488]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e857a488]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e857a488]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e857a488]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e857a488]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e857a488]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e857a488]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e857a488]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e857a488]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e857a488]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e857a488]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e857a488]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e857a488]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e857a488]{display:none!important}}.vertical-center[data-v-e857a488]{display:flex;align-items:center}.horizontal-center[data-v-e857a488]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e857a488]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e857a488]{display:none!important}.no-content[data-v-e857a488]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e857a488]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e857a488]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e857a488]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e857a488]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e857a488]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e857a488]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e857a488],.btn[data-v-e857a488],button[data-v-e857a488]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e857a488],.btn-default[type=submit][data-v-e857a488],.btn.btn-primary[data-v-e857a488],.btn[type=submit][data-v-e857a488],button.btn-primary[data-v-e857a488],button[type=submit][data-v-e857a488]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-e857a488]:hover,.btn[data-v-e857a488]:hover,button[data-v-e857a488]:hover{color:#35b870}.btn .icon[data-v-e857a488],.btn-default .icon[data-v-e857a488],button .icon[data-v-e857a488]{margin-right:.5em}.btn-default[data-v-e857a488]:disabled,.btn-default[disabled][data-v-e857a488],.btn[data-v-e857a488]:disabled,.btn[disabled][data-v-e857a488],button[data-v-e857a488]:disabled,button[disabled][data-v-e857a488]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-e857a488]{cursor:grab!important}.dragged[data-v-e857a488]{opacity:.5!important}input[type=password][data-v-e857a488],input[type=text][data-v-e857a488]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e857a488]:focus,input[type=text][data-v-e857a488]:focus{border:1px solid #35b870}button[data-v-e857a488],input[data-v-e857a488]{outline:none}input[type=text][data-v-e857a488]:hover,textarea[data-v-e857a488]:hover{border:1px solid #9cdfb0}ul[data-v-e857a488]{margin:0;padding:0;list-style:none}a[data-v-e857a488]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e857a488]:hover{color:#35b870}[data-v-e857a488]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e857a488]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e857a488]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e857a488]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-e857a488]{color:#ad1717}body[data-v-e857a488]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e857a488] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e857a488] .nav .path{cursor:pointer}.browser[data-v-e857a488] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e857a488] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-e857a488]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-e857a488]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e857a488],input[type=number][data-v-e857a488],input[type=password][data-v-e857a488],input[type=search][data-v-e857a488],input[type=text][data-v-e857a488],input[type=time][data-v-e857a488]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-e857a488]:hover,input[type=number][data-v-e857a488]:hover,input[type=password][data-v-e857a488]:hover,input[type=search][data-v-e857a488]:hover,input[type=text][data-v-e857a488]:hover,input[type=time][data-v-e857a488]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e857a488]:focus,input[type=number][data-v-e857a488]:focus,input[type=password][data-v-e857a488]:focus,input[type=search][data-v-e857a488]:focus,input[type=text][data-v-e857a488]:focus,input[type=time][data-v-e857a488]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e857a488],input[type=number].with-icon[data-v-e857a488],input[type=password].with-icon[data-v-e857a488],input[type=search].with-icon[data-v-e857a488],input[type=text].with-icon[data-v-e857a488],input[type=time].with-icon[data-v-e857a488]{padding-left:.3em}input[type=search][data-v-e857a488],input[type=text][data-v-e857a488]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e857a488]{animation-fill-mode:both;animation-name:fadeIn-e857a488;-webkit-animation-name:fadeIn-e857a488}.fade-in[data-v-e857a488],.fade-out[data-v-e857a488]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e857a488]{animation-fill-mode:both;animation-name:fadeOut-e857a488;-webkit-animation-name:fadeOut-e857a488}.expand[data-v-e857a488]{animation-fill-mode:both;animation-name:expand-e857a488;-webkit-animation-name:expand-e857a488}.expand[data-v-e857a488],.shrink[data-v-e857a488]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-e857a488]{animation-fill-mode:both;animation-name:shrink-e857a488;-webkit-animation-name:shrink-e857a488}.fold[data-v-e857a488]{animation-fill-mode:both;animation-name:fold-e857a488;-webkit-animation-name:fold-e857a488}.fold[data-v-e857a488],.unfold[data-v-e857a488]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-e857a488]{animation-fill-mode:both;animation-name:unfold-e857a488;-webkit-animation-name:unfold-e857a488}.dim[data-v-e857a488]{animation-fill-mode:both;animation-name:dim-e857a488;-webkit-animation-name:dim-e857a488}.brighten[data-v-e857a488],.dim[data-v-e857a488]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-e857a488]{animation-fill-mode:both;animation-name:brighten-e857a488;-webkit-animation-name:brighten-e857a488}@keyframes fadeIn-e857a488{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e857a488{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-e857a488{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-e857a488{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-e857a488{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-e857a488{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-e857a488{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-e857a488{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-e857a488]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-e857a488;-webkit-animation-name:glow-e857a488}.loop[data-v-e857a488]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-e857a488{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-e857a488]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e857a488]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e857a488]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-e857a488]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-e857a488]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-e857a488]{background:#8fefb7}.item.selected[data-v-e857a488]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-e857a488]{border-top:2px solid #35b870}.item[data-v-e857a488]::-moz-selection{background:transparent!important}.item[data-v-e857a488]::selection{background:transparent!important}.item .title[data-v-e857a488]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-e857a488]{display:inline-flex;align-items:center}.item .side.right[data-v-e857a488]{display:inline-flex;justify-content:right}.item .actions[data-v-e857a488],.item .duration[data-v-e857a488]{display:inline-flex;align-items:center}.item .duration[data-v-e857a488]{font-size:.85em;opacity:.7}.item .actions[data-v-e857a488] button{opacity:.65}.item .icon[data-v-e857a488]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-e857a488] .dropdown-container .item{box-shadow:none}.item[data-v-e857a488] .dropdown-container button{background:none;border:none}.item[data-v-e857a488] .dropdown-container button:hover{color:#35b870}[data-v-e857a488] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-e857a488] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-e857a488] .table-row{flex-direction:row;align-items:center}}[data-v-e857a488] .table-row .title,[data-v-e857a488] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-e857a488] .table-row .title,[data-v-e857a488] .table-row .value{display:inline-flex}}[data-v-e857a488] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-e857a488] .table-row .title{width:30%}[data-v-e857a488] .table-row .value{justify-content:right}}.media-downloads[data-v-e857a488]{height:100%;background:#fff}.media-downloads .no-content[data-v-e857a488]{height:100%}.media-downloads .items[data-v-e857a488]{display:flex;flex-direction:column;height:100%;flex:1;overflow-y:auto}[data-v-e857a488] .modal-body .row{display:flex;border-bottom:1px solid #e1e4e8;padding:.5em .25em;border-radius:.5em}[data-v-e857a488] .modal-body .row:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-e857a488] .modal-body .row .attr{display:inline-flex}[data-v-e857a488] .modal-body .row .value{display:inline-flex;justify-content:right}[data-v-e857a488] .modal-body .row .value.nowrap{overflow:hidden;white-space:nowrap;text-overflow:clip}[data-v-e857a488] .modal-body .dropdown-container .row{box-shadow:none;border:none}[data-v-e857a488] .modal-body .dropdown-container button{border:none;background:none}[data-v-e857a488] .modal-body .dropdown-container button:hover{color:#35b870}.col-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c67b72b8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c67b72b8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c67b72b8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c67b72b8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c67b72b8]:first-child{margin-left:26%!important}.col-offset-3[data-v-c67b72b8]:not(first-child){margin-left:30%!important}.col-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c67b72b8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c67b72b8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c67b72b8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c67b72b8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c67b72b8]:first-child{margin-left:52%!important}.col-offset-6[data-v-c67b72b8]:not(first-child){margin-left:56%!important}.col-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c67b72b8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c67b72b8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c67b72b8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c67b72b8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c67b72b8]:first-child{margin-left:78%!important}.col-offset-9[data-v-c67b72b8]:not(first-child){margin-left:82%!important}.col-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c67b72b8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c67b72b8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c67b72b8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c67b72b8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-s-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-s-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-s-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-s-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c67b72b8]{display:none!important}.s-visible[data-v-c67b72b8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-m-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-m-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-m-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-m-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c67b72b8]{display:none!important}.m-visible[data-v-c67b72b8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-l-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-l-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-l-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-l-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c67b72b8]{display:none!important}.l-visible[data-v-c67b72b8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-xl-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-xl-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-xl-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xl-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c67b72b8]{display:none!important}.xl-visible[data-v-c67b72b8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c67b72b8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c67b72b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c67b72b8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c67b72b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c67b72b8]{margin-left:26%}.col-no-margin-xxl-3[data-v-c67b72b8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c67b72b8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c67b72b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c67b72b8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c67b72b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c67b72b8]{margin-left:52%}.col-no-margin-xxl-6[data-v-c67b72b8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c67b72b8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c67b72b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c67b72b8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c67b72b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c67b72b8]{margin-left:78%}.col-no-margin-xxl-9[data-v-c67b72b8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c67b72b8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c67b72b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c67b72b8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c67b72b8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c67b72b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c67b72b8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c67b72b8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c67b72b8]{display:none!important}.xxl-visible[data-v-c67b72b8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-c67b72b8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-c67b72b8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c67b72b8]{display:none!important}}.vertical-center[data-v-c67b72b8]{display:flex;align-items:center}.horizontal-center[data-v-c67b72b8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c67b72b8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c67b72b8]{display:none!important}.no-content[data-v-c67b72b8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-c67b72b8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-c67b72b8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-c67b72b8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-c67b72b8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-c67b72b8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-c67b72b8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-c67b72b8],.btn[data-v-c67b72b8],button[data-v-c67b72b8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c67b72b8],.btn-default[type=submit][data-v-c67b72b8],.btn.btn-primary[data-v-c67b72b8],.btn[type=submit][data-v-c67b72b8],button.btn-primary[data-v-c67b72b8],button[type=submit][data-v-c67b72b8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-c67b72b8]:hover,.btn[data-v-c67b72b8]:hover,button[data-v-c67b72b8]:hover{color:#35b870}.btn .icon[data-v-c67b72b8],.btn-default .icon[data-v-c67b72b8],button .icon[data-v-c67b72b8]{margin-right:.5em}.btn-default[data-v-c67b72b8]:disabled,.btn-default[disabled][data-v-c67b72b8],.btn[data-v-c67b72b8]:disabled,.btn[disabled][data-v-c67b72b8],button[data-v-c67b72b8]:disabled,button[disabled][data-v-c67b72b8]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-c67b72b8]{cursor:grab!important}.dragged[data-v-c67b72b8]{opacity:.5!important}input[type=password][data-v-c67b72b8],input[type=text][data-v-c67b72b8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c67b72b8]:focus,input[type=text][data-v-c67b72b8]:focus{border:1px solid #35b870}button[data-v-c67b72b8],input[data-v-c67b72b8]{outline:none}input[type=text][data-v-c67b72b8]:hover,textarea[data-v-c67b72b8]:hover{border:1px solid #9cdfb0}ul[data-v-c67b72b8]{margin:0;padding:0;list-style:none}a[data-v-c67b72b8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c67b72b8]:hover{color:#35b870}[data-v-c67b72b8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-c67b72b8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-c67b72b8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c67b72b8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-c67b72b8]{color:#ad1717}body[data-v-c67b72b8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-c67b72b8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-c67b72b8] .nav .path{cursor:pointer}.browser[data-v-c67b72b8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-c67b72b8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-c67b72b8]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-c67b72b8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-c67b72b8],input[type=number][data-v-c67b72b8],input[type=password][data-v-c67b72b8],input[type=search][data-v-c67b72b8],input[type=text][data-v-c67b72b8],input[type=time][data-v-c67b72b8]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-c67b72b8]:hover,input[type=number][data-v-c67b72b8]:hover,input[type=password][data-v-c67b72b8]:hover,input[type=search][data-v-c67b72b8]:hover,input[type=text][data-v-c67b72b8]:hover,input[type=time][data-v-c67b72b8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-c67b72b8]:focus,input[type=number][data-v-c67b72b8]:focus,input[type=password][data-v-c67b72b8]:focus,input[type=search][data-v-c67b72b8]:focus,input[type=text][data-v-c67b72b8]:focus,input[type=time][data-v-c67b72b8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-c67b72b8],input[type=number].with-icon[data-v-c67b72b8],input[type=password].with-icon[data-v-c67b72b8],input[type=search].with-icon[data-v-c67b72b8],input[type=text].with-icon[data-v-c67b72b8],input[type=time].with-icon[data-v-c67b72b8]{padding-left:.3em}input[type=search][data-v-c67b72b8],input[type=text][data-v-c67b72b8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c67b72b8]{animation-fill-mode:both;animation-name:fadeIn-c67b72b8;-webkit-animation-name:fadeIn-c67b72b8}.fade-in[data-v-c67b72b8],.fade-out[data-v-c67b72b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c67b72b8]{animation-fill-mode:both;animation-name:fadeOut-c67b72b8;-webkit-animation-name:fadeOut-c67b72b8}.expand[data-v-c67b72b8]{animation-fill-mode:both;animation-name:expand-c67b72b8;-webkit-animation-name:expand-c67b72b8}.expand[data-v-c67b72b8],.shrink[data-v-c67b72b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-c67b72b8]{animation-fill-mode:both;animation-name:shrink-c67b72b8;-webkit-animation-name:shrink-c67b72b8}.fold[data-v-c67b72b8]{animation-fill-mode:both;animation-name:fold-c67b72b8;-webkit-animation-name:fold-c67b72b8}.fold[data-v-c67b72b8],.unfold[data-v-c67b72b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-c67b72b8]{animation-fill-mode:both;animation-name:unfold-c67b72b8;-webkit-animation-name:unfold-c67b72b8}.dim[data-v-c67b72b8]{animation-fill-mode:both;animation-name:dim-c67b72b8;-webkit-animation-name:dim-c67b72b8}.brighten[data-v-c67b72b8],.dim[data-v-c67b72b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-c67b72b8]{animation-fill-mode:both;animation-name:brighten-c67b72b8;-webkit-animation-name:brighten-c67b72b8}@keyframes fadeIn-c67b72b8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c67b72b8{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-c67b72b8{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-c67b72b8{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-c67b72b8{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-c67b72b8{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-c67b72b8{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-c67b72b8{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-c67b72b8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-c67b72b8;-webkit-animation-name:glow-c67b72b8}.loop[data-v-c67b72b8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-c67b72b8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-c67b72b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c67b72b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c67b72b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-c67b72b8]{color:#d21}nav[data-v-c67b72b8]{width:2.8em;height:100%;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;box-shadow:2.5px 0 4.5px 2px #5e5e5e;margin-left:2.5px;overflow:auto}nav .menu-button[data-v-c67b72b8]{position:absolute;top:.75em;left:0;width:100%;display:inline-flex;justify-content:center;padding:0;margin:0;font-size:1.2em;border:0;background:none;cursor:pointer;z-index:1}nav .menu-button[data-v-c67b72b8]:hover{color:#35b870}nav li[data-v-c67b72b8]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7;border-radius:1.2em;margin:0 .2em}nav li[data-v-c67b72b8]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-c67b72b8]{background:rgba(160,245,178,.95)}nav li.completed[data-v-c67b72b8]{color:#17ad17}.col-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1def516f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1def516f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1def516f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1def516f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1def516f]:first-child{margin-left:26%!important}.col-offset-3[data-v-1def516f]:not(first-child){margin-left:30%!important}.col-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1def516f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1def516f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1def516f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1def516f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1def516f]:first-child{margin-left:52%!important}.col-offset-6[data-v-1def516f]:not(first-child){margin-left:56%!important}.col-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1def516f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1def516f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1def516f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1def516f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1def516f]:first-child{margin-left:78%!important}.col-offset-9[data-v-1def516f]:not(first-child){margin-left:82%!important}.col-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1def516f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1def516f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1def516f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1def516f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-3[data-v-1def516f]{margin-left:26%}.col-no-margin-s-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-6[data-v-1def516f]{margin-left:52%}.col-no-margin-s-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-9[data-v-1def516f]{margin-left:78%}.col-no-margin-s-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-s-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1def516f]{display:none!important}.s-visible[data-v-1def516f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-3[data-v-1def516f]{margin-left:26%}.col-no-margin-m-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-6[data-v-1def516f]{margin-left:52%}.col-no-margin-m-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-9[data-v-1def516f]{margin-left:78%}.col-no-margin-m-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-m-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1def516f]{display:none!important}.m-visible[data-v-1def516f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-3[data-v-1def516f]{margin-left:26%}.col-no-margin-l-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-6[data-v-1def516f]{margin-left:52%}.col-no-margin-l-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-9[data-v-1def516f]{margin-left:78%}.col-no-margin-l-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-l-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1def516f]{display:none!important}.l-visible[data-v-1def516f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-3[data-v-1def516f]{margin-left:26%}.col-no-margin-xl-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-6[data-v-1def516f]{margin-left:52%}.col-no-margin-xl-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-9[data-v-1def516f]{margin-left:78%}.col-no-margin-xl-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-xl-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1def516f]{display:none!important}.xl-visible[data-v-1def516f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1def516f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1def516f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1def516f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1def516f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1def516f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1def516f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1def516f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1def516f]{margin-left:26%}.col-no-margin-xxl-3[data-v-1def516f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1def516f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1def516f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1def516f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1def516f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1def516f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1def516f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1def516f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1def516f]{margin-left:52%}.col-no-margin-xxl-6[data-v-1def516f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1def516f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1def516f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1def516f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1def516f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1def516f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1def516f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1def516f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1def516f]{margin-left:78%}.col-no-margin-xxl-9[data-v-1def516f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1def516f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1def516f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1def516f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1def516f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1def516f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1def516f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1def516f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1def516f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1def516f]{display:none!important}.xxl-visible[data-v-1def516f]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1def516f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1def516f]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1def516f]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1def516f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1def516f]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1def516f]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1def516f]{display:none!important}}.vertical-center[data-v-1def516f]{display:flex;align-items:center}.horizontal-center[data-v-1def516f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1def516f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1def516f]{display:none!important}.no-content[data-v-1def516f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1def516f]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1def516f]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1def516f]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1def516f]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1def516f]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1def516f]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1def516f],.btn[data-v-1def516f],button[data-v-1def516f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1def516f],.btn-default[type=submit][data-v-1def516f],.btn.btn-primary[data-v-1def516f],.btn[type=submit][data-v-1def516f],button.btn-primary[data-v-1def516f],button[type=submit][data-v-1def516f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1def516f]:hover,.btn[data-v-1def516f]:hover,button[data-v-1def516f]:hover{color:#35b870}.btn .icon[data-v-1def516f],.btn-default .icon[data-v-1def516f],button .icon[data-v-1def516f]{margin-right:.5em}.btn-default[data-v-1def516f]:disabled,.btn-default[disabled][data-v-1def516f],.btn[data-v-1def516f]:disabled,.btn[disabled][data-v-1def516f],button[data-v-1def516f]:disabled,button[disabled][data-v-1def516f]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1def516f]{cursor:grab!important}.dragged[data-v-1def516f]{opacity:.5!important}input[type=password][data-v-1def516f],input[type=text][data-v-1def516f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1def516f]:focus,input[type=text][data-v-1def516f]:focus{border:1px solid #35b870}button[data-v-1def516f],input[data-v-1def516f]{outline:none}input[type=text][data-v-1def516f]:hover,textarea[data-v-1def516f]:hover{border:1px solid #9cdfb0}ul[data-v-1def516f]{margin:0;padding:0;list-style:none}a[data-v-1def516f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1def516f]:hover{color:#35b870}[data-v-1def516f]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1def516f]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1def516f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1def516f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1def516f]{color:#ad1717}body[data-v-1def516f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1def516f] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1def516f] .nav .path{cursor:pointer}.browser[data-v-1def516f] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1def516f] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1def516f]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1def516f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1def516f],input[type=number][data-v-1def516f],input[type=password][data-v-1def516f],input[type=search][data-v-1def516f],input[type=text][data-v-1def516f],input[type=time][data-v-1def516f]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1def516f]:hover,input[type=number][data-v-1def516f]:hover,input[type=password][data-v-1def516f]:hover,input[type=search][data-v-1def516f]:hover,input[type=text][data-v-1def516f]:hover,input[type=time][data-v-1def516f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1def516f]:focus,input[type=number][data-v-1def516f]:focus,input[type=password][data-v-1def516f]:focus,input[type=search][data-v-1def516f]:focus,input[type=text][data-v-1def516f]:focus,input[type=time][data-v-1def516f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1def516f],input[type=number].with-icon[data-v-1def516f],input[type=password].with-icon[data-v-1def516f],input[type=search].with-icon[data-v-1def516f],input[type=text].with-icon[data-v-1def516f],input[type=time].with-icon[data-v-1def516f]{padding-left:.3em}input[type=search][data-v-1def516f],input[type=text][data-v-1def516f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1def516f]{animation-fill-mode:both;animation-name:fadeIn-1def516f;-webkit-animation-name:fadeIn-1def516f}.fade-in[data-v-1def516f],.fade-out[data-v-1def516f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1def516f]{animation-fill-mode:both;animation-name:fadeOut-1def516f;-webkit-animation-name:fadeOut-1def516f}.expand[data-v-1def516f]{animation-fill-mode:both;animation-name:expand-1def516f;-webkit-animation-name:expand-1def516f}.expand[data-v-1def516f],.shrink[data-v-1def516f]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1def516f]{animation-fill-mode:both;animation-name:shrink-1def516f;-webkit-animation-name:shrink-1def516f}.fold[data-v-1def516f]{animation-fill-mode:both;animation-name:fold-1def516f;-webkit-animation-name:fold-1def516f}.fold[data-v-1def516f],.unfold[data-v-1def516f]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1def516f]{animation-fill-mode:both;animation-name:unfold-1def516f;-webkit-animation-name:unfold-1def516f}.dim[data-v-1def516f]{animation-fill-mode:both;animation-name:dim-1def516f;-webkit-animation-name:dim-1def516f}.brighten[data-v-1def516f],.dim[data-v-1def516f]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1def516f]{animation-fill-mode:both;animation-name:brighten-1def516f;-webkit-animation-name:brighten-1def516f}@keyframes fadeIn-1def516f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1def516f{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1def516f{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1def516f{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1def516f{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1def516f{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1def516f{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1def516f{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1def516f]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1def516f;-webkit-animation-name:glow-1def516f}.loop[data-v-1def516f]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1def516f{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1def516f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1def516f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1def516f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.playlist-adder-container[data-v-1def516f]{min-width:300px;height:100%;position:relative;display:flex;flex-direction:column;align-items:center}.playlist-adder-container .playlists[data-v-1def516f]{width:100%;overflow-y:auto}.playlist-adder-container .playlist button[data-v-1def516f]{width:100%;text-align:left;padding:.5em 1em;border:none;background:none;cursor:pointer;transition:background .2s,color .2s}.playlist-adder-container .playlist button[data-v-1def516f]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.playlist-adder-container .playlist button i[data-v-1def516f]{margin-right:.5em}.playlist-adder-container .new-playlist button[data-v-1def516f]{font-weight:700;border-bottom:1px solid #e1e4e8}.flag-icon,.flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.flag-icon{position:relative;display:inline-block;width:1.33333333em;line-height:1em}.flag-icon:before{content:"\00a0"}.flag-icon.flag-icon-squared{width:1em}.flag-icon-ad{background-image:url(/static/img/ad.fa8477e6.svg)}.flag-icon-ad.flag-icon-squared{background-image:url(/static/img/ad.cb33f69a.svg)}.flag-icon-ae{background-image:url(/static/img/ae.a3f5e295.svg)}.flag-icon-ae.flag-icon-squared{background-image:url(/static/img/ae.f06e0095.svg)}.flag-icon-af{background-image:url(/static/img/af.89591ab0.svg)}.flag-icon-af.flag-icon-squared{background-image:url(/static/img/af.8ca96393.svg)}.flag-icon-ag{background-image:url(/static/img/ag.4c37bc2e.svg)}.flag-icon-ag.flag-icon-squared{background-image:url(/static/img/ag.56074d55.svg)}.flag-icon-ai{background-image:url(/static/img/ai.893d1179.svg)}.flag-icon-ai.flag-icon-squared{background-image:url(/static/img/ai.70eefdc0.svg)}.flag-icon-al{background-image:url(/static/img/al.e0864b5d.svg)}.flag-icon-al.flag-icon-squared{background-image:url(/static/img/al.b16acdb2.svg)}.flag-icon-am{background-image:url(/static/img/am.00f0fec4.svg)}.flag-icon-am.flag-icon-squared{background-image:url(/static/img/am.a566904f.svg)}.flag-icon-ao{background-image:url(/static/img/ao.3df23f21.svg)}.flag-icon-ao.flag-icon-squared{background-image:url(/static/img/ao.c0c32201.svg)}.flag-icon-aq{background-image:url(/static/img/aq.aa242c4a.svg)}.flag-icon-aq.flag-icon-squared{background-image:url(/static/img/aq.1b8c45a6.svg)}.flag-icon-ar{background-image:url(/static/img/ar.d3238270.svg)}.flag-icon-ar.flag-icon-squared{background-image:url(/static/img/ar.22a3116e.svg)}.flag-icon-as{background-image:url(/static/img/as.10ed1a23.svg)}.flag-icon-as.flag-icon-squared{background-image:url(/static/img/as.4a330654.svg)}.flag-icon-at{background-image:url(/static/img/at.02a64279.svg)}.flag-icon-at.flag-icon-squared{background-image:url(/static/img/at.94cde74c.svg)}.flag-icon-au{background-image:url(/static/img/au.cc65fc07.svg)}.flag-icon-au.flag-icon-squared{background-image:url(/static/img/au.dbcdef2c.svg)}.flag-icon-aw{background-image:url(/static/img/aw.abbad4ac.svg)}.flag-icon-aw.flag-icon-squared{background-image:url(/static/img/aw.be4540eb.svg)}.flag-icon-ax{background-image:url(/static/img/ax.91eea523.svg)}.flag-icon-ax.flag-icon-squared{background-image:url(/static/img/ax.371c7af2.svg)}.flag-icon-az{background-image:url(/static/img/az.0e2f1d1a.svg)}.flag-icon-az.flag-icon-squared{background-image:url(/static/img/az.f399f1c8.svg)}.flag-icon-ba{background-image:url(/static/img/ba.032070d4.svg)}.flag-icon-ba.flag-icon-squared{background-image:url(/static/img/ba.e167b08f.svg)}.flag-icon-bb{background-image:url(/static/img/bb.23a15e67.svg)}.flag-icon-bb.flag-icon-squared{background-image:url(/static/img/bb.b800513b.svg)}.flag-icon-bd{background-image:url(/static/img/bd.c4a5f0e2.svg)}.flag-icon-bd.flag-icon-squared{background-image:url(/static/img/bd.c1abcb00.svg)}.flag-icon-be{background-image:url(/static/img/be.29774a37.svg)}.flag-icon-be.flag-icon-squared{background-image:url(/static/img/be.3eb14701.svg)}.flag-icon-bf{background-image:url(/static/img/bf.4ffd5dc6.svg)}.flag-icon-bf.flag-icon-squared{background-image:url(/static/img/bf.2334e919.svg)}.flag-icon-bg{background-image:url(/static/img/bg.700f100c.svg)}.flag-icon-bg.flag-icon-squared{background-image:url(/static/img/bg.d0a49130.svg)}.flag-icon-bh{background-image:url(/static/img/bh.2a884f6c.svg)}.flag-icon-bh.flag-icon-squared{background-image:url(/static/img/bh.3968dfe0.svg)}.flag-icon-bi{background-image:url(/static/img/bi.ae3bb248.svg)}.flag-icon-bi.flag-icon-squared{background-image:url(/static/img/bi.211d0f9e.svg)}.flag-icon-bj{background-image:url(/static/img/bj.aba95ad2.svg)}.flag-icon-bj.flag-icon-squared{background-image:url(/static/img/bj.2cdc8a62.svg)}.flag-icon-bl{background-image:url(/static/img/bl.04966866.svg)}.flag-icon-bl.flag-icon-squared{background-image:url(/static/img/bl.3e69e968.svg)}.flag-icon-bm{background-image:url(/static/img/bm.e6903c8e.svg)}.flag-icon-bm.flag-icon-squared{background-image:url(/static/img/bm.e69e40c4.svg)}.flag-icon-bn{background-image:url(/static/img/bn.4d91734a.svg)}.flag-icon-bn.flag-icon-squared{background-image:url(/static/img/bn.07911e0c.svg)}.flag-icon-bo{background-image:url(/static/img/bo.03595499.svg)}.flag-icon-bo.flag-icon-squared{background-image:url(/static/img/bo.9c1d9ef8.svg)}.flag-icon-bq{background-image:url(/static/img/bq.747d8177.svg)}.flag-icon-bq.flag-icon-squared{background-image:url(/static/img/bq.b9355bec.svg)}.flag-icon-br,.flag-icon-pb{background-image:url(/static/img/br.fe030c1c.svg)}.flag-icon-br.flag-icon-squared,.flag-icon-pb.flag-icon-squared{background-image:url(/static/img/br.058a5086.svg)}.flag-icon-bs{background-image:url(/static/img/bs.ef0a29ed.svg)}.flag-icon-bs.flag-icon-squared{background-image:url(/static/img/bs.d228cbb2.svg)}.flag-icon-bt{background-image:url(/static/img/bt.fc241981.svg)}.flag-icon-bt.flag-icon-squared{background-image:url(/static/img/bt.3f8ecb9b.svg)}.flag-icon-bv{background-image:url(/static/img/bv.7f7cd26f.svg)}.flag-icon-bv.flag-icon-squared{background-image:url(/static/img/bv.5503f03a.svg)}.flag-icon-bw{background-image:url(/static/img/bw.b767df8c.svg)}.flag-icon-bw.flag-icon-squared{background-image:url(/static/img/bw.494aae64.svg)}.flag-icon-by{background-image:url(/static/img/by.fba98c48.svg)}.flag-icon-by.flag-icon-squared{background-image:url(/static/img/by.78d2c3c9.svg)}.flag-icon-bz{background-image:url(/static/img/bz.5e0ef548.svg)}.flag-icon-bz.flag-icon-squared{background-image:url(/static/img/bz.14c3376a.svg)}.flag-icon-ca{background-image:url(/static/img/ca.a2ab234d.svg)}.flag-icon-ca.flag-icon-squared{background-image:url(/static/img/ca.163ac200.svg)}.flag-icon-cc{background-image:url(/static/img/cc.813adff8.svg)}.flag-icon-cc.flag-icon-squared{background-image:url(/static/img/cc.51960f85.svg)}.flag-icon-cd{background-image:url(/static/img/cd.39186ec2.svg)}.flag-icon-cd.flag-icon-squared{background-image:url(/static/img/cd.b4bd46ee.svg)}.flag-icon-cf{background-image:url(/static/img/cf.b5702729.svg)}.flag-icon-cf.flag-icon-squared{background-image:url(/static/img/cf.fe1120e9.svg)}.flag-icon-cg{background-image:url(/static/img/cg.12414c99.svg)}.flag-icon-cg.flag-icon-squared{background-image:url(/static/img/cg.00603842.svg)}.flag-icon-ch{background-image:url(/static/img/ch.a558d859.svg)}.flag-icon-ch.flag-icon-squared{background-image:url(/static/img/ch.7376c9c3.svg)}.flag-icon-ci{background-image:url(/static/img/ci.1251a8e3.svg)}.flag-icon-ci.flag-icon-squared{background-image:url(/static/img/ci.425a24c2.svg)}.flag-icon-ck{background-image:url(/static/img/ck.6303aa5b.svg)}.flag-icon-ck.flag-icon-squared{background-image:url(/static/img/ck.4e83dd3e.svg)}.flag-icon-cl{background-image:url(/static/img/cl.b5974a35.svg)}.flag-icon-cl.flag-icon-squared{background-image:url(/static/img/cl.0917a91e.svg)}.flag-icon-cm{background-image:url(/static/img/cm.853e2843.svg)}.flag-icon-cm.flag-icon-squared{background-image:url(/static/img/cm.253adb39.svg)}.flag-icon-cn,.flag-icon-zh{background-image:url(/static/img/cn.e1b166eb.svg)}.flag-icon-cn.flag-icon-squared,.flag-icon-zh.flag-icon-squared{background-image:url(/static/img/cn.38f63e1e.svg)}.flag-icon-co{background-image:url(/static/img/co.b5cbc817.svg)}.flag-icon-co.flag-icon-squared{background-image:url(/static/img/co.33e249d8.svg)}.flag-icon-cr{background-image:url(/static/img/cr.2e572846.svg)}.flag-icon-cr.flag-icon-squared{background-image:url(/static/img/cr.336eb7d3.svg)}.flag-icon-cu{background-image:url(/static/img/cu.d6e33f19.svg)}.flag-icon-cu.flag-icon-squared{background-image:url(/static/img/cu.c2a6f0ed.svg)}.flag-icon-cv{background-image:url(/static/img/cv.5ea64968.svg)}.flag-icon-cv.flag-icon-squared{background-image:url(/static/img/cv.b3ab83f5.svg)}.flag-icon-cw{background-image:url(/static/img/cw.0e14b0b7.svg)}.flag-icon-cw.flag-icon-squared{background-image:url(/static/img/cw.9b9b7ed5.svg)}.flag-icon-cx{background-image:url(/static/img/cx.e04e07e8.svg)}.flag-icon-cx.flag-icon-squared{background-image:url(/static/img/cx.da5de6d2.svg)}.flag-icon-cy{background-image:url(/static/img/cy.bfcfd736.svg)}.flag-icon-cy.flag-icon-squared{background-image:url(/static/img/cy.834e6240.svg)}.flag-icon-cs,.flag-icon-cz{background-image:url(/static/img/cz.b5f98a6b.svg)}.flag-icon-cs.flag-icon-squared,.flag-icon-cz.flag-icon-squared{background-image:url(/static/img/cz.aa114964.svg)}.flag-icon-de{background-image:url(/static/img/de.8e159e6e.svg)}.flag-icon-de.flag-icon-squared{background-image:url(/static/img/de.b827ac51.svg)}.flag-icon-dj{background-image:url(/static/img/dj.4197a18a.svg)}.flag-icon-dj.flag-icon-squared{background-image:url(/static/img/dj.925748d5.svg)}.flag-icon-dk{background-image:url(/static/img/dk.3ca1caed.svg)}.flag-icon-dk.flag-icon-squared{background-image:url(/static/img/dk.a867eeef.svg)}.flag-icon-dm{background-image:url(/static/img/dm.bca6d70c.svg)}.flag-icon-dm.flag-icon-squared{background-image:url(/static/img/dm.7ddb00ac.svg)}.flag-icon-do{background-image:url(/static/img/do.954f0f3e.svg)}.flag-icon-do.flag-icon-squared{background-image:url(/static/img/do.81097daa.svg)}.flag-icon-dz{background-image:url(/static/img/dz.b7e2fbce.svg)}.flag-icon-dz.flag-icon-squared{background-image:url(/static/img/dz.76d47b01.svg)}.flag-icon-ec{background-image:url(/static/img/ec.5f387e2f.svg)}.flag-icon-ec.flag-icon-squared{background-image:url(/static/img/ec.0029f514.svg)}.flag-icon-ee{background-image:url(/static/img/ee.1b4839e0.svg)}.flag-icon-ee.flag-icon-squared{background-image:url(/static/img/ee.828384a8.svg)}.flag-icon-eg{background-image:url(/static/img/eg.38443fa6.svg)}.flag-icon-eg.flag-icon-squared{background-image:url(/static/img/eg.5756a758.svg)}.flag-icon-eh{background-image:url(/static/img/eh.f8d7b64f.svg)}.flag-icon-eh.flag-icon-squared{background-image:url(/static/img/eh.82bd1c7b.svg)}.flag-icon-er{background-image:url(/static/img/er.bf5b134b.svg)}.flag-icon-er.flag-icon-squared{background-image:url(/static/img/er.e932abe1.svg)}.flag-icon-es{background-image:url(/static/img/es.de5915e5.svg)}.flag-icon-es.flag-icon-squared{background-image:url(/static/img/es.7dd46df0.svg)}.flag-icon-et{background-image:url(/static/img/et.a998a1b2.svg)}.flag-icon-et.flag-icon-squared{background-image:url(/static/img/et.82e8eb21.svg)}.flag-icon-fi{background-image:url(/static/img/fi.3be6b378.svg)}.flag-icon-fi.flag-icon-squared{background-image:url(/static/img/fi.0cd85b78.svg)}.flag-icon-fj{background-image:url(/static/img/fj.ac9c916f.svg)}.flag-icon-fj.flag-icon-squared{background-image:url(/static/img/fj.e8d3e00b.svg)}.flag-icon-fk{background-image:url(/static/img/fk.af0350f8.svg)}.flag-icon-fk.flag-icon-squared{background-image:url(/static/img/fk.db55fa14.svg)}.flag-icon-fm{background-image:url(/static/img/fm.78d44caa.svg)}.flag-icon-fm.flag-icon-squared{background-image:url(/static/img/fm.3491efc7.svg)}.flag-icon-fo{background-image:url(/static/img/fo.72949ad1.svg)}.flag-icon-fo.flag-icon-squared{background-image:url(/static/img/fo.1da81e3a.svg)}.flag-icon-fr{background-image:url(/static/img/fr.9cb70285.svg)}.flag-icon-fr.flag-icon-squared{background-image:url(/static/img/fr.3565b8f4.svg)}.flag-icon-ga{background-image:url(/static/img/ga.59f7d865.svg)}.flag-icon-ga.flag-icon-squared{background-image:url(/static/img/ga.3e474381.svg)}.flag-icon-en,.flag-icon-gb{background-image:url(/static/img/gb.7a456bb2.svg)}.flag-icon-en.flag-icon-squared,.flag-icon-gb.flag-icon-squared{background-image:url(/static/img/gb.2aafb374.svg)}.flag-icon-gd{background-image:url(/static/img/gd.60b96978.svg)}.flag-icon-gd.flag-icon-squared{background-image:url(/static/img/gd.04ea09b7.svg)}.flag-icon-ge{background-image:url(/static/img/ge.b7b65b55.svg)}.flag-icon-ge.flag-icon-squared{background-image:url(/static/img/ge.c7190912.svg)}.flag-icon-gf{background-image:url(/static/img/gf.90f438a3.svg)}.flag-icon-gf.flag-icon-squared{background-image:url(/static/img/gf.531f9e07.svg)}.flag-icon-gg{background-image:url(/static/img/gg.3aebc3ce.svg)}.flag-icon-gg.flag-icon-squared{background-image:url(/static/img/gg.65174039.svg)}.flag-icon-gh{background-image:url(/static/img/gh.f2b6baac.svg)}.flag-icon-gh.flag-icon-squared{background-image:url(/static/img/gh.af443995.svg)}.flag-icon-gi{background-image:url(/static/img/gi.7beea6ed.svg)}.flag-icon-gi.flag-icon-squared{background-image:url(/static/img/gi.302c2506.svg)}.flag-icon-gl{background-image:url(/static/img/gl.551d0783.svg)}.flag-icon-gl.flag-icon-squared{background-image:url(/static/img/gl.6a5c17b0.svg)}.flag-icon-gm{background-image:url(/static/img/gm.0e00e9d4.svg)}.flag-icon-gm.flag-icon-squared{background-image:url(/static/img/gm.1724dc37.svg)}.flag-icon-gn{background-image:url(/static/img/gn.7c96520b.svg)}.flag-icon-gn.flag-icon-squared{background-image:url(/static/img/gn.54a75b28.svg)}.flag-icon-gp{background-image:url(/static/img/gp.4327060f.svg)}.flag-icon-gp.flag-icon-squared{background-image:url(/static/img/gp.f8adbf5c.svg)}.flag-icon-gq{background-image:url(/static/img/gq.bd7daf33.svg)}.flag-icon-gq.flag-icon-squared{background-image:url(/static/img/gq.b1679302.svg)}.flag-icon-el,.flag-icon-gr{background-image:url(/static/img/gr.07bedadf.svg)}.flag-icon-el.flag-icon-squared,.flag-icon-gr.flag-icon-squared{background-image:url(/static/img/gr.25dd3287.svg)}.flag-icon-gs{background-image:url(/static/img/gs.b2836676.svg)}.flag-icon-gs.flag-icon-squared{background-image:url(/static/img/gs.60368968.svg)}.flag-icon-gt{background-image:url(/static/img/gt.825f7286.svg)}.flag-icon-gt.flag-icon-squared{background-image:url(/static/img/gt.1a24ed67.svg)}.flag-icon-gu{background-image:url(/static/img/gu.19b114eb.svg)}.flag-icon-gu.flag-icon-squared{background-image:url(/static/img/gu.05f0ab85.svg)}.flag-icon-gw{background-image:url(/static/img/gw.c97f3f94.svg)}.flag-icon-gw.flag-icon-squared{background-image:url(/static/img/gw.bcd1eddb.svg)}.flag-icon-gy{background-image:url(/static/img/gy.e11d0234.svg)}.flag-icon-gy.flag-icon-squared{background-image:url(/static/img/gy.6327f72a.svg)}.flag-icon-hk{background-image:url(/static/img/hk.c72bba0e.svg)}.flag-icon-hk.flag-icon-squared{background-image:url(/static/img/hk.b199a9ee.svg)}.flag-icon-hm{background-image:url(/static/img/hm.d4b3d393.svg)}.flag-icon-hm.flag-icon-squared{background-image:url(/static/img/hm.4aa61657.svg)}.flag-icon-hn{background-image:url(/static/img/hn.08ad78b2.svg)}.flag-icon-hn.flag-icon-squared{background-image:url(/static/img/hn.44cee191.svg)}.flag-icon-hr{background-image:url(/static/img/hr.1f4e28b8.svg)}.flag-icon-hr.flag-icon-squared{background-image:url(/static/img/hr.078b1bf9.svg)}.flag-icon-ht{background-image:url(/static/img/ht.7ca68737.svg)}.flag-icon-ht.flag-icon-squared{background-image:url(/static/img/ht.6943447c.svg)}.flag-icon-hu{background-image:url(/static/img/hu.692e97ca.svg)}.flag-icon-hu.flag-icon-squared{background-image:url(/static/img/hu.b10d3f8e.svg)}.flag-icon-id{background-image:url(/static/img/id.a05dc04c.svg)}.flag-icon-id.flag-icon-squared{background-image:url(/static/img/id.94464e47.svg)}.flag-icon-ie{background-image:url(/static/img/ie.5154112a.svg)}.flag-icon-ie.flag-icon-squared{background-image:url(/static/img/ie.e23b25d1.svg)}.flag-icon-il{background-image:url(/static/img/il.e02a66d3.svg)}.flag-icon-il.flag-icon-squared{background-image:url(/static/img/il.150f4c5f.svg)}.flag-icon-im{background-image:url(/static/img/im.942419c5.svg)}.flag-icon-im.flag-icon-squared{background-image:url(/static/img/im.25166c91.svg)}.flag-icon-in{background-image:url(/static/img/in.954929a0.svg)}.flag-icon-in.flag-icon-squared{background-image:url(/static/img/in.bd0d4f19.svg)}.flag-icon-io{background-image:url(/static/img/io.a59923ab.svg)}.flag-icon-io.flag-icon-squared{background-image:url(/static/img/io.fa003484.svg)}.flag-icon-iq{background-image:url(/static/img/iq.1232a5c2.svg)}.flag-icon-iq.flag-icon-squared{background-image:url(/static/img/iq.9a48d678.svg)}.flag-icon-ir{background-image:url(/static/img/ir.1ed24953.svg)}.flag-icon-ir.flag-icon-squared{background-image:url(/static/img/ir.bc7ae9e1.svg)}.flag-icon-is{background-image:url(/static/img/is.cad57f19.svg)}.flag-icon-is.flag-icon-squared{background-image:url(/static/img/is.eea59326.svg)}.flag-icon-it{background-image:url(/static/img/it.e8516fc7.svg)}.flag-icon-it.flag-icon-squared{background-image:url(/static/img/it.039b4527.svg)}.flag-icon-je{background-image:url(/static/img/je.3ed72a25.svg)}.flag-icon-je.flag-icon-squared{background-image:url(/static/img/je.1684dacc.svg)}.flag-icon-jm{background-image:url(/static/img/jm.2357530e.svg)}.flag-icon-jm.flag-icon-squared{background-image:url(/static/img/jm.479f30fe.svg)}.flag-icon-jo{background-image:url(/static/img/jo.7ac45a65.svg)}.flag-icon-jo.flag-icon-squared{background-image:url(/static/img/jo.06fbaa2c.svg)}.flag-icon-jp{background-image:url(/static/img/jp.b6063838.svg)}.flag-icon-jp.flag-icon-squared{background-image:url(/static/img/jp.1795778c.svg)}.flag-icon-ke{background-image:url(/static/img/ke.6dbfffd5.svg)}.flag-icon-ke.flag-icon-squared{background-image:url(/static/img/ke.769bb975.svg)}.flag-icon-kg{background-image:url(/static/img/kg.daded53c.svg)}.flag-icon-kg.flag-icon-squared{background-image:url(/static/img/kg.96c12490.svg)}.flag-icon-kh{background-image:url(/static/img/kh.8eeb1634.svg)}.flag-icon-kh.flag-icon-squared{background-image:url(/static/img/kh.b10339d6.svg)}.flag-icon-ki{background-image:url(/static/img/ki.89e43a21.svg)}.flag-icon-ki.flag-icon-squared{background-image:url(/static/img/ki.033ff9ce.svg)}.flag-icon-km{background-image:url(/static/img/km.1e3bd5fe.svg)}.flag-icon-km.flag-icon-squared{background-image:url(/static/img/km.3ffb0228.svg)}.flag-icon-kn{background-image:url(/static/img/kn.0c16fe68.svg)}.flag-icon-kn.flag-icon-squared{background-image:url(/static/img/kn.8f2e7b29.svg)}.flag-icon-kp{background-image:url(/static/img/kp.0f5253d8.svg)}.flag-icon-kp.flag-icon-squared{background-image:url(/static/img/kp.f4ff9e76.svg)}.flag-icon-kr{background-image:url(/static/img/kr.0f5e1116.svg)}.flag-icon-kr.flag-icon-squared{background-image:url(/static/img/kr.0dc8b972.svg)}.flag-icon-kw{background-image:url(/static/img/kw.3b4f3ea3.svg)}.flag-icon-kw.flag-icon-squared{background-image:url(/static/img/kw.830d3755.svg)}.flag-icon-ky{background-image:url(/static/img/ky.e3b76b32.svg)}.flag-icon-ky.flag-icon-squared{background-image:url(/static/img/ky.be81d90b.svg)}.flag-icon-kz{background-image:url(/static/img/kz.579ac0f9.svg)}.flag-icon-kz.flag-icon-squared{background-image:url(/static/img/kz.32ac1036.svg)}.flag-icon-la{background-image:url(/static/img/la.e583f8ec.svg)}.flag-icon-la.flag-icon-squared{background-image:url(/static/img/la.f71017ef.svg)}.flag-icon-lb{background-image:url(/static/img/lb.bdbeb8f1.svg)}.flag-icon-lb.flag-icon-squared{background-image:url(/static/img/lb.8eea508a.svg)}.flag-icon-lc{background-image:url(/static/img/lc.68bd77ae.svg)}.flag-icon-lc.flag-icon-squared{background-image:url(/static/img/lc.25f644a6.svg)}.flag-icon-li{background-image:url(/static/img/li.8dc1ed79.svg)}.flag-icon-li.flag-icon-squared{background-image:url(/static/img/li.d7e2a871.svg)}.flag-icon-lk{background-image:url(/static/img/lk.42c41c61.svg)}.flag-icon-lk.flag-icon-squared{background-image:url(/static/img/lk.e52240d6.svg)}.flag-icon-lr{background-image:url(/static/img/lr.5b84ff00.svg)}.flag-icon-lr.flag-icon-squared{background-image:url(/static/img/lr.9a67cd3d.svg)}.flag-icon-ls{background-image:url(/static/img/ls.6d444cae.svg)}.flag-icon-ls.flag-icon-squared{background-image:url(/static/img/ls.fe1da403.svg)}.flag-icon-lt{background-image:url(/static/img/lt.b57ea2a8.svg)}.flag-icon-lt.flag-icon-squared{background-image:url(/static/img/lt.03a2e8c1.svg)}.flag-icon-lu{background-image:url(/static/img/lu.93878a1b.svg)}.flag-icon-lu.flag-icon-squared{background-image:url(/static/img/lu.e3bdc6d3.svg)}.flag-icon-lv{background-image:url(/static/img/lv.679c099e.svg)}.flag-icon-lv.flag-icon-squared{background-image:url(/static/img/lv.1853e3a0.svg)}.flag-icon-ly{background-image:url(/static/img/ly.05f8732e.svg)}.flag-icon-ly.flag-icon-squared{background-image:url(/static/img/ly.b9e750ff.svg)}.flag-icon-ma{background-image:url(/static/img/ma.65053fc4.svg)}.flag-icon-ma.flag-icon-squared{background-image:url(/static/img/ma.88ada30c.svg)}.flag-icon-mc{background-image:url(/static/img/mc.2c03ea5c.svg)}.flag-icon-mc.flag-icon-squared{background-image:url(/static/img/mc.89b532e8.svg)}.flag-icon-md{background-image:url(/static/img/md.646818c3.svg)}.flag-icon-md.flag-icon-squared{background-image:url(/static/img/md.a56562ee.svg)}.flag-icon-me{background-image:url(/static/img/me.f05548f2.svg)}.flag-icon-me.flag-icon-squared{background-image:url(/static/img/me.2e71b778.svg)}.flag-icon-mf{background-image:url(/static/img/mf.7da6b3d2.svg)}.flag-icon-mf.flag-icon-squared{background-image:url(/static/img/mf.70d09a4a.svg)}.flag-icon-mg{background-image:url(/static/img/mg.09ca17b2.svg)}.flag-icon-mg.flag-icon-squared{background-image:url(/static/img/mg.b3fff4a6.svg)}.flag-icon-mh{background-image:url(/static/img/mh.3fd69bb2.svg)}.flag-icon-mh.flag-icon-squared{background-image:url(/static/img/mh.f6cbc774.svg)}.flag-icon-mk{background-image:url(/static/img/mk.e5412079.svg)}.flag-icon-mk.flag-icon-squared{background-image:url(/static/img/mk.4234a248.svg)}.flag-icon-ml{background-image:url(/static/img/ml.4f0dba9e.svg)}.flag-icon-ml.flag-icon-squared{background-image:url(/static/img/ml.3fad079e.svg)}.flag-icon-mm{background-image:url(/static/img/mm.adaa2111.svg)}.flag-icon-mm.flag-icon-squared{background-image:url(/static/img/mm.8ac1f094.svg)}.flag-icon-mn{background-image:url(/static/img/mn.78547af0.svg)}.flag-icon-mn.flag-icon-squared{background-image:url(/static/img/mn.a4bcb0e6.svg)}.flag-icon-mo{background-image:url(/static/img/mo.c8198565.svg)}.flag-icon-mo.flag-icon-squared{background-image:url(/static/img/mo.2f0d2c15.svg)}.flag-icon-mp{background-image:url(/static/img/mp.eeeefff6.svg)}.flag-icon-mp.flag-icon-squared{background-image:url(/static/img/mp.2acb5506.svg)}.flag-icon-mq{background-image:url(/static/img/mq.145a7657.svg)}.flag-icon-mq.flag-icon-squared{background-image:url(/static/img/mq.bb36a8fc.svg)}.flag-icon-mr{background-image:url(/static/img/mr.dd34eae8.svg)}.flag-icon-mr.flag-icon-squared{background-image:url(/static/img/mr.e91e06ea.svg)}.flag-icon-ms{background-image:url(/static/img/ms.2025cd7d.svg)}.flag-icon-ms.flag-icon-squared{background-image:url(/static/img/ms.b13001dc.svg)}.flag-icon-mt{background-image:url(/static/img/mt.cff39ee0.svg)}.flag-icon-mt.flag-icon-squared{background-image:url(/static/img/mt.b6f71c85.svg)}.flag-icon-mu{background-image:url(/static/img/mu.51f71163.svg)}.flag-icon-mu.flag-icon-squared{background-image:url(/static/img/mu.a926c232.svg)}.flag-icon-mv{background-image:url(/static/img/mv.ba4de4fd.svg)}.flag-icon-mv.flag-icon-squared{background-image:url(/static/img/mv.2c8b92b5.svg)}.flag-icon-mw{background-image:url(/static/img/mw.0b005148.svg)}.flag-icon-mw.flag-icon-squared{background-image:url(/static/img/mw.f704f4bb.svg)}.flag-icon-mx{background-image:url(/static/img/mx.1b615ec2.svg)}.flag-icon-mx.flag-icon-squared{background-image:url(/static/img/mx.8a36b075.svg)}.flag-icon-my{background-image:url(/static/img/my.4109ae71.svg)}.flag-icon-my.flag-icon-squared{background-image:url(/static/img/my.69c87fc5.svg)}.flag-icon-mz{background-image:url(/static/img/mz.1377650b.svg)}.flag-icon-mz.flag-icon-squared{background-image:url(/static/img/mz.2c96acb1.svg)}.flag-icon-na{background-image:url(/static/img/na.e0503926.svg)}.flag-icon-na.flag-icon-squared{background-image:url(/static/img/na.7adf4344.svg)}.flag-icon-nc{background-image:url(/static/img/nc.96fa6a4b.svg)}.flag-icon-nc.flag-icon-squared{background-image:url(/static/img/nc.b5a5d41b.svg)}.flag-icon-ne{background-image:url(/static/img/ne.d11b82c6.svg)}.flag-icon-ne.flag-icon-squared{background-image:url(/static/img/ne.d4fe4faa.svg)}.flag-icon-nf{background-image:url(/static/img/nf.a7166b00.svg)}.flag-icon-nf.flag-icon-squared{background-image:url(/static/img/nf.1e8c700b.svg)}.flag-icon-ng{background-image:url(/static/img/ng.51059407.svg)}.flag-icon-ng.flag-icon-squared{background-image:url(/static/img/ng.c3b42ad2.svg)}.flag-icon-ni{background-image:url(/static/img/ni.5b80bac0.svg)}.flag-icon-ni.flag-icon-squared{background-image:url(/static/img/ni.cc7eb514.svg)}.flag-icon-nl{background-image:url(/static/img/nl.dd138444.svg)}.flag-icon-nl.flag-icon-squared{background-image:url(/static/img/nl.e415f0e7.svg)}.flag-icon-no{background-image:url(/static/img/no.70157234.svg)}.flag-icon-no.flag-icon-squared{background-image:url(/static/img/no.26996afa.svg)}.flag-icon-np{background-image:url(/static/img/np.954177a0.svg)}.flag-icon-np.flag-icon-squared{background-image:url(/static/img/np.f7b8a5c3.svg)}.flag-icon-nr{background-image:url(/static/img/nr.2c66d218.svg)}.flag-icon-nr.flag-icon-squared{background-image:url(/static/img/nr.a4f0e762.svg)}.flag-icon-nu{background-image:url(/static/img/nu.26551dc2.svg)}.flag-icon-nu.flag-icon-squared{background-image:url(/static/img/nu.860bbe8a.svg)}.flag-icon-nz{background-image:url(/static/img/nz.38d0d690.svg)}.flag-icon-nz.flag-icon-squared{background-image:url(/static/img/nz.c77ae58d.svg)}.flag-icon-om{background-image:url(/static/img/om.ff034f9e.svg)}.flag-icon-om.flag-icon-squared{background-image:url(/static/img/om.3f5691ca.svg)}.flag-icon-pa{background-image:url(/static/img/pa.6dc8212a.svg)}.flag-icon-pa.flag-icon-squared{background-image:url(/static/img/pa.acde3214.svg)}.flag-icon-pe{background-image:url(/static/img/pe.5a3b0bc5.svg)}.flag-icon-pe.flag-icon-squared{background-image:url(/static/img/pe.5c2ced95.svg)}.flag-icon-pf{background-image:url(/static/img/pf.9f06082b.svg)}.flag-icon-pf.flag-icon-squared{background-image:url(/static/img/pf.f6ae1bc8.svg)}.flag-icon-pg{background-image:url(/static/img/pg.26847b33.svg)}.flag-icon-pg.flag-icon-squared{background-image:url(/static/img/pg.66c8dc3b.svg)}.flag-icon-ph{background-image:url(/static/img/ph.12e2b123.svg)}.flag-icon-ph.flag-icon-squared{background-image:url(/static/img/ph.f215833e.svg)}.flag-icon-pk{background-image:url(/static/img/pk.0bbf58be.svg)}.flag-icon-pk.flag-icon-squared{background-image:url(/static/img/pk.32b55f6f.svg)}.flag-icon-pl{background-image:url(/static/img/pl.a1350f0c.svg)}.flag-icon-pl.flag-icon-squared{background-image:url(/static/img/pl.03886843.svg)}.flag-icon-pm{background-image:url(/static/img/pm.a5590fa3.svg)}.flag-icon-pm.flag-icon-squared{background-image:url(/static/img/pm.7a6beab5.svg)}.flag-icon-pn{background-image:url(/static/img/pn.715fd11d.svg)}.flag-icon-pn.flag-icon-squared{background-image:url(/static/img/pn.00a9342b.svg)}.flag-icon-pr{background-image:url(/static/img/pr.b37cbdc4.svg)}.flag-icon-pr.flag-icon-squared{background-image:url(/static/img/pr.391a48e2.svg)}.flag-icon-ps{background-image:url(/static/img/ps.96bcac74.svg)}.flag-icon-ps.flag-icon-squared{background-image:url(/static/img/ps.1af72ed4.svg)}.flag-icon-pt{background-image:url(/static/img/pt.351b87cb.svg)}.flag-icon-pt.flag-icon-squared{background-image:url(/static/img/pt.0703cc3a.svg)}.flag-icon-pw{background-image:url(/static/img/pw.17220ffb.svg)}.flag-icon-pw.flag-icon-squared{background-image:url(/static/img/pw.6d8e7ce0.svg)}.flag-icon-py{background-image:url(/static/img/py.c20318c9.svg)}.flag-icon-py.flag-icon-squared{background-image:url(/static/img/py.25cc39e3.svg)}.flag-icon-qa{background-image:url(/static/img/qa.86452d7a.svg)}.flag-icon-qa.flag-icon-squared{background-image:url(/static/img/qa.7e695788.svg)}.flag-icon-re{background-image:url(/static/img/re.b8140129.svg)}.flag-icon-re.flag-icon-squared{background-image:url(/static/img/re.cf143c2f.svg)}.flag-icon-ro{background-image:url(/static/img/ro.67f8501e.svg)}.flag-icon-ro.flag-icon-squared{background-image:url(/static/img/ro.cab93784.svg)}.flag-icon-rs{background-image:url(/static/img/rs.23638d75.svg)}.flag-icon-rs.flag-icon-squared{background-image:url(/static/img/rs.ae2e3422.svg)}.flag-icon-ru{background-image:url(/static/img/ru.edd8b008.svg)}.flag-icon-ru.flag-icon-squared{background-image:url(/static/img/ru.ccd50623.svg)}.flag-icon-rw{background-image:url(/static/img/rw.d118aacd.svg)}.flag-icon-rw.flag-icon-squared{background-image:url(/static/img/rw.87d5d899.svg)}.flag-icon-sa{background-image:url(/static/img/sa.f0a8997b.svg)}.flag-icon-sa.flag-icon-squared{background-image:url(/static/img/sa.5bfbe72b.svg)}.flag-icon-sb{background-image:url(/static/img/sb.1c406073.svg)}.flag-icon-sb.flag-icon-squared{background-image:url(/static/img/sb.b0db5b0a.svg)}.flag-icon-sc{background-image:url(/static/img/sc.cdc20672.svg)}.flag-icon-sc.flag-icon-squared{background-image:url(/static/img/sc.0452f14c.svg)}.flag-icon-sd{background-image:url(/static/img/sd.0e619868.svg)}.flag-icon-sd.flag-icon-squared{background-image:url(/static/img/sd.da3b68ee.svg)}.flag-icon-se{background-image:url(/static/img/se.7e499d82.svg)}.flag-icon-se.flag-icon-squared{background-image:url(/static/img/se.7ec71700.svg)}.flag-icon-sg{background-image:url(/static/img/sg.8a63b009.svg)}.flag-icon-sg.flag-icon-squared{background-image:url(/static/img/sg.4f0e8eff.svg)}.flag-icon-sh{background-image:url(/static/img/sh.46e2588d.svg)}.flag-icon-sh.flag-icon-squared{background-image:url(/static/img/sh.681f8fff.svg)}.flag-icon-si{background-image:url(/static/img/si.2a428364.svg)}.flag-icon-si.flag-icon-squared{background-image:url(/static/img/si.d9d425c0.svg)}.flag-icon-sj{background-image:url(/static/img/sj.92c583b8.svg)}.flag-icon-sj.flag-icon-squared{background-image:url(/static/img/sj.638e6522.svg)}.flag-icon-sk{background-image:url(/static/img/sk.7998d1f5.svg)}.flag-icon-sk.flag-icon-squared{background-image:url(/static/img/sk.93c91c0b.svg)}.flag-icon-sl{background-image:url(/static/img/sl.d8378c47.svg)}.flag-icon-sl.flag-icon-squared{background-image:url(/static/img/sl.eb9dda3f.svg)}.flag-icon-sm{background-image:url(/static/img/sm.5e2fc188.svg)}.flag-icon-sm.flag-icon-squared{background-image:url(/static/img/sm.0ba901f4.svg)}.flag-icon-sn{background-image:url(/static/img/sn.4247b831.svg)}.flag-icon-sn.flag-icon-squared{background-image:url(/static/img/sn.98923b55.svg)}.flag-icon-so{background-image:url(/static/img/so.2d18a203.svg)}.flag-icon-so.flag-icon-squared{background-image:url(/static/img/so.45f08b28.svg)}.flag-icon-sr{background-image:url(/static/img/sr.cb178d98.svg)}.flag-icon-sr.flag-icon-squared{background-image:url(/static/img/sr.d66c1240.svg)}.flag-icon-ss{background-image:url(/static/img/ss.caedfdf2.svg)}.flag-icon-ss.flag-icon-squared{background-image:url(/static/img/ss.db181f81.svg)}.flag-icon-st{background-image:url(/static/img/st.ecc4827f.svg)}.flag-icon-st.flag-icon-squared{background-image:url(/static/img/st.a70042c6.svg)}.flag-icon-sv{background-image:url(/static/img/sv.f67839a6.svg)}.flag-icon-sv.flag-icon-squared{background-image:url(/static/img/sv.9501935a.svg)}.flag-icon-sx{background-image:url(/static/img/sx.c0e6297a.svg)}.flag-icon-sx.flag-icon-squared{background-image:url(/static/img/sx.77e864f0.svg)}.flag-icon-sy{background-image:url(/static/img/sy.2b3eac89.svg)}.flag-icon-sy.flag-icon-squared{background-image:url(/static/img/sy.7fe894df.svg)}.flag-icon-sz{background-image:url(/static/img/sz.70b6fc50.svg)}.flag-icon-sz.flag-icon-squared{background-image:url(/static/img/sz.eb01cd9f.svg)}.flag-icon-tc{background-image:url(/static/img/tc.651466dd.svg)}.flag-icon-tc.flag-icon-squared{background-image:url(/static/img/tc.30ccd48e.svg)}.flag-icon-td{background-image:url(/static/img/td.5d622e26.svg)}.flag-icon-td.flag-icon-squared{background-image:url(/static/img/td.f1319408.svg)}.flag-icon-tf{background-image:url(/static/img/tf.a1757237.svg)}.flag-icon-tf.flag-icon-squared{background-image:url(/static/img/tf.27cbe00b.svg)}.flag-icon-tg{background-image:url(/static/img/tg.b492a751.svg)}.flag-icon-tg.flag-icon-squared{background-image:url(/static/img/tg.d04f874c.svg)}.flag-icon-th{background-image:url(/static/img/th.b8e24edb.svg)}.flag-icon-th.flag-icon-squared{background-image:url(/static/img/th.79b63a8a.svg)}.flag-icon-tj{background-image:url(/static/img/tj.d3a42312.svg)}.flag-icon-tj.flag-icon-squared{background-image:url(/static/img/tj.b7dafe8d.svg)}.flag-icon-tk{background-image:url(/static/img/tk.6c1f520c.svg)}.flag-icon-tk.flag-icon-squared{background-image:url(/static/img/tk.f87f794b.svg)}.flag-icon-tl{background-image:url(/static/img/tl.85904d79.svg)}.flag-icon-tl.flag-icon-squared{background-image:url(/static/img/tl.ca9af3c0.svg)}.flag-icon-tm{background-image:url(/static/img/tm.e467552c.svg)}.flag-icon-tm.flag-icon-squared{background-image:url(/static/img/tm.762df128.svg)}.flag-icon-tn{background-image:url(/static/img/tn.ff4c5190.svg)}.flag-icon-tn.flag-icon-squared{background-image:url(/static/img/tn.cc3ab493.svg)}.flag-icon-to{background-image:url(/static/img/to.8dd22284.svg)}.flag-icon-to.flag-icon-squared{background-image:url(/static/img/to.9748a967.svg)}.flag-icon-tr{background-image:url(/static/img/tr.87e40d5c.svg)}.flag-icon-tr.flag-icon-squared{background-image:url(/static/img/tr.fc8c91dd.svg)}.flag-icon-tt{background-image:url(/static/img/tt.5a459e81.svg)}.flag-icon-tt.flag-icon-squared{background-image:url(/static/img/tt.4acf6cc2.svg)}.flag-icon-tv{background-image:url(/static/img/tv.9717b553.svg)}.flag-icon-tv.flag-icon-squared{background-image:url(/static/img/tv.a8ff4939.svg)}.flag-icon-tw{background-image:url(/static/img/tw.c0cf9ea7.svg)}.flag-icon-tw.flag-icon-squared{background-image:url(/static/img/tw.45c8a106.svg)}.flag-icon-tz{background-image:url(/static/img/tz.c27fd405.svg)}.flag-icon-tz.flag-icon-squared{background-image:url(/static/img/tz.1abfbb38.svg)}.flag-icon-ua{background-image:url(/static/img/ua.63d75c84.svg)}.flag-icon-ua.flag-icon-squared{background-image:url(/static/img/ua.04fa0e67.svg)}.flag-icon-ug{background-image:url(/static/img/ug.5ac71e98.svg)}.flag-icon-ug.flag-icon-squared{background-image:url(/static/img/ug.5ae165a2.svg)}.flag-icon-um{background-image:url(/static/img/um.b38f913c.svg)}.flag-icon-um.flag-icon-squared{background-image:url(/static/img/um.582dd57b.svg)}.flag-icon-us{background-image:url(/static/img/us.99e04236.svg)}.flag-icon-us.flag-icon-squared{background-image:url(/static/img/us.6c459052.svg)}.flag-icon-uy{background-image:url(/static/img/uy.b70ac310.svg)}.flag-icon-uy.flag-icon-squared{background-image:url(/static/img/uy.69cf8938.svg)}.flag-icon-uz{background-image:url(/static/img/uz.7f8823a2.svg)}.flag-icon-uz.flag-icon-squared{background-image:url(/static/img/uz.d53abc35.svg)}.flag-icon-va{background-image:url(/static/img/va.7efb8ba6.svg)}.flag-icon-va.flag-icon-squared{background-image:url(/static/img/va.abcb42e8.svg)}.flag-icon-vc{background-image:url(/static/img/vc.37cf5ba1.svg)}.flag-icon-vc.flag-icon-squared{background-image:url(/static/img/vc.3e4ac6d4.svg)}.flag-icon-ve{background-image:url(/static/img/ve.4cd0e3ed.svg)}.flag-icon-ve.flag-icon-squared{background-image:url(/static/img/ve.9cd63506.svg)}.flag-icon-vg{background-image:url(/static/img/vg.ae3b6f7e.svg)}.flag-icon-vg.flag-icon-squared{background-image:url(/static/img/vg.025b8b6a.svg)}.flag-icon-vi{background-image:url(/static/img/vi.f920eec7.svg)}.flag-icon-vi.flag-icon-squared{background-image:url(/static/img/vi.293e6f1c.svg)}.flag-icon-vn{background-image:url(/static/img/vn.9ec4ca4d.svg)}.flag-icon-vn.flag-icon-squared{background-image:url(/static/img/vn.11dd1cf6.svg)}.flag-icon-vu{background-image:url(/static/img/vu.5d2d7643.svg)}.flag-icon-vu.flag-icon-squared{background-image:url(/static/img/vu.b7a8d91a.svg)}.flag-icon-wf{background-image:url(/static/img/wf.69c77016.svg)}.flag-icon-wf.flag-icon-squared{background-image:url(/static/img/wf.9ca6f4bc.svg)}.flag-icon-ws{background-image:url(/static/img/ws.15c7a17c.svg)}.flag-icon-ws.flag-icon-squared{background-image:url(/static/img/ws.d2e19e5a.svg)}.flag-icon-ye{background-image:url(/static/img/ye.bb567731.svg)}.flag-icon-ye.flag-icon-squared{background-image:url(/static/img/ye.0b3f3c76.svg)}.flag-icon-yt{background-image:url(/static/img/yt.332bd5d3.svg)}.flag-icon-yt.flag-icon-squared{background-image:url(/static/img/yt.c33641ca.svg)}.flag-icon-za{background-image:url(/static/img/za.42e033a9.svg)}.flag-icon-za.flag-icon-squared{background-image:url(/static/img/za.2fa94205.svg)}.flag-icon-zm{background-image:url(/static/img/zm.92477cab.svg)}.flag-icon-zm.flag-icon-squared{background-image:url(/static/img/zm.ce5363b7.svg)}.flag-icon-zw{background-image:url(/static/img/zw.f488cb8a.svg)}.flag-icon-zw.flag-icon-squared{background-image:url(/static/img/zw.6a535c1e.svg)}.flag-icon-es-ct{background-image:url(/static/img/es-ct.64a68954.svg)}.flag-icon-es-ct.flag-icon-squared{background-image:url(/static/img/es-ct.69469f50.svg)}.flag-icon-eu{background-image:url(/static/img/eu.4c6e130f.svg)}.flag-icon-eu.flag-icon-squared{background-image:url(/static/img/eu.aba724b1.svg)}.flag-icon-gb-eng{background-image:url(/static/img/gb-eng.513dcf1b.svg)}.flag-icon-gb-eng.flag-icon-squared{background-image:url(/static/img/gb-eng.0fac6e79.svg)}.flag-icon-gb-nir{background-image:url(/static/img/gb-nir.f59817d6.svg)}.flag-icon-gb-nir.flag-icon-squared{background-image:url(/static/img/gb-nir.2b7d2c3a.svg)}.flag-icon-gb-sct{background-image:url(/static/img/gb-sct.fee55173.svg)}.flag-icon-gb-sct.flag-icon-squared{background-image:url(/static/img/gb-sct.f5001e5d.svg)}.flag-icon-gb-wls{background-image:url(/static/img/gb-wls.13481560.svg)}.flag-icon-gb-wls.flag-icon-squared{background-image:url(/static/img/gb-wls.95b2cfab.svg)}.flag-icon-un{background-image:url(/static/img/un.2df110d6.svg)}.flag-icon-un.flag-icon-squared{background-image:url(/static/img/un.58a4a02a.svg)}.flag-icon-xk{background-image:url(/static/img/xk.ca7843be.svg)}.flag-icon-xk.flag-icon-squared{background-image:url(/static/img/xk.16b6bb85.svg)}.col-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-77ae3705]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-77ae3705]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-77ae3705]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-77ae3705]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-77ae3705]:first-child{margin-left:26%!important}.col-offset-3[data-v-77ae3705]:not(first-child){margin-left:30%!important}.col-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-77ae3705]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-77ae3705]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-77ae3705]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-77ae3705]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-77ae3705]:first-child{margin-left:52%!important}.col-offset-6[data-v-77ae3705]:not(first-child){margin-left:56%!important}.col-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-77ae3705]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-77ae3705]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-77ae3705]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-77ae3705]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-77ae3705]:first-child{margin-left:78%!important}.col-offset-9[data-v-77ae3705]:not(first-child){margin-left:82%!important}.col-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-77ae3705]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-77ae3705]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-77ae3705]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-77ae3705]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-s-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-s-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-s-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-s-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-s-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-77ae3705]{display:none!important}.s-visible[data-v-77ae3705]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-m-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-m-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-m-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-m-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-m-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-77ae3705]{display:none!important}.m-visible[data-v-77ae3705]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-l-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-l-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-l-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-l-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-l-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-77ae3705]{display:none!important}.l-visible[data-v-77ae3705]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-xl-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-xl-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-xl-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xl-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-77ae3705]{display:none!important}.xl-visible[data-v-77ae3705]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-1[data-v-77ae3705]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-77ae3705]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-2[data-v-77ae3705]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-77ae3705]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-3[data-v-77ae3705]{margin-left:26%}.col-no-margin-xxl-3[data-v-77ae3705]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-4[data-v-77ae3705]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-77ae3705]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-5[data-v-77ae3705]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-77ae3705]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-6[data-v-77ae3705]{margin-left:52%}.col-no-margin-xxl-6[data-v-77ae3705]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-7[data-v-77ae3705]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-77ae3705]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-8[data-v-77ae3705]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-77ae3705]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-9[data-v-77ae3705]{margin-left:78%}.col-no-margin-xxl-9[data-v-77ae3705]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-10[data-v-77ae3705]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-77ae3705]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-77ae3705]:first-child{margin-left:0}.col-offset-xxl-11[data-v-77ae3705]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-77ae3705]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-77ae3705]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-77ae3705]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-77ae3705]{display:none!important}.xxl-visible[data-v-77ae3705]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-77ae3705]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-77ae3705]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-77ae3705]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-77ae3705]{display:none!important}}.vertical-center[data-v-77ae3705]{display:flex;align-items:center}.horizontal-center[data-v-77ae3705]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-77ae3705]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-77ae3705]{display:none!important}.no-content[data-v-77ae3705]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-77ae3705]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-77ae3705]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-77ae3705]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-77ae3705]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-77ae3705]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-77ae3705]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-77ae3705],.btn[data-v-77ae3705],button[data-v-77ae3705]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-77ae3705],.btn-default[type=submit][data-v-77ae3705],.btn.btn-primary[data-v-77ae3705],.btn[type=submit][data-v-77ae3705],button.btn-primary[data-v-77ae3705],button[type=submit][data-v-77ae3705]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-77ae3705]:hover,.btn[data-v-77ae3705]:hover,button[data-v-77ae3705]:hover{color:#35b870}.btn .icon[data-v-77ae3705],.btn-default .icon[data-v-77ae3705],button .icon[data-v-77ae3705]{margin-right:.5em}.btn-default[data-v-77ae3705]:disabled,.btn-default[disabled][data-v-77ae3705],.btn[data-v-77ae3705]:disabled,.btn[disabled][data-v-77ae3705],button[data-v-77ae3705]:disabled,button[disabled][data-v-77ae3705]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-77ae3705]{cursor:grab!important}.dragged[data-v-77ae3705]{opacity:.5!important}input[type=password][data-v-77ae3705],input[type=text][data-v-77ae3705]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-77ae3705]:focus,input[type=text][data-v-77ae3705]:focus{border:1px solid #35b870}button[data-v-77ae3705],input[data-v-77ae3705]{outline:none}input[type=text][data-v-77ae3705]:hover,textarea[data-v-77ae3705]:hover{border:1px solid #9cdfb0}ul[data-v-77ae3705]{margin:0;padding:0;list-style:none}a[data-v-77ae3705]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-77ae3705]:hover{color:#35b870}[data-v-77ae3705]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-77ae3705]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-77ae3705]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-77ae3705]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-77ae3705]{color:#ad1717}body[data-v-77ae3705]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-77ae3705] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-77ae3705] .nav .path{cursor:pointer}.browser[data-v-77ae3705] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-77ae3705] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-77ae3705]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-77ae3705]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-77ae3705],input[type=number][data-v-77ae3705],input[type=password][data-v-77ae3705],input[type=search][data-v-77ae3705],input[type=text][data-v-77ae3705],input[type=time][data-v-77ae3705]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-77ae3705]:hover,input[type=number][data-v-77ae3705]:hover,input[type=password][data-v-77ae3705]:hover,input[type=search][data-v-77ae3705]:hover,input[type=text][data-v-77ae3705]:hover,input[type=time][data-v-77ae3705]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-77ae3705]:focus,input[type=number][data-v-77ae3705]:focus,input[type=password][data-v-77ae3705]:focus,input[type=search][data-v-77ae3705]:focus,input[type=text][data-v-77ae3705]:focus,input[type=time][data-v-77ae3705]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-77ae3705],input[type=number].with-icon[data-v-77ae3705],input[type=password].with-icon[data-v-77ae3705],input[type=search].with-icon[data-v-77ae3705],input[type=text].with-icon[data-v-77ae3705],input[type=time].with-icon[data-v-77ae3705]{padding-left:.3em}input[type=search][data-v-77ae3705],input[type=text][data-v-77ae3705]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-77ae3705]{animation-fill-mode:both;animation-name:fadeIn-77ae3705;-webkit-animation-name:fadeIn-77ae3705}.fade-in[data-v-77ae3705],.fade-out[data-v-77ae3705]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-77ae3705]{animation-fill-mode:both;animation-name:fadeOut-77ae3705;-webkit-animation-name:fadeOut-77ae3705}.expand[data-v-77ae3705]{animation-fill-mode:both;animation-name:expand-77ae3705;-webkit-animation-name:expand-77ae3705}.expand[data-v-77ae3705],.shrink[data-v-77ae3705]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-77ae3705]{animation-fill-mode:both;animation-name:shrink-77ae3705;-webkit-animation-name:shrink-77ae3705}.fold[data-v-77ae3705]{animation-fill-mode:both;animation-name:fold-77ae3705;-webkit-animation-name:fold-77ae3705}.fold[data-v-77ae3705],.unfold[data-v-77ae3705]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-77ae3705]{animation-fill-mode:both;animation-name:unfold-77ae3705;-webkit-animation-name:unfold-77ae3705}.dim[data-v-77ae3705]{animation-fill-mode:both;animation-name:dim-77ae3705;-webkit-animation-name:dim-77ae3705}.brighten[data-v-77ae3705],.dim[data-v-77ae3705]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-77ae3705]{animation-fill-mode:both;animation-name:brighten-77ae3705;-webkit-animation-name:brighten-77ae3705}@keyframes fadeIn-77ae3705{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-77ae3705{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-77ae3705{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-77ae3705{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-77ae3705{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-77ae3705{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-77ae3705{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-77ae3705{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-77ae3705]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-77ae3705;-webkit-animation-name:glow-77ae3705}.loop[data-v-77ae3705]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-77ae3705{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-77ae3705]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-77ae3705]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-77ae3705]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-77ae3705]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-77ae3705]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-77ae3705]{background:#8fefb7}.item.selected[data-v-77ae3705]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-77ae3705]{border-top:2px solid #35b870}.item[data-v-77ae3705]::-moz-selection{background:transparent!important}.item[data-v-77ae3705]::selection{background:transparent!important}.item .title[data-v-77ae3705]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-77ae3705]{display:inline-flex;align-items:center}.item .side.right[data-v-77ae3705]{display:inline-flex;justify-content:right}.item .actions[data-v-77ae3705],.item .duration[data-v-77ae3705]{display:inline-flex;align-items:center}.item .duration[data-v-77ae3705]{font-size:.85em;opacity:.7}.item .actions[data-v-77ae3705] button{opacity:.65}.item .icon[data-v-77ae3705]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-77ae3705] .dropdown-container .item{box-shadow:none}.item[data-v-77ae3705] .dropdown-container button{background:none;border:none}.item[data-v-77ae3705] .dropdown-container button:hover{color:#35b870}[data-v-77ae3705] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-77ae3705] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-77ae3705] .table-row{flex-direction:row;align-items:center}}[data-v-77ae3705] .table-row .title,[data-v-77ae3705] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-77ae3705] .table-row .title,[data-v-77ae3705] .table-row .value{display:inline-flex}}[data-v-77ae3705] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-77ae3705] .table-row .title{width:30%}[data-v-77ae3705] .table-row .value{justify-content:right}}.subtitles-container .items[data-v-77ae3705]{overflow:auto}.subtitles-container .footer[data-v-77ae3705]{display:flex;justify-content:right;padding:1em;background:#e4eae8;box-shadow:0 -2.5px 4px 0 silver}.col-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6f90e487]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6f90e487]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6f90e487]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6f90e487]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6f90e487]:first-child{margin-left:26%!important}.col-offset-3[data-v-6f90e487]:not(first-child){margin-left:30%!important}.col-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6f90e487]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6f90e487]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6f90e487]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6f90e487]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6f90e487]:first-child{margin-left:52%!important}.col-offset-6[data-v-6f90e487]:not(first-child){margin-left:56%!important}.col-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6f90e487]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6f90e487]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6f90e487]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6f90e487]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6f90e487]:first-child{margin-left:78%!important}.col-offset-9[data-v-6f90e487]:not(first-child){margin-left:82%!important}.col-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6f90e487]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6f90e487]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6f90e487]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6f90e487]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-s-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-s-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-s-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-s-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6f90e487]{display:none!important}.s-visible[data-v-6f90e487]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-m-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-m-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-m-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-m-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6f90e487]{display:none!important}.m-visible[data-v-6f90e487]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-l-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-l-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-l-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-l-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6f90e487]{display:none!important}.l-visible[data-v-6f90e487]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-xl-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-xl-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-xl-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xl-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6f90e487]{display:none!important}.xl-visible[data-v-6f90e487]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6f90e487]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6f90e487]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6f90e487]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6f90e487]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6f90e487]{margin-left:26%}.col-no-margin-xxl-3[data-v-6f90e487]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6f90e487]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6f90e487]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6f90e487]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6f90e487]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6f90e487]{margin-left:52%}.col-no-margin-xxl-6[data-v-6f90e487]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6f90e487]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6f90e487]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6f90e487]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6f90e487]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6f90e487]{margin-left:78%}.col-no-margin-xxl-9[data-v-6f90e487]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6f90e487]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6f90e487]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6f90e487]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6f90e487]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6f90e487]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6f90e487]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6f90e487]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6f90e487]{display:none!important}.xxl-visible[data-v-6f90e487]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6f90e487]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6f90e487]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6f90e487]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6f90e487]{display:none!important}}.vertical-center[data-v-6f90e487]{display:flex;align-items:center}.horizontal-center[data-v-6f90e487]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6f90e487]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6f90e487]{display:none!important}.no-content[data-v-6f90e487]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6f90e487]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6f90e487]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6f90e487]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6f90e487]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6f90e487]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6f90e487]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6f90e487],.btn[data-v-6f90e487],button[data-v-6f90e487]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6f90e487],.btn-default[type=submit][data-v-6f90e487],.btn.btn-primary[data-v-6f90e487],.btn[type=submit][data-v-6f90e487],button.btn-primary[data-v-6f90e487],button[type=submit][data-v-6f90e487]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-6f90e487]:hover,.btn[data-v-6f90e487]:hover,button[data-v-6f90e487]:hover{color:#35b870}.btn .icon[data-v-6f90e487],.btn-default .icon[data-v-6f90e487],button .icon[data-v-6f90e487]{margin-right:.5em}.btn-default[data-v-6f90e487]:disabled,.btn-default[disabled][data-v-6f90e487],.btn[data-v-6f90e487]:disabled,.btn[disabled][data-v-6f90e487],button[data-v-6f90e487]:disabled,button[disabled][data-v-6f90e487]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-6f90e487]{cursor:grab!important}.dragged[data-v-6f90e487]{opacity:.5!important}input[type=password][data-v-6f90e487],input[type=text][data-v-6f90e487]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6f90e487]:focus,input[type=text][data-v-6f90e487]:focus{border:1px solid #35b870}button[data-v-6f90e487],input[data-v-6f90e487]{outline:none}input[type=text][data-v-6f90e487]:hover,textarea[data-v-6f90e487]:hover{border:1px solid #9cdfb0}ul[data-v-6f90e487]{margin:0;padding:0;list-style:none}a[data-v-6f90e487]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6f90e487]:hover{color:#35b870}[data-v-6f90e487]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6f90e487]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6f90e487]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6f90e487]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-6f90e487]{color:#ad1717}body[data-v-6f90e487]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6f90e487] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6f90e487] .nav .path{cursor:pointer}.browser[data-v-6f90e487] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6f90e487] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-6f90e487]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-6f90e487]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6f90e487],input[type=number][data-v-6f90e487],input[type=password][data-v-6f90e487],input[type=search][data-v-6f90e487],input[type=text][data-v-6f90e487],input[type=time][data-v-6f90e487]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-6f90e487]:hover,input[type=number][data-v-6f90e487]:hover,input[type=password][data-v-6f90e487]:hover,input[type=search][data-v-6f90e487]:hover,input[type=text][data-v-6f90e487]:hover,input[type=time][data-v-6f90e487]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6f90e487]:focus,input[type=number][data-v-6f90e487]:focus,input[type=password][data-v-6f90e487]:focus,input[type=search][data-v-6f90e487]:focus,input[type=text][data-v-6f90e487]:focus,input[type=time][data-v-6f90e487]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6f90e487],input[type=number].with-icon[data-v-6f90e487],input[type=password].with-icon[data-v-6f90e487],input[type=search].with-icon[data-v-6f90e487],input[type=text].with-icon[data-v-6f90e487],input[type=time].with-icon[data-v-6f90e487]{padding-left:.3em}input[type=search][data-v-6f90e487],input[type=text][data-v-6f90e487]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6f90e487]{animation-fill-mode:both;animation-name:fadeIn-6f90e487;-webkit-animation-name:fadeIn-6f90e487}.fade-in[data-v-6f90e487],.fade-out[data-v-6f90e487]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6f90e487]{animation-fill-mode:both;animation-name:fadeOut-6f90e487;-webkit-animation-name:fadeOut-6f90e487}.expand[data-v-6f90e487]{animation-fill-mode:both;animation-name:expand-6f90e487;-webkit-animation-name:expand-6f90e487}.expand[data-v-6f90e487],.shrink[data-v-6f90e487]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-6f90e487]{animation-fill-mode:both;animation-name:shrink-6f90e487;-webkit-animation-name:shrink-6f90e487}.fold[data-v-6f90e487]{animation-fill-mode:both;animation-name:fold-6f90e487;-webkit-animation-name:fold-6f90e487}.fold[data-v-6f90e487],.unfold[data-v-6f90e487]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-6f90e487]{animation-fill-mode:both;animation-name:unfold-6f90e487;-webkit-animation-name:unfold-6f90e487}.dim[data-v-6f90e487]{animation-fill-mode:both;animation-name:dim-6f90e487;-webkit-animation-name:dim-6f90e487}.brighten[data-v-6f90e487],.dim[data-v-6f90e487]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-6f90e487]{animation-fill-mode:both;animation-name:brighten-6f90e487;-webkit-animation-name:brighten-6f90e487}@keyframes fadeIn-6f90e487{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6f90e487{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-6f90e487{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-6f90e487{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-6f90e487{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-6f90e487{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-6f90e487{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-6f90e487{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-6f90e487]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6f90e487;-webkit-animation-name:glow-6f90e487}.loop[data-v-6f90e487]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6f90e487{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6f90e487]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6f90e487]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6f90e487]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.url-player[data-v-6f90e487]{padding:0;margin:0;border:none;border-radius:0;box-shadow:none}.url-player .body[data-v-6f90e487]{padding:1em!important}.url-player input[type=text][data-v-6f90e487]{width:100%}.url-player [type=submit][data-v-6f90e487]{background:initial;border-color:initial;border-radius:1.5em}.url-player [type=submit][data-v-6f90e487]:hover{color:#38cf80}.url-player .footer[data-v-6f90e487]{display:flex;justify-content:right;padding:0;margin-top:1em}.col-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2b0f5bde]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2b0f5bde]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2b0f5bde]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2b0f5bde]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2b0f5bde]:first-child{margin-left:26%!important}.col-offset-3[data-v-2b0f5bde]:not(first-child){margin-left:30%!important}.col-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2b0f5bde]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2b0f5bde]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2b0f5bde]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2b0f5bde]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2b0f5bde]:first-child{margin-left:52%!important}.col-offset-6[data-v-2b0f5bde]:not(first-child){margin-left:56%!important}.col-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2b0f5bde]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2b0f5bde]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2b0f5bde]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2b0f5bde]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2b0f5bde]:first-child{margin-left:78%!important}.col-offset-9[data-v-2b0f5bde]:not(first-child){margin-left:82%!important}.col-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2b0f5bde]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2b0f5bde]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2b0f5bde]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2b0f5bde]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-1[data-v-2b0f5bde]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-2[data-v-2b0f5bde]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-3[data-v-2b0f5bde]{margin-left:26%}.col-no-margin-s-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-4[data-v-2b0f5bde]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-5[data-v-2b0f5bde]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-6[data-v-2b0f5bde]{margin-left:52%}.col-no-margin-s-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-7[data-v-2b0f5bde]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-8[data-v-2b0f5bde]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-9[data-v-2b0f5bde]{margin-left:78%}.col-no-margin-s-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-10[data-v-2b0f5bde]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-s-11[data-v-2b0f5bde]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2b0f5bde]{display:none!important}.s-visible[data-v-2b0f5bde]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-1[data-v-2b0f5bde]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-2[data-v-2b0f5bde]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-3[data-v-2b0f5bde]{margin-left:26%}.col-no-margin-m-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-4[data-v-2b0f5bde]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-5[data-v-2b0f5bde]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-6[data-v-2b0f5bde]{margin-left:52%}.col-no-margin-m-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-7[data-v-2b0f5bde]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-8[data-v-2b0f5bde]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-9[data-v-2b0f5bde]{margin-left:78%}.col-no-margin-m-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-10[data-v-2b0f5bde]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-m-11[data-v-2b0f5bde]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2b0f5bde]{display:none!important}.m-visible[data-v-2b0f5bde]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-1[data-v-2b0f5bde]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-2[data-v-2b0f5bde]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-3[data-v-2b0f5bde]{margin-left:26%}.col-no-margin-l-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-4[data-v-2b0f5bde]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-5[data-v-2b0f5bde]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-6[data-v-2b0f5bde]{margin-left:52%}.col-no-margin-l-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-7[data-v-2b0f5bde]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-8[data-v-2b0f5bde]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-9[data-v-2b0f5bde]{margin-left:78%}.col-no-margin-l-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-10[data-v-2b0f5bde]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-l-11[data-v-2b0f5bde]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2b0f5bde]{display:none!important}.l-visible[data-v-2b0f5bde]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-1[data-v-2b0f5bde]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-2[data-v-2b0f5bde]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-3[data-v-2b0f5bde]{margin-left:26%}.col-no-margin-xl-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-4[data-v-2b0f5bde]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-5[data-v-2b0f5bde]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-6[data-v-2b0f5bde]{margin-left:52%}.col-no-margin-xl-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-7[data-v-2b0f5bde]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-8[data-v-2b0f5bde]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-9[data-v-2b0f5bde]{margin-left:78%}.col-no-margin-xl-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-10[data-v-2b0f5bde]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xl-11[data-v-2b0f5bde]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2b0f5bde]{display:none!important}.xl-visible[data-v-2b0f5bde]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2b0f5bde]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2b0f5bde]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2b0f5bde]{margin-left:26%}.col-no-margin-xxl-3[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2b0f5bde]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2b0f5bde]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2b0f5bde]{margin-left:52%}.col-no-margin-xxl-6[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2b0f5bde]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2b0f5bde]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2b0f5bde]{margin-left:78%}.col-no-margin-xxl-9[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2b0f5bde]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2b0f5bde]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2b0f5bde]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2b0f5bde]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2b0f5bde]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2b0f5bde]{display:none!important}.xxl-visible[data-v-2b0f5bde]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2b0f5bde]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2b0f5bde]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2b0f5bde]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2b0f5bde]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2b0f5bde]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2b0f5bde]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2b0f5bde]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2b0f5bde]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2b0f5bde]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2b0f5bde]{display:none!important}}.vertical-center[data-v-2b0f5bde]{display:flex;align-items:center}.horizontal-center[data-v-2b0f5bde]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2b0f5bde]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2b0f5bde]{display:none!important}.no-content[data-v-2b0f5bde]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2b0f5bde]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2b0f5bde]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2b0f5bde]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2b0f5bde]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2b0f5bde]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2b0f5bde]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2b0f5bde],.btn[data-v-2b0f5bde],button[data-v-2b0f5bde]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2b0f5bde],.btn-default[type=submit][data-v-2b0f5bde],.btn.btn-primary[data-v-2b0f5bde],.btn[type=submit][data-v-2b0f5bde],button.btn-primary[data-v-2b0f5bde],button[type=submit][data-v-2b0f5bde]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2b0f5bde]:hover,.btn[data-v-2b0f5bde]:hover,button[data-v-2b0f5bde]:hover{color:#35b870}.btn .icon[data-v-2b0f5bde],.btn-default .icon[data-v-2b0f5bde],button .icon[data-v-2b0f5bde]{margin-right:.5em}.btn-default[data-v-2b0f5bde]:disabled,.btn-default[disabled][data-v-2b0f5bde],.btn[data-v-2b0f5bde]:disabled,.btn[disabled][data-v-2b0f5bde],button[data-v-2b0f5bde]:disabled,button[disabled][data-v-2b0f5bde]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2b0f5bde]{cursor:grab!important}.dragged[data-v-2b0f5bde]{opacity:.5!important}input[type=password][data-v-2b0f5bde],input[type=text][data-v-2b0f5bde]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2b0f5bde]:focus,input[type=text][data-v-2b0f5bde]:focus{border:1px solid #35b870}button[data-v-2b0f5bde],input[data-v-2b0f5bde]{outline:none}input[type=text][data-v-2b0f5bde]:hover,textarea[data-v-2b0f5bde]:hover{border:1px solid #9cdfb0}ul[data-v-2b0f5bde]{margin:0;padding:0;list-style:none}a[data-v-2b0f5bde]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2b0f5bde]:hover{color:#35b870}[data-v-2b0f5bde]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2b0f5bde]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2b0f5bde]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2b0f5bde]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2b0f5bde]{color:#ad1717}body[data-v-2b0f5bde]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2b0f5bde] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2b0f5bde] .nav .path{cursor:pointer}.browser[data-v-2b0f5bde] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2b0f5bde] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2b0f5bde]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2b0f5bde]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2b0f5bde],input[type=number][data-v-2b0f5bde],input[type=password][data-v-2b0f5bde],input[type=search][data-v-2b0f5bde],input[type=text][data-v-2b0f5bde],input[type=time][data-v-2b0f5bde]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2b0f5bde]:hover,input[type=number][data-v-2b0f5bde]:hover,input[type=password][data-v-2b0f5bde]:hover,input[type=search][data-v-2b0f5bde]:hover,input[type=text][data-v-2b0f5bde]:hover,input[type=time][data-v-2b0f5bde]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2b0f5bde]:focus,input[type=number][data-v-2b0f5bde]:focus,input[type=password][data-v-2b0f5bde]:focus,input[type=search][data-v-2b0f5bde]:focus,input[type=text][data-v-2b0f5bde]:focus,input[type=time][data-v-2b0f5bde]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2b0f5bde],input[type=number].with-icon[data-v-2b0f5bde],input[type=password].with-icon[data-v-2b0f5bde],input[type=search].with-icon[data-v-2b0f5bde],input[type=text].with-icon[data-v-2b0f5bde],input[type=time].with-icon[data-v-2b0f5bde]{padding-left:.3em}input[type=search][data-v-2b0f5bde],input[type=text][data-v-2b0f5bde]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2b0f5bde]{animation-fill-mode:both;animation-name:fadeIn-2b0f5bde;-webkit-animation-name:fadeIn-2b0f5bde}.fade-in[data-v-2b0f5bde],.fade-out[data-v-2b0f5bde]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2b0f5bde]{animation-fill-mode:both;animation-name:fadeOut-2b0f5bde;-webkit-animation-name:fadeOut-2b0f5bde}.expand[data-v-2b0f5bde]{animation-fill-mode:both;animation-name:expand-2b0f5bde;-webkit-animation-name:expand-2b0f5bde}.expand[data-v-2b0f5bde],.shrink[data-v-2b0f5bde]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2b0f5bde]{animation-fill-mode:both;animation-name:shrink-2b0f5bde;-webkit-animation-name:shrink-2b0f5bde}.fold[data-v-2b0f5bde]{animation-fill-mode:both;animation-name:fold-2b0f5bde;-webkit-animation-name:fold-2b0f5bde}.fold[data-v-2b0f5bde],.unfold[data-v-2b0f5bde]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2b0f5bde]{animation-fill-mode:both;animation-name:unfold-2b0f5bde;-webkit-animation-name:unfold-2b0f5bde}.dim[data-v-2b0f5bde]{animation-fill-mode:both;animation-name:dim-2b0f5bde;-webkit-animation-name:dim-2b0f5bde}.brighten[data-v-2b0f5bde],.dim[data-v-2b0f5bde]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2b0f5bde]{animation-fill-mode:both;animation-name:brighten-2b0f5bde;-webkit-animation-name:brighten-2b0f5bde}@keyframes fadeIn-2b0f5bde{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2b0f5bde{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2b0f5bde{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2b0f5bde{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2b0f5bde{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2b0f5bde{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2b0f5bde{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2b0f5bde{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2b0f5bde]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2b0f5bde;-webkit-animation-name:glow-2b0f5bde}.loop[data-v-2b0f5bde]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2b0f5bde{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2b0f5bde]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2b0f5bde]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2b0f5bde]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-2b0f5bde]{color:#d21}.media-plugin[data-v-2b0f5bde]{width:100%}.media-plugin main[data-v-2b0f5bde]{width:100%;height:100%;display:flex;flex-direction:row-reverse;position:relative}.media-plugin main .view-container[data-v-2b0f5bde]{display:flex;flex-direction:column;flex-grow:1;overflow:auto;background:#fff}.media-plugin main .body-container[data-v-2b0f5bde]{height:calc(100% - 8.8em);padding-top:.1em;overflow:auto}.media-plugin main .body-container.expanded-header[data-v-2b0f5bde]{height:calc(100% - 11.8em)}.media-plugin main[data-v-2b0f5bde] .media-loading-indicator{position:absolute;top:0;left:0;width:5em;height:5em;border-radius:50%;background:transparent;display:flex;justify-content:center;align-items:center;z-index:10}.media-plugin main[data-v-2b0f5bde] .media-loading-indicator .loading{border-radius:50%}[data-v-2b0f5bde] .loading{z-index:10}[data-v-2b0f5bde] .subtitles-container .body{padding:0!important}[data-v-2b0f5bde] .subtitles-container .body .item{padding:1em}[data-v-2b0f5bde] .add-to-playlist-container .body{padding:0!important}[data-v-2b0f5bde] .embed-player-container .modal{width:100%}[data-v-2b0f5bde] .embed-player-container .content{max-width:95%;background:#000}[data-v-2b0f5bde] .embed-player-container .body{height:100%;max-height:85vh!important;background:#000;padding:0!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6882.e84203b6.css b/platypush/backend/http/webapp/dist/static/css/6882.e84203b6.css new file mode 100644 index 0000000000..548b6fe1af --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6882.e84203b6.css @@ -0,0 +1 @@ +.col-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6437b841]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6437b841]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6437b841]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6437b841]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6437b841]:first-child{margin-left:26%!important}.col-offset-3[data-v-6437b841]:not(first-child){margin-left:30%!important}.col-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6437b841]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6437b841]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6437b841]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6437b841]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6437b841]:first-child{margin-left:52%!important}.col-offset-6[data-v-6437b841]:not(first-child){margin-left:56%!important}.col-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6437b841]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6437b841]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6437b841]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6437b841]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6437b841]:first-child{margin-left:78%!important}.col-offset-9[data-v-6437b841]:not(first-child){margin-left:82%!important}.col-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6437b841]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6437b841]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6437b841]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6437b841]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-3[data-v-6437b841]{margin-left:26%}.col-no-margin-s-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-6[data-v-6437b841]{margin-left:52%}.col-no-margin-s-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-9[data-v-6437b841]{margin-left:78%}.col-no-margin-s-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-s-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6437b841]{display:none!important}.s-visible[data-v-6437b841]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-3[data-v-6437b841]{margin-left:26%}.col-no-margin-m-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-6[data-v-6437b841]{margin-left:52%}.col-no-margin-m-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-9[data-v-6437b841]{margin-left:78%}.col-no-margin-m-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-m-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6437b841]{display:none!important}.m-visible[data-v-6437b841]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-3[data-v-6437b841]{margin-left:26%}.col-no-margin-l-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-6[data-v-6437b841]{margin-left:52%}.col-no-margin-l-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-9[data-v-6437b841]{margin-left:78%}.col-no-margin-l-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-l-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6437b841]{display:none!important}.l-visible[data-v-6437b841]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-3[data-v-6437b841]{margin-left:26%}.col-no-margin-xl-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-6[data-v-6437b841]{margin-left:52%}.col-no-margin-xl-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-9[data-v-6437b841]{margin-left:78%}.col-no-margin-xl-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-xl-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6437b841]{display:none!important}.xl-visible[data-v-6437b841]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6437b841]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6437b841]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6437b841]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6437b841]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6437b841]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6437b841]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6437b841]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6437b841]{margin-left:26%}.col-no-margin-xxl-3[data-v-6437b841]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6437b841]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6437b841]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6437b841]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6437b841]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6437b841]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6437b841]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6437b841]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6437b841]{margin-left:52%}.col-no-margin-xxl-6[data-v-6437b841]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6437b841]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6437b841]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6437b841]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6437b841]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6437b841]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6437b841]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6437b841]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6437b841]{margin-left:78%}.col-no-margin-xxl-9[data-v-6437b841]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6437b841]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6437b841]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6437b841]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6437b841]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6437b841]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6437b841]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6437b841]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6437b841]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6437b841]{display:none!important}.xxl-visible[data-v-6437b841]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6437b841]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6437b841]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6437b841]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6437b841]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6437b841]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6437b841]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6437b841]{display:none!important}}.vertical-center[data-v-6437b841]{display:flex;align-items:center}.horizontal-center[data-v-6437b841]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6437b841]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6437b841]{display:none!important}.no-content[data-v-6437b841]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6437b841]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6437b841]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6437b841]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6437b841]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6437b841]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6437b841]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6437b841],.btn[data-v-6437b841],button[data-v-6437b841]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6437b841],.btn-default[type=submit][data-v-6437b841],.btn.btn-primary[data-v-6437b841],.btn[type=submit][data-v-6437b841],button.btn-primary[data-v-6437b841],button[type=submit][data-v-6437b841]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-6437b841]:hover,.btn[data-v-6437b841]:hover,button[data-v-6437b841]:hover{color:#35b870}.btn .icon[data-v-6437b841],.btn-default .icon[data-v-6437b841],button .icon[data-v-6437b841]{margin-right:.5em}.btn-default[data-v-6437b841]:disabled,.btn-default[disabled][data-v-6437b841],.btn[data-v-6437b841]:disabled,.btn[disabled][data-v-6437b841],button[data-v-6437b841]:disabled,button[disabled][data-v-6437b841]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-6437b841]{cursor:grab!important}.dragged[data-v-6437b841]{opacity:.5!important}input[type=password][data-v-6437b841],input[type=text][data-v-6437b841]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6437b841]:focus,input[type=text][data-v-6437b841]:focus{border:1px solid #35b870}button[data-v-6437b841],input[data-v-6437b841]{outline:none}input[type=text][data-v-6437b841]:hover,textarea[data-v-6437b841]:hover{border:1px solid #9cdfb0}ul[data-v-6437b841]{margin:0;padding:0;list-style:none}a[data-v-6437b841]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6437b841]:hover{color:#35b870}[data-v-6437b841]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6437b841]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6437b841]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6437b841]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-6437b841]{color:#ad1717}body[data-v-6437b841]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6437b841] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6437b841] .nav .path{cursor:pointer}.browser[data-v-6437b841] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6437b841] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-6437b841]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-6437b841]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6437b841],input[type=number][data-v-6437b841],input[type=password][data-v-6437b841],input[type=search][data-v-6437b841],input[type=text][data-v-6437b841],input[type=time][data-v-6437b841]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-6437b841]:hover,input[type=number][data-v-6437b841]:hover,input[type=password][data-v-6437b841]:hover,input[type=search][data-v-6437b841]:hover,input[type=text][data-v-6437b841]:hover,input[type=time][data-v-6437b841]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6437b841]:focus,input[type=number][data-v-6437b841]:focus,input[type=password][data-v-6437b841]:focus,input[type=search][data-v-6437b841]:focus,input[type=text][data-v-6437b841]:focus,input[type=time][data-v-6437b841]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6437b841],input[type=number].with-icon[data-v-6437b841],input[type=password].with-icon[data-v-6437b841],input[type=search].with-icon[data-v-6437b841],input[type=text].with-icon[data-v-6437b841],input[type=time].with-icon[data-v-6437b841]{padding-left:.3em}input[type=search][data-v-6437b841],input[type=text][data-v-6437b841]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6437b841]{animation-fill-mode:both;animation-name:fadeIn-6437b841;-webkit-animation-name:fadeIn-6437b841}.fade-in[data-v-6437b841],.fade-out[data-v-6437b841]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6437b841]{animation-fill-mode:both;animation-name:fadeOut-6437b841;-webkit-animation-name:fadeOut-6437b841}.expand[data-v-6437b841]{animation-fill-mode:both;animation-name:expand-6437b841;-webkit-animation-name:expand-6437b841}.expand[data-v-6437b841],.shrink[data-v-6437b841]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-6437b841]{animation-fill-mode:both;animation-name:shrink-6437b841;-webkit-animation-name:shrink-6437b841}.fold[data-v-6437b841]{animation-fill-mode:both;animation-name:fold-6437b841;-webkit-animation-name:fold-6437b841}.fold[data-v-6437b841],.unfold[data-v-6437b841]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-6437b841]{animation-fill-mode:both;animation-name:unfold-6437b841;-webkit-animation-name:unfold-6437b841}.dim[data-v-6437b841]{animation-fill-mode:both;animation-name:dim-6437b841;-webkit-animation-name:dim-6437b841}.brighten[data-v-6437b841],.dim[data-v-6437b841]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-6437b841]{animation-fill-mode:both;animation-name:brighten-6437b841;-webkit-animation-name:brighten-6437b841}@keyframes fadeIn-6437b841{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6437b841{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-6437b841{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-6437b841{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-6437b841{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-6437b841{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-6437b841{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-6437b841{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-6437b841]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6437b841;-webkit-animation-name:glow-6437b841}.loop[data-v-6437b841]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6437b841{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6437b841]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6437b841]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6437b841]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zigbee-container .info-body .row[data-v-6437b841]:nth-child(2n),.zigbee-container .params .row[data-v-6437b841]:nth-child(2n){background:#f0f0f0}.zigbee-container .info-body .row[data-v-6437b841]:nth-child(odd),.zigbee-container .params .row[data-v-6437b841]:nth-child(odd){background:#fff}.zigbee-container .info-body .row[data-v-6437b841],.zigbee-container .view .row[data-v-6437b841]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zigbee-container .info-body .row[data-v-6437b841]:hover,.zigbee-container .view .row[data-v-6437b841]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item.selected[data-v-6437b841],.zigbee-container .view .item.selected[data-v-6437b841]{box-shadow:0 2px 4px 0 #bbb}.zigbee-container .info-body .item .name.header[data-v-6437b841],.zigbee-container .view .item .name.header[data-v-6437b841]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zigbee-container .info-body .item .name.header.selected[data-v-6437b841],.zigbee-container .view .item .name.header.selected[data-v-6437b841]{border-radius:1.5em;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item .title[data-v-6437b841],.zigbee-container .view .item .title[data-v-6437b841]{font-size:1.2em;padding-left:.5em}.zigbee-container .info-body .item .buttons[data-v-6437b841],.zigbee-container .view .item .buttons[data-v-6437b841]{margin:0}.zigbee-container .info-body .item[data-v-6437b841]:hover,.zigbee-container .view .item[data-v-6437b841]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item:hover.selected[data-v-6437b841],.zigbee-container .view .item:hover.selected[data-v-6437b841]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item[data-v-6437b841]:not(:last-child),.zigbee-container .view .item[data-v-6437b841]:not(:last-child){border-bottom:1px solid #ddd}.zigbee-container .info-body .item[data-v-6437b841]:first-child,.zigbee-container .view .item[data-v-6437b841]:first-child{border-radius:1.5em 1.5em 0 0}.zigbee-container .info-body .item[data-v-6437b841]:last-child,.zigbee-container .view .item[data-v-6437b841]:last-child{border-radius:0 0 1.5em 1.5em}.zigbee-container .info-body .item .params .section[data-v-6437b841],.zigbee-container .view .item .params .section[data-v-6437b841]{padding:1.5em 0 0 0}.zigbee-container .info-body .item .value .param-name[data-v-6437b841],.zigbee-container .view .item .value .param-name[data-v-6437b841]{display:inline-block}.zigbee-container .info-body .item .value .param-name .name[data-v-6437b841],.zigbee-container .view .item .value .param-name .name[data-v-6437b841]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zigbee-container .info-body .item .value .param-name .name[data-v-6437b841]:before,.zigbee-container .view .item .value .param-name .name[data-v-6437b841]:before{content:"["}.zigbee-container .info-body .item .value .param-name .name[data-v-6437b841]:after,.zigbee-container .view .item .value .param-name .name[data-v-6437b841]:after{content:"]"}.zigbee-container .info-body .item .value .param-name .unit[data-v-6437b841],.zigbee-container .view .item .value .param-name .unit[data-v-6437b841]{font-size:.8em}.zigbee-container .info-body .item .value .param-name .unit[data-v-6437b841]:before,.zigbee-container .view .item .value .param-name .unit[data-v-6437b841]:before{content:" [unit: "}.zigbee-container .info-body .item .value .param-name .unit[data-v-6437b841]:after,.zigbee-container .view .item .value .param-name .unit[data-v-6437b841]:after{content:"]"}.zigbee-container .info-body .item .value .param-value label[data-v-6437b841],.zigbee-container .view .item .value .param-value label[data-v-6437b841]{width:90%}.zigbee-container .info-body .item .value .param-value input[data-v-6437b841],.zigbee-container .view .item .value .param-value input[data-v-6437b841]{width:100%}.zigbee-container .info-body .item button[data-v-6437b841],.zigbee-container .view .item button[data-v-6437b841]{border:0;background:none;padding:0 .5em}.zigbee-container .info-body .item button[data-v-6437b841]:hover,.zigbee-container .view .item button[data-v-6437b841]:hover{color:#35b870}@media screen and (max-width:769px){.zigbee-container .info-body .item .name-edit[data-v-6437b841],.zigbee-container .view .item .name-edit[data-v-6437b841]{justify-content:left}}@media screen and (min-width:769px){.zigbee-container .info-body .item .name-edit[data-v-6437b841],.zigbee-container .view .item .name-edit[data-v-6437b841]{justify-content:right}}.zigbee-container .info-body .item .name-edit[data-v-6437b841],.zigbee-container .view .item .name-edit[data-v-6437b841]{width:100%;display:inline-flex;align-items:center}.zigbee-container .info-body .item .name-edit form[data-v-6437b841],.zigbee-container .view .item .name-edit form[data-v-6437b841]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zigbee-container .info-body .item .name-edit .buttons[data-v-6437b841],.zigbee-container .view .item .name-edit .buttons[data-v-6437b841]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zigbee-container .info-body .item .name-edit form[data-v-6437b841],.zigbee-container .view .item .name-edit form[data-v-6437b841]{background:none;padding:0;border:none;box-shadow:none}.zigbee-container .row[data-v-6437b841]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zigbee-container .row .param-name[data-v-6437b841]{width:100%;font-weight:700}.zigbee-container .row .param-value[data-v-6437b841]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zigbee-container .row .param-name[data-v-6437b841]{width:40%}.zigbee-container .row .param-value[data-v-6437b841]{width:58%;justify-content:right}}.zigbee-container .row .param-name[data-v-6437b841]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zigbee-container .row .param-value[data-v-6437b841]{display:inline-flex;align-items:center}.zigbee-container .row .param-value .value-edit[data-v-6437b841]{display:flex;align-items:center}.zigbee-container .row .param-value .value-data[data-v-6437b841]{display:inline-block;font-weight:700}.zigbee-container .row .param-value .slider-container[data-v-6437b841]{display:flex;align-items:center}.zigbee-container .row .param-value .unit[data-v-6437b841]{font-size:.8em;margin-left:1em;display:inline}.zigbee-container .row .param-value select[data-v-6437b841]{width:100%}.zigbee-container .row .param-value .numeric input.slider[data-v-6437b841]{text-align:left}.zigbee-container .row .param-value .numeric input[type=text][data-v-6437b841]{text-align:right;width:100%}.zigbee-container .row .param-value .numeric .row[data-v-6437b841],.zigbee-container .row .param-value .numeric .row[data-v-6437b841]:hover{background:none}.zigbee-container .row .param-value .numeric .value-max[data-v-6437b841],.zigbee-container .row .param-value .numeric .value-min[data-v-6437b841]{width:50%;font-size:.85em;opacity:.75}.zigbee-container .row .param-value .numeric .value-min[data-v-6437b841]{text-align:left}.zigbee-container .row .param-value .numeric .value-max[data-v-6437b841]{text-align:right}.zigbee-container select[data-v-6437b841]{width:100%}.groups-modal .content[data-v-6437b841]{min-width:20em;margin:-2em;padding:0;border:none;box-shadow:none}.groups-modal .group[data-v-6437b841]{width:100%;display:flex;align-items:center;padding:.5em 1em!important}.groups-modal .group input[type=checkbox][data-v-6437b841]{margin-right:1em}.groups-modal .groups[data-v-6437b841]{width:100%;height:calc(100% - 3.5em);display:flex;justify-content:center;align-items:center;overflow:auto}.groups-modal .footer[data-v-6437b841]{width:100%;height:3.5em;display:flex;justify-content:right;align-items:center;padding:0;background:#f8f8f8;border-top:1px solid #ddd}@media screen and (max-width:769px){.section.actions .row[data-v-6437b841]{flex-direction:row-reverse;justify-content:left}.section.actions .row .param-name[data-v-6437b841]{width:auto}.section.actions .row .param-value[data-v-6437b841]{width:1.5em;margin-right:.5em}}.col-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7667f7ba]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7667f7ba]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7667f7ba]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7667f7ba]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7667f7ba]:first-child{margin-left:26%!important}.col-offset-3[data-v-7667f7ba]:not(first-child){margin-left:30%!important}.col-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7667f7ba]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7667f7ba]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7667f7ba]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7667f7ba]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7667f7ba]:first-child{margin-left:52%!important}.col-offset-6[data-v-7667f7ba]:not(first-child){margin-left:56%!important}.col-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7667f7ba]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7667f7ba]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7667f7ba]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7667f7ba]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7667f7ba]:first-child{margin-left:78%!important}.col-offset-9[data-v-7667f7ba]:not(first-child){margin-left:82%!important}.col-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7667f7ba]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7667f7ba]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7667f7ba]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7667f7ba]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-s-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-s-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-s-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-s-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7667f7ba]{display:none!important}.s-visible[data-v-7667f7ba]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-m-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-m-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-m-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-m-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7667f7ba]{display:none!important}.m-visible[data-v-7667f7ba]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-l-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-l-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-l-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-l-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7667f7ba]{display:none!important}.l-visible[data-v-7667f7ba]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-xl-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-xl-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-xl-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xl-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7667f7ba]{display:none!important}.xl-visible[data-v-7667f7ba]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7667f7ba]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7667f7ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7667f7ba]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7667f7ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7667f7ba]{margin-left:26%}.col-no-margin-xxl-3[data-v-7667f7ba]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7667f7ba]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7667f7ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7667f7ba]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7667f7ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7667f7ba]{margin-left:52%}.col-no-margin-xxl-6[data-v-7667f7ba]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7667f7ba]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7667f7ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7667f7ba]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7667f7ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7667f7ba]{margin-left:78%}.col-no-margin-xxl-9[data-v-7667f7ba]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7667f7ba]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7667f7ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7667f7ba]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7667f7ba]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7667f7ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7667f7ba]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7667f7ba]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7667f7ba]{display:none!important}.xxl-visible[data-v-7667f7ba]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7667f7ba]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7667f7ba]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7667f7ba]{display:none!important}}.vertical-center[data-v-7667f7ba]{display:flex;align-items:center}.horizontal-center[data-v-7667f7ba]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7667f7ba]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7667f7ba]{display:none!important}.no-content[data-v-7667f7ba]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7667f7ba]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7667f7ba]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7667f7ba]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7667f7ba]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7667f7ba]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7667f7ba]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7667f7ba],.btn[data-v-7667f7ba],button[data-v-7667f7ba]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7667f7ba],.btn-default[type=submit][data-v-7667f7ba],.btn.btn-primary[data-v-7667f7ba],.btn[type=submit][data-v-7667f7ba],button.btn-primary[data-v-7667f7ba],button[type=submit][data-v-7667f7ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7667f7ba]:hover,.btn[data-v-7667f7ba]:hover,button[data-v-7667f7ba]:hover{color:#35b870}.btn .icon[data-v-7667f7ba],.btn-default .icon[data-v-7667f7ba],button .icon[data-v-7667f7ba]{margin-right:.5em}.btn-default[data-v-7667f7ba]:disabled,.btn-default[disabled][data-v-7667f7ba],.btn[data-v-7667f7ba]:disabled,.btn[disabled][data-v-7667f7ba],button[data-v-7667f7ba]:disabled,button[disabled][data-v-7667f7ba]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7667f7ba]{cursor:grab!important}.dragged[data-v-7667f7ba]{opacity:.5!important}input[type=password][data-v-7667f7ba],input[type=text][data-v-7667f7ba]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7667f7ba]:focus,input[type=text][data-v-7667f7ba]:focus{border:1px solid #35b870}button[data-v-7667f7ba],input[data-v-7667f7ba]{outline:none}input[type=text][data-v-7667f7ba]:hover,textarea[data-v-7667f7ba]:hover{border:1px solid #9cdfb0}ul[data-v-7667f7ba]{margin:0;padding:0;list-style:none}a[data-v-7667f7ba]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7667f7ba]:hover{color:#35b870}[data-v-7667f7ba]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7667f7ba]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7667f7ba]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7667f7ba]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7667f7ba]{color:#ad1717}body[data-v-7667f7ba]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7667f7ba] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7667f7ba] .nav .path{cursor:pointer}.browser[data-v-7667f7ba] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7667f7ba] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7667f7ba]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7667f7ba]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7667f7ba],input[type=number][data-v-7667f7ba],input[type=password][data-v-7667f7ba],input[type=search][data-v-7667f7ba],input[type=text][data-v-7667f7ba],input[type=time][data-v-7667f7ba]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7667f7ba]:hover,input[type=number][data-v-7667f7ba]:hover,input[type=password][data-v-7667f7ba]:hover,input[type=search][data-v-7667f7ba]:hover,input[type=text][data-v-7667f7ba]:hover,input[type=time][data-v-7667f7ba]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7667f7ba]:focus,input[type=number][data-v-7667f7ba]:focus,input[type=password][data-v-7667f7ba]:focus,input[type=search][data-v-7667f7ba]:focus,input[type=text][data-v-7667f7ba]:focus,input[type=time][data-v-7667f7ba]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7667f7ba],input[type=number].with-icon[data-v-7667f7ba],input[type=password].with-icon[data-v-7667f7ba],input[type=search].with-icon[data-v-7667f7ba],input[type=text].with-icon[data-v-7667f7ba],input[type=time].with-icon[data-v-7667f7ba]{padding-left:.3em}input[type=search][data-v-7667f7ba],input[type=text][data-v-7667f7ba]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7667f7ba]{animation-fill-mode:both;animation-name:fadeIn-7667f7ba;-webkit-animation-name:fadeIn-7667f7ba}.fade-in[data-v-7667f7ba],.fade-out[data-v-7667f7ba]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7667f7ba]{animation-fill-mode:both;animation-name:fadeOut-7667f7ba;-webkit-animation-name:fadeOut-7667f7ba}.expand[data-v-7667f7ba]{animation-fill-mode:both;animation-name:expand-7667f7ba;-webkit-animation-name:expand-7667f7ba}.expand[data-v-7667f7ba],.shrink[data-v-7667f7ba]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7667f7ba]{animation-fill-mode:both;animation-name:shrink-7667f7ba;-webkit-animation-name:shrink-7667f7ba}.fold[data-v-7667f7ba]{animation-fill-mode:both;animation-name:fold-7667f7ba;-webkit-animation-name:fold-7667f7ba}.fold[data-v-7667f7ba],.unfold[data-v-7667f7ba]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7667f7ba]{animation-fill-mode:both;animation-name:unfold-7667f7ba;-webkit-animation-name:unfold-7667f7ba}.dim[data-v-7667f7ba]{animation-fill-mode:both;animation-name:dim-7667f7ba;-webkit-animation-name:dim-7667f7ba}.brighten[data-v-7667f7ba],.dim[data-v-7667f7ba]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7667f7ba]{animation-fill-mode:both;animation-name:brighten-7667f7ba;-webkit-animation-name:brighten-7667f7ba}@keyframes fadeIn-7667f7ba{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7667f7ba{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7667f7ba{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7667f7ba{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7667f7ba{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7667f7ba{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7667f7ba{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7667f7ba{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7667f7ba]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7667f7ba;-webkit-animation-name:glow-7667f7ba}.loop[data-v-7667f7ba]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7667f7ba{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7667f7ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7667f7ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7667f7ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zigbee-container .info-body .row[data-v-7667f7ba]:nth-child(2n),.zigbee-container .params .row[data-v-7667f7ba]:nth-child(2n){background:#f0f0f0}.zigbee-container .info-body .row[data-v-7667f7ba]:nth-child(odd),.zigbee-container .params .row[data-v-7667f7ba]:nth-child(odd){background:#fff}.zigbee-container .info-body .row[data-v-7667f7ba],.zigbee-container .view .row[data-v-7667f7ba]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zigbee-container .info-body .row[data-v-7667f7ba]:hover,.zigbee-container .view .row[data-v-7667f7ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item.selected[data-v-7667f7ba],.zigbee-container .view .item.selected[data-v-7667f7ba]{box-shadow:0 2px 4px 0 #bbb}.zigbee-container .info-body .item .name.header[data-v-7667f7ba],.zigbee-container .view .item .name.header[data-v-7667f7ba]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zigbee-container .info-body .item .name.header.selected[data-v-7667f7ba],.zigbee-container .view .item .name.header.selected[data-v-7667f7ba]{border-radius:1.5em;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item .title[data-v-7667f7ba],.zigbee-container .view .item .title[data-v-7667f7ba]{font-size:1.2em;padding-left:.5em}.zigbee-container .info-body .item .buttons[data-v-7667f7ba],.zigbee-container .view .item .buttons[data-v-7667f7ba]{margin:0}.zigbee-container .info-body .item[data-v-7667f7ba]:hover,.zigbee-container .view .item[data-v-7667f7ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item:hover.selected[data-v-7667f7ba],.zigbee-container .view .item:hover.selected[data-v-7667f7ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item[data-v-7667f7ba]:not(:last-child),.zigbee-container .view .item[data-v-7667f7ba]:not(:last-child){border-bottom:1px solid #ddd}.zigbee-container .info-body .item[data-v-7667f7ba]:first-child,.zigbee-container .view .item[data-v-7667f7ba]:first-child{border-radius:1.5em 1.5em 0 0}.zigbee-container .info-body .item[data-v-7667f7ba]:last-child,.zigbee-container .view .item[data-v-7667f7ba]:last-child{border-radius:0 0 1.5em 1.5em}.zigbee-container .info-body .item .params .section[data-v-7667f7ba],.zigbee-container .view .item .params .section[data-v-7667f7ba]{padding:1.5em 0 0 0}.zigbee-container .info-body .item .value .param-name[data-v-7667f7ba],.zigbee-container .view .item .value .param-name[data-v-7667f7ba]{display:inline-block}.zigbee-container .info-body .item .value .param-name .name[data-v-7667f7ba],.zigbee-container .view .item .value .param-name .name[data-v-7667f7ba]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zigbee-container .info-body .item .value .param-name .name[data-v-7667f7ba]:before,.zigbee-container .view .item .value .param-name .name[data-v-7667f7ba]:before{content:"["}.zigbee-container .info-body .item .value .param-name .name[data-v-7667f7ba]:after,.zigbee-container .view .item .value .param-name .name[data-v-7667f7ba]:after{content:"]"}.zigbee-container .info-body .item .value .param-name .unit[data-v-7667f7ba],.zigbee-container .view .item .value .param-name .unit[data-v-7667f7ba]{font-size:.8em}.zigbee-container .info-body .item .value .param-name .unit[data-v-7667f7ba]:before,.zigbee-container .view .item .value .param-name .unit[data-v-7667f7ba]:before{content:" [unit: "}.zigbee-container .info-body .item .value .param-name .unit[data-v-7667f7ba]:after,.zigbee-container .view .item .value .param-name .unit[data-v-7667f7ba]:after{content:"]"}.zigbee-container .info-body .item .value .param-value label[data-v-7667f7ba],.zigbee-container .view .item .value .param-value label[data-v-7667f7ba]{width:90%}.zigbee-container .info-body .item .value .param-value input[data-v-7667f7ba],.zigbee-container .view .item .value .param-value input[data-v-7667f7ba]{width:100%}.zigbee-container .info-body .item button[data-v-7667f7ba],.zigbee-container .view .item button[data-v-7667f7ba]{border:0;background:none;padding:0 .5em}.zigbee-container .info-body .item button[data-v-7667f7ba]:hover,.zigbee-container .view .item button[data-v-7667f7ba]:hover{color:#35b870}@media screen and (max-width:769px){.zigbee-container .info-body .item .name-edit[data-v-7667f7ba],.zigbee-container .view .item .name-edit[data-v-7667f7ba]{justify-content:left}}@media screen and (min-width:769px){.zigbee-container .info-body .item .name-edit[data-v-7667f7ba],.zigbee-container .view .item .name-edit[data-v-7667f7ba]{justify-content:right}}.zigbee-container .info-body .item .name-edit[data-v-7667f7ba],.zigbee-container .view .item .name-edit[data-v-7667f7ba]{width:100%;display:inline-flex;align-items:center}.zigbee-container .info-body .item .name-edit form[data-v-7667f7ba],.zigbee-container .view .item .name-edit form[data-v-7667f7ba]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zigbee-container .info-body .item .name-edit .buttons[data-v-7667f7ba],.zigbee-container .view .item .name-edit .buttons[data-v-7667f7ba]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zigbee-container .info-body .item .name-edit form[data-v-7667f7ba],.zigbee-container .view .item .name-edit form[data-v-7667f7ba]{background:none;padding:0;border:none;box-shadow:none}.zigbee-container .row[data-v-7667f7ba]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zigbee-container .row .param-name[data-v-7667f7ba]{width:100%;font-weight:700}.zigbee-container .row .param-value[data-v-7667f7ba]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zigbee-container .row .param-name[data-v-7667f7ba]{width:40%}.zigbee-container .row .param-value[data-v-7667f7ba]{width:58%;justify-content:right}}.zigbee-container .row .param-name[data-v-7667f7ba]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zigbee-container .row .param-value[data-v-7667f7ba]{display:inline-flex;align-items:center}.zigbee-container .row .param-value .value-edit[data-v-7667f7ba]{display:flex;align-items:center}.zigbee-container .row .param-value .value-data[data-v-7667f7ba]{display:inline-block;font-weight:700}.zigbee-container .row .param-value .slider-container[data-v-7667f7ba]{display:flex;align-items:center}.zigbee-container .row .param-value .unit[data-v-7667f7ba]{font-size:.8em;margin-left:1em;display:inline}.zigbee-container .row .param-value select[data-v-7667f7ba]{width:100%}.zigbee-container .row .param-value .numeric input.slider[data-v-7667f7ba]{text-align:left}.zigbee-container .row .param-value .numeric input[type=text][data-v-7667f7ba]{text-align:right;width:100%}.zigbee-container .row .param-value .numeric .row[data-v-7667f7ba],.zigbee-container .row .param-value .numeric .row[data-v-7667f7ba]:hover{background:none}.zigbee-container .row .param-value .numeric .value-max[data-v-7667f7ba],.zigbee-container .row .param-value .numeric .value-min[data-v-7667f7ba]{width:50%;font-size:.85em;opacity:.75}.zigbee-container .row .param-value .numeric .value-min[data-v-7667f7ba]{text-align:left}.zigbee-container .row .param-value .numeric .value-max[data-v-7667f7ba]{text-align:right}.zigbee-container select[data-v-7667f7ba]{width:100%}.section[data-v-7667f7ba]{padding-left:1em!important}form[data-v-7667f7ba]{margin:0;padding:0;border:none;box-shadow:none}form .row[data-v-7667f7ba]{background:none!important}form .row[data-v-7667f7ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important}form .row .label[data-v-7667f7ba]{margin-left:.75em;font-weight:400}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zigbee-container .info-body .row:nth-child(2n),.zigbee-container .params .row:nth-child(2n){background:#f0f0f0}.zigbee-container .info-body .row:nth-child(odd),.zigbee-container .params .row:nth-child(odd){background:#fff}.zigbee-container .info-body .row,.zigbee-container .view .row{display:flex;align-items:center;border-radius:1em;padding:.3em}.zigbee-container .info-body .row:hover,.zigbee-container .view .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item.selected,.zigbee-container .view .item.selected{box-shadow:0 2px 4px 0 #bbb}.zigbee-container .info-body .item .name.header,.zigbee-container .view .item .name.header{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zigbee-container .info-body .item .name.header.selected,.zigbee-container .view .item .name.header.selected{border-radius:1.5em;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item .title,.zigbee-container .view .item .title{font-size:1.2em;padding-left:.5em}.zigbee-container .info-body .item .buttons,.zigbee-container .view .item .buttons{margin:0}.zigbee-container .info-body .item:hover,.zigbee-container .view .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zigbee-container .info-body .item:hover.selected,.zigbee-container .view .item:hover.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zigbee-container .info-body .item:not(:last-child),.zigbee-container .view .item:not(:last-child){border-bottom:1px solid #ddd}.zigbee-container .info-body .item:first-child,.zigbee-container .view .item:first-child{border-radius:1.5em 1.5em 0 0}.zigbee-container .info-body .item:last-child,.zigbee-container .view .item:last-child{border-radius:0 0 1.5em 1.5em}.zigbee-container .info-body .item .params .section,.zigbee-container .view .item .params .section{padding:1.5em 0 0 0}.zigbee-container .info-body .item .value .param-name,.zigbee-container .view .item .value .param-name{display:inline-block}.zigbee-container .info-body .item .value .param-name .name,.zigbee-container .view .item .value .param-name .name{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zigbee-container .info-body .item .value .param-name .name:before,.zigbee-container .view .item .value .param-name .name:before{content:"["}.zigbee-container .info-body .item .value .param-name .name:after,.zigbee-container .view .item .value .param-name .name:after{content:"]"}.zigbee-container .info-body .item .value .param-name .unit,.zigbee-container .view .item .value .param-name .unit{font-size:.8em}.zigbee-container .info-body .item .value .param-name .unit:before,.zigbee-container .view .item .value .param-name .unit:before{content:" [unit: "}.zigbee-container .info-body .item .value .param-name .unit:after,.zigbee-container .view .item .value .param-name .unit:after{content:"]"}.zigbee-container .info-body .item .value .param-value label,.zigbee-container .view .item .value .param-value label{width:90%}.zigbee-container .info-body .item .value .param-value input,.zigbee-container .view .item .value .param-value input{width:100%}.zigbee-container .info-body .item button,.zigbee-container .view .item button{border:0;background:none;padding:0 .5em}.zigbee-container .info-body .item button:hover,.zigbee-container .view .item button:hover{color:#35b870}@media screen and (max-width:769px){.zigbee-container .info-body .item .name-edit,.zigbee-container .view .item .name-edit{justify-content:left}}@media screen and (min-width:769px){.zigbee-container .info-body .item .name-edit,.zigbee-container .view .item .name-edit{justify-content:right}}.zigbee-container .info-body .item .name-edit,.zigbee-container .view .item .name-edit{width:100%;display:inline-flex;align-items:center}.zigbee-container .info-body .item .name-edit form,.zigbee-container .view .item .name-edit form{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zigbee-container .info-body .item .name-edit .buttons,.zigbee-container .view .item .name-edit .buttons{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zigbee-container .info-body .item .name-edit form,.zigbee-container .view .item .name-edit form{background:none;padding:0;border:none;box-shadow:none}.zigbee-container .row{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zigbee-container .row .param-name{width:100%;font-weight:700}.zigbee-container .row .param-value{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zigbee-container .row .param-name{width:40%}.zigbee-container .row .param-value{width:58%;justify-content:right}}.zigbee-container .row .param-name{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zigbee-container .row .param-value{display:inline-flex;align-items:center}.zigbee-container .row .param-value .value-edit{display:flex;align-items:center}.zigbee-container .row .param-value .value-data{display:inline-block;font-weight:700}.zigbee-container .row .param-value .slider-container{display:flex;align-items:center}.zigbee-container .row .param-value .unit{font-size:.8em;margin-left:1em;display:inline}.zigbee-container .row .param-value select{width:100%}.zigbee-container .row .param-value .numeric input.slider{text-align:left}.zigbee-container .row .param-value .numeric input[type=text]{text-align:right;width:100%}.zigbee-container .row .param-value .numeric .row,.zigbee-container .row .param-value .numeric .row:hover{background:none}.zigbee-container .row .param-value .numeric .value-max,.zigbee-container .row .param-value .numeric .value-min{width:50%;font-size:.85em;opacity:.75}.zigbee-container .row .param-value .numeric .value-min{text-align:left}.zigbee-container .row .param-value .numeric .value-max{text-align:right}.zigbee-container select{width:100%}.zigbee-container{width:100%;height:100%;padding:0;display:flex;flex-direction:column;align-items:center;overflow:auto}.zigbee-container .no-items{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zigbee-container .view-options{display:flex;width:100%;height:3.5em;justify-content:space-between;align-items:center;padding:0;background:#f9fafa;border-bottom:1px solid #ddd;box-shadow:0 3px 2px -1px silver}.zigbee-container .view-options .view-selector{display:inline-flex;padding-left:.5em}.zigbee-container .view-options .view-selector label{width:100%}.zigbee-container .view-options .buttons{display:inline-flex;margin:0}.zigbee-container .view-options .buttons button{background:none;border:none;padding:0 .75em}.zigbee-container .view-options .buttons button:hover{color:#35b870}.zigbee-container .view-options .buttons .dropdown .item{padding:.5em 2em .5em .5em}.zigbee-container .view-container{width:100%;height:calc(100% - 3.5em);display:flex;justify-content:center;overflow:auto}.zigbee-container .view{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:769px){.zigbee-container .view{width:100%}}@media screen and (min-width:769px){.zigbee-container .view{width:100%}}@media screen and (min-width:1024px){.zigbee-container .view{min-width:400pt;max-width:750pt;border-radius:1.5em}.zigbee-container .view-container{padding-top:2em}}.zigbee-container .params{background:#fff;padding-bottom:1em}.zigbee-container .params .section{display:flex;flex-direction:column;padding:0 1em}.zigbee-container .params .section:not(:first-child){padding-top:1em}.zigbee-container .params .section .header{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zigbee-container .btn-value-name-edit{padding:0}.zigbee-container .modal .section .header{background:none;padding:.5em 0}.zigbee-container .modal .section .body{padding:0}.zigbee-container .modal .network-info{min-width:600pt}.zigbee-container .error{color:#a00}.zigbee-container .device .actions .row,.zigbee-container .group .actions .row{cursor:pointer}.zigbee-container .device form,.zigbee-container .group form{margin-bottom:0}.zigbee-container .device .param-value input[type=text],.zigbee-container .group .param-value input[type=text]{text-align:right}.zigbee-container .info-body{margin:-2em;padding:0}.zigbee-container .info-body .row{padding:1em .5em}.zigbee-container .info-body .row .param-name{font-weight:700}@media screen and (max-width:769px){.zigbee-container .info-body{width:100vw}}@media screen and (min-width:769px){.zigbee-container .info-body{width:80vw}}@media screen and (min-width:1024px){.zigbee-container .info-body{width:60vw;max-width:30em}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7257.5944729a.css b/platypush/backend/http/webapp/dist/static/css/7257.5944729a.css new file mode 100644 index 0000000000..e353bfbeb4 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7257.5944729a.css @@ -0,0 +1 @@ +.col-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-63e10a38]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-63e10a38]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-63e10a38]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-63e10a38]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-63e10a38]:first-child{margin-left:26%!important}.col-offset-3[data-v-63e10a38]:not(first-child){margin-left:30%!important}.col-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-63e10a38]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-63e10a38]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-63e10a38]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-63e10a38]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-63e10a38]:first-child{margin-left:52%!important}.col-offset-6[data-v-63e10a38]:not(first-child){margin-left:56%!important}.col-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-63e10a38]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-63e10a38]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-63e10a38]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-63e10a38]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-63e10a38]:first-child{margin-left:78%!important}.col-offset-9[data-v-63e10a38]:not(first-child){margin-left:82%!important}.col-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-63e10a38]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-63e10a38]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-63e10a38]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-63e10a38]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-1[data-v-63e10a38]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-2[data-v-63e10a38]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-3[data-v-63e10a38]{margin-left:26%}.col-no-margin-s-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-4[data-v-63e10a38]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-5[data-v-63e10a38]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-6[data-v-63e10a38]{margin-left:52%}.col-no-margin-s-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-7[data-v-63e10a38]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-8[data-v-63e10a38]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-9[data-v-63e10a38]{margin-left:78%}.col-no-margin-s-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-10[data-v-63e10a38]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-63e10a38]:first-child{margin-left:0}.col-offset-s-11[data-v-63e10a38]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-s-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-63e10a38]{display:none!important}.s-visible[data-v-63e10a38]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-1[data-v-63e10a38]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-2[data-v-63e10a38]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-3[data-v-63e10a38]{margin-left:26%}.col-no-margin-m-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-4[data-v-63e10a38]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-5[data-v-63e10a38]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-6[data-v-63e10a38]{margin-left:52%}.col-no-margin-m-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-7[data-v-63e10a38]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-8[data-v-63e10a38]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-9[data-v-63e10a38]{margin-left:78%}.col-no-margin-m-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-10[data-v-63e10a38]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-63e10a38]:first-child{margin-left:0}.col-offset-m-11[data-v-63e10a38]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-m-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-63e10a38]{display:none!important}.m-visible[data-v-63e10a38]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-1[data-v-63e10a38]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-2[data-v-63e10a38]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-3[data-v-63e10a38]{margin-left:26%}.col-no-margin-l-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-4[data-v-63e10a38]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-5[data-v-63e10a38]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-6[data-v-63e10a38]{margin-left:52%}.col-no-margin-l-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-7[data-v-63e10a38]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-8[data-v-63e10a38]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-9[data-v-63e10a38]{margin-left:78%}.col-no-margin-l-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-10[data-v-63e10a38]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-63e10a38]:first-child{margin-left:0}.col-offset-l-11[data-v-63e10a38]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-l-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-63e10a38]{display:none!important}.l-visible[data-v-63e10a38]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-1[data-v-63e10a38]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-2[data-v-63e10a38]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-3[data-v-63e10a38]{margin-left:26%}.col-no-margin-xl-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-4[data-v-63e10a38]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-5[data-v-63e10a38]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-6[data-v-63e10a38]{margin-left:52%}.col-no-margin-xl-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-7[data-v-63e10a38]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-8[data-v-63e10a38]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-9[data-v-63e10a38]{margin-left:78%}.col-no-margin-xl-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-10[data-v-63e10a38]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xl-11[data-v-63e10a38]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-63e10a38]{display:none!important}.xl-visible[data-v-63e10a38]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-1[data-v-63e10a38]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-63e10a38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-2[data-v-63e10a38]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-63e10a38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-3[data-v-63e10a38]{margin-left:26%}.col-no-margin-xxl-3[data-v-63e10a38]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-4[data-v-63e10a38]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-63e10a38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-5[data-v-63e10a38]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-63e10a38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-6[data-v-63e10a38]{margin-left:52%}.col-no-margin-xxl-6[data-v-63e10a38]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-7[data-v-63e10a38]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-63e10a38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-8[data-v-63e10a38]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-63e10a38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-9[data-v-63e10a38]{margin-left:78%}.col-no-margin-xxl-9[data-v-63e10a38]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-10[data-v-63e10a38]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-63e10a38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-63e10a38]:first-child{margin-left:0}.col-offset-xxl-11[data-v-63e10a38]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-63e10a38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-63e10a38]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-63e10a38]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-63e10a38]{display:none!important}.xxl-visible[data-v-63e10a38]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-63e10a38]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-63e10a38]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-63e10a38]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-63e10a38]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-63e10a38]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-63e10a38]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-63e10a38]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-63e10a38]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-63e10a38]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-63e10a38]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-63e10a38]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-63e10a38]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-63e10a38]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-63e10a38]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-63e10a38]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-63e10a38]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-63e10a38]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-63e10a38]{display:none!important}}.vertical-center[data-v-63e10a38]{display:flex;align-items:center}.horizontal-center[data-v-63e10a38]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-63e10a38]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-63e10a38]{display:none!important}.no-content[data-v-63e10a38]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-63e10a38]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-63e10a38]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-63e10a38]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-63e10a38]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-63e10a38]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-63e10a38]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-63e10a38],.btn[data-v-63e10a38],button[data-v-63e10a38]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-63e10a38],.btn-default[type=submit][data-v-63e10a38],.btn.btn-primary[data-v-63e10a38],.btn[type=submit][data-v-63e10a38],button.btn-primary[data-v-63e10a38],button[type=submit][data-v-63e10a38]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-63e10a38]:hover,.btn[data-v-63e10a38]:hover,button[data-v-63e10a38]:hover{color:#35b870}.btn .icon[data-v-63e10a38],.btn-default .icon[data-v-63e10a38],button .icon[data-v-63e10a38]{margin-right:.5em}.btn-default[data-v-63e10a38]:disabled,.btn-default[disabled][data-v-63e10a38],.btn[data-v-63e10a38]:disabled,.btn[disabled][data-v-63e10a38],button[data-v-63e10a38]:disabled,button[disabled][data-v-63e10a38]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-63e10a38]{cursor:grab!important}.dragged[data-v-63e10a38]{opacity:.5!important}input[type=password][data-v-63e10a38],input[type=text][data-v-63e10a38]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-63e10a38]:focus,input[type=text][data-v-63e10a38]:focus{border:1px solid #35b870}button[data-v-63e10a38],input[data-v-63e10a38]{outline:none}input[type=text][data-v-63e10a38]:hover,textarea[data-v-63e10a38]:hover{border:1px solid #9cdfb0}ul[data-v-63e10a38]{margin:0;padding:0;list-style:none}a[data-v-63e10a38]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-63e10a38]:hover{color:#35b870}[data-v-63e10a38]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-63e10a38]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-63e10a38]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-63e10a38]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-63e10a38]{color:#ad1717}body[data-v-63e10a38]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-63e10a38] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-63e10a38] .nav .path{cursor:pointer}.browser[data-v-63e10a38] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-63e10a38] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-63e10a38]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-63e10a38]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-63e10a38],input[type=number][data-v-63e10a38],input[type=password][data-v-63e10a38],input[type=search][data-v-63e10a38],input[type=text][data-v-63e10a38],input[type=time][data-v-63e10a38]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-63e10a38]:hover,input[type=number][data-v-63e10a38]:hover,input[type=password][data-v-63e10a38]:hover,input[type=search][data-v-63e10a38]:hover,input[type=text][data-v-63e10a38]:hover,input[type=time][data-v-63e10a38]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-63e10a38]:focus,input[type=number][data-v-63e10a38]:focus,input[type=password][data-v-63e10a38]:focus,input[type=search][data-v-63e10a38]:focus,input[type=text][data-v-63e10a38]:focus,input[type=time][data-v-63e10a38]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-63e10a38],input[type=number].with-icon[data-v-63e10a38],input[type=password].with-icon[data-v-63e10a38],input[type=search].with-icon[data-v-63e10a38],input[type=text].with-icon[data-v-63e10a38],input[type=time].with-icon[data-v-63e10a38]{padding-left:.3em}input[type=search][data-v-63e10a38],input[type=text][data-v-63e10a38]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-63e10a38]{animation-fill-mode:both;animation-name:fadeIn-63e10a38;-webkit-animation-name:fadeIn-63e10a38}.fade-in[data-v-63e10a38],.fade-out[data-v-63e10a38]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-63e10a38]{animation-fill-mode:both;animation-name:fadeOut-63e10a38;-webkit-animation-name:fadeOut-63e10a38}.expand[data-v-63e10a38]{animation-fill-mode:both;animation-name:expand-63e10a38;-webkit-animation-name:expand-63e10a38}.expand[data-v-63e10a38],.shrink[data-v-63e10a38]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-63e10a38]{animation-fill-mode:both;animation-name:shrink-63e10a38;-webkit-animation-name:shrink-63e10a38}.fold[data-v-63e10a38]{animation-fill-mode:both;animation-name:fold-63e10a38;-webkit-animation-name:fold-63e10a38}.fold[data-v-63e10a38],.unfold[data-v-63e10a38]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-63e10a38]{animation-fill-mode:both;animation-name:unfold-63e10a38;-webkit-animation-name:unfold-63e10a38}.dim[data-v-63e10a38]{animation-fill-mode:both;animation-name:dim-63e10a38;-webkit-animation-name:dim-63e10a38}.brighten[data-v-63e10a38],.dim[data-v-63e10a38]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-63e10a38]{animation-fill-mode:both;animation-name:brighten-63e10a38;-webkit-animation-name:brighten-63e10a38}@keyframes fadeIn-63e10a38{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-63e10a38{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-63e10a38{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-63e10a38{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-63e10a38{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-63e10a38{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-63e10a38{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-63e10a38{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-63e10a38]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-63e10a38;-webkit-animation-name:glow-63e10a38}.loop[data-v-63e10a38]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-63e10a38{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-63e10a38]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-63e10a38]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-63e10a38]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.edit-btn[data-v-63e10a38]{border:0;background:none;padding:0 .25em;margin-left:.25em;border:1px solid transparent}.edit-btn[data-v-63e10a38]:hover{color:#35b870;border:none}.col-1[data-v-99805094]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-99805094]:first-child{margin-left:0}.col-no-margin-1[data-v-99805094]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-99805094]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-99805094]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-99805094]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-99805094]:first-child{margin-left:0}.col-no-margin-2[data-v-99805094]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-99805094]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-99805094]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-99805094]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-99805094]:first-child{margin-left:0}.col-no-margin-3[data-v-99805094]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-99805094]:first-child{margin-left:26%!important}.col-offset-3[data-v-99805094]:not(first-child){margin-left:30%!important}.col-4[data-v-99805094]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-99805094]:first-child{margin-left:0}.col-no-margin-4[data-v-99805094]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-99805094]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-99805094]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-99805094]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-99805094]:first-child{margin-left:0}.col-no-margin-5[data-v-99805094]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-99805094]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-99805094]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-99805094]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-99805094]:first-child{margin-left:0}.col-no-margin-6[data-v-99805094]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-99805094]:first-child{margin-left:52%!important}.col-offset-6[data-v-99805094]:not(first-child){margin-left:56%!important}.col-7[data-v-99805094]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-99805094]:first-child{margin-left:0}.col-no-margin-7[data-v-99805094]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-99805094]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-99805094]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-99805094]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-99805094]:first-child{margin-left:0}.col-no-margin-8[data-v-99805094]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-99805094]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-99805094]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-99805094]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-99805094]:first-child{margin-left:0}.col-no-margin-9[data-v-99805094]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-99805094]:first-child{margin-left:78%!important}.col-offset-9[data-v-99805094]:not(first-child){margin-left:82%!important}.col-10[data-v-99805094]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-99805094]:first-child{margin-left:0}.col-no-margin-10[data-v-99805094]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-99805094]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-99805094]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-99805094]:first-child{margin-left:0}.col-no-margin-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-99805094]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-99805094]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-99805094]:first-child{margin-left:0}.col-no-margin-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-99805094]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-99805094]:first-child{margin-left:0}.col-offset-s-1[data-v-99805094]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-99805094]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-99805094]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-99805094]:first-child{margin-left:0}.col-offset-s-2[data-v-99805094]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-99805094]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-99805094]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-99805094]:first-child{margin-left:0}.col-offset-s-3[data-v-99805094]{margin-left:26%}.col-no-margin-s-3[data-v-99805094]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-99805094]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-99805094]:first-child{margin-left:0}.col-offset-s-4[data-v-99805094]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-99805094]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-99805094]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-99805094]:first-child{margin-left:0}.col-offset-s-5[data-v-99805094]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-99805094]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-99805094]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-99805094]:first-child{margin-left:0}.col-offset-s-6[data-v-99805094]{margin-left:52%}.col-no-margin-s-6[data-v-99805094]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-99805094]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-99805094]:first-child{margin-left:0}.col-offset-s-7[data-v-99805094]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-99805094]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-99805094]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-99805094]:first-child{margin-left:0}.col-offset-s-8[data-v-99805094]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-99805094]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-99805094]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-99805094]:first-child{margin-left:0}.col-offset-s-9[data-v-99805094]{margin-left:78%}.col-no-margin-s-9[data-v-99805094]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-99805094]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-99805094]:first-child{margin-left:0}.col-offset-s-10[data-v-99805094]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-99805094]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-99805094]:first-child{margin-left:0}.col-offset-s-11[data-v-99805094]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-99805094]:first-child{margin-left:0}.col-no-margin-s-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-99805094]{display:none!important}.s-visible[data-v-99805094]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-99805094]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-99805094]:first-child{margin-left:0}.col-offset-m-1[data-v-99805094]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-99805094]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-99805094]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-99805094]:first-child{margin-left:0}.col-offset-m-2[data-v-99805094]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-99805094]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-99805094]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-99805094]:first-child{margin-left:0}.col-offset-m-3[data-v-99805094]{margin-left:26%}.col-no-margin-m-3[data-v-99805094]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-99805094]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-99805094]:first-child{margin-left:0}.col-offset-m-4[data-v-99805094]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-99805094]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-99805094]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-99805094]:first-child{margin-left:0}.col-offset-m-5[data-v-99805094]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-99805094]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-99805094]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-99805094]:first-child{margin-left:0}.col-offset-m-6[data-v-99805094]{margin-left:52%}.col-no-margin-m-6[data-v-99805094]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-99805094]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-99805094]:first-child{margin-left:0}.col-offset-m-7[data-v-99805094]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-99805094]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-99805094]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-99805094]:first-child{margin-left:0}.col-offset-m-8[data-v-99805094]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-99805094]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-99805094]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-99805094]:first-child{margin-left:0}.col-offset-m-9[data-v-99805094]{margin-left:78%}.col-no-margin-m-9[data-v-99805094]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-99805094]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-99805094]:first-child{margin-left:0}.col-offset-m-10[data-v-99805094]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-99805094]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-99805094]:first-child{margin-left:0}.col-offset-m-11[data-v-99805094]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-99805094]:first-child{margin-left:0}.col-no-margin-m-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-99805094]{display:none!important}.m-visible[data-v-99805094]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-99805094]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-99805094]:first-child{margin-left:0}.col-offset-l-1[data-v-99805094]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-99805094]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-99805094]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-99805094]:first-child{margin-left:0}.col-offset-l-2[data-v-99805094]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-99805094]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-99805094]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-99805094]:first-child{margin-left:0}.col-offset-l-3[data-v-99805094]{margin-left:26%}.col-no-margin-l-3[data-v-99805094]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-99805094]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-99805094]:first-child{margin-left:0}.col-offset-l-4[data-v-99805094]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-99805094]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-99805094]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-99805094]:first-child{margin-left:0}.col-offset-l-5[data-v-99805094]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-99805094]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-99805094]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-99805094]:first-child{margin-left:0}.col-offset-l-6[data-v-99805094]{margin-left:52%}.col-no-margin-l-6[data-v-99805094]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-99805094]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-99805094]:first-child{margin-left:0}.col-offset-l-7[data-v-99805094]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-99805094]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-99805094]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-99805094]:first-child{margin-left:0}.col-offset-l-8[data-v-99805094]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-99805094]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-99805094]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-99805094]:first-child{margin-left:0}.col-offset-l-9[data-v-99805094]{margin-left:78%}.col-no-margin-l-9[data-v-99805094]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-99805094]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-99805094]:first-child{margin-left:0}.col-offset-l-10[data-v-99805094]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-99805094]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-99805094]:first-child{margin-left:0}.col-offset-l-11[data-v-99805094]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-99805094]:first-child{margin-left:0}.col-no-margin-l-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-99805094]{display:none!important}.l-visible[data-v-99805094]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-99805094]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-1[data-v-99805094]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-99805094]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-99805094]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-2[data-v-99805094]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-99805094]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-99805094]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-3[data-v-99805094]{margin-left:26%}.col-no-margin-xl-3[data-v-99805094]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-99805094]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-4[data-v-99805094]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-99805094]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-99805094]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-5[data-v-99805094]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-99805094]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-99805094]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-6[data-v-99805094]{margin-left:52%}.col-no-margin-xl-6[data-v-99805094]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-99805094]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-7[data-v-99805094]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-99805094]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-99805094]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-8[data-v-99805094]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-99805094]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-99805094]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-9[data-v-99805094]{margin-left:78%}.col-no-margin-xl-9[data-v-99805094]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-99805094]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-10[data-v-99805094]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-99805094]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-99805094]:first-child{margin-left:0}.col-offset-xl-11[data-v-99805094]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-99805094]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-99805094]{display:none!important}.xl-visible[data-v-99805094]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-99805094]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-1[data-v-99805094]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-99805094]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-99805094]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-2[data-v-99805094]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-99805094]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-99805094]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-3[data-v-99805094]{margin-left:26%}.col-no-margin-xxl-3[data-v-99805094]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-99805094]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-4[data-v-99805094]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-99805094]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-99805094]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-5[data-v-99805094]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-99805094]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-99805094]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-6[data-v-99805094]{margin-left:52%}.col-no-margin-xxl-6[data-v-99805094]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-99805094]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-7[data-v-99805094]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-99805094]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-99805094]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-8[data-v-99805094]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-99805094]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-99805094]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-9[data-v-99805094]{margin-left:78%}.col-no-margin-xxl-9[data-v-99805094]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-99805094]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-10[data-v-99805094]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-99805094]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-99805094]:first-child{margin-left:0}.col-offset-xxl-11[data-v-99805094]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-99805094]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-99805094]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-99805094]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-99805094]{display:none!important}.xxl-visible[data-v-99805094]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-99805094]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-99805094]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-99805094]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-99805094]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-99805094]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-99805094]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-99805094]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-99805094]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-99805094]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-99805094]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-99805094]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-99805094]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-99805094]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-99805094]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-99805094]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-99805094]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-99805094]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-99805094]{display:none!important}}.vertical-center[data-v-99805094]{display:flex;align-items:center}.horizontal-center[data-v-99805094]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-99805094]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-99805094]{display:none!important}.no-content[data-v-99805094]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-99805094]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-99805094]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-99805094]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-99805094]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-99805094]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-99805094]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-99805094],.btn[data-v-99805094],button[data-v-99805094]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-99805094],.btn-default[type=submit][data-v-99805094],.btn.btn-primary[data-v-99805094],.btn[type=submit][data-v-99805094],button.btn-primary[data-v-99805094],button[type=submit][data-v-99805094]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-99805094]:hover,.btn[data-v-99805094]:hover,button[data-v-99805094]:hover{color:#35b870}.btn .icon[data-v-99805094],.btn-default .icon[data-v-99805094],button .icon[data-v-99805094]{margin-right:.5em}.btn-default[data-v-99805094]:disabled,.btn-default[disabled][data-v-99805094],.btn[data-v-99805094]:disabled,.btn[disabled][data-v-99805094],button[data-v-99805094]:disabled,button[disabled][data-v-99805094]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-99805094]{cursor:grab!important}.dragged[data-v-99805094]{opacity:.5!important}input[type=password][data-v-99805094],input[type=text][data-v-99805094]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-99805094]:focus,input[type=text][data-v-99805094]:focus{border:1px solid #35b870}button[data-v-99805094],input[data-v-99805094]{outline:none}input[type=text][data-v-99805094]:hover,textarea[data-v-99805094]:hover{border:1px solid #9cdfb0}ul[data-v-99805094]{margin:0;padding:0;list-style:none}a[data-v-99805094]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-99805094]:hover{color:#35b870}[data-v-99805094]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-99805094]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-99805094]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-99805094]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-99805094]{color:#ad1717}body[data-v-99805094]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-99805094] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-99805094] .nav .path{cursor:pointer}.browser[data-v-99805094] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-99805094] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-99805094]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-99805094]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-99805094],input[type=number][data-v-99805094],input[type=password][data-v-99805094],input[type=search][data-v-99805094],input[type=text][data-v-99805094],input[type=time][data-v-99805094]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-99805094]:hover,input[type=number][data-v-99805094]:hover,input[type=password][data-v-99805094]:hover,input[type=search][data-v-99805094]:hover,input[type=text][data-v-99805094]:hover,input[type=time][data-v-99805094]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-99805094]:focus,input[type=number][data-v-99805094]:focus,input[type=password][data-v-99805094]:focus,input[type=search][data-v-99805094]:focus,input[type=text][data-v-99805094]:focus,input[type=time][data-v-99805094]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-99805094],input[type=number].with-icon[data-v-99805094],input[type=password].with-icon[data-v-99805094],input[type=search].with-icon[data-v-99805094],input[type=text].with-icon[data-v-99805094],input[type=time].with-icon[data-v-99805094]{padding-left:.3em}input[type=search][data-v-99805094],input[type=text][data-v-99805094]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-99805094]{animation-fill-mode:both;animation-name:fadeIn-99805094;-webkit-animation-name:fadeIn-99805094}.fade-in[data-v-99805094],.fade-out[data-v-99805094]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-99805094]{animation-fill-mode:both;animation-name:fadeOut-99805094;-webkit-animation-name:fadeOut-99805094}.expand[data-v-99805094]{animation-fill-mode:both;animation-name:expand-99805094;-webkit-animation-name:expand-99805094}.expand[data-v-99805094],.shrink[data-v-99805094]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-99805094]{animation-fill-mode:both;animation-name:shrink-99805094;-webkit-animation-name:shrink-99805094}.fold[data-v-99805094]{animation-fill-mode:both;animation-name:fold-99805094;-webkit-animation-name:fold-99805094}.fold[data-v-99805094],.unfold[data-v-99805094]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-99805094]{animation-fill-mode:both;animation-name:unfold-99805094;-webkit-animation-name:unfold-99805094}.dim[data-v-99805094]{animation-fill-mode:both;animation-name:dim-99805094;-webkit-animation-name:dim-99805094}.brighten[data-v-99805094],.dim[data-v-99805094]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-99805094]{animation-fill-mode:both;animation-name:brighten-99805094;-webkit-animation-name:brighten-99805094}@keyframes fadeIn-99805094{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-99805094{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-99805094{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-99805094{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-99805094{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-99805094{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-99805094{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-99805094{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-99805094]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-99805094;-webkit-animation-name:glow-99805094}.loop[data-v-99805094]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-99805094{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-99805094]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-99805094]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-99805094]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.name-editor[data-v-99805094]{background:transparent;display:inline-flex;flex-direction:row;padding:0;border:0;border-radius:0;box-shadow:none}.name-editor button[data-v-99805094]{border:none;background:none;padding:0 .5em}.name-editor button.confirm[data-v-99805094]{color:#32b646}.name-editor button.cancel[data-v-99805094]{color:#ad1717}.col-1[data-v-d3ee090e],.entity .head .icon[data-v-d3ee090e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d3ee090e]:first-child,.entity .head .icon[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d3ee090e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d3ee090e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d3ee090e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d3ee090e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d3ee090e],.entity .head .value-and-toggler[data-v-d3ee090e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d3ee090e]:first-child,.entity .head .value-and-toggler[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d3ee090e]:first-child{margin-left:26%!important}.col-offset-3[data-v-d3ee090e]:not(first-child){margin-left:30%!important}.col-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d3ee090e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d3ee090e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d3ee090e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d3ee090e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d3ee090e]:first-child{margin-left:52%!important}.col-offset-6[data-v-d3ee090e]:not(first-child){margin-left:56%!important}.col-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d3ee090e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d3ee090e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d3ee090e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d3ee090e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d3ee090e]:first-child{margin-left:78%!important}.col-offset-9[data-v-d3ee090e]:not(first-child){margin-left:82%!important}.col-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d3ee090e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d3ee090e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d3ee090e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d3ee090e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-1[data-v-d3ee090e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-2[data-v-d3ee090e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d3ee090e],.entity .head .value-container[data-v-d3ee090e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d3ee090e]:first-child,.entity .head .value-container[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-3[data-v-d3ee090e]{margin-left:26%}.col-no-margin-s-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-4[data-v-d3ee090e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-5[data-v-d3ee090e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-6[data-v-d3ee090e]{margin-left:52%}.col-no-margin-s-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-7[data-v-d3ee090e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d3ee090e],.entity .head .label[data-v-d3ee090e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d3ee090e]:first-child,.entity .head .label[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-8[data-v-d3ee090e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-9[data-v-d3ee090e]{margin-left:78%}.col-no-margin-s-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-10[data-v-d3ee090e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-s-11[data-v-d3ee090e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-d3ee090e],.attributes .child .value[data-v-d3ee090e],.col-s-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-d3ee090e]:first-child,.attributes .child .value[data-v-d3ee090e]:first-child,.col-s-12[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d3ee090e]{display:none!important}.s-visible[data-v-d3ee090e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-1[data-v-d3ee090e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d3ee090e],.entity .head .value-container[data-v-d3ee090e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d3ee090e]:first-child,.entity .head .value-container[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-2[data-v-d3ee090e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-3[data-v-d3ee090e]{margin-left:26%}.col-no-margin-m-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-4[data-v-d3ee090e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-5[data-v-d3ee090e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-d3ee090e],.attributes .child .value[data-v-d3ee090e],.col-m-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-d3ee090e]:first-child,.attributes .child .value[data-v-d3ee090e]:first-child,.col-m-6[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-6[data-v-d3ee090e]{margin-left:52%}.col-no-margin-m-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-7[data-v-d3ee090e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-8[data-v-d3ee090e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d3ee090e],.entity .head .label[data-v-d3ee090e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d3ee090e]:first-child,.entity .head .label[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-9[data-v-d3ee090e]{margin-left:78%}.col-no-margin-m-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-10[data-v-d3ee090e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-m-11[data-v-d3ee090e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d3ee090e]{display:none!important}.m-visible[data-v-d3ee090e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-1[data-v-d3ee090e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-2[data-v-d3ee090e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-3[data-v-d3ee090e]{margin-left:26%}.col-no-margin-l-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-4[data-v-d3ee090e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-5[data-v-d3ee090e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-6[data-v-d3ee090e]{margin-left:52%}.col-no-margin-l-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-7[data-v-d3ee090e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-8[data-v-d3ee090e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-9[data-v-d3ee090e]{margin-left:78%}.col-no-margin-l-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-10[data-v-d3ee090e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-l-11[data-v-d3ee090e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d3ee090e]{display:none!important}.l-visible[data-v-d3ee090e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-1[data-v-d3ee090e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-2[data-v-d3ee090e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-3[data-v-d3ee090e]{margin-left:26%}.col-no-margin-xl-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-4[data-v-d3ee090e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-5[data-v-d3ee090e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-6[data-v-d3ee090e]{margin-left:52%}.col-no-margin-xl-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-7[data-v-d3ee090e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-8[data-v-d3ee090e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-9[data-v-d3ee090e]{margin-left:78%}.col-no-margin-xl-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-10[data-v-d3ee090e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xl-11[data-v-d3ee090e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d3ee090e]{display:none!important}.xl-visible[data-v-d3ee090e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d3ee090e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d3ee090e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d3ee090e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d3ee090e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d3ee090e]{margin-left:26%}.col-no-margin-xxl-3[data-v-d3ee090e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d3ee090e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d3ee090e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d3ee090e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d3ee090e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d3ee090e]{margin-left:52%}.col-no-margin-xxl-6[data-v-d3ee090e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d3ee090e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d3ee090e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d3ee090e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d3ee090e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d3ee090e]{margin-left:78%}.col-no-margin-xxl-9[data-v-d3ee090e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d3ee090e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d3ee090e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d3ee090e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d3ee090e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d3ee090e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d3ee090e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d3ee090e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d3ee090e]{display:none!important}.xxl-visible[data-v-d3ee090e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d3ee090e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d3ee090e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d3ee090e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d3ee090e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d3ee090e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d3ee090e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d3ee090e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d3ee090e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d3ee090e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d3ee090e]{display:none!important}}.vertical-center[data-v-d3ee090e]{display:flex;align-items:center}.horizontal-center[data-v-d3ee090e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-d3ee090e],.pull-right[data-v-d3ee090e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d3ee090e]{display:none!important}.no-content[data-v-d3ee090e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d3ee090e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d3ee090e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d3ee090e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d3ee090e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d3ee090e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d3ee090e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d3ee090e],.btn[data-v-d3ee090e],button[data-v-d3ee090e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d3ee090e],.btn-default[type=submit][data-v-d3ee090e],.btn.btn-primary[data-v-d3ee090e],.btn[type=submit][data-v-d3ee090e],button.btn-primary[data-v-d3ee090e],button[type=submit][data-v-d3ee090e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-d3ee090e]:hover,.btn[data-v-d3ee090e]:hover,button[data-v-d3ee090e]:hover{color:#35b870}.btn .icon[data-v-d3ee090e],.btn-default .icon[data-v-d3ee090e],button .icon[data-v-d3ee090e]{margin-right:.5em}.btn-default[data-v-d3ee090e]:disabled,.btn-default[disabled][data-v-d3ee090e],.btn[data-v-d3ee090e]:disabled,.btn[disabled][data-v-d3ee090e],button[data-v-d3ee090e]:disabled,button[disabled][data-v-d3ee090e]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-d3ee090e]{cursor:grab!important}.dragged[data-v-d3ee090e]{opacity:.5!important}input[type=password][data-v-d3ee090e],input[type=text][data-v-d3ee090e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d3ee090e]:focus,input[type=text][data-v-d3ee090e]:focus{border:1px solid #35b870}button[data-v-d3ee090e],input[data-v-d3ee090e]{outline:none}input[type=text][data-v-d3ee090e]:hover,textarea[data-v-d3ee090e]:hover{border:1px solid #9cdfb0}ul[data-v-d3ee090e]{margin:0;padding:0;list-style:none}a[data-v-d3ee090e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d3ee090e]:hover{color:#35b870}[data-v-d3ee090e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d3ee090e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d3ee090e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d3ee090e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-d3ee090e]{color:#ad1717}body[data-v-d3ee090e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d3ee090e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d3ee090e] .nav .path{cursor:pointer}.browser[data-v-d3ee090e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d3ee090e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-d3ee090e]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-d3ee090e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d3ee090e],input[type=number][data-v-d3ee090e],input[type=password][data-v-d3ee090e],input[type=search][data-v-d3ee090e],input[type=text][data-v-d3ee090e],input[type=time][data-v-d3ee090e]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-d3ee090e]:hover,input[type=number][data-v-d3ee090e]:hover,input[type=password][data-v-d3ee090e]:hover,input[type=search][data-v-d3ee090e]:hover,input[type=text][data-v-d3ee090e]:hover,input[type=time][data-v-d3ee090e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d3ee090e]:focus,input[type=number][data-v-d3ee090e]:focus,input[type=password][data-v-d3ee090e]:focus,input[type=search][data-v-d3ee090e]:focus,input[type=text][data-v-d3ee090e]:focus,input[type=time][data-v-d3ee090e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d3ee090e],input[type=number].with-icon[data-v-d3ee090e],input[type=password].with-icon[data-v-d3ee090e],input[type=search].with-icon[data-v-d3ee090e],input[type=text].with-icon[data-v-d3ee090e],input[type=time].with-icon[data-v-d3ee090e]{padding-left:.3em}input[type=search][data-v-d3ee090e],input[type=text][data-v-d3ee090e]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-d3ee090e],.fade-in[data-v-d3ee090e]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-d3ee090e;-webkit-animation-name:fadeIn-d3ee090e}.fade-out[data-v-d3ee090e]{animation-fill-mode:both;animation-name:fadeOut-d3ee090e;-webkit-animation-name:fadeOut-d3ee090e}.expand[data-v-d3ee090e],.fade-out[data-v-d3ee090e]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-d3ee090e]{animation-fill-mode:both;animation-name:expand-d3ee090e;-webkit-animation-name:expand-d3ee090e}.shrink[data-v-d3ee090e]{animation-fill-mode:both;animation-name:shrink-d3ee090e;-webkit-animation-name:shrink-d3ee090e}.fold[data-v-d3ee090e],.shrink[data-v-d3ee090e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-d3ee090e]{animation-fill-mode:both;animation-name:fold-d3ee090e;-webkit-animation-name:fold-d3ee090e}.unfold[data-v-d3ee090e]{animation-fill-mode:both;animation-name:unfold-d3ee090e;-webkit-animation-name:unfold-d3ee090e}.dim[data-v-d3ee090e],.unfold[data-v-d3ee090e]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-d3ee090e]{animation-fill-mode:both;animation-name:dim-d3ee090e;-webkit-animation-name:dim-d3ee090e}.brighten[data-v-d3ee090e]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-d3ee090e;-webkit-animation-name:brighten-d3ee090e}@keyframes fadeIn-d3ee090e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d3ee090e{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-d3ee090e{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-d3ee090e{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-d3ee090e{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-d3ee090e{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-d3ee090e{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-d3ee090e{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-d3ee090e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d3ee090e;-webkit-animation-name:glow-d3ee090e}.loop[data-v-d3ee090e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d3ee090e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d3ee090e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d3ee090e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d3ee090e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-d3ee090e]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-d3ee090e]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-d3ee090e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-d3ee090e]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-d3ee090e]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-d3ee090e]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-d3ee090e]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-d3ee090e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-d3ee090e]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-d3ee090e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-d3ee090e]{margin-right:.5em}.entity .head .icon[data-v-d3ee090e]:hover{color:#35b870}.entity .head .label[data-v-d3ee090e]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-d3ee090e]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-d3ee090e]:hover{color:#35b870}.entity .head .value[data-v-d3ee090e]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-d3ee090e]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-d3ee090e]{margin-right:2.5em}.entity .head .value-container[data-v-d3ee090e]{min-width:7em}.entity .head .unit[data-v-d3ee090e]{margin-left:.2em}.entity .head .pull-right[data-v-d3ee090e],.entity .head .value-container[data-v-d3ee090e]{padding-right:.5em}.entity .head .pull-right[data-v-d3ee090e] .power-switch,.entity .head .value-container[data-v-d3ee090e] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-d3ee090e]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-d3ee090e]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-d3ee090e]:hover{color:#35b870}.collapse-toggler[data-v-d3ee090e]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-d3ee090e]:hover{color:#35b870}.attributes .child[data-v-d3ee090e]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-d3ee090e]{flex-direction:column}}.attributes .child[data-v-d3ee090e]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-d3ee090e]:hover{cursor:auto}.attributes .child.head[data-v-d3ee090e]{cursor:pointer}.attributes .child.head[data-v-d3ee090e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-d3ee090e]{font-weight:700}.attributes .child .value[data-v-d3ee090e]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-d3ee090e]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-d3ee090e]:last-child,.entity-container-wrapper.with-children[data-v-d3ee090e]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-d3ee090e]{animation:blink-animation-d3ee090e 1s steps(20,start)}@keyframes blink-animation-d3ee090e{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.icon-editor[data-v-d3ee090e]{width:100%;display:flex;flex-direction:column}.icon-editor .item[data-v-d3ee090e]{display:flex;align-items:center;padding-bottom:.5em}@media screen and (max-width:calc(769px - 1px)){.icon-editor .item[data-v-d3ee090e]{flex-direction:column;justify-content:center}}.icon-editor .item .title[data-v-d3ee090e]{width:10em}@media screen and (max-width:calc(769px - 1px)){.icon-editor .item .title[data-v-d3ee090e]{width:100%}}.icon-editor .item .value[data-v-d3ee090e]{display:inline-flex;flex:1;justify-content:flex-end}@media screen and (max-width:calc(769px - 1px)){.icon-editor .item .value[data-v-d3ee090e]{width:100%;justify-content:flex-start}}.icon-editor .item .icon-editor[data-v-d3ee090e]{align-items:flex-end}@media screen and (max-width:calc(769px - 1px)){.icon-editor .item .icon-editor[data-v-d3ee090e]{align-items:flex-start}}.icon-editor .item .icon-editor .icon-container[data-v-d3ee090e]{margin-right:.5em}.icon-editor .item .icon-editor img[data-v-d3ee090e]{max-width:2em;max-height:2em}.icon-editor .icon-canvas[data-v-d3ee090e]{display:inline-flex;align-items:center}@media screen and (max-width:calc(769px - 1px)){.icon-editor .icon-canvas .icon-container[data-v-d3ee090e]{justify-content:left}}@media screen and (min-width:769px){.icon-editor .icon-canvas .icon-container[data-v-d3ee090e]{justify-content:right;margin-right:.5em}}.icon-editor button[data-v-d3ee090e]{border:none;background:none;padding:0 .5em}.icon-editor .help[data-v-d3ee090e]{font-size:.75em}.col-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-49689016]:first-child{margin-left:0}.col-no-margin-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-49689016]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-49689016]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-49689016]:first-child{margin-left:0}.col-no-margin-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-49689016]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-49689016]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-49689016]:first-child{margin-left:0}.col-no-margin-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-49689016]:first-child{margin-left:26%!important}.col-offset-3[data-v-49689016]:not(first-child){margin-left:30%!important}.col-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-49689016]:first-child{margin-left:0}.col-no-margin-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-49689016]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-49689016]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-49689016]:first-child{margin-left:0}.col-no-margin-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-49689016]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-49689016]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-49689016]:first-child{margin-left:0}.col-no-margin-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-49689016]:first-child{margin-left:52%!important}.col-offset-6[data-v-49689016]:not(first-child){margin-left:56%!important}.col-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-49689016]:first-child{margin-left:0}.col-no-margin-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-49689016]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-49689016]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-49689016]:first-child{margin-left:0}.col-no-margin-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-49689016]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-49689016]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-49689016]:first-child{margin-left:0}.col-no-margin-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-49689016]:first-child{margin-left:78%!important}.col-offset-9[data-v-49689016]:not(first-child){margin-left:82%!important}.col-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-49689016]:first-child{margin-left:0}.col-no-margin-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-49689016]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-49689016]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-49689016]:first-child{margin-left:0}.col-no-margin-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-49689016]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-49689016]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-49689016]:first-child{margin-left:0}.col-offset-s-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-49689016]:first-child{margin-left:0}.col-offset-s-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-49689016]:first-child{margin-left:0}.col-offset-s-3[data-v-49689016]{margin-left:26%}.col-no-margin-s-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-49689016]:first-child{margin-left:0}.col-offset-s-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-49689016]:first-child{margin-left:0}.col-offset-s-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-49689016]:first-child{margin-left:0}.col-offset-s-6[data-v-49689016]{margin-left:52%}.col-no-margin-s-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-49689016]:first-child{margin-left:0}.col-offset-s-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-49689016]:first-child{margin-left:0}.col-offset-s-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-49689016]:first-child{margin-left:0}.col-offset-s-9[data-v-49689016]{margin-left:78%}.col-no-margin-s-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-49689016]:first-child{margin-left:0}.col-offset-s-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-49689016]:first-child{margin-left:0}.col-offset-s-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-s-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-49689016]{display:none!important}.s-visible[data-v-49689016]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-49689016]:first-child{margin-left:0}.col-offset-m-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-49689016]:first-child{margin-left:0}.col-offset-m-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-49689016]:first-child{margin-left:0}.col-offset-m-3[data-v-49689016]{margin-left:26%}.col-no-margin-m-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-49689016]:first-child{margin-left:0}.col-offset-m-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-49689016]:first-child{margin-left:0}.col-offset-m-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-49689016]:first-child{margin-left:0}.col-offset-m-6[data-v-49689016]{margin-left:52%}.col-no-margin-m-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-49689016]:first-child{margin-left:0}.col-offset-m-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-49689016]:first-child{margin-left:0}.col-offset-m-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-49689016]:first-child{margin-left:0}.col-offset-m-9[data-v-49689016]{margin-left:78%}.col-no-margin-m-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-49689016]:first-child{margin-left:0}.col-offset-m-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-49689016]:first-child{margin-left:0}.col-offset-m-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-m-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-49689016]{display:none!important}.m-visible[data-v-49689016]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-49689016]:first-child{margin-left:0}.col-offset-l-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-49689016]:first-child{margin-left:0}.col-offset-l-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-49689016]:first-child{margin-left:0}.col-offset-l-3[data-v-49689016]{margin-left:26%}.col-no-margin-l-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-49689016]:first-child{margin-left:0}.col-offset-l-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-49689016]:first-child{margin-left:0}.col-offset-l-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-49689016]:first-child{margin-left:0}.col-offset-l-6[data-v-49689016]{margin-left:52%}.col-no-margin-l-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-49689016]:first-child{margin-left:0}.col-offset-l-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-49689016]:first-child{margin-left:0}.col-offset-l-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-49689016]:first-child{margin-left:0}.col-offset-l-9[data-v-49689016]{margin-left:78%}.col-no-margin-l-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-49689016]:first-child{margin-left:0}.col-offset-l-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-49689016]:first-child{margin-left:0}.col-offset-l-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-l-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-49689016]{display:none!important}.l-visible[data-v-49689016]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-3[data-v-49689016]{margin-left:26%}.col-no-margin-xl-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-6[data-v-49689016]{margin-left:52%}.col-no-margin-xl-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-9[data-v-49689016]{margin-left:78%}.col-no-margin-xl-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-49689016]{display:none!important}.xl-visible[data-v-49689016]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-3[data-v-49689016]{margin-left:26%}.col-no-margin-xxl-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-6[data-v-49689016]{margin-left:52%}.col-no-margin-xxl-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-9[data-v-49689016]{margin-left:78%}.col-no-margin-xxl-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-49689016]{display:none!important}.xxl-visible[data-v-49689016]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-49689016]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-49689016]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-49689016]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-49689016]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-49689016]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-49689016]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-49689016]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-49689016]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-49689016]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-49689016]{display:none!important}}.vertical-center[data-v-49689016]{display:flex;align-items:center}.horizontal-center[data-v-49689016]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-49689016]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-49689016]{display:none!important}.no-content[data-v-49689016]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-49689016]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-49689016]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-49689016]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-49689016]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-49689016]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-49689016]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-49689016],.btn[data-v-49689016],button[data-v-49689016]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-49689016],.btn-default[type=submit][data-v-49689016],.btn.btn-primary[data-v-49689016],.btn[type=submit][data-v-49689016],button.btn-primary[data-v-49689016],button[type=submit][data-v-49689016]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-49689016]:hover,.btn[data-v-49689016]:hover,button[data-v-49689016]:hover{color:#35b870}.btn .icon[data-v-49689016],.btn-default .icon[data-v-49689016],button .icon[data-v-49689016]{margin-right:.5em}.btn-default[data-v-49689016]:disabled,.btn-default[disabled][data-v-49689016],.btn[data-v-49689016]:disabled,.btn[disabled][data-v-49689016],button[data-v-49689016]:disabled,button[disabled][data-v-49689016]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-49689016]{cursor:grab!important}.dragged[data-v-49689016]{opacity:.5!important}input[type=password][data-v-49689016],input[type=text][data-v-49689016]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-49689016]:focus,input[type=text][data-v-49689016]:focus{border:1px solid #35b870}button[data-v-49689016],input[data-v-49689016]{outline:none}input[type=text][data-v-49689016]:hover,textarea[data-v-49689016]:hover{border:1px solid #9cdfb0}ul[data-v-49689016]{margin:0;padding:0;list-style:none}a[data-v-49689016]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-49689016]:hover{color:#35b870}[data-v-49689016]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-49689016]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-49689016]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-49689016]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-49689016]{color:#ad1717}body[data-v-49689016]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-49689016] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-49689016] .nav .path{cursor:pointer}.browser[data-v-49689016] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-49689016] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-49689016]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-49689016]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-49689016],input[type=number][data-v-49689016],input[type=password][data-v-49689016],input[type=search][data-v-49689016],input[type=text][data-v-49689016],input[type=time][data-v-49689016]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-49689016]:hover,input[type=number][data-v-49689016]:hover,input[type=password][data-v-49689016]:hover,input[type=search][data-v-49689016]:hover,input[type=text][data-v-49689016]:hover,input[type=time][data-v-49689016]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-49689016]:focus,input[type=number][data-v-49689016]:focus,input[type=password][data-v-49689016]:focus,input[type=search][data-v-49689016]:focus,input[type=text][data-v-49689016]:focus,input[type=time][data-v-49689016]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-49689016],input[type=number].with-icon[data-v-49689016],input[type=password].with-icon[data-v-49689016],input[type=search].with-icon[data-v-49689016],input[type=text].with-icon[data-v-49689016],input[type=time].with-icon[data-v-49689016]{padding-left:.3em}input[type=search][data-v-49689016],input[type=text][data-v-49689016]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-49689016]{animation-fill-mode:both;animation-name:fadeIn-49689016;-webkit-animation-name:fadeIn-49689016}.fade-in[data-v-49689016],.fade-out[data-v-49689016]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-49689016]{animation-fill-mode:both;animation-name:fadeOut-49689016;-webkit-animation-name:fadeOut-49689016}.expand[data-v-49689016]{animation-fill-mode:both;animation-name:expand-49689016;-webkit-animation-name:expand-49689016}.expand[data-v-49689016],.shrink[data-v-49689016]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-49689016]{animation-fill-mode:both;animation-name:shrink-49689016;-webkit-animation-name:shrink-49689016}.fold[data-v-49689016]{animation-fill-mode:both;animation-name:fold-49689016;-webkit-animation-name:fold-49689016}.fold[data-v-49689016],.unfold[data-v-49689016]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-49689016]{animation-fill-mode:both;animation-name:unfold-49689016;-webkit-animation-name:unfold-49689016}.dim[data-v-49689016]{animation-fill-mode:both;animation-name:dim-49689016;-webkit-animation-name:dim-49689016}.brighten[data-v-49689016],.dim[data-v-49689016]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-49689016]{animation-fill-mode:both;animation-name:brighten-49689016;-webkit-animation-name:brighten-49689016}@keyframes fadeIn-49689016{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-49689016{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-49689016{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-49689016{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-49689016{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-49689016{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-49689016{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-49689016{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-49689016]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-49689016;-webkit-animation-name:glow-49689016}.loop[data-v-49689016]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-49689016{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-49689016]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-49689016]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-49689016]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-icon-container[data-v-49689016]{width:1.625em;height:1.5em;display:inline-flex;margin-top:.25em;margin-left:.25em;position:relative;text-align:center;justify-content:center;align-items:center}.entity-icon-container.with-color-fill[data-v-49689016]{border-radius:1em}.entity-icon-container .loading[data-v-49689016]{position:absolute;bottom:0;transform:translateY(-50%);width:1em;height:1em;opacity:.6}.entity-icon-container .error[data-v-49689016]{color:#ad1717} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/729.5b54aac4.css b/platypush/backend/http/webapp/dist/static/css/729.b8d5159d.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/729.5b54aac4.css rename to platypush/backend/http/webapp/dist/static/css/729.b8d5159d.css index d69dfa1c19..645b4987db 100644 --- a/platypush/backend/http/webapp/dist/static/css/729.5b54aac4.css +++ b/platypush/backend/http/webapp/dist/static/css/729.b8d5159d.css @@ -1 +1 @@ -.col-1[data-v-75599bb7],.entity .head .icon[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-75599bb7]:first-child,.entity .head .icon[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-75599bb7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-75599bb7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-75599bb7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-75599bb7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-75599bb7],.entity .head .value-and-toggler[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-75599bb7]:first-child,.entity .head .value-and-toggler[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-75599bb7]:first-child{margin-left:26%!important}.col-offset-3[data-v-75599bb7]:not(first-child){margin-left:30%!important}.col-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-75599bb7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-75599bb7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-75599bb7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-75599bb7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-75599bb7]:first-child{margin-left:52%!important}.col-offset-6[data-v-75599bb7]:not(first-child){margin-left:56%!important}.col-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-75599bb7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-75599bb7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-75599bb7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-75599bb7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-75599bb7]:first-child{margin-left:78%!important}.col-offset-9[data-v-75599bb7]:not(first-child){margin-left:82%!important}.col-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-75599bb7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-75599bb7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-75599bb7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-75599bb7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-75599bb7],.entity .head .value-container[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-75599bb7]:first-child,.entity .head .value-container[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-s-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-s-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-75599bb7],.entity .head .label[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-75599bb7]:first-child,.entity .head .label[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-s-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-75599bb7],.attributes .child .value[data-v-75599bb7],.col-s-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-75599bb7]:first-child,.attributes .child .value[data-v-75599bb7]:first-child,.col-s-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-75599bb7]{display:none!important}.s-visible[data-v-75599bb7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-75599bb7],.entity .head .value-container[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-75599bb7]:first-child,.entity .head .value-container[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-m-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-75599bb7],.attributes .child .value[data-v-75599bb7],.col-m-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-75599bb7]:first-child,.attributes .child .value[data-v-75599bb7]:first-child,.col-m-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-m-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-75599bb7],.entity .head .label[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-75599bb7]:first-child,.entity .head .label[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-m-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-75599bb7]{display:none!important}.m-visible[data-v-75599bb7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-l-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-l-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-l-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-75599bb7]{display:none!important}.l-visible[data-v-75599bb7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-xl-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-xl-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-xl-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-75599bb7]{display:none!important}.xl-visible[data-v-75599bb7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-xxl-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-xxl-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-xxl-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-75599bb7]{display:none!important}.xxl-visible[data-v-75599bb7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-75599bb7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-75599bb7]{display:none!important}}.vertical-center[data-v-75599bb7]{display:flex;align-items:center}.horizontal-center[data-v-75599bb7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-75599bb7],.pull-right[data-v-75599bb7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-75599bb7]{display:none!important}.no-content[data-v-75599bb7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-75599bb7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-75599bb7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-75599bb7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-75599bb7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-75599bb7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-75599bb7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-75599bb7],.btn[data-v-75599bb7],button[data-v-75599bb7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-75599bb7],.btn-default[type=submit][data-v-75599bb7],.btn.btn-primary[data-v-75599bb7],.btn[type=submit][data-v-75599bb7],button.btn-primary[data-v-75599bb7],button[type=submit][data-v-75599bb7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-75599bb7],.btn-default .icon[data-v-75599bb7],button .icon[data-v-75599bb7]{margin-right:.5em}input[type=password][data-v-75599bb7],input[type=text][data-v-75599bb7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-75599bb7]:focus,input[type=text][data-v-75599bb7]:focus{border:1px solid #35b870}button[data-v-75599bb7],input[data-v-75599bb7]{outline:none}input[type=text][data-v-75599bb7]:hover,textarea[data-v-75599bb7]:hover{border:1px solid #9cdfb0}ul[data-v-75599bb7]{margin:0;padding:0;list-style:none}a[data-v-75599bb7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-75599bb7]:hover{color:#35b870}[data-v-75599bb7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-75599bb7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-75599bb7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-75599bb7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-75599bb7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-75599bb7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-75599bb7] .nav .path{cursor:pointer}.browser[data-v-75599bb7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-75599bb7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-75599bb7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-75599bb7],input[type=number][data-v-75599bb7],input[type=password][data-v-75599bb7],input[type=search][data-v-75599bb7],input[type=text][data-v-75599bb7],input[type=time][data-v-75599bb7]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-75599bb7]:hover,input[type=number][data-v-75599bb7]:hover,input[type=password][data-v-75599bb7]:hover,input[type=search][data-v-75599bb7]:hover,input[type=text][data-v-75599bb7]:hover,input[type=time][data-v-75599bb7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-75599bb7]:focus,input[type=number][data-v-75599bb7]:focus,input[type=password][data-v-75599bb7]:focus,input[type=search][data-v-75599bb7]:focus,input[type=text][data-v-75599bb7]:focus,input[type=time][data-v-75599bb7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-75599bb7],input[type=number].with-icon[data-v-75599bb7],input[type=password].with-icon[data-v-75599bb7],input[type=search].with-icon[data-v-75599bb7],input[type=text].with-icon[data-v-75599bb7],input[type=time].with-icon[data-v-75599bb7]{padding-left:.3em}input[type=search][data-v-75599bb7],input[type=text][data-v-75599bb7]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-75599bb7],.fade-in[data-v-75599bb7]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-75599bb7;-webkit-animation-name:fadeIn-75599bb7}.fade-out[data-v-75599bb7]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-75599bb7;-webkit-animation-name:fadeOut-75599bb7}@keyframes fadeIn-75599bb7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-75599bb7{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-75599bb7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-75599bb7;-webkit-animation-name:glow-75599bb7}.loop[data-v-75599bb7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-75599bb7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-75599bb7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-75599bb7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-75599bb7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-75599bb7]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-75599bb7]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-75599bb7]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-75599bb7]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-75599bb7]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-75599bb7]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-75599bb7]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-75599bb7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-75599bb7]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-75599bb7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-75599bb7]{margin-right:.5em}.entity .head .icon[data-v-75599bb7]:hover{color:#35b870}.entity .head .label[data-v-75599bb7]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-75599bb7]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-75599bb7]:hover{color:#35b870}.entity .head .value[data-v-75599bb7]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-75599bb7]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-75599bb7]{margin-right:2.5em}.entity .head .value-container[data-v-75599bb7]{min-width:7em}.entity .head .unit[data-v-75599bb7]{margin-left:.2em}.entity .head .pull-right[data-v-75599bb7],.entity .head .value-container[data-v-75599bb7]{padding-right:.5em}.entity .head .pull-right[data-v-75599bb7] .power-switch,.entity .head .value-container[data-v-75599bb7] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-75599bb7]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-75599bb7]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-75599bb7]:hover{color:#35b870}.collapse-toggler[data-v-75599bb7]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-75599bb7]:hover{color:#35b870}.attributes .child[data-v-75599bb7]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-75599bb7]{flex-direction:column}}.attributes .child[data-v-75599bb7]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-75599bb7]:hover{cursor:auto}.attributes .child.head[data-v-75599bb7]{cursor:pointer}.attributes .child.head[data-v-75599bb7]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-75599bb7]{font-weight:700}.attributes .child .value[data-v-75599bb7]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-75599bb7]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-75599bb7]:last-child,.entity-container-wrapper.with-children[data-v-75599bb7]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-75599bb7]{animation:blink-animation-75599bb7 1s steps(20,start)}@keyframes blink-animation-75599bb7{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-75599bb7],.entity .head .icon[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-75599bb7]:first-child,.entity .head .icon[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-75599bb7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-75599bb7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-75599bb7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-75599bb7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-75599bb7],.entity .head .value-and-toggler[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-75599bb7]:first-child,.entity .head .value-and-toggler[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-75599bb7]:first-child{margin-left:26%!important}.col-offset-3[data-v-75599bb7]:not(first-child){margin-left:30%!important}.col-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-75599bb7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-75599bb7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-75599bb7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-75599bb7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-75599bb7]:first-child{margin-left:52%!important}.col-offset-6[data-v-75599bb7]:not(first-child){margin-left:56%!important}.col-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-75599bb7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-75599bb7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-75599bb7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-75599bb7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-75599bb7]:first-child{margin-left:78%!important}.col-offset-9[data-v-75599bb7]:not(first-child){margin-left:82%!important}.col-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-75599bb7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-75599bb7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-75599bb7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-75599bb7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-75599bb7],.entity .head .value-container[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-75599bb7]:first-child,.entity .head .value-container[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-s-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-s-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-75599bb7],.entity .head .label[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-75599bb7]:first-child,.entity .head .label[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-s-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-s-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-75599bb7],.attributes .child .value[data-v-75599bb7],.col-s-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-75599bb7]:first-child,.attributes .child .value[data-v-75599bb7]:first-child,.col-s-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-75599bb7]{display:none!important}.s-visible[data-v-75599bb7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-75599bb7],.entity .head .value-container[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-75599bb7]:first-child,.entity .head .value-container[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-m-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-75599bb7],.attributes .child .value[data-v-75599bb7],.col-m-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-75599bb7]:first-child,.attributes .child .value[data-v-75599bb7]:first-child,.col-m-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-m-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-75599bb7],.entity .head .label[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-75599bb7]:first-child,.entity .head .label[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-m-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-m-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-75599bb7]{display:none!important}.m-visible[data-v-75599bb7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-l-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-l-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-l-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-l-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-75599bb7]{display:none!important}.l-visible[data-v-75599bb7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-xl-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-xl-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-xl-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xl-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-75599bb7]{display:none!important}.xl-visible[data-v-75599bb7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-75599bb7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-75599bb7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-75599bb7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-75599bb7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-75599bb7]{margin-left:26%}.col-no-margin-xxl-3[data-v-75599bb7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-75599bb7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-75599bb7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-75599bb7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-75599bb7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-75599bb7]{margin-left:52%}.col-no-margin-xxl-6[data-v-75599bb7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-75599bb7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-75599bb7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-75599bb7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-75599bb7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-75599bb7]{margin-left:78%}.col-no-margin-xxl-9[data-v-75599bb7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-75599bb7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-75599bb7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-75599bb7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-75599bb7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-75599bb7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-75599bb7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-75599bb7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-75599bb7]{display:none!important}.xxl-visible[data-v-75599bb7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-75599bb7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-75599bb7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-75599bb7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-75599bb7]{display:none!important}}.vertical-center[data-v-75599bb7]{display:flex;align-items:center}.horizontal-center[data-v-75599bb7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-75599bb7],.pull-right[data-v-75599bb7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-75599bb7]{display:none!important}.no-content[data-v-75599bb7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-75599bb7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-75599bb7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-75599bb7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-75599bb7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-75599bb7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-75599bb7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-75599bb7],.btn[data-v-75599bb7],button[data-v-75599bb7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-75599bb7],.btn-default[type=submit][data-v-75599bb7],.btn.btn-primary[data-v-75599bb7],.btn[type=submit][data-v-75599bb7],button.btn-primary[data-v-75599bb7],button[type=submit][data-v-75599bb7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-75599bb7]:hover,.btn[data-v-75599bb7]:hover,button[data-v-75599bb7]:hover{color:#35b870}.btn .icon[data-v-75599bb7],.btn-default .icon[data-v-75599bb7],button .icon[data-v-75599bb7]{margin-right:.5em}.btn-default[data-v-75599bb7]:disabled,.btn-default[disabled][data-v-75599bb7],.btn[data-v-75599bb7]:disabled,.btn[disabled][data-v-75599bb7],button[data-v-75599bb7]:disabled,button[disabled][data-v-75599bb7]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-75599bb7]{cursor:grab!important}.dragged[data-v-75599bb7]{opacity:.5!important}input[type=password][data-v-75599bb7],input[type=text][data-v-75599bb7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-75599bb7]:focus,input[type=text][data-v-75599bb7]:focus{border:1px solid #35b870}button[data-v-75599bb7],input[data-v-75599bb7]{outline:none}input[type=text][data-v-75599bb7]:hover,textarea[data-v-75599bb7]:hover{border:1px solid #9cdfb0}ul[data-v-75599bb7]{margin:0;padding:0;list-style:none}a[data-v-75599bb7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-75599bb7]:hover{color:#35b870}[data-v-75599bb7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-75599bb7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-75599bb7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-75599bb7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-75599bb7]{color:#ad1717}body[data-v-75599bb7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-75599bb7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-75599bb7] .nav .path{cursor:pointer}.browser[data-v-75599bb7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-75599bb7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-75599bb7]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-75599bb7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-75599bb7],input[type=number][data-v-75599bb7],input[type=password][data-v-75599bb7],input[type=search][data-v-75599bb7],input[type=text][data-v-75599bb7],input[type=time][data-v-75599bb7]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-75599bb7]:hover,input[type=number][data-v-75599bb7]:hover,input[type=password][data-v-75599bb7]:hover,input[type=search][data-v-75599bb7]:hover,input[type=text][data-v-75599bb7]:hover,input[type=time][data-v-75599bb7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-75599bb7]:focus,input[type=number][data-v-75599bb7]:focus,input[type=password][data-v-75599bb7]:focus,input[type=search][data-v-75599bb7]:focus,input[type=text][data-v-75599bb7]:focus,input[type=time][data-v-75599bb7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-75599bb7],input[type=number].with-icon[data-v-75599bb7],input[type=password].with-icon[data-v-75599bb7],input[type=search].with-icon[data-v-75599bb7],input[type=text].with-icon[data-v-75599bb7],input[type=time].with-icon[data-v-75599bb7]{padding-left:.3em}input[type=search][data-v-75599bb7],input[type=text][data-v-75599bb7]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-75599bb7],.fade-in[data-v-75599bb7]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-75599bb7;-webkit-animation-name:fadeIn-75599bb7}.fade-out[data-v-75599bb7]{animation-fill-mode:both;animation-name:fadeOut-75599bb7;-webkit-animation-name:fadeOut-75599bb7}.expand[data-v-75599bb7],.fade-out[data-v-75599bb7]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-75599bb7]{animation-fill-mode:both;animation-name:expand-75599bb7;-webkit-animation-name:expand-75599bb7}.shrink[data-v-75599bb7]{animation-fill-mode:both;animation-name:shrink-75599bb7;-webkit-animation-name:shrink-75599bb7}.fold[data-v-75599bb7],.shrink[data-v-75599bb7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-75599bb7]{animation-fill-mode:both;animation-name:fold-75599bb7;-webkit-animation-name:fold-75599bb7}.unfold[data-v-75599bb7]{animation-fill-mode:both;animation-name:unfold-75599bb7;-webkit-animation-name:unfold-75599bb7}.dim[data-v-75599bb7],.unfold[data-v-75599bb7]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-75599bb7]{animation-fill-mode:both;animation-name:dim-75599bb7;-webkit-animation-name:dim-75599bb7}.brighten[data-v-75599bb7]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-75599bb7;-webkit-animation-name:brighten-75599bb7}@keyframes fadeIn-75599bb7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-75599bb7{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-75599bb7{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-75599bb7{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-75599bb7{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-75599bb7{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-75599bb7{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-75599bb7{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-75599bb7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-75599bb7;-webkit-animation-name:glow-75599bb7}.loop[data-v-75599bb7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-75599bb7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-75599bb7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-75599bb7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-75599bb7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-75599bb7]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-75599bb7]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-75599bb7]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-75599bb7]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-75599bb7]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-75599bb7]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-75599bb7]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-75599bb7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-75599bb7]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-75599bb7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-75599bb7]{margin-right:.5em}.entity .head .icon[data-v-75599bb7]:hover{color:#35b870}.entity .head .label[data-v-75599bb7]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-75599bb7]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-75599bb7]:hover{color:#35b870}.entity .head .value[data-v-75599bb7]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-75599bb7]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-75599bb7]{margin-right:2.5em}.entity .head .value-container[data-v-75599bb7]{min-width:7em}.entity .head .unit[data-v-75599bb7]{margin-left:.2em}.entity .head .pull-right[data-v-75599bb7],.entity .head .value-container[data-v-75599bb7]{padding-right:.5em}.entity .head .pull-right[data-v-75599bb7] .power-switch,.entity .head .value-container[data-v-75599bb7] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-75599bb7]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-75599bb7]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-75599bb7]:hover{color:#35b870}.collapse-toggler[data-v-75599bb7]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-75599bb7]:hover{color:#35b870}.attributes .child[data-v-75599bb7]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-75599bb7]{flex-direction:column}}.attributes .child[data-v-75599bb7]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-75599bb7]:hover{cursor:auto}.attributes .child.head[data-v-75599bb7]{cursor:pointer}.attributes .child.head[data-v-75599bb7]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-75599bb7]{font-weight:700}.attributes .child .value[data-v-75599bb7]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-75599bb7]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-75599bb7]:last-child,.entity-container-wrapper.with-children[data-v-75599bb7]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-75599bb7]{animation:blink-animation-75599bb7 1s steps(20,start)}@keyframes blink-animation-75599bb7{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/735.93ff4770.css b/platypush/backend/http/webapp/dist/static/css/735.93ff4770.css deleted file mode 100644 index 8d5cf300a5..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/735.93ff4770.css +++ /dev/null @@ -1,13 +0,0 @@ -.col-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f3217d34]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f3217d34]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f3217d34]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f3217d34]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f3217d34]:first-child{margin-left:26%!important}.col-offset-3[data-v-f3217d34]:not(first-child){margin-left:30%!important}.col-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f3217d34]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f3217d34]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f3217d34]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f3217d34]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f3217d34]:first-child{margin-left:52%!important}.col-offset-6[data-v-f3217d34]:not(first-child){margin-left:56%!important}.col-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f3217d34]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f3217d34]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f3217d34]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f3217d34]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f3217d34]:first-child{margin-left:78%!important}.col-offset-9[data-v-f3217d34]:not(first-child){margin-left:82%!important}.col-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f3217d34]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f3217d34]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f3217d34]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f3217d34]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-s-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-s-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-s-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-s-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f3217d34]{display:none!important}.s-visible[data-v-f3217d34]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-m-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-m-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-m-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-m-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f3217d34]{display:none!important}.m-visible[data-v-f3217d34]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-l-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-l-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-l-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-l-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f3217d34]{display:none!important}.l-visible[data-v-f3217d34]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-xl-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-xl-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-xl-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xl-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f3217d34]{display:none!important}.xl-visible[data-v-f3217d34]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f3217d34]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f3217d34]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f3217d34]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f3217d34]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f3217d34]{margin-left:26%}.col-no-margin-xxl-3[data-v-f3217d34]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f3217d34]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f3217d34]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f3217d34]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f3217d34]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f3217d34]{margin-left:52%}.col-no-margin-xxl-6[data-v-f3217d34]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f3217d34]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f3217d34]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f3217d34]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f3217d34]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f3217d34]{margin-left:78%}.col-no-margin-xxl-9[data-v-f3217d34]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f3217d34]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f3217d34]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f3217d34]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f3217d34]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f3217d34]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f3217d34]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f3217d34]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f3217d34]{display:none!important}.xxl-visible[data-v-f3217d34]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f3217d34]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f3217d34]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f3217d34]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f3217d34]{display:none!important}}.vertical-center[data-v-f3217d34]{display:flex;align-items:center}.horizontal-center[data-v-f3217d34]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f3217d34]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f3217d34]{display:none!important}.no-content[data-v-f3217d34]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f3217d34]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f3217d34]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f3217d34]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f3217d34]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f3217d34]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f3217d34]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f3217d34],.btn[data-v-f3217d34],button[data-v-f3217d34]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f3217d34],.btn-default[type=submit][data-v-f3217d34],.btn.btn-primary[data-v-f3217d34],.btn[type=submit][data-v-f3217d34],button.btn-primary[data-v-f3217d34],button[type=submit][data-v-f3217d34]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f3217d34],.btn-default .icon[data-v-f3217d34],button .icon[data-v-f3217d34]{margin-right:.5em}input[type=password][data-v-f3217d34],input[type=text][data-v-f3217d34]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f3217d34]:focus,input[type=text][data-v-f3217d34]:focus{border:1px solid #35b870}button[data-v-f3217d34],input[data-v-f3217d34]{outline:none}input[type=text][data-v-f3217d34]:hover,textarea[data-v-f3217d34]:hover{border:1px solid #9cdfb0}ul[data-v-f3217d34]{margin:0;padding:0;list-style:none}a[data-v-f3217d34]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f3217d34]:hover{color:#35b870}[data-v-f3217d34]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f3217d34]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f3217d34]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f3217d34]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f3217d34]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f3217d34] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f3217d34] .nav .path{cursor:pointer}.browser[data-v-f3217d34] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f3217d34] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-f3217d34]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f3217d34],input[type=number][data-v-f3217d34],input[type=password][data-v-f3217d34],input[type=search][data-v-f3217d34],input[type=text][data-v-f3217d34],input[type=time][data-v-f3217d34]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-f3217d34]:hover,input[type=number][data-v-f3217d34]:hover,input[type=password][data-v-f3217d34]:hover,input[type=search][data-v-f3217d34]:hover,input[type=text][data-v-f3217d34]:hover,input[type=time][data-v-f3217d34]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f3217d34]:focus,input[type=number][data-v-f3217d34]:focus,input[type=password][data-v-f3217d34]:focus,input[type=search][data-v-f3217d34]:focus,input[type=text][data-v-f3217d34]:focus,input[type=time][data-v-f3217d34]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f3217d34],input[type=number].with-icon[data-v-f3217d34],input[type=password].with-icon[data-v-f3217d34],input[type=search].with-icon[data-v-f3217d34],input[type=text].with-icon[data-v-f3217d34],input[type=time].with-icon[data-v-f3217d34]{padding-left:.3em}input[type=search][data-v-f3217d34],input[type=text][data-v-f3217d34]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f3217d34]{animation-fill-mode:both;animation-name:fadeIn-f3217d34;-webkit-animation-name:fadeIn-f3217d34}.fade-in[data-v-f3217d34],.fade-out[data-v-f3217d34]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f3217d34]{animation-fill-mode:both;animation-name:fadeOut-f3217d34;-webkit-animation-name:fadeOut-f3217d34}@keyframes fadeIn-f3217d34{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f3217d34{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-f3217d34]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f3217d34;-webkit-animation-name:glow-f3217d34}.loop[data-v-f3217d34]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f3217d34{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f3217d34]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f3217d34]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f3217d34]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tab[data-v-f3217d34]{height:3.5em;background:linear-gradient(0deg,#ececec,#f6f6f6);display:flex;padding:1em;align-items:center;border-right:1px solid #ddd;cursor:pointer}@media screen and (max-width:calc(769px - 1px)){.tab[data-v-f3217d34]{flex-grow:1;justify-content:center}}.tab.selected[data-v-f3217d34]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.tab[data-v-f3217d34]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.tab[data-v-f3217d34] .icon-container{width:1.5em}.col-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f4300bb0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f4300bb0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f4300bb0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f4300bb0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f4300bb0]:first-child{margin-left:26%!important}.col-offset-3[data-v-f4300bb0]:not(first-child){margin-left:30%!important}.col-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f4300bb0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f4300bb0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f4300bb0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f4300bb0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f4300bb0]:first-child{margin-left:52%!important}.col-offset-6[data-v-f4300bb0]:not(first-child){margin-left:56%!important}.col-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f4300bb0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f4300bb0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f4300bb0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f4300bb0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f4300bb0]:first-child{margin-left:78%!important}.col-offset-9[data-v-f4300bb0]:not(first-child){margin-left:82%!important}.col-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f4300bb0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f4300bb0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f4300bb0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f4300bb0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-s-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-s-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-s-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-s-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f4300bb0]{display:none!important}.s-visible[data-v-f4300bb0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-m-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-m-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-m-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-m-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f4300bb0]{display:none!important}.m-visible[data-v-f4300bb0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-l-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-l-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-l-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-l-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f4300bb0]{display:none!important}.l-visible[data-v-f4300bb0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-xl-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-xl-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-xl-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xl-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f4300bb0]{display:none!important}.xl-visible[data-v-f4300bb0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f4300bb0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f4300bb0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f4300bb0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f4300bb0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f4300bb0]{margin-left:26%}.col-no-margin-xxl-3[data-v-f4300bb0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f4300bb0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f4300bb0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f4300bb0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f4300bb0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f4300bb0]{margin-left:52%}.col-no-margin-xxl-6[data-v-f4300bb0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f4300bb0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f4300bb0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f4300bb0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f4300bb0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f4300bb0]{margin-left:78%}.col-no-margin-xxl-9[data-v-f4300bb0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f4300bb0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f4300bb0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f4300bb0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f4300bb0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f4300bb0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f4300bb0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f4300bb0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f4300bb0]{display:none!important}.xxl-visible[data-v-f4300bb0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f4300bb0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f4300bb0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f4300bb0]{display:none!important}}.vertical-center[data-v-f4300bb0]{display:flex;align-items:center}.horizontal-center[data-v-f4300bb0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f4300bb0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f4300bb0]{display:none!important}.no-content[data-v-f4300bb0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f4300bb0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f4300bb0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f4300bb0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f4300bb0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f4300bb0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f4300bb0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f4300bb0],.btn[data-v-f4300bb0],button[data-v-f4300bb0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f4300bb0],.btn-default[type=submit][data-v-f4300bb0],.btn.btn-primary[data-v-f4300bb0],.btn[type=submit][data-v-f4300bb0],button.btn-primary[data-v-f4300bb0],button[type=submit][data-v-f4300bb0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f4300bb0],.btn-default .icon[data-v-f4300bb0],button .icon[data-v-f4300bb0]{margin-right:.5em}input[type=password][data-v-f4300bb0],input[type=text][data-v-f4300bb0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f4300bb0]:focus,input[type=text][data-v-f4300bb0]:focus{border:1px solid #35b870}button[data-v-f4300bb0],input[data-v-f4300bb0]{outline:none}input[type=text][data-v-f4300bb0]:hover,textarea[data-v-f4300bb0]:hover{border:1px solid #9cdfb0}ul[data-v-f4300bb0]{margin:0;padding:0;list-style:none}a[data-v-f4300bb0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f4300bb0]:hover{color:#35b870}[data-v-f4300bb0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f4300bb0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f4300bb0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f4300bb0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f4300bb0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f4300bb0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f4300bb0] .nav .path{cursor:pointer}.browser[data-v-f4300bb0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f4300bb0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-f4300bb0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f4300bb0],input[type=number][data-v-f4300bb0],input[type=password][data-v-f4300bb0],input[type=search][data-v-f4300bb0],input[type=text][data-v-f4300bb0],input[type=time][data-v-f4300bb0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-f4300bb0]:hover,input[type=number][data-v-f4300bb0]:hover,input[type=password][data-v-f4300bb0]:hover,input[type=search][data-v-f4300bb0]:hover,input[type=text][data-v-f4300bb0]:hover,input[type=time][data-v-f4300bb0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f4300bb0]:focus,input[type=number][data-v-f4300bb0]:focus,input[type=password][data-v-f4300bb0]:focus,input[type=search][data-v-f4300bb0]:focus,input[type=text][data-v-f4300bb0]:focus,input[type=time][data-v-f4300bb0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f4300bb0],input[type=number].with-icon[data-v-f4300bb0],input[type=password].with-icon[data-v-f4300bb0],input[type=search].with-icon[data-v-f4300bb0],input[type=text].with-icon[data-v-f4300bb0],input[type=time].with-icon[data-v-f4300bb0]{padding-left:.3em}input[type=search][data-v-f4300bb0],input[type=text][data-v-f4300bb0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f4300bb0]{animation-fill-mode:both;animation-name:fadeIn-f4300bb0;-webkit-animation-name:fadeIn-f4300bb0}.fade-in[data-v-f4300bb0],.fade-out[data-v-f4300bb0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f4300bb0]{animation-fill-mode:both;animation-name:fadeOut-f4300bb0;-webkit-animation-name:fadeOut-f4300bb0}@keyframes fadeIn-f4300bb0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f4300bb0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-f4300bb0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f4300bb0;-webkit-animation-name:glow-f4300bb0}.loop[data-v-f4300bb0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f4300bb0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f4300bb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f4300bb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f4300bb0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tabs[data-v-f4300bb0]{background:#f6f6f6;display:flex;flex-direction:row;align-items:flex-end;margin-top:.2em;margin-bottom:.2em;box-shadow:0 3px 2px -1px silver}pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*! - Theme: StackOverflow Dark - Description: Dark theme as used on stackoverflow.com - Author: stackoverflow.com - Maintainer: @Hirse - Website: https://github.com/StackExchange/Stacks - License: MIT - Updated: 2021-05-15 - - Updated for @stackoverflow/stacks v0.64.0 - Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less - Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less -*/.hljs{background:#1c1b1b}.hljs,.hljs-subst{color:#fff}.hljs-comment{color:#999}.hljs-attr,.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-section,.hljs-selector-tag{color:#88aece}.hljs-attribute{color:#c59bc1}.hljs-name,.hljs-number,.hljs-quote,.hljs-selector-id,.hljs-template-tag,.hljs-type{color:#f08d49}.hljs-selector-class{color:#88aece}.hljs-link,.hljs-regexp,.hljs-selector-attr,.hljs-string,.hljs-symbol,.hljs-template-variable,.hljs-variable{color:#b5bd68}.hljs-meta,.hljs-selector-pseudo{color:#88aece}.hljs-built_in,.hljs-literal,.hljs-title{color:#f08d49}.hljs-bullet,.hljs-code{color:#ccc}.hljs-meta .hljs-string{color:#b5bd68}.hljs-deletion{color:#de7176}.hljs-addition{color:#76c490}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7439.3e05b426.css b/platypush/backend/http/webapp/dist/static/css/7439.3e05b426.css new file mode 100644 index 0000000000..a3a3d685c4 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7439.3e05b426.css @@ -0,0 +1 @@ +.col-1[data-v-3656a799]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-1[data-v-3656a799]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3656a799]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3656a799]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3656a799]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-2[data-v-3656a799]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3656a799]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3656a799]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3656a799]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-3[data-v-3656a799]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3656a799]:first-child{margin-left:26%!important}.col-offset-3[data-v-3656a799]:not(first-child){margin-left:30%!important}.col-4[data-v-3656a799]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-4[data-v-3656a799]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3656a799]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3656a799]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3656a799]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-5[data-v-3656a799]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3656a799]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3656a799]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3656a799]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-6[data-v-3656a799]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3656a799]:first-child{margin-left:52%!important}.col-offset-6[data-v-3656a799]:not(first-child){margin-left:56%!important}.col-7[data-v-3656a799]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-7[data-v-3656a799]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3656a799]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3656a799]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3656a799]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-8[data-v-3656a799]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3656a799]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3656a799]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3656a799]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-9[data-v-3656a799]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3656a799]:first-child{margin-left:78%!important}.col-offset-9[data-v-3656a799]:not(first-child){margin-left:82%!important}.col-10[data-v-3656a799]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-10[data-v-3656a799]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3656a799]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3656a799]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3656a799]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3656a799]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3656a799]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-1[data-v-3656a799]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3656a799]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3656a799]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-2[data-v-3656a799]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3656a799]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3656a799]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-3[data-v-3656a799]{margin-left:26%}.col-no-margin-s-3[data-v-3656a799]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3656a799]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-4[data-v-3656a799]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3656a799]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3656a799]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-5[data-v-3656a799]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3656a799]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3656a799]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-6[data-v-3656a799]{margin-left:52%}.col-no-margin-s-6[data-v-3656a799]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3656a799]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-7[data-v-3656a799]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3656a799]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3656a799]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-8[data-v-3656a799]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3656a799]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3656a799]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-9[data-v-3656a799]{margin-left:78%}.col-no-margin-s-9[data-v-3656a799]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3656a799]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-10[data-v-3656a799]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3656a799]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3656a799]:first-child{margin-left:0}.col-offset-s-11[data-v-3656a799]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3656a799]{display:none!important}.s-visible[data-v-3656a799]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3656a799]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-1[data-v-3656a799]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3656a799]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3656a799]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-2[data-v-3656a799]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3656a799]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3656a799]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-3[data-v-3656a799]{margin-left:26%}.col-no-margin-m-3[data-v-3656a799]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3656a799]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-4[data-v-3656a799]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3656a799]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3656a799]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-5[data-v-3656a799]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3656a799]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3656a799]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-6[data-v-3656a799]{margin-left:52%}.col-no-margin-m-6[data-v-3656a799]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3656a799]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-7[data-v-3656a799]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3656a799]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3656a799]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-8[data-v-3656a799]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3656a799]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3656a799]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-9[data-v-3656a799]{margin-left:78%}.col-no-margin-m-9[data-v-3656a799]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3656a799]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-10[data-v-3656a799]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3656a799]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3656a799]:first-child{margin-left:0}.col-offset-m-11[data-v-3656a799]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3656a799]{display:none!important}.m-visible[data-v-3656a799]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3656a799]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-1[data-v-3656a799]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3656a799]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3656a799]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-2[data-v-3656a799]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3656a799]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3656a799]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-3[data-v-3656a799]{margin-left:26%}.col-no-margin-l-3[data-v-3656a799]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3656a799]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-4[data-v-3656a799]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3656a799]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3656a799]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-5[data-v-3656a799]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3656a799]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3656a799]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-6[data-v-3656a799]{margin-left:52%}.col-no-margin-l-6[data-v-3656a799]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3656a799]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-7[data-v-3656a799]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3656a799]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3656a799]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-8[data-v-3656a799]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3656a799]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3656a799]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-9[data-v-3656a799]{margin-left:78%}.col-no-margin-l-9[data-v-3656a799]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3656a799]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-10[data-v-3656a799]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3656a799]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3656a799]:first-child{margin-left:0}.col-offset-l-11[data-v-3656a799]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3656a799]{display:none!important}.l-visible[data-v-3656a799]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3656a799]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-1[data-v-3656a799]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3656a799]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3656a799]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-2[data-v-3656a799]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3656a799]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3656a799]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-3[data-v-3656a799]{margin-left:26%}.col-no-margin-xl-3[data-v-3656a799]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3656a799]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-4[data-v-3656a799]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3656a799]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3656a799]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-5[data-v-3656a799]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3656a799]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3656a799]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-6[data-v-3656a799]{margin-left:52%}.col-no-margin-xl-6[data-v-3656a799]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3656a799]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-7[data-v-3656a799]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3656a799]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3656a799]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-8[data-v-3656a799]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3656a799]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3656a799]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-9[data-v-3656a799]{margin-left:78%}.col-no-margin-xl-9[data-v-3656a799]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3656a799]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-10[data-v-3656a799]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3656a799]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3656a799]:first-child{margin-left:0}.col-offset-xl-11[data-v-3656a799]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3656a799]{display:none!important}.xl-visible[data-v-3656a799]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3656a799]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3656a799]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3656a799]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3656a799]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3656a799]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3656a799]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3656a799]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3656a799]{margin-left:26%}.col-no-margin-xxl-3[data-v-3656a799]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3656a799]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3656a799]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3656a799]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3656a799]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3656a799]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3656a799]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3656a799]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3656a799]{margin-left:52%}.col-no-margin-xxl-6[data-v-3656a799]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3656a799]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3656a799]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3656a799]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3656a799]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3656a799]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3656a799]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3656a799]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3656a799]{margin-left:78%}.col-no-margin-xxl-9[data-v-3656a799]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3656a799]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3656a799]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3656a799]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3656a799]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3656a799]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3656a799]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3656a799]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3656a799]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3656a799]{display:none!important}.xxl-visible[data-v-3656a799]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3656a799]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3656a799]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3656a799]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3656a799]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3656a799]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3656a799]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3656a799]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3656a799]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3656a799]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3656a799]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3656a799]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3656a799]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3656a799]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3656a799]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3656a799]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3656a799]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3656a799]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3656a799]{display:none!important}}.vertical-center[data-v-3656a799]{display:flex;align-items:center}.horizontal-center[data-v-3656a799]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3656a799]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3656a799]{display:none!important}.no-content[data-v-3656a799]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3656a799]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3656a799]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3656a799]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3656a799]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3656a799]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3656a799]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3656a799],.btn[data-v-3656a799],button[data-v-3656a799]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3656a799],.btn-default[type=submit][data-v-3656a799],.btn.btn-primary[data-v-3656a799],.btn[type=submit][data-v-3656a799],button.btn-primary[data-v-3656a799],button[type=submit][data-v-3656a799]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3656a799]:hover,.btn[data-v-3656a799]:hover,button[data-v-3656a799]:hover{color:#35b870}.btn .icon[data-v-3656a799],.btn-default .icon[data-v-3656a799],button .icon[data-v-3656a799]{margin-right:.5em}.btn-default[data-v-3656a799]:disabled,.btn-default[disabled][data-v-3656a799],.btn[data-v-3656a799]:disabled,.btn[disabled][data-v-3656a799],button[data-v-3656a799]:disabled,button[disabled][data-v-3656a799]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3656a799]{cursor:grab!important}.dragged[data-v-3656a799]{opacity:.5!important}input[type=password][data-v-3656a799],input[type=text][data-v-3656a799]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3656a799]:focus,input[type=text][data-v-3656a799]:focus{border:1px solid #35b870}button[data-v-3656a799],input[data-v-3656a799]{outline:none}input[type=text][data-v-3656a799]:hover,textarea[data-v-3656a799]:hover{border:1px solid #9cdfb0}ul[data-v-3656a799]{margin:0;padding:0;list-style:none}a[data-v-3656a799]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3656a799]:hover{color:#35b870}[data-v-3656a799]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3656a799]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3656a799]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3656a799]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3656a799]{color:#ad1717}body[data-v-3656a799]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3656a799] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3656a799] .nav .path{cursor:pointer}.browser[data-v-3656a799] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3656a799] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3656a799]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3656a799]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3656a799],input[type=number][data-v-3656a799],input[type=password][data-v-3656a799],input[type=search][data-v-3656a799],input[type=text][data-v-3656a799],input[type=time][data-v-3656a799]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3656a799]:hover,input[type=number][data-v-3656a799]:hover,input[type=password][data-v-3656a799]:hover,input[type=search][data-v-3656a799]:hover,input[type=text][data-v-3656a799]:hover,input[type=time][data-v-3656a799]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3656a799]:focus,input[type=number][data-v-3656a799]:focus,input[type=password][data-v-3656a799]:focus,input[type=search][data-v-3656a799]:focus,input[type=text][data-v-3656a799]:focus,input[type=time][data-v-3656a799]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3656a799],input[type=number].with-icon[data-v-3656a799],input[type=password].with-icon[data-v-3656a799],input[type=search].with-icon[data-v-3656a799],input[type=text].with-icon[data-v-3656a799],input[type=time].with-icon[data-v-3656a799]{padding-left:.3em}input[type=search][data-v-3656a799],input[type=text][data-v-3656a799]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3656a799]{animation-fill-mode:both;animation-name:fadeIn-3656a799;-webkit-animation-name:fadeIn-3656a799}.fade-in[data-v-3656a799],.fade-out[data-v-3656a799]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3656a799]{animation-fill-mode:both;animation-name:fadeOut-3656a799;-webkit-animation-name:fadeOut-3656a799}.expand[data-v-3656a799]{animation-fill-mode:both;animation-name:expand-3656a799;-webkit-animation-name:expand-3656a799}.expand[data-v-3656a799],.shrink[data-v-3656a799]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-3656a799]{animation-fill-mode:both;animation-name:shrink-3656a799;-webkit-animation-name:shrink-3656a799}.fold[data-v-3656a799]{animation-fill-mode:both;animation-name:fold-3656a799;-webkit-animation-name:fold-3656a799}.fold[data-v-3656a799],.unfold[data-v-3656a799]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-3656a799]{animation-fill-mode:both;animation-name:unfold-3656a799;-webkit-animation-name:unfold-3656a799}.dim[data-v-3656a799]{animation-fill-mode:both;animation-name:dim-3656a799;-webkit-animation-name:dim-3656a799}.brighten[data-v-3656a799],.dim[data-v-3656a799]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-3656a799]{animation-fill-mode:both;animation-name:brighten-3656a799;-webkit-animation-name:brighten-3656a799}@keyframes fadeIn-3656a799{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3656a799{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3656a799{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3656a799{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3656a799{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3656a799{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3656a799{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3656a799{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3656a799]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3656a799;-webkit-animation-name:glow-3656a799}.loop[data-v-3656a799]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3656a799{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3656a799]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3656a799]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3656a799]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-feed[data-v-3656a799]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/746.215dc404.css b/platypush/backend/http/webapp/dist/static/css/746.73f3ef00.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/746.215dc404.css rename to platypush/backend/http/webapp/dist/static/css/746.73f3ef00.css index cfbc807c5b..24eee9ea0a 100644 --- a/platypush/backend/http/webapp/dist/static/css/746.215dc404.css +++ b/platypush/backend/http/webapp/dist/static/css/746.73f3ef00.css @@ -1 +1 @@ -.col-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-911495ca]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-911495ca]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-911495ca]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-911495ca]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-911495ca]:first-child{margin-left:26%!important}.col-offset-3[data-v-911495ca]:not(first-child){margin-left:30%!important}.col-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-911495ca]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-911495ca]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-911495ca]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-911495ca]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-911495ca]:first-child{margin-left:52%!important}.col-offset-6[data-v-911495ca]:not(first-child){margin-left:56%!important}.col-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-911495ca]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-911495ca]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-911495ca]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-911495ca]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-911495ca]:first-child{margin-left:78%!important}.col-offset-9[data-v-911495ca]:not(first-child){margin-left:82%!important}.col-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-911495ca]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-911495ca]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-911495ca]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-911495ca]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-3[data-v-911495ca]{margin-left:26%}.col-no-margin-s-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-6[data-v-911495ca]{margin-left:52%}.col-no-margin-s-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-9[data-v-911495ca]{margin-left:78%}.col-no-margin-s-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-s-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-911495ca]{display:none!important}.s-visible[data-v-911495ca]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-3[data-v-911495ca]{margin-left:26%}.col-no-margin-m-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-6[data-v-911495ca]{margin-left:52%}.col-no-margin-m-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-9[data-v-911495ca]{margin-left:78%}.col-no-margin-m-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-m-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-911495ca]{display:none!important}.m-visible[data-v-911495ca]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-3[data-v-911495ca]{margin-left:26%}.col-no-margin-l-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-6[data-v-911495ca]{margin-left:52%}.col-no-margin-l-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-9[data-v-911495ca]{margin-left:78%}.col-no-margin-l-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-l-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-911495ca]{display:none!important}.l-visible[data-v-911495ca]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-3[data-v-911495ca]{margin-left:26%}.col-no-margin-xl-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-6[data-v-911495ca]{margin-left:52%}.col-no-margin-xl-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-9[data-v-911495ca]{margin-left:78%}.col-no-margin-xl-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-911495ca]{display:none!important}.xl-visible[data-v-911495ca]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-3[data-v-911495ca]{margin-left:26%}.col-no-margin-xxl-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-6[data-v-911495ca]{margin-left:52%}.col-no-margin-xxl-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-9[data-v-911495ca]{margin-left:78%}.col-no-margin-xxl-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-911495ca]{display:none!important}.xxl-visible[data-v-911495ca]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-911495ca]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-911495ca]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-911495ca]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-911495ca]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-911495ca]{display:none!important}}.vertical-center[data-v-911495ca]{display:flex;align-items:center}.horizontal-center[data-v-911495ca]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-911495ca]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-911495ca]{display:none!important}.no-content[data-v-911495ca]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-911495ca]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-911495ca]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-911495ca]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-911495ca]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-911495ca]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-911495ca]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-911495ca],.btn[data-v-911495ca],button[data-v-911495ca]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-911495ca],.btn-default[type=submit][data-v-911495ca],.btn.btn-primary[data-v-911495ca],.btn[type=submit][data-v-911495ca],button.btn-primary[data-v-911495ca],button[type=submit][data-v-911495ca]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-911495ca],.btn-default .icon[data-v-911495ca],button .icon[data-v-911495ca]{margin-right:.5em}input[type=password][data-v-911495ca],input[type=text][data-v-911495ca]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-911495ca]:focus,input[type=text][data-v-911495ca]:focus{border:1px solid #35b870}button[data-v-911495ca],input[data-v-911495ca]{outline:none}input[type=text][data-v-911495ca]:hover,textarea[data-v-911495ca]:hover{border:1px solid #9cdfb0}ul[data-v-911495ca]{margin:0;padding:0;list-style:none}a[data-v-911495ca]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-911495ca]:hover{color:#35b870}[data-v-911495ca]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-911495ca]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-911495ca]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-911495ca]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-911495ca]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-911495ca] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-911495ca] .nav .path{cursor:pointer}.browser[data-v-911495ca] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-911495ca] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-911495ca]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-911495ca],input[type=number][data-v-911495ca],input[type=password][data-v-911495ca],input[type=search][data-v-911495ca],input[type=text][data-v-911495ca],input[type=time][data-v-911495ca]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-911495ca]:hover,input[type=number][data-v-911495ca]:hover,input[type=password][data-v-911495ca]:hover,input[type=search][data-v-911495ca]:hover,input[type=text][data-v-911495ca]:hover,input[type=time][data-v-911495ca]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-911495ca]:focus,input[type=number][data-v-911495ca]:focus,input[type=password][data-v-911495ca]:focus,input[type=search][data-v-911495ca]:focus,input[type=text][data-v-911495ca]:focus,input[type=time][data-v-911495ca]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-911495ca],input[type=number].with-icon[data-v-911495ca],input[type=password].with-icon[data-v-911495ca],input[type=search].with-icon[data-v-911495ca],input[type=text].with-icon[data-v-911495ca],input[type=time].with-icon[data-v-911495ca]{padding-left:.3em}input[type=search][data-v-911495ca],input[type=text][data-v-911495ca]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-911495ca]{animation-fill-mode:both;animation-name:fadeIn-911495ca;-webkit-animation-name:fadeIn-911495ca}.fade-in[data-v-911495ca],.fade-out[data-v-911495ca]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-911495ca]{animation-fill-mode:both;animation-name:fadeOut-911495ca;-webkit-animation-name:fadeOut-911495ca}@keyframes fadeIn-911495ca{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-911495ca{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-911495ca]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-911495ca;-webkit-animation-name:glow-911495ca}.loop[data-v-911495ca]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-911495ca{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-911495ca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-911495ca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-911495ca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.sound[data-v-911495ca]{width:100%;height:90%;margin-top:7%;overflow:hidden;display:flex;flex-direction:column;align-items:center}.sound .sound-container[data-v-911495ca]{margin-bottom:1em} \ No newline at end of file +.col-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-911495ca]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-911495ca]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-911495ca]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-911495ca]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-911495ca]:first-child{margin-left:26%!important}.col-offset-3[data-v-911495ca]:not(first-child){margin-left:30%!important}.col-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-911495ca]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-911495ca]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-911495ca]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-911495ca]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-911495ca]:first-child{margin-left:52%!important}.col-offset-6[data-v-911495ca]:not(first-child){margin-left:56%!important}.col-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-911495ca]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-911495ca]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-911495ca]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-911495ca]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-911495ca]:first-child{margin-left:78%!important}.col-offset-9[data-v-911495ca]:not(first-child){margin-left:82%!important}.col-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-911495ca]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-911495ca]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-911495ca]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-911495ca]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-3[data-v-911495ca]{margin-left:26%}.col-no-margin-s-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-6[data-v-911495ca]{margin-left:52%}.col-no-margin-s-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-9[data-v-911495ca]{margin-left:78%}.col-no-margin-s-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-s-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-s-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-911495ca]{display:none!important}.s-visible[data-v-911495ca]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-3[data-v-911495ca]{margin-left:26%}.col-no-margin-m-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-6[data-v-911495ca]{margin-left:52%}.col-no-margin-m-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-9[data-v-911495ca]{margin-left:78%}.col-no-margin-m-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-m-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-m-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-911495ca]{display:none!important}.m-visible[data-v-911495ca]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-3[data-v-911495ca]{margin-left:26%}.col-no-margin-l-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-6[data-v-911495ca]{margin-left:52%}.col-no-margin-l-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-9[data-v-911495ca]{margin-left:78%}.col-no-margin-l-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-l-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-l-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-911495ca]{display:none!important}.l-visible[data-v-911495ca]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-3[data-v-911495ca]{margin-left:26%}.col-no-margin-xl-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-6[data-v-911495ca]{margin-left:52%}.col-no-margin-xl-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-9[data-v-911495ca]{margin-left:78%}.col-no-margin-xl-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-xl-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-911495ca]{display:none!important}.xl-visible[data-v-911495ca]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-911495ca]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-1[data-v-911495ca]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-911495ca]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-911495ca]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-2[data-v-911495ca]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-911495ca]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-911495ca]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-3[data-v-911495ca]{margin-left:26%}.col-no-margin-xxl-3[data-v-911495ca]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-911495ca]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-4[data-v-911495ca]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-911495ca]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-911495ca]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-5[data-v-911495ca]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-911495ca]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-911495ca]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-6[data-v-911495ca]{margin-left:52%}.col-no-margin-xxl-6[data-v-911495ca]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-911495ca]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-7[data-v-911495ca]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-911495ca]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-911495ca]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-8[data-v-911495ca]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-911495ca]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-911495ca]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-9[data-v-911495ca]{margin-left:78%}.col-no-margin-xxl-9[data-v-911495ca]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-911495ca]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-10[data-v-911495ca]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-911495ca]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-911495ca]:first-child{margin-left:0}.col-offset-xxl-11[data-v-911495ca]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-911495ca]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-911495ca]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-911495ca]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-911495ca]{display:none!important}.xxl-visible[data-v-911495ca]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-911495ca]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-911495ca]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-911495ca]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-911495ca]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-911495ca]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-911495ca]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-911495ca]{display:none!important}}.vertical-center[data-v-911495ca]{display:flex;align-items:center}.horizontal-center[data-v-911495ca]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-911495ca]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-911495ca]{display:none!important}.no-content[data-v-911495ca]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-911495ca]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-911495ca]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-911495ca]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-911495ca]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-911495ca]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-911495ca]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-911495ca],.btn[data-v-911495ca],button[data-v-911495ca]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-911495ca],.btn-default[type=submit][data-v-911495ca],.btn.btn-primary[data-v-911495ca],.btn[type=submit][data-v-911495ca],button.btn-primary[data-v-911495ca],button[type=submit][data-v-911495ca]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-911495ca]:hover,.btn[data-v-911495ca]:hover,button[data-v-911495ca]:hover{color:#35b870}.btn .icon[data-v-911495ca],.btn-default .icon[data-v-911495ca],button .icon[data-v-911495ca]{margin-right:.5em}.btn-default[data-v-911495ca]:disabled,.btn-default[disabled][data-v-911495ca],.btn[data-v-911495ca]:disabled,.btn[disabled][data-v-911495ca],button[data-v-911495ca]:disabled,button[disabled][data-v-911495ca]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-911495ca]{cursor:grab!important}.dragged[data-v-911495ca]{opacity:.5!important}input[type=password][data-v-911495ca],input[type=text][data-v-911495ca]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-911495ca]:focus,input[type=text][data-v-911495ca]:focus{border:1px solid #35b870}button[data-v-911495ca],input[data-v-911495ca]{outline:none}input[type=text][data-v-911495ca]:hover,textarea[data-v-911495ca]:hover{border:1px solid #9cdfb0}ul[data-v-911495ca]{margin:0;padding:0;list-style:none}a[data-v-911495ca]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-911495ca]:hover{color:#35b870}[data-v-911495ca]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-911495ca]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-911495ca]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-911495ca]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-911495ca]{color:#ad1717}body[data-v-911495ca]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-911495ca] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-911495ca] .nav .path{cursor:pointer}.browser[data-v-911495ca] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-911495ca] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-911495ca]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-911495ca]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-911495ca],input[type=number][data-v-911495ca],input[type=password][data-v-911495ca],input[type=search][data-v-911495ca],input[type=text][data-v-911495ca],input[type=time][data-v-911495ca]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-911495ca]:hover,input[type=number][data-v-911495ca]:hover,input[type=password][data-v-911495ca]:hover,input[type=search][data-v-911495ca]:hover,input[type=text][data-v-911495ca]:hover,input[type=time][data-v-911495ca]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-911495ca]:focus,input[type=number][data-v-911495ca]:focus,input[type=password][data-v-911495ca]:focus,input[type=search][data-v-911495ca]:focus,input[type=text][data-v-911495ca]:focus,input[type=time][data-v-911495ca]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-911495ca],input[type=number].with-icon[data-v-911495ca],input[type=password].with-icon[data-v-911495ca],input[type=search].with-icon[data-v-911495ca],input[type=text].with-icon[data-v-911495ca],input[type=time].with-icon[data-v-911495ca]{padding-left:.3em}input[type=search][data-v-911495ca],input[type=text][data-v-911495ca]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-911495ca]{animation-fill-mode:both;animation-name:fadeIn-911495ca;-webkit-animation-name:fadeIn-911495ca}.fade-in[data-v-911495ca],.fade-out[data-v-911495ca]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-911495ca]{animation-fill-mode:both;animation-name:fadeOut-911495ca;-webkit-animation-name:fadeOut-911495ca}.expand[data-v-911495ca]{animation-fill-mode:both;animation-name:expand-911495ca;-webkit-animation-name:expand-911495ca}.expand[data-v-911495ca],.shrink[data-v-911495ca]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-911495ca]{animation-fill-mode:both;animation-name:shrink-911495ca;-webkit-animation-name:shrink-911495ca}.fold[data-v-911495ca]{animation-fill-mode:both;animation-name:fold-911495ca;-webkit-animation-name:fold-911495ca}.fold[data-v-911495ca],.unfold[data-v-911495ca]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-911495ca]{animation-fill-mode:both;animation-name:unfold-911495ca;-webkit-animation-name:unfold-911495ca}.dim[data-v-911495ca]{animation-fill-mode:both;animation-name:dim-911495ca;-webkit-animation-name:dim-911495ca}.brighten[data-v-911495ca],.dim[data-v-911495ca]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-911495ca]{animation-fill-mode:both;animation-name:brighten-911495ca;-webkit-animation-name:brighten-911495ca}@keyframes fadeIn-911495ca{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-911495ca{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-911495ca{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-911495ca{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-911495ca{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-911495ca{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-911495ca{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-911495ca{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-911495ca]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-911495ca;-webkit-animation-name:glow-911495ca}.loop[data-v-911495ca]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-911495ca{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-911495ca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-911495ca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-911495ca]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.sound[data-v-911495ca]{width:100%;height:90%;margin-top:7%;overflow:hidden;display:flex;flex-direction:column;align-items:center}.sound .sound-container[data-v-911495ca]{margin-bottom:1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7503.ef90df2a.css b/platypush/backend/http/webapp/dist/static/css/7503.ef90df2a.css new file mode 100644 index 0000000000..3dede47549 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7503.ef90df2a.css @@ -0,0 +1 @@ +.col-1[data-v-293192dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-1[data-v-293192dc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-293192dc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-293192dc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-293192dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-2[data-v-293192dc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-293192dc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-293192dc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-293192dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-3[data-v-293192dc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-293192dc]:first-child{margin-left:26%!important}.col-offset-3[data-v-293192dc]:not(first-child){margin-left:30%!important}.col-4[data-v-293192dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-4[data-v-293192dc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-293192dc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-293192dc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-293192dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-5[data-v-293192dc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-293192dc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-293192dc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-293192dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-6[data-v-293192dc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-293192dc]:first-child{margin-left:52%!important}.col-offset-6[data-v-293192dc]:not(first-child){margin-left:56%!important}.col-7[data-v-293192dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-7[data-v-293192dc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-293192dc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-293192dc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-293192dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-8[data-v-293192dc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-293192dc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-293192dc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-293192dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-9[data-v-293192dc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-293192dc]:first-child{margin-left:78%!important}.col-offset-9[data-v-293192dc]:not(first-child){margin-left:82%!important}.col-10[data-v-293192dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-10[data-v-293192dc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-293192dc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-293192dc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-293192dc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-293192dc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-293192dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-1[data-v-293192dc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-293192dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-293192dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-2[data-v-293192dc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-293192dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-293192dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-3[data-v-293192dc]{margin-left:26%}.col-no-margin-s-3[data-v-293192dc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-293192dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-4[data-v-293192dc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-293192dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-293192dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-5[data-v-293192dc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-293192dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-293192dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-6[data-v-293192dc]{margin-left:52%}.col-no-margin-s-6[data-v-293192dc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-293192dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-7[data-v-293192dc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-293192dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-293192dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-8[data-v-293192dc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-293192dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-293192dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-9[data-v-293192dc]{margin-left:78%}.col-no-margin-s-9[data-v-293192dc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-293192dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-10[data-v-293192dc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-293192dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-293192dc]:first-child{margin-left:0}.col-offset-s-11[data-v-293192dc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-293192dc]{display:none!important}.s-visible[data-v-293192dc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-293192dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-1[data-v-293192dc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-293192dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-293192dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-2[data-v-293192dc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-293192dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-293192dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-3[data-v-293192dc]{margin-left:26%}.col-no-margin-m-3[data-v-293192dc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-293192dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-4[data-v-293192dc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-293192dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-293192dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-5[data-v-293192dc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-293192dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-293192dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-6[data-v-293192dc]{margin-left:52%}.col-no-margin-m-6[data-v-293192dc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-293192dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-7[data-v-293192dc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-293192dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-293192dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-8[data-v-293192dc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-293192dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-293192dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-9[data-v-293192dc]{margin-left:78%}.col-no-margin-m-9[data-v-293192dc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-293192dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-10[data-v-293192dc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-293192dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-293192dc]:first-child{margin-left:0}.col-offset-m-11[data-v-293192dc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-293192dc]{display:none!important}.m-visible[data-v-293192dc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-293192dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-1[data-v-293192dc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-293192dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-293192dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-2[data-v-293192dc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-293192dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-293192dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-3[data-v-293192dc]{margin-left:26%}.col-no-margin-l-3[data-v-293192dc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-293192dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-4[data-v-293192dc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-293192dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-293192dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-5[data-v-293192dc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-293192dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-293192dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-6[data-v-293192dc]{margin-left:52%}.col-no-margin-l-6[data-v-293192dc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-293192dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-7[data-v-293192dc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-293192dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-293192dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-8[data-v-293192dc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-293192dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-293192dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-9[data-v-293192dc]{margin-left:78%}.col-no-margin-l-9[data-v-293192dc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-293192dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-10[data-v-293192dc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-293192dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-293192dc]:first-child{margin-left:0}.col-offset-l-11[data-v-293192dc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-293192dc]{display:none!important}.l-visible[data-v-293192dc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-293192dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-1[data-v-293192dc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-293192dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-293192dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-2[data-v-293192dc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-293192dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-293192dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-3[data-v-293192dc]{margin-left:26%}.col-no-margin-xl-3[data-v-293192dc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-293192dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-4[data-v-293192dc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-293192dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-293192dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-5[data-v-293192dc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-293192dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-293192dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-6[data-v-293192dc]{margin-left:52%}.col-no-margin-xl-6[data-v-293192dc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-293192dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-7[data-v-293192dc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-293192dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-293192dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-8[data-v-293192dc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-293192dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-293192dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-9[data-v-293192dc]{margin-left:78%}.col-no-margin-xl-9[data-v-293192dc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-293192dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-10[data-v-293192dc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-293192dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-293192dc]:first-child{margin-left:0}.col-offset-xl-11[data-v-293192dc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-293192dc]{display:none!important}.xl-visible[data-v-293192dc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-293192dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-293192dc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-293192dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-293192dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-293192dc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-293192dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-293192dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-293192dc]{margin-left:26%}.col-no-margin-xxl-3[data-v-293192dc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-293192dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-293192dc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-293192dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-293192dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-293192dc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-293192dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-293192dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-293192dc]{margin-left:52%}.col-no-margin-xxl-6[data-v-293192dc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-293192dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-293192dc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-293192dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-293192dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-293192dc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-293192dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-293192dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-293192dc]{margin-left:78%}.col-no-margin-xxl-9[data-v-293192dc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-293192dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-293192dc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-293192dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-293192dc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-293192dc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-293192dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-293192dc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-293192dc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-293192dc]{display:none!important}.xxl-visible[data-v-293192dc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-293192dc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-293192dc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-293192dc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-293192dc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-293192dc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-293192dc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-293192dc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-293192dc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-293192dc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-293192dc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-293192dc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-293192dc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-293192dc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-293192dc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-293192dc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-293192dc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-293192dc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-293192dc]{display:none!important}}.vertical-center[data-v-293192dc]{display:flex;align-items:center}.horizontal-center[data-v-293192dc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-293192dc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-293192dc]{display:none!important}.no-content[data-v-293192dc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-293192dc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-293192dc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-293192dc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-293192dc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-293192dc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-293192dc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-293192dc],.btn[data-v-293192dc],button[data-v-293192dc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-293192dc],.btn-default[type=submit][data-v-293192dc],.btn.btn-primary[data-v-293192dc],.btn[type=submit][data-v-293192dc],button.btn-primary[data-v-293192dc],button[type=submit][data-v-293192dc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-293192dc]:hover,.btn[data-v-293192dc]:hover,button[data-v-293192dc]:hover{color:#35b870}.btn .icon[data-v-293192dc],.btn-default .icon[data-v-293192dc],button .icon[data-v-293192dc]{margin-right:.5em}.btn-default[data-v-293192dc]:disabled,.btn-default[disabled][data-v-293192dc],.btn[data-v-293192dc]:disabled,.btn[disabled][data-v-293192dc],button[data-v-293192dc]:disabled,button[disabled][data-v-293192dc]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-293192dc]{cursor:grab!important}.dragged[data-v-293192dc]{opacity:.5!important}input[type=password][data-v-293192dc],input[type=text][data-v-293192dc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-293192dc]:focus,input[type=text][data-v-293192dc]:focus{border:1px solid #35b870}button[data-v-293192dc],input[data-v-293192dc]{outline:none}input[type=text][data-v-293192dc]:hover,textarea[data-v-293192dc]:hover{border:1px solid #9cdfb0}ul[data-v-293192dc]{margin:0;padding:0;list-style:none}a[data-v-293192dc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-293192dc]:hover{color:#35b870}[data-v-293192dc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-293192dc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-293192dc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-293192dc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-293192dc]{color:#ad1717}body[data-v-293192dc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-293192dc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-293192dc] .nav .path{cursor:pointer}.browser[data-v-293192dc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-293192dc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-293192dc]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-293192dc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-293192dc],input[type=number][data-v-293192dc],input[type=password][data-v-293192dc],input[type=search][data-v-293192dc],input[type=text][data-v-293192dc],input[type=time][data-v-293192dc]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-293192dc]:hover,input[type=number][data-v-293192dc]:hover,input[type=password][data-v-293192dc]:hover,input[type=search][data-v-293192dc]:hover,input[type=text][data-v-293192dc]:hover,input[type=time][data-v-293192dc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-293192dc]:focus,input[type=number][data-v-293192dc]:focus,input[type=password][data-v-293192dc]:focus,input[type=search][data-v-293192dc]:focus,input[type=text][data-v-293192dc]:focus,input[type=time][data-v-293192dc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-293192dc],input[type=number].with-icon[data-v-293192dc],input[type=password].with-icon[data-v-293192dc],input[type=search].with-icon[data-v-293192dc],input[type=text].with-icon[data-v-293192dc],input[type=time].with-icon[data-v-293192dc]{padding-left:.3em}input[type=search][data-v-293192dc],input[type=text][data-v-293192dc]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-293192dc]{animation-fill-mode:both;animation-name:fadeIn-293192dc;-webkit-animation-name:fadeIn-293192dc}.fade-in[data-v-293192dc],.fade-out[data-v-293192dc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-293192dc]{animation-fill-mode:both;animation-name:fadeOut-293192dc;-webkit-animation-name:fadeOut-293192dc}.expand[data-v-293192dc]{animation-fill-mode:both;animation-name:expand-293192dc;-webkit-animation-name:expand-293192dc}.expand[data-v-293192dc],.shrink[data-v-293192dc]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-293192dc]{animation-fill-mode:both;animation-name:shrink-293192dc;-webkit-animation-name:shrink-293192dc}.fold[data-v-293192dc]{animation-fill-mode:both;animation-name:fold-293192dc;-webkit-animation-name:fold-293192dc}.fold[data-v-293192dc],.unfold[data-v-293192dc]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-293192dc]{animation-fill-mode:both;animation-name:unfold-293192dc;-webkit-animation-name:unfold-293192dc}.dim[data-v-293192dc]{animation-fill-mode:both;animation-name:dim-293192dc;-webkit-animation-name:dim-293192dc}.brighten[data-v-293192dc],.dim[data-v-293192dc]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-293192dc]{animation-fill-mode:both;animation-name:brighten-293192dc;-webkit-animation-name:brighten-293192dc}@keyframes fadeIn-293192dc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-293192dc{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-293192dc{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-293192dc{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-293192dc{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-293192dc{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-293192dc{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-293192dc{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-293192dc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-293192dc;-webkit-animation-name:glow-293192dc}.loop[data-v-293192dc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-293192dc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-293192dc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-293192dc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-293192dc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-subscriptions[data-v-293192dc]{height:100%}.media-youtube-subscriptions .channel.item[data-v-293192dc]{display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;box-shadow:0 3px 2px -1px silver;border-radius:.5em;cursor:pointer}.media-youtube-subscriptions .channel.item .image[data-v-293192dc]{width:100%;height:10em;display:flex;align-items:center;justify-content:center}.media-youtube-subscriptions .channel.item .image img[data-v-293192dc]{width:5em;height:5em;border-radius:.5em;transition:filter .2s ease-in-out}.media-youtube-subscriptions .channel.item .title[data-v-293192dc]{font-size:1.1em;margin-top:.5em}.media-youtube-subscriptions .channel.item[data-v-293192dc]:hover{text-decoration:underline}.media-youtube-subscriptions .channel.item:hover img[data-v-293192dc]{filter:contrast(70%)}.media-youtube-subscriptions .subscription-body[data-v-293192dc]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7528.e72123ff.css b/platypush/backend/http/webapp/dist/static/css/7528.e72123ff.css new file mode 100644 index 0000000000..c1f4ffd38c --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7528.e72123ff.css @@ -0,0 +1 @@ +.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.camera{width:100%;height:100%;background:#fff;overflow:auto;padding-top:3em;position:relative}.camera,.camera .camera-container{display:flex;flex-direction:column;align-items:center}.camera .camera-container{background:#101520}.camera .camera-container .frame-canvas{position:relative;display:flex;justify-content:center;align-items:center;background:#000}.camera .camera-container .frame-container{max-width:100%;max-height:100%;position:relative}.camera .camera-container.fullscreen{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1000}.camera .camera-container.fullscreen .frame-canvas{width:100%;height:calc(100% - 3.5em)}.camera .camera-container .frame,.camera .camera-container .no-frame{position:absolute;top:0;width:100%;height:100%}.camera .camera-container .frame{z-index:1}.camera .camera-container .no-frame{display:flex;color:#fff;align-items:center;justify-content:center;z-index:2;background:#000}.camera .camera-container .controls{width:100%;height:3.5em;display:flex;border-top:1px solid #202530;padding:.5em .25em}.camera .camera-container .controls .left,.camera .camera-container .controls .right{width:50%}.camera .camera-container .controls .right{text-align:right}.camera .camera-container .controls button{background:none;color:#fff;border:none}.camera .camera-container .controls button:hover{color:#38cf80}.camera .url{display:flex;margin:1em}@media screen and (max-width:calc(769px - 1px)){.camera .url{width:80%}}@media screen and (min-width:769px){.camera .url{width:640px}}.camera .url .row{width:100%;display:flex;align-items:center}.camera .url .name{width:140px}.camera .url input{width:500px;font-weight:400}.camera .params{display:flex;flex-direction:column;margin:-2em}@media screen and (min-width:769px){.camera .params{width:640px}}.camera .params label{font-weight:400}.camera .params .head{display:flex;justify-content:center}.camera .params .head label{width:100%;display:flex;justify-content:right}.camera .params .head label .name{margin-right:1em}.camera .params .row{width:100%;display:flex;align-items:center;padding:.5em 1em}.camera .params .row .name{width:30%}.camera .params .row input{width:70%}.camera .params .row:nth-child(2n){background:#f1f3f2}.camera .params .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.camera .modal-container{z-index:1000}@media screen and (max-width:calc(769px - 1px)){.camera .modal .content{width:90%!important}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7590.db11c095.css b/platypush/backend/http/webapp/dist/static/css/7590.062e0c94.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/7590.db11c095.css rename to platypush/backend/http/webapp/dist/static/css/7590.062e0c94.css index a748f7b1b2..e0f2157641 100644 --- a/platypush/backend/http/webapp/dist/static/css/7590.db11c095.css +++ b/platypush/backend/http/webapp/dist/static/css/7590.062e0c94.css @@ -1 +1 @@ -.col-1[data-v-4b2ced66],.entity .head .icon[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4b2ced66]:first-child,.entity .head .icon[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4b2ced66]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4b2ced66]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4b2ced66]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4b2ced66]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4b2ced66],.entity .head .value-and-toggler[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4b2ced66]:first-child,.entity .head .value-and-toggler[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4b2ced66]:first-child{margin-left:26%!important}.col-offset-3[data-v-4b2ced66]:not(first-child){margin-left:30%!important}.col-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4b2ced66]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4b2ced66]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4b2ced66]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4b2ced66]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4b2ced66]:first-child{margin-left:52%!important}.col-offset-6[data-v-4b2ced66]:not(first-child){margin-left:56%!important}.col-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4b2ced66]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4b2ced66]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4b2ced66]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4b2ced66]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4b2ced66]:first-child{margin-left:78%!important}.col-offset-9[data-v-4b2ced66]:not(first-child){margin-left:82%!important}.col-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4b2ced66]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4b2ced66]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4b2ced66]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4b2ced66]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4b2ced66],.entity .head .value-container[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4b2ced66]:first-child,.entity .head .value-container[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-s-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-s-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4b2ced66],.entity .head .label[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4b2ced66]:first-child,.entity .head .label[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-s-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-4b2ced66],.attributes .child .value[data-v-4b2ced66],.col-s-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-4b2ced66]:first-child,.attributes .child .value[data-v-4b2ced66]:first-child,.col-s-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4b2ced66]{display:none!important}.s-visible[data-v-4b2ced66]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4b2ced66],.entity .head .value-container[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4b2ced66]:first-child,.entity .head .value-container[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-m-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-4b2ced66],.attributes .child .value[data-v-4b2ced66],.col-m-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-4b2ced66]:first-child,.attributes .child .value[data-v-4b2ced66]:first-child,.col-m-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-m-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4b2ced66],.entity .head .label[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4b2ced66]:first-child,.entity .head .label[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-m-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4b2ced66]{display:none!important}.m-visible[data-v-4b2ced66]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-l-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-l-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-l-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4b2ced66]{display:none!important}.l-visible[data-v-4b2ced66]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-xl-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-xl-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-xl-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4b2ced66]{display:none!important}.xl-visible[data-v-4b2ced66]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-xxl-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-xxl-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-xxl-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4b2ced66]{display:none!important}.xxl-visible[data-v-4b2ced66]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4b2ced66]{display:none!important}}.vertical-center[data-v-4b2ced66]{display:flex;align-items:center}.horizontal-center[data-v-4b2ced66]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-4b2ced66],.pull-right[data-v-4b2ced66]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4b2ced66]{display:none!important}.no-content[data-v-4b2ced66]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4b2ced66]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4b2ced66]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4b2ced66]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4b2ced66]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4b2ced66]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4b2ced66]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4b2ced66],.btn[data-v-4b2ced66],button[data-v-4b2ced66]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4b2ced66],.btn-default[type=submit][data-v-4b2ced66],.btn.btn-primary[data-v-4b2ced66],.btn[type=submit][data-v-4b2ced66],button.btn-primary[data-v-4b2ced66],button[type=submit][data-v-4b2ced66]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4b2ced66],.btn-default .icon[data-v-4b2ced66],button .icon[data-v-4b2ced66]{margin-right:.5em}input[type=password][data-v-4b2ced66],input[type=text][data-v-4b2ced66]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4b2ced66]:focus,input[type=text][data-v-4b2ced66]:focus{border:1px solid #35b870}button[data-v-4b2ced66],input[data-v-4b2ced66]{outline:none}input[type=text][data-v-4b2ced66]:hover,textarea[data-v-4b2ced66]:hover{border:1px solid #9cdfb0}ul[data-v-4b2ced66]{margin:0;padding:0;list-style:none}a[data-v-4b2ced66]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4b2ced66]:hover{color:#35b870}[data-v-4b2ced66]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4b2ced66]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4b2ced66]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4b2ced66]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4b2ced66]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4b2ced66] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4b2ced66] .nav .path{cursor:pointer}.browser[data-v-4b2ced66] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4b2ced66] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4b2ced66]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4b2ced66],input[type=number][data-v-4b2ced66],input[type=password][data-v-4b2ced66],input[type=search][data-v-4b2ced66],input[type=text][data-v-4b2ced66],input[type=time][data-v-4b2ced66]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4b2ced66]:hover,input[type=number][data-v-4b2ced66]:hover,input[type=password][data-v-4b2ced66]:hover,input[type=search][data-v-4b2ced66]:hover,input[type=text][data-v-4b2ced66]:hover,input[type=time][data-v-4b2ced66]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4b2ced66]:focus,input[type=number][data-v-4b2ced66]:focus,input[type=password][data-v-4b2ced66]:focus,input[type=search][data-v-4b2ced66]:focus,input[type=text][data-v-4b2ced66]:focus,input[type=time][data-v-4b2ced66]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4b2ced66],input[type=number].with-icon[data-v-4b2ced66],input[type=password].with-icon[data-v-4b2ced66],input[type=search].with-icon[data-v-4b2ced66],input[type=text].with-icon[data-v-4b2ced66],input[type=time].with-icon[data-v-4b2ced66]{padding-left:.3em}input[type=search][data-v-4b2ced66],input[type=text][data-v-4b2ced66]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-4b2ced66],.fade-in[data-v-4b2ced66]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-4b2ced66;-webkit-animation-name:fadeIn-4b2ced66}.fade-out[data-v-4b2ced66]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-4b2ced66;-webkit-animation-name:fadeOut-4b2ced66}@keyframes fadeIn-4b2ced66{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4b2ced66{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-4b2ced66]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4b2ced66;-webkit-animation-name:glow-4b2ced66}.loop[data-v-4b2ced66]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4b2ced66{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4b2ced66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4b2ced66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4b2ced66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-4b2ced66]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-4b2ced66]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-4b2ced66]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-4b2ced66]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-4b2ced66]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-4b2ced66]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-4b2ced66]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-4b2ced66]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-4b2ced66]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-4b2ced66]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-4b2ced66]{margin-right:.5em}.entity .head .icon[data-v-4b2ced66]:hover{color:#35b870}.entity .head .label[data-v-4b2ced66]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-4b2ced66]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-4b2ced66]:hover{color:#35b870}.entity .head .value[data-v-4b2ced66]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-4b2ced66]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-4b2ced66]{margin-right:2.5em}.entity .head .value-container[data-v-4b2ced66]{min-width:7em}.entity .head .unit[data-v-4b2ced66]{margin-left:.2em}.entity .head .pull-right[data-v-4b2ced66],.entity .head .value-container[data-v-4b2ced66]{padding-right:.5em}.entity .head .pull-right[data-v-4b2ced66] .power-switch,.entity .head .value-container[data-v-4b2ced66] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-4b2ced66]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-4b2ced66]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-4b2ced66]:hover{color:#35b870}.collapse-toggler[data-v-4b2ced66]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-4b2ced66]:hover{color:#35b870}.attributes .child[data-v-4b2ced66]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-4b2ced66]{flex-direction:column}}.attributes .child[data-v-4b2ced66]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-4b2ced66]:hover{cursor:auto}.attributes .child.head[data-v-4b2ced66]{cursor:pointer}.attributes .child.head[data-v-4b2ced66]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-4b2ced66]{font-weight:700}.attributes .child .value[data-v-4b2ced66]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-4b2ced66]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-4b2ced66]:last-child,.entity-container-wrapper.with-children[data-v-4b2ced66]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-4b2ced66]{animation:blink-animation-4b2ced66 1s steps(20,start)}@keyframes blink-animation-4b2ced66{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-4b2ced66],.entity .head .icon[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4b2ced66]:first-child,.entity .head .icon[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4b2ced66]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4b2ced66]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4b2ced66]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4b2ced66]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4b2ced66],.entity .head .value-and-toggler[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4b2ced66]:first-child,.entity .head .value-and-toggler[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4b2ced66]:first-child{margin-left:26%!important}.col-offset-3[data-v-4b2ced66]:not(first-child){margin-left:30%!important}.col-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4b2ced66]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4b2ced66]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4b2ced66]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4b2ced66]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4b2ced66]:first-child{margin-left:52%!important}.col-offset-6[data-v-4b2ced66]:not(first-child){margin-left:56%!important}.col-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4b2ced66]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4b2ced66]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4b2ced66]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4b2ced66]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4b2ced66]:first-child{margin-left:78%!important}.col-offset-9[data-v-4b2ced66]:not(first-child){margin-left:82%!important}.col-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4b2ced66]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4b2ced66]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4b2ced66]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4b2ced66]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4b2ced66],.entity .head .value-container[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4b2ced66]:first-child,.entity .head .value-container[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-s-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-s-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4b2ced66],.entity .head .label[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4b2ced66]:first-child,.entity .head .label[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-s-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-s-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-4b2ced66],.attributes .child .value[data-v-4b2ced66],.col-s-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-4b2ced66]:first-child,.attributes .child .value[data-v-4b2ced66]:first-child,.col-s-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4b2ced66]{display:none!important}.s-visible[data-v-4b2ced66]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4b2ced66],.entity .head .value-container[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4b2ced66]:first-child,.entity .head .value-container[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-m-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-4b2ced66],.attributes .child .value[data-v-4b2ced66],.col-m-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-4b2ced66]:first-child,.attributes .child .value[data-v-4b2ced66]:first-child,.col-m-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-m-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4b2ced66],.entity .head .label[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4b2ced66]:first-child,.entity .head .label[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-m-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-m-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4b2ced66]{display:none!important}.m-visible[data-v-4b2ced66]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-l-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-l-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-l-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-l-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4b2ced66]{display:none!important}.l-visible[data-v-4b2ced66]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-xl-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-xl-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-xl-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xl-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4b2ced66]{display:none!important}.xl-visible[data-v-4b2ced66]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4b2ced66]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4b2ced66]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4b2ced66]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4b2ced66]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4b2ced66]{margin-left:26%}.col-no-margin-xxl-3[data-v-4b2ced66]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4b2ced66]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4b2ced66]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4b2ced66]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4b2ced66]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4b2ced66]{margin-left:52%}.col-no-margin-xxl-6[data-v-4b2ced66]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4b2ced66]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4b2ced66]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4b2ced66]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4b2ced66]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4b2ced66]{margin-left:78%}.col-no-margin-xxl-9[data-v-4b2ced66]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4b2ced66]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4b2ced66]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4b2ced66]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4b2ced66]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4b2ced66]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4b2ced66]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4b2ced66]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4b2ced66]{display:none!important}.xxl-visible[data-v-4b2ced66]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4b2ced66]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4b2ced66]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4b2ced66]{display:none!important}}.vertical-center[data-v-4b2ced66]{display:flex;align-items:center}.horizontal-center[data-v-4b2ced66]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-4b2ced66],.pull-right[data-v-4b2ced66]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4b2ced66]{display:none!important}.no-content[data-v-4b2ced66]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4b2ced66]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4b2ced66]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4b2ced66]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4b2ced66]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4b2ced66]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4b2ced66]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4b2ced66],.btn[data-v-4b2ced66],button[data-v-4b2ced66]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4b2ced66],.btn-default[type=submit][data-v-4b2ced66],.btn.btn-primary[data-v-4b2ced66],.btn[type=submit][data-v-4b2ced66],button.btn-primary[data-v-4b2ced66],button[type=submit][data-v-4b2ced66]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-4b2ced66]:hover,.btn[data-v-4b2ced66]:hover,button[data-v-4b2ced66]:hover{color:#35b870}.btn .icon[data-v-4b2ced66],.btn-default .icon[data-v-4b2ced66],button .icon[data-v-4b2ced66]{margin-right:.5em}.btn-default[data-v-4b2ced66]:disabled,.btn-default[disabled][data-v-4b2ced66],.btn[data-v-4b2ced66]:disabled,.btn[disabled][data-v-4b2ced66],button[data-v-4b2ced66]:disabled,button[disabled][data-v-4b2ced66]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-4b2ced66]{cursor:grab!important}.dragged[data-v-4b2ced66]{opacity:.5!important}input[type=password][data-v-4b2ced66],input[type=text][data-v-4b2ced66]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4b2ced66]:focus,input[type=text][data-v-4b2ced66]:focus{border:1px solid #35b870}button[data-v-4b2ced66],input[data-v-4b2ced66]{outline:none}input[type=text][data-v-4b2ced66]:hover,textarea[data-v-4b2ced66]:hover{border:1px solid #9cdfb0}ul[data-v-4b2ced66]{margin:0;padding:0;list-style:none}a[data-v-4b2ced66]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4b2ced66]:hover{color:#35b870}[data-v-4b2ced66]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4b2ced66]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4b2ced66]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4b2ced66]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-4b2ced66]{color:#ad1717}body[data-v-4b2ced66]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4b2ced66] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4b2ced66] .nav .path{cursor:pointer}.browser[data-v-4b2ced66] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4b2ced66] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-4b2ced66]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-4b2ced66]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4b2ced66],input[type=number][data-v-4b2ced66],input[type=password][data-v-4b2ced66],input[type=search][data-v-4b2ced66],input[type=text][data-v-4b2ced66],input[type=time][data-v-4b2ced66]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-4b2ced66]:hover,input[type=number][data-v-4b2ced66]:hover,input[type=password][data-v-4b2ced66]:hover,input[type=search][data-v-4b2ced66]:hover,input[type=text][data-v-4b2ced66]:hover,input[type=time][data-v-4b2ced66]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4b2ced66]:focus,input[type=number][data-v-4b2ced66]:focus,input[type=password][data-v-4b2ced66]:focus,input[type=search][data-v-4b2ced66]:focus,input[type=text][data-v-4b2ced66]:focus,input[type=time][data-v-4b2ced66]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4b2ced66],input[type=number].with-icon[data-v-4b2ced66],input[type=password].with-icon[data-v-4b2ced66],input[type=search].with-icon[data-v-4b2ced66],input[type=text].with-icon[data-v-4b2ced66],input[type=time].with-icon[data-v-4b2ced66]{padding-left:.3em}input[type=search][data-v-4b2ced66],input[type=text][data-v-4b2ced66]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-4b2ced66],.fade-in[data-v-4b2ced66]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-4b2ced66;-webkit-animation-name:fadeIn-4b2ced66}.fade-out[data-v-4b2ced66]{animation-fill-mode:both;animation-name:fadeOut-4b2ced66;-webkit-animation-name:fadeOut-4b2ced66}.expand[data-v-4b2ced66],.fade-out[data-v-4b2ced66]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-4b2ced66]{animation-fill-mode:both;animation-name:expand-4b2ced66;-webkit-animation-name:expand-4b2ced66}.shrink[data-v-4b2ced66]{animation-fill-mode:both;animation-name:shrink-4b2ced66;-webkit-animation-name:shrink-4b2ced66}.fold[data-v-4b2ced66],.shrink[data-v-4b2ced66]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-4b2ced66]{animation-fill-mode:both;animation-name:fold-4b2ced66;-webkit-animation-name:fold-4b2ced66}.unfold[data-v-4b2ced66]{animation-fill-mode:both;animation-name:unfold-4b2ced66;-webkit-animation-name:unfold-4b2ced66}.dim[data-v-4b2ced66],.unfold[data-v-4b2ced66]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-4b2ced66]{animation-fill-mode:both;animation-name:dim-4b2ced66;-webkit-animation-name:dim-4b2ced66}.brighten[data-v-4b2ced66]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-4b2ced66;-webkit-animation-name:brighten-4b2ced66}@keyframes fadeIn-4b2ced66{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4b2ced66{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-4b2ced66{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-4b2ced66{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-4b2ced66{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-4b2ced66{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-4b2ced66{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-4b2ced66{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-4b2ced66]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4b2ced66;-webkit-animation-name:glow-4b2ced66}.loop[data-v-4b2ced66]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4b2ced66{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4b2ced66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4b2ced66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4b2ced66]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-4b2ced66]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-4b2ced66]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-4b2ced66]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-4b2ced66]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-4b2ced66]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-4b2ced66]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-4b2ced66]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-4b2ced66]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-4b2ced66]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-4b2ced66]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-4b2ced66]{margin-right:.5em}.entity .head .icon[data-v-4b2ced66]:hover{color:#35b870}.entity .head .label[data-v-4b2ced66]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-4b2ced66]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-4b2ced66]:hover{color:#35b870}.entity .head .value[data-v-4b2ced66]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-4b2ced66]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-4b2ced66]{margin-right:2.5em}.entity .head .value-container[data-v-4b2ced66]{min-width:7em}.entity .head .unit[data-v-4b2ced66]{margin-left:.2em}.entity .head .pull-right[data-v-4b2ced66],.entity .head .value-container[data-v-4b2ced66]{padding-right:.5em}.entity .head .pull-right[data-v-4b2ced66] .power-switch,.entity .head .value-container[data-v-4b2ced66] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-4b2ced66]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-4b2ced66]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-4b2ced66]:hover{color:#35b870}.collapse-toggler[data-v-4b2ced66]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-4b2ced66]:hover{color:#35b870}.attributes .child[data-v-4b2ced66]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-4b2ced66]{flex-direction:column}}.attributes .child[data-v-4b2ced66]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-4b2ced66]:hover{cursor:auto}.attributes .child.head[data-v-4b2ced66]{cursor:pointer}.attributes .child.head[data-v-4b2ced66]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-4b2ced66]{font-weight:700}.attributes .child .value[data-v-4b2ced66]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-4b2ced66]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-4b2ced66]:last-child,.entity-container-wrapper.with-children[data-v-4b2ced66]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-4b2ced66]{animation:blink-animation-4b2ced66 1s steps(20,start)}@keyframes blink-animation-4b2ced66{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7617.df56322e.css b/platypush/backend/http/webapp/dist/static/css/7617.df56322e.css new file mode 100644 index 0000000000..edc89883e9 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7617.df56322e.css @@ -0,0 +1 @@ +.col-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2df98b7b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2df98b7b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2df98b7b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2df98b7b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2df98b7b]:first-child{margin-left:26%!important}.col-offset-3[data-v-2df98b7b]:not(first-child){margin-left:30%!important}.col-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2df98b7b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2df98b7b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2df98b7b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2df98b7b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2df98b7b]:first-child{margin-left:52%!important}.col-offset-6[data-v-2df98b7b]:not(first-child){margin-left:56%!important}.col-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2df98b7b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2df98b7b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2df98b7b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2df98b7b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2df98b7b]:first-child{margin-left:78%!important}.col-offset-9[data-v-2df98b7b]:not(first-child){margin-left:82%!important}.col-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2df98b7b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2df98b7b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2df98b7b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2df98b7b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-s-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-s-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-s-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-s-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2df98b7b]{display:none!important}.s-visible[data-v-2df98b7b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-m-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-m-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-m-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-m-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2df98b7b]{display:none!important}.m-visible[data-v-2df98b7b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-l-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-l-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-l-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-l-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2df98b7b]{display:none!important}.l-visible[data-v-2df98b7b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-xl-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-xl-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-xl-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xl-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2df98b7b]{display:none!important}.xl-visible[data-v-2df98b7b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2df98b7b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2df98b7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2df98b7b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2df98b7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2df98b7b]{margin-left:26%}.col-no-margin-xxl-3[data-v-2df98b7b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2df98b7b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2df98b7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2df98b7b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2df98b7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2df98b7b]{margin-left:52%}.col-no-margin-xxl-6[data-v-2df98b7b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2df98b7b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2df98b7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2df98b7b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2df98b7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2df98b7b]{margin-left:78%}.col-no-margin-xxl-9[data-v-2df98b7b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2df98b7b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2df98b7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2df98b7b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2df98b7b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2df98b7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2df98b7b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2df98b7b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2df98b7b]{display:none!important}.xxl-visible[data-v-2df98b7b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2df98b7b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2df98b7b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2df98b7b]{display:none!important}}.vertical-center[data-v-2df98b7b]{display:flex;align-items:center}.horizontal-center[data-v-2df98b7b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2df98b7b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2df98b7b]{display:none!important}.no-content[data-v-2df98b7b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2df98b7b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2df98b7b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2df98b7b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2df98b7b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2df98b7b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2df98b7b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2df98b7b],.btn[data-v-2df98b7b],button[data-v-2df98b7b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2df98b7b],.btn-default[type=submit][data-v-2df98b7b],.btn.btn-primary[data-v-2df98b7b],.btn[type=submit][data-v-2df98b7b],button.btn-primary[data-v-2df98b7b],button[type=submit][data-v-2df98b7b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2df98b7b]:hover,.btn[data-v-2df98b7b]:hover,button[data-v-2df98b7b]:hover{color:#35b870}.btn .icon[data-v-2df98b7b],.btn-default .icon[data-v-2df98b7b],button .icon[data-v-2df98b7b]{margin-right:.5em}.btn-default[data-v-2df98b7b]:disabled,.btn-default[disabled][data-v-2df98b7b],.btn[data-v-2df98b7b]:disabled,.btn[disabled][data-v-2df98b7b],button[data-v-2df98b7b]:disabled,button[disabled][data-v-2df98b7b]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2df98b7b]{cursor:grab!important}.dragged[data-v-2df98b7b]{opacity:.5!important}input[type=password][data-v-2df98b7b],input[type=text][data-v-2df98b7b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2df98b7b]:focus,input[type=text][data-v-2df98b7b]:focus{border:1px solid #35b870}button[data-v-2df98b7b],input[data-v-2df98b7b]{outline:none}input[type=text][data-v-2df98b7b]:hover,textarea[data-v-2df98b7b]:hover{border:1px solid #9cdfb0}ul[data-v-2df98b7b]{margin:0;padding:0;list-style:none}a[data-v-2df98b7b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2df98b7b]:hover{color:#35b870}[data-v-2df98b7b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2df98b7b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2df98b7b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2df98b7b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2df98b7b]{color:#ad1717}body[data-v-2df98b7b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2df98b7b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2df98b7b] .nav .path{cursor:pointer}.browser[data-v-2df98b7b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2df98b7b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2df98b7b]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2df98b7b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2df98b7b],input[type=number][data-v-2df98b7b],input[type=password][data-v-2df98b7b],input[type=search][data-v-2df98b7b],input[type=text][data-v-2df98b7b],input[type=time][data-v-2df98b7b]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2df98b7b]:hover,input[type=number][data-v-2df98b7b]:hover,input[type=password][data-v-2df98b7b]:hover,input[type=search][data-v-2df98b7b]:hover,input[type=text][data-v-2df98b7b]:hover,input[type=time][data-v-2df98b7b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2df98b7b]:focus,input[type=number][data-v-2df98b7b]:focus,input[type=password][data-v-2df98b7b]:focus,input[type=search][data-v-2df98b7b]:focus,input[type=text][data-v-2df98b7b]:focus,input[type=time][data-v-2df98b7b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2df98b7b],input[type=number].with-icon[data-v-2df98b7b],input[type=password].with-icon[data-v-2df98b7b],input[type=search].with-icon[data-v-2df98b7b],input[type=text].with-icon[data-v-2df98b7b],input[type=time].with-icon[data-v-2df98b7b]{padding-left:.3em}input[type=search][data-v-2df98b7b],input[type=text][data-v-2df98b7b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2df98b7b]{animation-fill-mode:both;animation-name:fadeIn-2df98b7b;-webkit-animation-name:fadeIn-2df98b7b}.fade-in[data-v-2df98b7b],.fade-out[data-v-2df98b7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2df98b7b]{animation-fill-mode:both;animation-name:fadeOut-2df98b7b;-webkit-animation-name:fadeOut-2df98b7b}.expand[data-v-2df98b7b]{animation-fill-mode:both;animation-name:expand-2df98b7b;-webkit-animation-name:expand-2df98b7b}.expand[data-v-2df98b7b],.shrink[data-v-2df98b7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2df98b7b]{animation-fill-mode:both;animation-name:shrink-2df98b7b;-webkit-animation-name:shrink-2df98b7b}.fold[data-v-2df98b7b]{animation-fill-mode:both;animation-name:fold-2df98b7b;-webkit-animation-name:fold-2df98b7b}.fold[data-v-2df98b7b],.unfold[data-v-2df98b7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2df98b7b]{animation-fill-mode:both;animation-name:unfold-2df98b7b;-webkit-animation-name:unfold-2df98b7b}.dim[data-v-2df98b7b]{animation-fill-mode:both;animation-name:dim-2df98b7b;-webkit-animation-name:dim-2df98b7b}.brighten[data-v-2df98b7b],.dim[data-v-2df98b7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2df98b7b]{animation-fill-mode:both;animation-name:brighten-2df98b7b;-webkit-animation-name:brighten-2df98b7b}@keyframes fadeIn-2df98b7b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2df98b7b{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2df98b7b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2df98b7b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2df98b7b{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2df98b7b{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2df98b7b{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2df98b7b{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2df98b7b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2df98b7b;-webkit-animation-name:glow-2df98b7b}.loop[data-v-2df98b7b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2df98b7b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2df98b7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2df98b7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2df98b7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-2df98b7b]{min-height:calc(100vh - 2em)}button[data-v-2df98b7b]{background:none;border:none;box-shadow:none}button[data-v-2df98b7b]:hover{color:#35b870}hgroup[data-v-2df98b7b]{flex-grow:1}h1[data-v-2df98b7b]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-2df98b7b]{border-radius:.5em .5em 0 0}}h2[data-v-2df98b7b]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-2df98b7b]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-2df98b7b]{margin-top:.5em;padding-top:.5em}section.response[data-v-2df98b7b]{flex-grow:1;max-height:40em}section.response .output[data-v-2df98b7b]{overflow:auto}.buttons[data-v-2df98b7b]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-2df98b7b]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-2df98b7b]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-2df98b7b]{background:#fff}header .buttons[data-v-2df98b7b]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-2df98b7b]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-2df98b7b] .doc blockquote{margin-left:0}textarea[data-v-2df98b7b]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-2df98b7b]:hover{border:1px solid #38cf80}textarea[data-v-2df98b7b]:focus{border:1px solid #32b646}form[data-v-2df98b7b]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-2df98b7b]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-2df98b7b]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-2df98b7b]{width:80%;max-width:60em}}.raw .first-row button[data-v-2df98b7b]{margin-left:0}[data-v-2df98b7b] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-2df98b7b] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-2df98b7b] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-2df98b7b] .args-body .args-list{width:30em}}[data-v-2df98b7b] .args-body .args-list label{display:flex;align-items:center}[data-v-2df98b7b] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-2df98b7b] .args-body .args-list .arg{width:100%}}[data-v-2df98b7b] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-2df98b7b] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-2df98b7b] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-2df98b7b]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-2df98b7b]{flex-direction:column}}.add-arg[data-v-2df98b7b]{width:100%}.add-arg button[data-v-2df98b7b]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-2df98b7b]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-2df98b7b]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-2df98b7b]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-2df98b7b]{width:100%}.doc-container[data-v-2df98b7b],.response[data-v-2df98b7b]{flex-grow:1}.doc-container h2[data-v-2df98b7b],.response h2[data-v-2df98b7b]{display:inline-flex}.doc-container h2 .title[data-v-2df98b7b],.response h2 .title[data-v-2df98b7b]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-2df98b7b],.response h2 .buttons[data-v-2df98b7b]{width:2em}.doc-container h2 .buttons button[data-v-2df98b7b],.response h2 .buttons button[data-v-2df98b7b]{padding:0}.output[data-v-2df98b7b]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-2df98b7b]{color:red}textarea.curl-snippet[data-v-2df98b7b]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.argdoc-container[data-v-2df98b7b]{max-height:50vh;display:flex;flex-direction:column}@media screen and (min-width:769px){.argdoc-container[data-v-2df98b7b]{width:calc(100% - 22em)}}@media screen and (min-width:1024px){.argdoc-container[data-v-2df98b7b]{width:calc(100% - 32em)}}.argdoc-container .argname[data-v-2df98b7b]{font-weight:700;margin-left:.25em}.argdoc-container .doc[data-v-2df98b7b]{width:100%;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.argdoc-container.widescreen[data-v-2df98b7b]{display:none}}.argdoc-container.mobile[data-v-2df98b7b]{width:100%}@media screen and (min-width:769px){.argdoc-container.mobile[data-v-2df98b7b]{display:none}}.argdoc-container .flag[data-v-2df98b7b]{font-size:.9em;margin-left:.5em;margin-bottom:.2em}.argdoc-container .flag.required[data-v-2df98b7b]{color:red}.argdoc-container .flag.optional[data-v-2df98b7b]{color:#32b646}.col-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-b5c29388]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-b5c29388]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-b5c29388]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-b5c29388]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-b5c29388]:first-child{margin-left:26%!important}.col-offset-3[data-v-b5c29388]:not(first-child){margin-left:30%!important}.col-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-b5c29388]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-b5c29388]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-b5c29388]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-b5c29388]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-b5c29388]:first-child{margin-left:52%!important}.col-offset-6[data-v-b5c29388]:not(first-child){margin-left:56%!important}.col-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-b5c29388]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-b5c29388]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-b5c29388]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-b5c29388]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-b5c29388]:first-child{margin-left:78%!important}.col-offset-9[data-v-b5c29388]:not(first-child){margin-left:82%!important}.col-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-b5c29388]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-b5c29388]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-b5c29388]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-b5c29388]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-1[data-v-b5c29388]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-2[data-v-b5c29388]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-3[data-v-b5c29388]{margin-left:26%}.col-no-margin-s-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-4[data-v-b5c29388]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-5[data-v-b5c29388]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-6[data-v-b5c29388]{margin-left:52%}.col-no-margin-s-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-7[data-v-b5c29388]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-8[data-v-b5c29388]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-9[data-v-b5c29388]{margin-left:78%}.col-no-margin-s-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-10[data-v-b5c29388]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-b5c29388]:first-child{margin-left:0}.col-offset-s-11[data-v-b5c29388]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-s-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-b5c29388]{display:none!important}.s-visible[data-v-b5c29388]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-1[data-v-b5c29388]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-2[data-v-b5c29388]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-3[data-v-b5c29388]{margin-left:26%}.col-no-margin-m-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-4[data-v-b5c29388]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-5[data-v-b5c29388]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-6[data-v-b5c29388]{margin-left:52%}.col-no-margin-m-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-7[data-v-b5c29388]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-8[data-v-b5c29388]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-9[data-v-b5c29388]{margin-left:78%}.col-no-margin-m-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-10[data-v-b5c29388]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-b5c29388]:first-child{margin-left:0}.col-offset-m-11[data-v-b5c29388]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-m-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-b5c29388]{display:none!important}.m-visible[data-v-b5c29388]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-1[data-v-b5c29388]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-2[data-v-b5c29388]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-3[data-v-b5c29388]{margin-left:26%}.col-no-margin-l-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-4[data-v-b5c29388]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-5[data-v-b5c29388]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-6[data-v-b5c29388]{margin-left:52%}.col-no-margin-l-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-7[data-v-b5c29388]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-8[data-v-b5c29388]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-9[data-v-b5c29388]{margin-left:78%}.col-no-margin-l-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-10[data-v-b5c29388]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-b5c29388]:first-child{margin-left:0}.col-offset-l-11[data-v-b5c29388]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-l-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-b5c29388]{display:none!important}.l-visible[data-v-b5c29388]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-1[data-v-b5c29388]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-2[data-v-b5c29388]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-3[data-v-b5c29388]{margin-left:26%}.col-no-margin-xl-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-4[data-v-b5c29388]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-5[data-v-b5c29388]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-6[data-v-b5c29388]{margin-left:52%}.col-no-margin-xl-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-7[data-v-b5c29388]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-8[data-v-b5c29388]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-9[data-v-b5c29388]{margin-left:78%}.col-no-margin-xl-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-10[data-v-b5c29388]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xl-11[data-v-b5c29388]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-b5c29388]{display:none!important}.xl-visible[data-v-b5c29388]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-1[data-v-b5c29388]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-b5c29388]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-2[data-v-b5c29388]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-b5c29388]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-3[data-v-b5c29388]{margin-left:26%}.col-no-margin-xxl-3[data-v-b5c29388]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-4[data-v-b5c29388]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-b5c29388]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-5[data-v-b5c29388]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-b5c29388]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-6[data-v-b5c29388]{margin-left:52%}.col-no-margin-xxl-6[data-v-b5c29388]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-7[data-v-b5c29388]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-b5c29388]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-8[data-v-b5c29388]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-b5c29388]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-9[data-v-b5c29388]{margin-left:78%}.col-no-margin-xxl-9[data-v-b5c29388]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-10[data-v-b5c29388]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-b5c29388]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-b5c29388]:first-child{margin-left:0}.col-offset-xxl-11[data-v-b5c29388]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-b5c29388]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-b5c29388]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-b5c29388]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-b5c29388]{display:none!important}.xxl-visible[data-v-b5c29388]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-b5c29388]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-b5c29388]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-b5c29388]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-b5c29388]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-b5c29388]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-b5c29388]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-b5c29388]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-b5c29388]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-b5c29388]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-b5c29388]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-b5c29388]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-b5c29388]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-b5c29388]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-b5c29388]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-b5c29388]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-b5c29388]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-b5c29388]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-b5c29388]{display:none!important}}.vertical-center[data-v-b5c29388]{display:flex;align-items:center}.horizontal-center[data-v-b5c29388]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-b5c29388]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-b5c29388]{display:none!important}.no-content[data-v-b5c29388]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-b5c29388]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-b5c29388]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-b5c29388]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-b5c29388]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-b5c29388]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-b5c29388]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-b5c29388],.btn[data-v-b5c29388],button[data-v-b5c29388]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-b5c29388],.btn-default[type=submit][data-v-b5c29388],.btn.btn-primary[data-v-b5c29388],.btn[type=submit][data-v-b5c29388],button.btn-primary[data-v-b5c29388],button[type=submit][data-v-b5c29388]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-b5c29388]:hover,.btn[data-v-b5c29388]:hover,button[data-v-b5c29388]:hover{color:#35b870}.btn .icon[data-v-b5c29388],.btn-default .icon[data-v-b5c29388],button .icon[data-v-b5c29388]{margin-right:.5em}.btn-default[data-v-b5c29388]:disabled,.btn-default[disabled][data-v-b5c29388],.btn[data-v-b5c29388]:disabled,.btn[disabled][data-v-b5c29388],button[data-v-b5c29388]:disabled,button[disabled][data-v-b5c29388]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-b5c29388]{cursor:grab!important}.dragged[data-v-b5c29388]{opacity:.5!important}input[type=password][data-v-b5c29388],input[type=text][data-v-b5c29388]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-b5c29388]:focus,input[type=text][data-v-b5c29388]:focus{border:1px solid #35b870}button[data-v-b5c29388],input[data-v-b5c29388]{outline:none}input[type=text][data-v-b5c29388]:hover,textarea[data-v-b5c29388]:hover{border:1px solid #9cdfb0}ul[data-v-b5c29388]{margin:0;padding:0;list-style:none}a[data-v-b5c29388]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-b5c29388]:hover{color:#35b870}[data-v-b5c29388]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-b5c29388]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-b5c29388]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-b5c29388]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-b5c29388]{color:#ad1717}body[data-v-b5c29388]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-b5c29388] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-b5c29388] .nav .path{cursor:pointer}.browser[data-v-b5c29388] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-b5c29388] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-b5c29388]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-b5c29388]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-b5c29388],input[type=number][data-v-b5c29388],input[type=password][data-v-b5c29388],input[type=search][data-v-b5c29388],input[type=text][data-v-b5c29388],input[type=time][data-v-b5c29388]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-b5c29388]:hover,input[type=number][data-v-b5c29388]:hover,input[type=password][data-v-b5c29388]:hover,input[type=search][data-v-b5c29388]:hover,input[type=text][data-v-b5c29388]:hover,input[type=time][data-v-b5c29388]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-b5c29388]:focus,input[type=number][data-v-b5c29388]:focus,input[type=password][data-v-b5c29388]:focus,input[type=search][data-v-b5c29388]:focus,input[type=text][data-v-b5c29388]:focus,input[type=time][data-v-b5c29388]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-b5c29388],input[type=number].with-icon[data-v-b5c29388],input[type=password].with-icon[data-v-b5c29388],input[type=search].with-icon[data-v-b5c29388],input[type=text].with-icon[data-v-b5c29388],input[type=time].with-icon[data-v-b5c29388]{padding-left:.3em}input[type=search][data-v-b5c29388],input[type=text][data-v-b5c29388]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-b5c29388]{animation-fill-mode:both;animation-name:fadeIn-b5c29388;-webkit-animation-name:fadeIn-b5c29388}.fade-in[data-v-b5c29388],.fade-out[data-v-b5c29388]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-b5c29388]{animation-fill-mode:both;animation-name:fadeOut-b5c29388;-webkit-animation-name:fadeOut-b5c29388}.expand[data-v-b5c29388]{animation-fill-mode:both;animation-name:expand-b5c29388;-webkit-animation-name:expand-b5c29388}.expand[data-v-b5c29388],.shrink[data-v-b5c29388]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-b5c29388]{animation-fill-mode:both;animation-name:shrink-b5c29388;-webkit-animation-name:shrink-b5c29388}.fold[data-v-b5c29388]{animation-fill-mode:both;animation-name:fold-b5c29388;-webkit-animation-name:fold-b5c29388}.fold[data-v-b5c29388],.unfold[data-v-b5c29388]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-b5c29388]{animation-fill-mode:both;animation-name:unfold-b5c29388;-webkit-animation-name:unfold-b5c29388}.dim[data-v-b5c29388]{animation-fill-mode:both;animation-name:dim-b5c29388;-webkit-animation-name:dim-b5c29388}.brighten[data-v-b5c29388],.dim[data-v-b5c29388]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-b5c29388]{animation-fill-mode:both;animation-name:brighten-b5c29388;-webkit-animation-name:brighten-b5c29388}@keyframes fadeIn-b5c29388{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-b5c29388{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-b5c29388{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-b5c29388{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-b5c29388{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-b5c29388{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-b5c29388{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-b5c29388{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-b5c29388]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-b5c29388;-webkit-animation-name:glow-b5c29388}.loop[data-v-b5c29388]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-b5c29388{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-b5c29388]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-b5c29388]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-b5c29388]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.autocomplete[data-v-b5c29388]{width:100%;position:relative;display:inline-block}.autocomplete .input[data-v-b5c29388],.autocomplete .items[data-v-b5c29388]{width:100%;box-shadow:1px 1px 1px 1px #ddd}.autocomplete .items[data-v-b5c29388]{max-height:50vh;position:absolute;overflow:auto;border:1px solid #ddd;border-bottom:none;border-top:none;border-radius:1em;z-index:99;top:100%;left:0;right:0}.autocomplete .items .item[data-v-b5c29388]{padding:1em;cursor:pointer;border-bottom:1px solid #ddd;background-color:#fff}.autocomplete .items .item[data-v-b5c29388]:hover{background-color:#bef6da}.autocomplete .items .item .matching[data-v-b5c29388]{font-weight:700}.autocomplete .active[data-v-b5c29388]{background-color:#bef6da!important}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.autocomplete-with-context .item{width:100%;display:flex;flex-direction:column}@media screen and (min-width:769px){.autocomplete-with-context .item{flex-direction:row}}.autocomplete-with-context .item .suffix{display:flex;font-size:.9em;color:#9b9b9b}@media screen and (min-width:769px){.autocomplete-with-context .item .suffix{margin-left:auto}}.col-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f4ee7f72]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f4ee7f72]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f4ee7f72]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f4ee7f72]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f4ee7f72]:first-child{margin-left:26%!important}.col-offset-3[data-v-f4ee7f72]:not(first-child){margin-left:30%!important}.col-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f4ee7f72]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f4ee7f72]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f4ee7f72]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f4ee7f72]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f4ee7f72]:first-child{margin-left:52%!important}.col-offset-6[data-v-f4ee7f72]:not(first-child){margin-left:56%!important}.col-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f4ee7f72]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f4ee7f72]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f4ee7f72]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f4ee7f72]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f4ee7f72]:first-child{margin-left:78%!important}.col-offset-9[data-v-f4ee7f72]:not(first-child){margin-left:82%!important}.col-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f4ee7f72]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f4ee7f72]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f4ee7f72]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f4ee7f72]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-1[data-v-f4ee7f72]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-2[data-v-f4ee7f72]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-3[data-v-f4ee7f72]{margin-left:26%}.col-no-margin-s-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-4[data-v-f4ee7f72]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-5[data-v-f4ee7f72]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-6[data-v-f4ee7f72]{margin-left:52%}.col-no-margin-s-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-7[data-v-f4ee7f72]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-8[data-v-f4ee7f72]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-9[data-v-f4ee7f72]{margin-left:78%}.col-no-margin-s-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-10[data-v-f4ee7f72]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-s-11[data-v-f4ee7f72]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f4ee7f72]{display:none!important}.s-visible[data-v-f4ee7f72]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-1[data-v-f4ee7f72]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-2[data-v-f4ee7f72]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-3[data-v-f4ee7f72]{margin-left:26%}.col-no-margin-m-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-4[data-v-f4ee7f72]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-5[data-v-f4ee7f72]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-6[data-v-f4ee7f72]{margin-left:52%}.col-no-margin-m-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-7[data-v-f4ee7f72]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-8[data-v-f4ee7f72]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-9[data-v-f4ee7f72]{margin-left:78%}.col-no-margin-m-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-10[data-v-f4ee7f72]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-m-11[data-v-f4ee7f72]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f4ee7f72]{display:none!important}.m-visible[data-v-f4ee7f72]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-1[data-v-f4ee7f72]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-2[data-v-f4ee7f72]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-3[data-v-f4ee7f72]{margin-left:26%}.col-no-margin-l-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-4[data-v-f4ee7f72]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-5[data-v-f4ee7f72]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-6[data-v-f4ee7f72]{margin-left:52%}.col-no-margin-l-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-7[data-v-f4ee7f72]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-8[data-v-f4ee7f72]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-9[data-v-f4ee7f72]{margin-left:78%}.col-no-margin-l-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-10[data-v-f4ee7f72]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-l-11[data-v-f4ee7f72]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f4ee7f72]{display:none!important}.l-visible[data-v-f4ee7f72]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-1[data-v-f4ee7f72]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-2[data-v-f4ee7f72]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-3[data-v-f4ee7f72]{margin-left:26%}.col-no-margin-xl-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-4[data-v-f4ee7f72]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-5[data-v-f4ee7f72]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-6[data-v-f4ee7f72]{margin-left:52%}.col-no-margin-xl-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-7[data-v-f4ee7f72]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-8[data-v-f4ee7f72]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-9[data-v-f4ee7f72]{margin-left:78%}.col-no-margin-xl-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-10[data-v-f4ee7f72]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xl-11[data-v-f4ee7f72]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f4ee7f72]{display:none!important}.xl-visible[data-v-f4ee7f72]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f4ee7f72]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f4ee7f72]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f4ee7f72]{margin-left:26%}.col-no-margin-xxl-3[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f4ee7f72]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f4ee7f72]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f4ee7f72]{margin-left:52%}.col-no-margin-xxl-6[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f4ee7f72]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f4ee7f72]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f4ee7f72]{margin-left:78%}.col-no-margin-xxl-9[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f4ee7f72]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f4ee7f72]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f4ee7f72]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f4ee7f72]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f4ee7f72]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f4ee7f72]{display:none!important}.xxl-visible[data-v-f4ee7f72]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f4ee7f72]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f4ee7f72]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f4ee7f72]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f4ee7f72]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f4ee7f72]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f4ee7f72]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f4ee7f72]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f4ee7f72]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f4ee7f72]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f4ee7f72]{display:none!important}}.vertical-center[data-v-f4ee7f72]{display:flex;align-items:center}.horizontal-center[data-v-f4ee7f72]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f4ee7f72]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f4ee7f72]{display:none!important}.no-content[data-v-f4ee7f72]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f4ee7f72]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f4ee7f72]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f4ee7f72]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f4ee7f72]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f4ee7f72]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f4ee7f72]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f4ee7f72],.btn[data-v-f4ee7f72],button[data-v-f4ee7f72]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f4ee7f72],.btn-default[type=submit][data-v-f4ee7f72],.btn.btn-primary[data-v-f4ee7f72],.btn[type=submit][data-v-f4ee7f72],button.btn-primary[data-v-f4ee7f72],button[type=submit][data-v-f4ee7f72]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-f4ee7f72]:hover,.btn[data-v-f4ee7f72]:hover,button[data-v-f4ee7f72]:hover{color:#35b870}.btn .icon[data-v-f4ee7f72],.btn-default .icon[data-v-f4ee7f72],button .icon[data-v-f4ee7f72]{margin-right:.5em}.btn-default[data-v-f4ee7f72]:disabled,.btn-default[disabled][data-v-f4ee7f72],.btn[data-v-f4ee7f72]:disabled,.btn[disabled][data-v-f4ee7f72],button[data-v-f4ee7f72]:disabled,button[disabled][data-v-f4ee7f72]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-f4ee7f72]{cursor:grab!important}.dragged[data-v-f4ee7f72]{opacity:.5!important}input[type=password][data-v-f4ee7f72],input[type=text][data-v-f4ee7f72]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f4ee7f72]:focus,input[type=text][data-v-f4ee7f72]:focus{border:1px solid #35b870}button[data-v-f4ee7f72],input[data-v-f4ee7f72]{outline:none}input[type=text][data-v-f4ee7f72]:hover,textarea[data-v-f4ee7f72]:hover{border:1px solid #9cdfb0}ul[data-v-f4ee7f72]{margin:0;padding:0;list-style:none}a[data-v-f4ee7f72]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f4ee7f72]:hover{color:#35b870}[data-v-f4ee7f72]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f4ee7f72]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f4ee7f72]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f4ee7f72]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-f4ee7f72]{color:#ad1717}body[data-v-f4ee7f72]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f4ee7f72] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f4ee7f72] .nav .path{cursor:pointer}.browser[data-v-f4ee7f72] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f4ee7f72] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-f4ee7f72]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-f4ee7f72]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f4ee7f72],input[type=number][data-v-f4ee7f72],input[type=password][data-v-f4ee7f72],input[type=search][data-v-f4ee7f72],input[type=text][data-v-f4ee7f72],input[type=time][data-v-f4ee7f72]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-f4ee7f72]:hover,input[type=number][data-v-f4ee7f72]:hover,input[type=password][data-v-f4ee7f72]:hover,input[type=search][data-v-f4ee7f72]:hover,input[type=text][data-v-f4ee7f72]:hover,input[type=time][data-v-f4ee7f72]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f4ee7f72]:focus,input[type=number][data-v-f4ee7f72]:focus,input[type=password][data-v-f4ee7f72]:focus,input[type=search][data-v-f4ee7f72]:focus,input[type=text][data-v-f4ee7f72]:focus,input[type=time][data-v-f4ee7f72]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f4ee7f72],input[type=number].with-icon[data-v-f4ee7f72],input[type=password].with-icon[data-v-f4ee7f72],input[type=search].with-icon[data-v-f4ee7f72],input[type=text].with-icon[data-v-f4ee7f72],input[type=time].with-icon[data-v-f4ee7f72]{padding-left:.3em}input[type=search][data-v-f4ee7f72],input[type=text][data-v-f4ee7f72]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f4ee7f72]{animation-fill-mode:both;animation-name:fadeIn-f4ee7f72;-webkit-animation-name:fadeIn-f4ee7f72}.fade-in[data-v-f4ee7f72],.fade-out[data-v-f4ee7f72]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f4ee7f72]{animation-fill-mode:both;animation-name:fadeOut-f4ee7f72;-webkit-animation-name:fadeOut-f4ee7f72}.expand[data-v-f4ee7f72]{animation-fill-mode:both;animation-name:expand-f4ee7f72;-webkit-animation-name:expand-f4ee7f72}.expand[data-v-f4ee7f72],.shrink[data-v-f4ee7f72]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-f4ee7f72]{animation-fill-mode:both;animation-name:shrink-f4ee7f72;-webkit-animation-name:shrink-f4ee7f72}.fold[data-v-f4ee7f72]{animation-fill-mode:both;animation-name:fold-f4ee7f72;-webkit-animation-name:fold-f4ee7f72}.fold[data-v-f4ee7f72],.unfold[data-v-f4ee7f72]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-f4ee7f72]{animation-fill-mode:both;animation-name:unfold-f4ee7f72;-webkit-animation-name:unfold-f4ee7f72}.dim[data-v-f4ee7f72]{animation-fill-mode:both;animation-name:dim-f4ee7f72;-webkit-animation-name:dim-f4ee7f72}.brighten[data-v-f4ee7f72],.dim[data-v-f4ee7f72]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-f4ee7f72]{animation-fill-mode:both;animation-name:brighten-f4ee7f72;-webkit-animation-name:brighten-f4ee7f72}@keyframes fadeIn-f4ee7f72{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f4ee7f72{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-f4ee7f72{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-f4ee7f72{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-f4ee7f72{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-f4ee7f72{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-f4ee7f72{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-f4ee7f72{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-f4ee7f72]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f4ee7f72;-webkit-animation-name:glow-f4ee7f72}.loop[data-v-f4ee7f72]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f4ee7f72{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f4ee7f72]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f4ee7f72]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f4ee7f72]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-f4ee7f72]{min-height:calc(100vh - 2em)}button[data-v-f4ee7f72]{background:none;border:none;box-shadow:none}button[data-v-f4ee7f72]:hover{color:#35b870}hgroup[data-v-f4ee7f72]{flex-grow:1}h1[data-v-f4ee7f72]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-f4ee7f72]{border-radius:.5em .5em 0 0}}h2[data-v-f4ee7f72]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-f4ee7f72]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-f4ee7f72]{margin-top:.5em;padding-top:.5em}section.response[data-v-f4ee7f72]{flex-grow:1;max-height:40em}section.response .output[data-v-f4ee7f72]{overflow:auto}.buttons[data-v-f4ee7f72]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-f4ee7f72]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-f4ee7f72]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-f4ee7f72]{background:#fff}header .buttons[data-v-f4ee7f72]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-f4ee7f72]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-f4ee7f72] .doc blockquote{margin-left:0}textarea[data-v-f4ee7f72]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-f4ee7f72]:hover{border:1px solid #38cf80}textarea[data-v-f4ee7f72]:focus{border:1px solid #32b646}form[data-v-f4ee7f72]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-f4ee7f72]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-f4ee7f72]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-f4ee7f72]{width:80%;max-width:60em}}.raw .first-row button[data-v-f4ee7f72]{margin-left:0}[data-v-f4ee7f72] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-f4ee7f72] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-f4ee7f72] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-f4ee7f72] .args-body .args-list{width:30em}}[data-v-f4ee7f72] .args-body .args-list label{display:flex;align-items:center}[data-v-f4ee7f72] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-f4ee7f72] .args-body .args-list .arg{width:100%}}[data-v-f4ee7f72] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-f4ee7f72] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-f4ee7f72] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-f4ee7f72]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-f4ee7f72]{flex-direction:column}}.add-arg[data-v-f4ee7f72]{width:100%}.add-arg button[data-v-f4ee7f72]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-f4ee7f72]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-f4ee7f72]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-f4ee7f72]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-f4ee7f72]{width:100%}.doc-container[data-v-f4ee7f72],.response[data-v-f4ee7f72]{flex-grow:1}.doc-container h2[data-v-f4ee7f72],.response h2[data-v-f4ee7f72]{display:inline-flex}.doc-container h2 .title[data-v-f4ee7f72],.response h2 .title[data-v-f4ee7f72]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-f4ee7f72],.response h2 .buttons[data-v-f4ee7f72]{width:2em}.doc-container h2 .buttons button[data-v-f4ee7f72],.response h2 .buttons button[data-v-f4ee7f72]{padding:0}.output[data-v-f4ee7f72]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-f4ee7f72]{color:red}textarea.curl-snippet[data-v-f4ee7f72]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.col-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-105c186a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-105c186a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-105c186a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-105c186a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-105c186a]:first-child{margin-left:26%!important}.col-offset-3[data-v-105c186a]:not(first-child){margin-left:30%!important}.col-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-105c186a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-105c186a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-105c186a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-105c186a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-105c186a]:first-child{margin-left:52%!important}.col-offset-6[data-v-105c186a]:not(first-child){margin-left:56%!important}.col-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-105c186a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-105c186a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-105c186a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-105c186a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-105c186a]:first-child{margin-left:78%!important}.col-offset-9[data-v-105c186a]:not(first-child){margin-left:82%!important}.col-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-105c186a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-105c186a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-105c186a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-105c186a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-3[data-v-105c186a]{margin-left:26%}.col-no-margin-s-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-6[data-v-105c186a]{margin-left:52%}.col-no-margin-s-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-9[data-v-105c186a]{margin-left:78%}.col-no-margin-s-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-s-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-105c186a]{display:none!important}.s-visible[data-v-105c186a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-3[data-v-105c186a]{margin-left:26%}.col-no-margin-m-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-6[data-v-105c186a]{margin-left:52%}.col-no-margin-m-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-9[data-v-105c186a]{margin-left:78%}.col-no-margin-m-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-m-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-105c186a]{display:none!important}.m-visible[data-v-105c186a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-3[data-v-105c186a]{margin-left:26%}.col-no-margin-l-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-6[data-v-105c186a]{margin-left:52%}.col-no-margin-l-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-9[data-v-105c186a]{margin-left:78%}.col-no-margin-l-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-l-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-105c186a]{display:none!important}.l-visible[data-v-105c186a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-3[data-v-105c186a]{margin-left:26%}.col-no-margin-xl-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-6[data-v-105c186a]{margin-left:52%}.col-no-margin-xl-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-9[data-v-105c186a]{margin-left:78%}.col-no-margin-xl-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-xl-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-105c186a]{display:none!important}.xl-visible[data-v-105c186a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-105c186a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-105c186a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-105c186a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-105c186a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-105c186a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-105c186a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-105c186a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-105c186a]{margin-left:26%}.col-no-margin-xxl-3[data-v-105c186a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-105c186a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-105c186a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-105c186a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-105c186a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-105c186a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-105c186a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-105c186a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-105c186a]{margin-left:52%}.col-no-margin-xxl-6[data-v-105c186a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-105c186a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-105c186a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-105c186a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-105c186a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-105c186a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-105c186a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-105c186a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-105c186a]{margin-left:78%}.col-no-margin-xxl-9[data-v-105c186a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-105c186a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-105c186a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-105c186a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-105c186a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-105c186a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-105c186a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-105c186a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-105c186a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-105c186a]{display:none!important}.xxl-visible[data-v-105c186a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-105c186a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-105c186a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-105c186a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-105c186a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-105c186a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-105c186a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-105c186a]{display:none!important}}.vertical-center[data-v-105c186a]{display:flex;align-items:center}.horizontal-center[data-v-105c186a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-105c186a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-105c186a]{display:none!important}.no-content[data-v-105c186a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-105c186a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-105c186a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-105c186a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-105c186a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-105c186a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-105c186a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-105c186a],.btn[data-v-105c186a],button[data-v-105c186a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-105c186a],.btn-default[type=submit][data-v-105c186a],.btn.btn-primary[data-v-105c186a],.btn[type=submit][data-v-105c186a],button.btn-primary[data-v-105c186a],button[type=submit][data-v-105c186a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-105c186a]:hover,.btn[data-v-105c186a]:hover,button[data-v-105c186a]:hover{color:#35b870}.btn .icon[data-v-105c186a],.btn-default .icon[data-v-105c186a],button .icon[data-v-105c186a]{margin-right:.5em}.btn-default[data-v-105c186a]:disabled,.btn-default[disabled][data-v-105c186a],.btn[data-v-105c186a]:disabled,.btn[disabled][data-v-105c186a],button[data-v-105c186a]:disabled,button[disabled][data-v-105c186a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-105c186a]{cursor:grab!important}.dragged[data-v-105c186a]{opacity:.5!important}input[type=password][data-v-105c186a],input[type=text][data-v-105c186a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-105c186a]:focus,input[type=text][data-v-105c186a]:focus{border:1px solid #35b870}button[data-v-105c186a],input[data-v-105c186a]{outline:none}input[type=text][data-v-105c186a]:hover,textarea[data-v-105c186a]:hover{border:1px solid #9cdfb0}ul[data-v-105c186a]{margin:0;padding:0;list-style:none}a[data-v-105c186a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-105c186a]:hover{color:#35b870}[data-v-105c186a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-105c186a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-105c186a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-105c186a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-105c186a]{color:#ad1717}body[data-v-105c186a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-105c186a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-105c186a] .nav .path{cursor:pointer}.browser[data-v-105c186a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-105c186a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-105c186a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-105c186a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-105c186a],input[type=number][data-v-105c186a],input[type=password][data-v-105c186a],input[type=search][data-v-105c186a],input[type=text][data-v-105c186a],input[type=time][data-v-105c186a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-105c186a]:hover,input[type=number][data-v-105c186a]:hover,input[type=password][data-v-105c186a]:hover,input[type=search][data-v-105c186a]:hover,input[type=text][data-v-105c186a]:hover,input[type=time][data-v-105c186a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-105c186a]:focus,input[type=number][data-v-105c186a]:focus,input[type=password][data-v-105c186a]:focus,input[type=search][data-v-105c186a]:focus,input[type=text][data-v-105c186a]:focus,input[type=time][data-v-105c186a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-105c186a],input[type=number].with-icon[data-v-105c186a],input[type=password].with-icon[data-v-105c186a],input[type=search].with-icon[data-v-105c186a],input[type=text].with-icon[data-v-105c186a],input[type=time].with-icon[data-v-105c186a]{padding-left:.3em}input[type=search][data-v-105c186a],input[type=text][data-v-105c186a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-105c186a]{animation-fill-mode:both;animation-name:fadeIn-105c186a;-webkit-animation-name:fadeIn-105c186a}.fade-in[data-v-105c186a],.fade-out[data-v-105c186a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-105c186a]{animation-fill-mode:both;animation-name:fadeOut-105c186a;-webkit-animation-name:fadeOut-105c186a}.expand[data-v-105c186a]{animation-fill-mode:both;animation-name:expand-105c186a;-webkit-animation-name:expand-105c186a}.expand[data-v-105c186a],.shrink[data-v-105c186a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-105c186a]{animation-fill-mode:both;animation-name:shrink-105c186a;-webkit-animation-name:shrink-105c186a}.fold[data-v-105c186a]{animation-fill-mode:both;animation-name:fold-105c186a;-webkit-animation-name:fold-105c186a}.fold[data-v-105c186a],.unfold[data-v-105c186a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-105c186a]{animation-fill-mode:both;animation-name:unfold-105c186a;-webkit-animation-name:unfold-105c186a}.dim[data-v-105c186a]{animation-fill-mode:both;animation-name:dim-105c186a;-webkit-animation-name:dim-105c186a}.brighten[data-v-105c186a],.dim[data-v-105c186a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-105c186a]{animation-fill-mode:both;animation-name:brighten-105c186a;-webkit-animation-name:brighten-105c186a}@keyframes fadeIn-105c186a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-105c186a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-105c186a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-105c186a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-105c186a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-105c186a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-105c186a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-105c186a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-105c186a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-105c186a;-webkit-animation-name:glow-105c186a}.loop[data-v-105c186a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-105c186a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-105c186a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-105c186a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-105c186a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-105c186a]{min-height:calc(100vh - 2em)}button[data-v-105c186a]{background:none;border:none;box-shadow:none}button[data-v-105c186a]:hover{color:#35b870}hgroup[data-v-105c186a]{flex-grow:1}h1[data-v-105c186a]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-105c186a]{border-radius:.5em .5em 0 0}}h2[data-v-105c186a]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-105c186a]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-105c186a]{margin-top:.5em;padding-top:.5em}section.response[data-v-105c186a]{flex-grow:1;max-height:40em}section.response .output[data-v-105c186a]{overflow:auto}.buttons[data-v-105c186a]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-105c186a]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-105c186a]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-105c186a]{background:#fff}header .buttons[data-v-105c186a]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-105c186a]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-105c186a] .doc blockquote{margin-left:0}textarea[data-v-105c186a]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-105c186a]:hover{border:1px solid #38cf80}textarea[data-v-105c186a]:focus{border:1px solid #32b646}form[data-v-105c186a]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-105c186a]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-105c186a]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-105c186a]{width:80%;max-width:60em}}.raw .first-row button[data-v-105c186a]{margin-left:0}[data-v-105c186a] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-105c186a] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-105c186a] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-105c186a] .args-body .args-list{width:30em}}[data-v-105c186a] .args-body .args-list label{display:flex;align-items:center}[data-v-105c186a] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-105c186a] .args-body .args-list .arg{width:100%}}[data-v-105c186a] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-105c186a] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-105c186a] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-105c186a]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-105c186a]{flex-direction:column}}.add-arg[data-v-105c186a]{width:100%}.add-arg button[data-v-105c186a]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-105c186a]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-105c186a]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-105c186a]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-105c186a]{width:100%}.doc-container[data-v-105c186a],.response[data-v-105c186a]{flex-grow:1}.doc-container h2[data-v-105c186a],.response h2[data-v-105c186a]{display:inline-flex}.doc-container h2 .title[data-v-105c186a],.response h2 .title[data-v-105c186a]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-105c186a],.response h2 .buttons[data-v-105c186a]{width:2em}.doc-container h2 .buttons button[data-v-105c186a],.response h2 .buttons button[data-v-105c186a]{padding:0}.output[data-v-105c186a]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-105c186a]{color:red}textarea.curl-snippet[data-v-105c186a]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.doc-container .buttons[data-v-105c186a]{margin-right:1.25em}.doc-container .buttons button i[data-v-105c186a]{padding:0 .75em}.doc-container .buttons button[data-v-105c186a]:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6d883d44]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6d883d44]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6d883d44]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6d883d44]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6d883d44]:first-child{margin-left:26%!important}.col-offset-3[data-v-6d883d44]:not(first-child){margin-left:30%!important}.col-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6d883d44]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6d883d44]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6d883d44]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6d883d44]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6d883d44]:first-child{margin-left:52%!important}.col-offset-6[data-v-6d883d44]:not(first-child){margin-left:56%!important}.col-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6d883d44]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6d883d44]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6d883d44]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6d883d44]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6d883d44]:first-child{margin-left:78%!important}.col-offset-9[data-v-6d883d44]:not(first-child){margin-left:82%!important}.col-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6d883d44]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6d883d44]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6d883d44]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6d883d44]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-1[data-v-6d883d44]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-2[data-v-6d883d44]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-3[data-v-6d883d44]{margin-left:26%}.col-no-margin-s-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-4[data-v-6d883d44]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-5[data-v-6d883d44]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-6[data-v-6d883d44]{margin-left:52%}.col-no-margin-s-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-7[data-v-6d883d44]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-8[data-v-6d883d44]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-9[data-v-6d883d44]{margin-left:78%}.col-no-margin-s-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-10[data-v-6d883d44]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6d883d44]:first-child{margin-left:0}.col-offset-s-11[data-v-6d883d44]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6d883d44]{display:none!important}.s-visible[data-v-6d883d44]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-1[data-v-6d883d44]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-2[data-v-6d883d44]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-3[data-v-6d883d44]{margin-left:26%}.col-no-margin-m-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-4[data-v-6d883d44]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-5[data-v-6d883d44]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-6[data-v-6d883d44]{margin-left:52%}.col-no-margin-m-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-7[data-v-6d883d44]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-8[data-v-6d883d44]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-9[data-v-6d883d44]{margin-left:78%}.col-no-margin-m-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-10[data-v-6d883d44]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6d883d44]:first-child{margin-left:0}.col-offset-m-11[data-v-6d883d44]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6d883d44]{display:none!important}.m-visible[data-v-6d883d44]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-1[data-v-6d883d44]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-2[data-v-6d883d44]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-3[data-v-6d883d44]{margin-left:26%}.col-no-margin-l-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-4[data-v-6d883d44]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-5[data-v-6d883d44]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-6[data-v-6d883d44]{margin-left:52%}.col-no-margin-l-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-7[data-v-6d883d44]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-8[data-v-6d883d44]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-9[data-v-6d883d44]{margin-left:78%}.col-no-margin-l-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-10[data-v-6d883d44]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6d883d44]:first-child{margin-left:0}.col-offset-l-11[data-v-6d883d44]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6d883d44]{display:none!important}.l-visible[data-v-6d883d44]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-1[data-v-6d883d44]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-2[data-v-6d883d44]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-3[data-v-6d883d44]{margin-left:26%}.col-no-margin-xl-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-4[data-v-6d883d44]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-5[data-v-6d883d44]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-6[data-v-6d883d44]{margin-left:52%}.col-no-margin-xl-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-7[data-v-6d883d44]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-8[data-v-6d883d44]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-9[data-v-6d883d44]{margin-left:78%}.col-no-margin-xl-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-10[data-v-6d883d44]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xl-11[data-v-6d883d44]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6d883d44]{display:none!important}.xl-visible[data-v-6d883d44]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6d883d44]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6d883d44]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6d883d44]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6d883d44]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6d883d44]{margin-left:26%}.col-no-margin-xxl-3[data-v-6d883d44]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6d883d44]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6d883d44]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6d883d44]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6d883d44]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6d883d44]{margin-left:52%}.col-no-margin-xxl-6[data-v-6d883d44]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6d883d44]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6d883d44]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6d883d44]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6d883d44]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6d883d44]{margin-left:78%}.col-no-margin-xxl-9[data-v-6d883d44]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6d883d44]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6d883d44]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6d883d44]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6d883d44]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6d883d44]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6d883d44]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6d883d44]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6d883d44]{display:none!important}.xxl-visible[data-v-6d883d44]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6d883d44]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6d883d44]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6d883d44]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6d883d44]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6d883d44]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6d883d44]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6d883d44]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6d883d44]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6d883d44]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6d883d44]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6d883d44]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6d883d44]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6d883d44]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6d883d44]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6d883d44]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6d883d44]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6d883d44]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6d883d44]{display:none!important}}.vertical-center[data-v-6d883d44]{display:flex;align-items:center}.horizontal-center[data-v-6d883d44]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6d883d44]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6d883d44]{display:none!important}.no-content[data-v-6d883d44]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6d883d44]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6d883d44]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6d883d44]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6d883d44]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6d883d44]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6d883d44]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6d883d44],.btn[data-v-6d883d44],button[data-v-6d883d44]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6d883d44],.btn-default[type=submit][data-v-6d883d44],.btn.btn-primary[data-v-6d883d44],.btn[type=submit][data-v-6d883d44],button.btn-primary[data-v-6d883d44],button[type=submit][data-v-6d883d44]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-6d883d44]:hover,.btn[data-v-6d883d44]:hover,button[data-v-6d883d44]:hover{color:#35b870}.btn .icon[data-v-6d883d44],.btn-default .icon[data-v-6d883d44],button .icon[data-v-6d883d44]{margin-right:.5em}.btn-default[data-v-6d883d44]:disabled,.btn-default[disabled][data-v-6d883d44],.btn[data-v-6d883d44]:disabled,.btn[disabled][data-v-6d883d44],button[data-v-6d883d44]:disabled,button[disabled][data-v-6d883d44]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-6d883d44]{cursor:grab!important}.dragged[data-v-6d883d44]{opacity:.5!important}input[type=password][data-v-6d883d44],input[type=text][data-v-6d883d44]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6d883d44]:focus,input[type=text][data-v-6d883d44]:focus{border:1px solid #35b870}button[data-v-6d883d44],input[data-v-6d883d44]{outline:none}input[type=text][data-v-6d883d44]:hover,textarea[data-v-6d883d44]:hover{border:1px solid #9cdfb0}ul[data-v-6d883d44]{margin:0;padding:0;list-style:none}a[data-v-6d883d44]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6d883d44]:hover{color:#35b870}[data-v-6d883d44]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6d883d44]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6d883d44]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6d883d44]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-6d883d44]{color:#ad1717}body[data-v-6d883d44]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6d883d44] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6d883d44] .nav .path{cursor:pointer}.browser[data-v-6d883d44] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6d883d44] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-6d883d44]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-6d883d44]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6d883d44],input[type=number][data-v-6d883d44],input[type=password][data-v-6d883d44],input[type=search][data-v-6d883d44],input[type=text][data-v-6d883d44],input[type=time][data-v-6d883d44]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-6d883d44]:hover,input[type=number][data-v-6d883d44]:hover,input[type=password][data-v-6d883d44]:hover,input[type=search][data-v-6d883d44]:hover,input[type=text][data-v-6d883d44]:hover,input[type=time][data-v-6d883d44]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6d883d44]:focus,input[type=number][data-v-6d883d44]:focus,input[type=password][data-v-6d883d44]:focus,input[type=search][data-v-6d883d44]:focus,input[type=text][data-v-6d883d44]:focus,input[type=time][data-v-6d883d44]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6d883d44],input[type=number].with-icon[data-v-6d883d44],input[type=password].with-icon[data-v-6d883d44],input[type=search].with-icon[data-v-6d883d44],input[type=text].with-icon[data-v-6d883d44],input[type=time].with-icon[data-v-6d883d44]{padding-left:.3em}input[type=search][data-v-6d883d44],input[type=text][data-v-6d883d44]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6d883d44]{animation-fill-mode:both;animation-name:fadeIn-6d883d44;-webkit-animation-name:fadeIn-6d883d44}.fade-in[data-v-6d883d44],.fade-out[data-v-6d883d44]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6d883d44]{animation-fill-mode:both;animation-name:fadeOut-6d883d44;-webkit-animation-name:fadeOut-6d883d44}.expand[data-v-6d883d44]{animation-fill-mode:both;animation-name:expand-6d883d44;-webkit-animation-name:expand-6d883d44}.expand[data-v-6d883d44],.shrink[data-v-6d883d44]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-6d883d44]{animation-fill-mode:both;animation-name:shrink-6d883d44;-webkit-animation-name:shrink-6d883d44}.fold[data-v-6d883d44]{animation-fill-mode:both;animation-name:fold-6d883d44;-webkit-animation-name:fold-6d883d44}.fold[data-v-6d883d44],.unfold[data-v-6d883d44]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-6d883d44]{animation-fill-mode:both;animation-name:unfold-6d883d44;-webkit-animation-name:unfold-6d883d44}.dim[data-v-6d883d44]{animation-fill-mode:both;animation-name:dim-6d883d44;-webkit-animation-name:dim-6d883d44}.brighten[data-v-6d883d44],.dim[data-v-6d883d44]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-6d883d44]{animation-fill-mode:both;animation-name:brighten-6d883d44;-webkit-animation-name:brighten-6d883d44}@keyframes fadeIn-6d883d44{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6d883d44{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-6d883d44{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-6d883d44{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-6d883d44{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-6d883d44{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-6d883d44{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-6d883d44{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-6d883d44]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6d883d44;-webkit-animation-name:glow-6d883d44}.loop[data-v-6d883d44]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6d883d44{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6d883d44]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6d883d44]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6d883d44]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-6d883d44]{min-height:calc(100vh - 2em)}button[data-v-6d883d44]{background:none;border:none;box-shadow:none}button[data-v-6d883d44]:hover{color:#35b870}hgroup[data-v-6d883d44]{flex-grow:1}h1[data-v-6d883d44]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-6d883d44]{border-radius:.5em .5em 0 0}}h2[data-v-6d883d44]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-6d883d44]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-6d883d44]{margin-top:.5em;padding-top:.5em}section.response[data-v-6d883d44]{flex-grow:1;max-height:40em}section.response .output[data-v-6d883d44]{overflow:auto}.buttons[data-v-6d883d44]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-6d883d44]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-6d883d44]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-6d883d44]{background:#fff}header .buttons[data-v-6d883d44]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-6d883d44]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-6d883d44] .doc blockquote{margin-left:0}textarea[data-v-6d883d44]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-6d883d44]:hover{border:1px solid #38cf80}textarea[data-v-6d883d44]:focus{border:1px solid #32b646}form[data-v-6d883d44]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-6d883d44]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-6d883d44]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-6d883d44]{width:80%;max-width:60em}}.raw .first-row button[data-v-6d883d44]{margin-left:0}[data-v-6d883d44] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-6d883d44] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-6d883d44] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-6d883d44] .args-body .args-list{width:30em}}[data-v-6d883d44] .args-body .args-list label{display:flex;align-items:center}[data-v-6d883d44] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-6d883d44] .args-body .args-list .arg{width:100%}}[data-v-6d883d44] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-6d883d44] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-6d883d44] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-6d883d44]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-6d883d44]{flex-direction:column}}.add-arg[data-v-6d883d44]{width:100%}.add-arg button[data-v-6d883d44]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-6d883d44]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-6d883d44]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-6d883d44]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-6d883d44]{width:100%}.doc-container[data-v-6d883d44],.response[data-v-6d883d44]{flex-grow:1}.doc-container h2[data-v-6d883d44],.response h2[data-v-6d883d44]{display:inline-flex}.doc-container h2 .title[data-v-6d883d44],.response h2 .title[data-v-6d883d44]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-6d883d44],.response h2 .buttons[data-v-6d883d44]{width:2em}.doc-container h2 .buttons button[data-v-6d883d44],.response h2 .buttons button[data-v-6d883d44]{padding:0}.output[data-v-6d883d44]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-6d883d44]{color:red}textarea.curl-snippet[data-v-6d883d44]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.response .buttons button[data-v-6d883d44]:hover{color:#35b870;background:none;border:none}.col-1[data-v-521241df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-521241df]:first-child{margin-left:0}.col-no-margin-1[data-v-521241df]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-521241df]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-521241df]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-521241df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-521241df]:first-child{margin-left:0}.col-no-margin-2[data-v-521241df]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-521241df]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-521241df]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-521241df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-521241df]:first-child{margin-left:0}.col-no-margin-3[data-v-521241df]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-521241df]:first-child{margin-left:26%!important}.col-offset-3[data-v-521241df]:not(first-child){margin-left:30%!important}.col-4[data-v-521241df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-521241df]:first-child{margin-left:0}.col-no-margin-4[data-v-521241df]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-521241df]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-521241df]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-521241df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-521241df]:first-child{margin-left:0}.col-no-margin-5[data-v-521241df]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-521241df]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-521241df]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-521241df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-521241df]:first-child{margin-left:0}.col-no-margin-6[data-v-521241df]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-521241df]:first-child{margin-left:52%!important}.col-offset-6[data-v-521241df]:not(first-child){margin-left:56%!important}.col-7[data-v-521241df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-521241df]:first-child{margin-left:0}.col-no-margin-7[data-v-521241df]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-521241df]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-521241df]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-521241df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-521241df]:first-child{margin-left:0}.col-no-margin-8[data-v-521241df]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-521241df]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-521241df]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-521241df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-521241df]:first-child{margin-left:0}.col-no-margin-9[data-v-521241df]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-521241df]:first-child{margin-left:78%!important}.col-offset-9[data-v-521241df]:not(first-child){margin-left:82%!important}.col-10[data-v-521241df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-521241df]:first-child{margin-left:0}.col-no-margin-10[data-v-521241df]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-521241df]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-521241df]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-521241df]:first-child{margin-left:0}.col-no-margin-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-521241df]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-521241df]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-521241df]:first-child{margin-left:0}.col-no-margin-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-521241df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-521241df]:first-child{margin-left:0}.col-offset-s-1[data-v-521241df]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-521241df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-521241df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-521241df]:first-child{margin-left:0}.col-offset-s-2[data-v-521241df]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-521241df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-521241df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-521241df]:first-child{margin-left:0}.col-offset-s-3[data-v-521241df]{margin-left:26%}.col-no-margin-s-3[data-v-521241df]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-521241df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-521241df]:first-child{margin-left:0}.col-offset-s-4[data-v-521241df]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-521241df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-521241df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-521241df]:first-child{margin-left:0}.col-offset-s-5[data-v-521241df]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-521241df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-521241df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-521241df]:first-child{margin-left:0}.col-offset-s-6[data-v-521241df]{margin-left:52%}.col-no-margin-s-6[data-v-521241df]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-521241df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-521241df]:first-child{margin-left:0}.col-offset-s-7[data-v-521241df]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-521241df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-521241df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-521241df]:first-child{margin-left:0}.col-offset-s-8[data-v-521241df]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-521241df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-521241df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-521241df]:first-child{margin-left:0}.col-offset-s-9[data-v-521241df]{margin-left:78%}.col-no-margin-s-9[data-v-521241df]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-521241df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-521241df]:first-child{margin-left:0}.col-offset-s-10[data-v-521241df]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-521241df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-521241df]:first-child{margin-left:0}.col-offset-s-11[data-v-521241df]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-521241df]:first-child{margin-left:0}.col-no-margin-s-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-521241df]{display:none!important}.s-visible[data-v-521241df]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-521241df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-521241df]:first-child{margin-left:0}.col-offset-m-1[data-v-521241df]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-521241df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-521241df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-521241df]:first-child{margin-left:0}.col-offset-m-2[data-v-521241df]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-521241df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-521241df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-521241df]:first-child{margin-left:0}.col-offset-m-3[data-v-521241df]{margin-left:26%}.col-no-margin-m-3[data-v-521241df]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-521241df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-521241df]:first-child{margin-left:0}.col-offset-m-4[data-v-521241df]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-521241df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-521241df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-521241df]:first-child{margin-left:0}.col-offset-m-5[data-v-521241df]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-521241df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-521241df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-521241df]:first-child{margin-left:0}.col-offset-m-6[data-v-521241df]{margin-left:52%}.col-no-margin-m-6[data-v-521241df]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-521241df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-521241df]:first-child{margin-left:0}.col-offset-m-7[data-v-521241df]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-521241df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-521241df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-521241df]:first-child{margin-left:0}.col-offset-m-8[data-v-521241df]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-521241df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-521241df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-521241df]:first-child{margin-left:0}.col-offset-m-9[data-v-521241df]{margin-left:78%}.col-no-margin-m-9[data-v-521241df]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-521241df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-521241df]:first-child{margin-left:0}.col-offset-m-10[data-v-521241df]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-521241df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-521241df]:first-child{margin-left:0}.col-offset-m-11[data-v-521241df]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-521241df]:first-child{margin-left:0}.col-no-margin-m-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-521241df]{display:none!important}.m-visible[data-v-521241df]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-521241df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-521241df]:first-child{margin-left:0}.col-offset-l-1[data-v-521241df]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-521241df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-521241df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-521241df]:first-child{margin-left:0}.col-offset-l-2[data-v-521241df]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-521241df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-521241df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-521241df]:first-child{margin-left:0}.col-offset-l-3[data-v-521241df]{margin-left:26%}.col-no-margin-l-3[data-v-521241df]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-521241df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-521241df]:first-child{margin-left:0}.col-offset-l-4[data-v-521241df]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-521241df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-521241df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-521241df]:first-child{margin-left:0}.col-offset-l-5[data-v-521241df]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-521241df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-521241df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-521241df]:first-child{margin-left:0}.col-offset-l-6[data-v-521241df]{margin-left:52%}.col-no-margin-l-6[data-v-521241df]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-521241df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-521241df]:first-child{margin-left:0}.col-offset-l-7[data-v-521241df]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-521241df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-521241df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-521241df]:first-child{margin-left:0}.col-offset-l-8[data-v-521241df]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-521241df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-521241df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-521241df]:first-child{margin-left:0}.col-offset-l-9[data-v-521241df]{margin-left:78%}.col-no-margin-l-9[data-v-521241df]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-521241df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-521241df]:first-child{margin-left:0}.col-offset-l-10[data-v-521241df]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-521241df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-521241df]:first-child{margin-left:0}.col-offset-l-11[data-v-521241df]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-521241df]:first-child{margin-left:0}.col-no-margin-l-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-521241df]{display:none!important}.l-visible[data-v-521241df]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-521241df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-1[data-v-521241df]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-521241df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-521241df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-2[data-v-521241df]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-521241df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-521241df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-3[data-v-521241df]{margin-left:26%}.col-no-margin-xl-3[data-v-521241df]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-521241df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-4[data-v-521241df]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-521241df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-521241df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-5[data-v-521241df]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-521241df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-521241df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-6[data-v-521241df]{margin-left:52%}.col-no-margin-xl-6[data-v-521241df]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-521241df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-7[data-v-521241df]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-521241df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-521241df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-8[data-v-521241df]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-521241df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-521241df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-9[data-v-521241df]{margin-left:78%}.col-no-margin-xl-9[data-v-521241df]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-521241df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-10[data-v-521241df]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-521241df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-521241df]:first-child{margin-left:0}.col-offset-xl-11[data-v-521241df]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-521241df]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-521241df]{display:none!important}.xl-visible[data-v-521241df]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-521241df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-1[data-v-521241df]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-521241df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-521241df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-2[data-v-521241df]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-521241df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-521241df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-3[data-v-521241df]{margin-left:26%}.col-no-margin-xxl-3[data-v-521241df]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-521241df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-4[data-v-521241df]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-521241df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-521241df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-5[data-v-521241df]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-521241df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-521241df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-6[data-v-521241df]{margin-left:52%}.col-no-margin-xxl-6[data-v-521241df]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-521241df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-7[data-v-521241df]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-521241df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-521241df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-8[data-v-521241df]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-521241df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-521241df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-9[data-v-521241df]{margin-left:78%}.col-no-margin-xxl-9[data-v-521241df]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-521241df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-10[data-v-521241df]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-521241df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-521241df]:first-child{margin-left:0}.col-offset-xxl-11[data-v-521241df]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-521241df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-521241df]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-521241df]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-521241df]{display:none!important}.xxl-visible[data-v-521241df]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-521241df]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-521241df]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-521241df]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-521241df]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-521241df]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-521241df]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-521241df]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-521241df]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-521241df]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-521241df]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-521241df]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-521241df]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-521241df]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-521241df]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-521241df]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-521241df]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-521241df]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-521241df]{display:none!important}}.vertical-center[data-v-521241df]{display:flex;align-items:center}.horizontal-center[data-v-521241df]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-521241df]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-521241df]{display:none!important}.no-content[data-v-521241df]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-521241df]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-521241df]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-521241df]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-521241df]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-521241df]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-521241df]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-521241df],.btn[data-v-521241df],button[data-v-521241df]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-521241df],.btn-default[type=submit][data-v-521241df],.btn.btn-primary[data-v-521241df],.btn[type=submit][data-v-521241df],button.btn-primary[data-v-521241df],button[type=submit][data-v-521241df]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-521241df]:hover,.btn[data-v-521241df]:hover,button[data-v-521241df]:hover{color:#35b870}.btn .icon[data-v-521241df],.btn-default .icon[data-v-521241df],button .icon[data-v-521241df]{margin-right:.5em}.btn-default[data-v-521241df]:disabled,.btn-default[disabled][data-v-521241df],.btn[data-v-521241df]:disabled,.btn[disabled][data-v-521241df],button[data-v-521241df]:disabled,button[disabled][data-v-521241df]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-521241df]{cursor:grab!important}.dragged[data-v-521241df]{opacity:.5!important}input[type=password][data-v-521241df],input[type=text][data-v-521241df]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-521241df]:focus,input[type=text][data-v-521241df]:focus{border:1px solid #35b870}button[data-v-521241df],input[data-v-521241df]{outline:none}input[type=text][data-v-521241df]:hover,textarea[data-v-521241df]:hover{border:1px solid #9cdfb0}ul[data-v-521241df]{margin:0;padding:0;list-style:none}a[data-v-521241df]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-521241df]:hover{color:#35b870}[data-v-521241df]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-521241df]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-521241df]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-521241df]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-521241df]{color:#ad1717}body[data-v-521241df]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-521241df] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-521241df] .nav .path{cursor:pointer}.browser[data-v-521241df] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-521241df] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-521241df]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-521241df]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-521241df],input[type=number][data-v-521241df],input[type=password][data-v-521241df],input[type=search][data-v-521241df],input[type=text][data-v-521241df],input[type=time][data-v-521241df]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-521241df]:hover,input[type=number][data-v-521241df]:hover,input[type=password][data-v-521241df]:hover,input[type=search][data-v-521241df]:hover,input[type=text][data-v-521241df]:hover,input[type=time][data-v-521241df]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-521241df]:focus,input[type=number][data-v-521241df]:focus,input[type=password][data-v-521241df]:focus,input[type=search][data-v-521241df]:focus,input[type=text][data-v-521241df]:focus,input[type=time][data-v-521241df]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-521241df],input[type=number].with-icon[data-v-521241df],input[type=password].with-icon[data-v-521241df],input[type=search].with-icon[data-v-521241df],input[type=text].with-icon[data-v-521241df],input[type=time].with-icon[data-v-521241df]{padding-left:.3em}input[type=search][data-v-521241df],input[type=text][data-v-521241df]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-521241df]{animation-fill-mode:both;animation-name:fadeIn-521241df;-webkit-animation-name:fadeIn-521241df}.fade-in[data-v-521241df],.fade-out[data-v-521241df]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-521241df]{animation-fill-mode:both;animation-name:fadeOut-521241df;-webkit-animation-name:fadeOut-521241df}.expand[data-v-521241df]{animation-fill-mode:both;animation-name:expand-521241df;-webkit-animation-name:expand-521241df}.expand[data-v-521241df],.shrink[data-v-521241df]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-521241df]{animation-fill-mode:both;animation-name:shrink-521241df;-webkit-animation-name:shrink-521241df}.fold[data-v-521241df]{animation-fill-mode:both;animation-name:fold-521241df;-webkit-animation-name:fold-521241df}.fold[data-v-521241df],.unfold[data-v-521241df]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-521241df]{animation-fill-mode:both;animation-name:unfold-521241df;-webkit-animation-name:unfold-521241df}.dim[data-v-521241df]{animation-fill-mode:both;animation-name:dim-521241df;-webkit-animation-name:dim-521241df}.brighten[data-v-521241df],.dim[data-v-521241df]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-521241df]{animation-fill-mode:both;animation-name:brighten-521241df;-webkit-animation-name:brighten-521241df}@keyframes fadeIn-521241df{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-521241df{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-521241df{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-521241df{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-521241df{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-521241df{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-521241df{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-521241df{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-521241df]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-521241df;-webkit-animation-name:glow-521241df}.loop[data-v-521241df]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-521241df{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-521241df]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-521241df]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-521241df]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-521241df]{min-height:calc(100vh - 2em)}button[data-v-521241df]{background:none;border:none;box-shadow:none}button[data-v-521241df]:hover{color:#35b870}hgroup[data-v-521241df]{flex-grow:1}h1[data-v-521241df]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-521241df]{border-radius:.5em .5em 0 0}}h2[data-v-521241df]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-521241df]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-521241df]{margin-top:.5em;padding-top:.5em}section.response[data-v-521241df]{flex-grow:1;max-height:40em}section.response .output[data-v-521241df]{overflow:auto}.buttons[data-v-521241df]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-521241df]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-521241df]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-521241df]{background:#fff}header .buttons[data-v-521241df]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-521241df]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-521241df] .doc blockquote{margin-left:0}textarea[data-v-521241df]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-521241df]:hover{border:1px solid #38cf80}textarea[data-v-521241df]:focus{border:1px solid #32b646}form[data-v-521241df]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-521241df]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-521241df]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-521241df]{width:80%;max-width:60em}}.raw .first-row button[data-v-521241df]{margin-left:0}[data-v-521241df] .args-body .args-list{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){[data-v-521241df] .args-body .args-list{width:100%}}@media screen and (min-width:769px){[data-v-521241df] .args-body .args-list{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){[data-v-521241df] .args-body .args-list{width:30em}}[data-v-521241df] .args-body .args-list label{display:flex;align-items:center}[data-v-521241df] .args-body .args-list .arg{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){[data-v-521241df] .args-body .args-list .arg{width:100%}}[data-v-521241df] .args-body .args-list .arg .required-flag{width:1.25em;display:inline-block;font-weight:700;margin-left:.25em;text-align:center}[data-v-521241df] .args-body .args-list .autocomplete-with-context{width:calc(100% - 1.5em)}[data-v-521241df] .args-body .args-list .action-arg-value{width:100%}.args-body[data-v-521241df]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-521241df]{flex-direction:column}}.add-arg[data-v-521241df]{width:100%}.add-arg button[data-v-521241df]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-521241df]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-521241df]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-521241df]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-521241df]{width:100%}.doc-container[data-v-521241df],.response[data-v-521241df]{flex-grow:1}.doc-container h2[data-v-521241df],.response h2[data-v-521241df]{display:inline-flex}.doc-container h2 .title[data-v-521241df],.response h2 .title[data-v-521241df]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-521241df],.response h2 .buttons[data-v-521241df]{width:2em}.doc-container h2 .buttons button[data-v-521241df],.response h2 .buttons button[data-v-521241df]{padding:0}.output[data-v-521241df]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-521241df]{color:red}textarea.curl-snippet[data-v-521241df]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.action-editor-container[data-v-521241df]{width:100%;height:100%;display:flex;flex-direction:column;align-items:center}.action-editor-container .action-editor[data-v-521241df]{width:100%;max-width:1000px;display:flex;flex-direction:column;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75),0 3px 3px 0 hsla(0,0%,73%,.75)}.action-editor-container .request[data-v-521241df]{display:flex;flex-direction:column;margin:0 .5em}.action-editor-container .run-btn[data-v-521241df]{width:3.5em;height:2.5em;background:#fff;border-color:#ccc;border-left:none;border-radius:0 1em 1em 0;padding:.5em 1em;box-shadow:none;cursor:pointer}.action-editor-container .run-btn[data-v-521241df]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);border-color:#9cdfb0;box-shadow:none}.action-editor-container .run-btn[data-v-521241df]:disabled{opacity:.7;color:#23513a;cursor:auto;box-shadow:none}.action-editor-container .run-btn[data-v-521241df]:disabled:hover{background:#fff;box-shadow:none}.action-editor-container .raw-run-btn[data-v-521241df]{padding:.5em 1.5em;border-radius:1em}.action-editor-container .curl-modal-container[data-v-521241df] .modal .content{width:100%}.action-editor-container .curl-modal-container[data-v-521241df] .modal .content .body{height:auto}.action-editor-container .curl-modal-container[data-v-521241df] .modal .output{border-radius:0}.action-editor-container .autocomplete-container[data-v-521241df]{display:flex;flex-direction:row;align-items:center}.action-editor-container .autocomplete-container[data-v-521241df] .autocomplete{width:calc(100% - 3.5em)}.action-editor-container .autocomplete-container[data-v-521241df] .autocomplete input[type=text]{height:2.5em;border-radius:1em 0 0 1em;box-shadow:none}.action-editor-container .raw-request[data-v-521241df]{height:100%;overflow:auto}.action-editor-container .raw-request textarea[data-v-521241df]{width:100%;min-height:15em;border:1px solid #ddd;box-shadow:0 3px 2px -1px silver;padding:1em;font-family:monospace;font-size:.9em}.action-editor-container.with-save .header-container[data-v-521241df]{width:100%;height:3.5em;display:flex;flex-direction:row;background:#f6f6f6;border-bottom:1px solid #ccc;box-shadow:0 3px 2px -1px silver}.action-editor-container.with-save .header-container .buttons[data-v-521241df]{width:3.5em;height:calc(3.5em - 1px);background:linear-gradient(0deg,#ececec,#f6f6f6)}.action-editor-container.with-save .header-container .buttons button[data-v-521241df]{width:3.5em;height:3.5em}.action-editor-container.with-save .header-container .buttons button[data-v-521241df]:disabled{opacity:.7;background:#e4eae8;cursor:auto;box-shadow:none}.action-editor-container.with-save .header-container .buttons button[data-v-521241df]:disabled:hover{background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:none}.action-editor-container.with-save .header-container .tabs-container[data-v-521241df]{width:calc(100% - 3.5em)}.action-editor-container.with-save .header-container .tabs-container[data-v-521241df] .tabs{width:100%;height:calc(3.5em - 1px);box-shadow:none}@media screen and (max-width:calc(769px - 1px)){.action-editor-container.with-save .header-container .tabs-container[data-v-521241df] .tabs .tab{width:50%;flex-grow:0}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7619.c8d6a02e.css b/platypush/backend/http/webapp/dist/static/css/7619.c8d6a02e.css new file mode 100644 index 0000000000..230e586692 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7619.c8d6a02e.css @@ -0,0 +1 @@ +.col-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5c4d8ddd]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5c4d8ddd]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5c4d8ddd]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5c4d8ddd]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5c4d8ddd]:first-child{margin-left:26%!important}.col-offset-3[data-v-5c4d8ddd]:not(first-child){margin-left:30%!important}.col-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5c4d8ddd]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5c4d8ddd]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5c4d8ddd]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5c4d8ddd]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5c4d8ddd]:first-child{margin-left:52%!important}.col-offset-6[data-v-5c4d8ddd]:not(first-child){margin-left:56%!important}.col-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5c4d8ddd]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5c4d8ddd]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5c4d8ddd]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5c4d8ddd]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5c4d8ddd]:first-child{margin-left:78%!important}.col-offset-9[data-v-5c4d8ddd]:not(first-child){margin-left:82%!important}.col-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5c4d8ddd]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5c4d8ddd]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5c4d8ddd]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5c4d8ddd]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-1[data-v-5c4d8ddd]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-2[data-v-5c4d8ddd]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-3[data-v-5c4d8ddd]{margin-left:26%}.col-no-margin-s-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-4[data-v-5c4d8ddd]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-5[data-v-5c4d8ddd]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-6[data-v-5c4d8ddd]{margin-left:52%}.col-no-margin-s-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-7[data-v-5c4d8ddd]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-8[data-v-5c4d8ddd]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-9[data-v-5c4d8ddd]{margin-left:78%}.col-no-margin-s-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-10[data-v-5c4d8ddd]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-s-11[data-v-5c4d8ddd]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5c4d8ddd]{display:none!important}.s-visible[data-v-5c4d8ddd]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-1[data-v-5c4d8ddd]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-2[data-v-5c4d8ddd]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-3[data-v-5c4d8ddd]{margin-left:26%}.col-no-margin-m-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-4[data-v-5c4d8ddd]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-5[data-v-5c4d8ddd]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-6[data-v-5c4d8ddd]{margin-left:52%}.col-no-margin-m-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-7[data-v-5c4d8ddd]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-8[data-v-5c4d8ddd]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-9[data-v-5c4d8ddd]{margin-left:78%}.col-no-margin-m-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-10[data-v-5c4d8ddd]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-m-11[data-v-5c4d8ddd]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5c4d8ddd]{display:none!important}.m-visible[data-v-5c4d8ddd]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-1[data-v-5c4d8ddd]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-2[data-v-5c4d8ddd]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-3[data-v-5c4d8ddd]{margin-left:26%}.col-no-margin-l-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-4[data-v-5c4d8ddd]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-5[data-v-5c4d8ddd]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-6[data-v-5c4d8ddd]{margin-left:52%}.col-no-margin-l-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-7[data-v-5c4d8ddd]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-8[data-v-5c4d8ddd]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-9[data-v-5c4d8ddd]{margin-left:78%}.col-no-margin-l-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-10[data-v-5c4d8ddd]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-l-11[data-v-5c4d8ddd]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5c4d8ddd]{display:none!important}.l-visible[data-v-5c4d8ddd]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-1[data-v-5c4d8ddd]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-2[data-v-5c4d8ddd]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-3[data-v-5c4d8ddd]{margin-left:26%}.col-no-margin-xl-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-4[data-v-5c4d8ddd]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-5[data-v-5c4d8ddd]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-6[data-v-5c4d8ddd]{margin-left:52%}.col-no-margin-xl-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-7[data-v-5c4d8ddd]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-8[data-v-5c4d8ddd]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-9[data-v-5c4d8ddd]{margin-left:78%}.col-no-margin-xl-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-10[data-v-5c4d8ddd]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xl-11[data-v-5c4d8ddd]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5c4d8ddd]{display:none!important}.xl-visible[data-v-5c4d8ddd]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5c4d8ddd]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5c4d8ddd]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5c4d8ddd]{margin-left:26%}.col-no-margin-xxl-3[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5c4d8ddd]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5c4d8ddd]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5c4d8ddd]{margin-left:52%}.col-no-margin-xxl-6[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5c4d8ddd]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5c4d8ddd]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5c4d8ddd]{margin-left:78%}.col-no-margin-xxl-9[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5c4d8ddd]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5c4d8ddd]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5c4d8ddd]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5c4d8ddd]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5c4d8ddd]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5c4d8ddd]{display:none!important}.xxl-visible[data-v-5c4d8ddd]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5c4d8ddd]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5c4d8ddd]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5c4d8ddd]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5c4d8ddd]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5c4d8ddd]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5c4d8ddd]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5c4d8ddd]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5c4d8ddd]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5c4d8ddd]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5c4d8ddd]{display:none!important}}.vertical-center[data-v-5c4d8ddd]{display:flex;align-items:center}.horizontal-center[data-v-5c4d8ddd]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5c4d8ddd]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5c4d8ddd]{display:none!important}.no-content[data-v-5c4d8ddd]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5c4d8ddd]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5c4d8ddd]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5c4d8ddd]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5c4d8ddd]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5c4d8ddd]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5c4d8ddd]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5c4d8ddd],.btn[data-v-5c4d8ddd],button[data-v-5c4d8ddd]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5c4d8ddd],.btn-default[type=submit][data-v-5c4d8ddd],.btn.btn-primary[data-v-5c4d8ddd],.btn[type=submit][data-v-5c4d8ddd],button.btn-primary[data-v-5c4d8ddd],button[type=submit][data-v-5c4d8ddd]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5c4d8ddd]:hover,.btn[data-v-5c4d8ddd]:hover,button[data-v-5c4d8ddd]:hover{color:#35b870}.btn .icon[data-v-5c4d8ddd],.btn-default .icon[data-v-5c4d8ddd],button .icon[data-v-5c4d8ddd]{margin-right:.5em}.btn-default[data-v-5c4d8ddd]:disabled,.btn-default[disabled][data-v-5c4d8ddd],.btn[data-v-5c4d8ddd]:disabled,.btn[disabled][data-v-5c4d8ddd],button[data-v-5c4d8ddd]:disabled,button[disabled][data-v-5c4d8ddd]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5c4d8ddd]{cursor:grab!important}.dragged[data-v-5c4d8ddd]{opacity:.5!important}input[type=password][data-v-5c4d8ddd],input[type=text][data-v-5c4d8ddd]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5c4d8ddd]:focus,input[type=text][data-v-5c4d8ddd]:focus{border:1px solid #35b870}button[data-v-5c4d8ddd],input[data-v-5c4d8ddd]{outline:none}input[type=text][data-v-5c4d8ddd]:hover,textarea[data-v-5c4d8ddd]:hover{border:1px solid #9cdfb0}ul[data-v-5c4d8ddd]{margin:0;padding:0;list-style:none}a[data-v-5c4d8ddd]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5c4d8ddd]:hover{color:#35b870}[data-v-5c4d8ddd]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5c4d8ddd]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5c4d8ddd]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5c4d8ddd]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5c4d8ddd]{color:#ad1717}body[data-v-5c4d8ddd]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5c4d8ddd] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5c4d8ddd] .nav .path{cursor:pointer}.browser[data-v-5c4d8ddd] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5c4d8ddd] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5c4d8ddd]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5c4d8ddd]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5c4d8ddd],input[type=number][data-v-5c4d8ddd],input[type=password][data-v-5c4d8ddd],input[type=search][data-v-5c4d8ddd],input[type=text][data-v-5c4d8ddd],input[type=time][data-v-5c4d8ddd]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5c4d8ddd]:hover,input[type=number][data-v-5c4d8ddd]:hover,input[type=password][data-v-5c4d8ddd]:hover,input[type=search][data-v-5c4d8ddd]:hover,input[type=text][data-v-5c4d8ddd]:hover,input[type=time][data-v-5c4d8ddd]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5c4d8ddd]:focus,input[type=number][data-v-5c4d8ddd]:focus,input[type=password][data-v-5c4d8ddd]:focus,input[type=search][data-v-5c4d8ddd]:focus,input[type=text][data-v-5c4d8ddd]:focus,input[type=time][data-v-5c4d8ddd]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5c4d8ddd],input[type=number].with-icon[data-v-5c4d8ddd],input[type=password].with-icon[data-v-5c4d8ddd],input[type=search].with-icon[data-v-5c4d8ddd],input[type=text].with-icon[data-v-5c4d8ddd],input[type=time].with-icon[data-v-5c4d8ddd]{padding-left:.3em}input[type=search][data-v-5c4d8ddd],input[type=text][data-v-5c4d8ddd]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5c4d8ddd]{animation-fill-mode:both;animation-name:fadeIn-5c4d8ddd;-webkit-animation-name:fadeIn-5c4d8ddd}.fade-in[data-v-5c4d8ddd],.fade-out[data-v-5c4d8ddd]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5c4d8ddd]{animation-fill-mode:both;animation-name:fadeOut-5c4d8ddd;-webkit-animation-name:fadeOut-5c4d8ddd}.expand[data-v-5c4d8ddd]{animation-fill-mode:both;animation-name:expand-5c4d8ddd;-webkit-animation-name:expand-5c4d8ddd}.expand[data-v-5c4d8ddd],.shrink[data-v-5c4d8ddd]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-5c4d8ddd]{animation-fill-mode:both;animation-name:shrink-5c4d8ddd;-webkit-animation-name:shrink-5c4d8ddd}.fold[data-v-5c4d8ddd]{animation-fill-mode:both;animation-name:fold-5c4d8ddd;-webkit-animation-name:fold-5c4d8ddd}.fold[data-v-5c4d8ddd],.unfold[data-v-5c4d8ddd]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-5c4d8ddd]{animation-fill-mode:both;animation-name:unfold-5c4d8ddd;-webkit-animation-name:unfold-5c4d8ddd}.dim[data-v-5c4d8ddd]{animation-fill-mode:both;animation-name:dim-5c4d8ddd;-webkit-animation-name:dim-5c4d8ddd}.brighten[data-v-5c4d8ddd],.dim[data-v-5c4d8ddd]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-5c4d8ddd]{animation-fill-mode:both;animation-name:brighten-5c4d8ddd;-webkit-animation-name:brighten-5c4d8ddd}@keyframes fadeIn-5c4d8ddd{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5c4d8ddd{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5c4d8ddd{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5c4d8ddd{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5c4d8ddd{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5c4d8ddd{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5c4d8ddd{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5c4d8ddd{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5c4d8ddd]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5c4d8ddd;-webkit-animation-name:glow-5c4d8ddd}.loop[data-v-5c4d8ddd]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5c4d8ddd{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5c4d8ddd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5c4d8ddd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5c4d8ddd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-5c4d8ddd] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-5c4d8ddd] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-5c4d8ddd] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-5c4d8ddd] .item .icon i{font-size:40px}.grid[data-v-5c4d8ddd] .item .icon img{width:40px;height:40px}[data-v-5c4d8ddd] .nav{height:2.5em}.media-jellyfin-container[data-v-5c4d8ddd]{height:100%}.media-jellyfin-container .media-jellyfin-browser[data-v-5c4d8ddd]{height:calc(100% - 2.5em - 2px)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7624.e657a974.css b/platypush/backend/http/webapp/dist/static/css/7624.e657a974.css new file mode 100644 index 0000000000..cd7d4baa34 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7624.e657a974.css @@ -0,0 +1 @@ +.col-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-65e233cd]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-65e233cd]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-65e233cd]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-65e233cd]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-65e233cd],[data-v-65e233cd] .modal-body .row .attr{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-65e233cd]:first-child,[data-v-65e233cd] .modal-body .row .attr:first-child{margin-left:0}.col-no-margin-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-65e233cd]:first-child{margin-left:26%!important}.col-offset-3[data-v-65e233cd]:not(first-child){margin-left:30%!important}.col-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-65e233cd]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-65e233cd]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-65e233cd]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-65e233cd]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-65e233cd]:first-child{margin-left:52%!important}.col-offset-6[data-v-65e233cd]:not(first-child){margin-left:56%!important}.col-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-65e233cd]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-65e233cd]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-65e233cd]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-65e233cd]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-65e233cd],[data-v-65e233cd] .modal-body .row .value{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-65e233cd]:first-child,[data-v-65e233cd] .modal-body .row .value:first-child{margin-left:0}.col-no-margin-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-65e233cd]:first-child{margin-left:78%!important}.col-offset-9[data-v-65e233cd]:not(first-child){margin-left:82%!important}.col-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-65e233cd]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-65e233cd]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-65e233cd]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-65e233cd]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-1[data-v-65e233cd]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-2[data-v-65e233cd]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-3[data-v-65e233cd]{margin-left:26%}.col-no-margin-s-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-4[data-v-65e233cd]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-5[data-v-65e233cd]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-6[data-v-65e233cd]{margin-left:52%}.col-no-margin-s-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-7[data-v-65e233cd]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-8[data-v-65e233cd]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-9[data-v-65e233cd]{margin-left:78%}.col-no-margin-s-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-10[data-v-65e233cd]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-65e233cd]:first-child{margin-left:0}.col-offset-s-11[data-v-65e233cd]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-s-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-65e233cd]{display:none!important}.s-visible[data-v-65e233cd]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-1[data-v-65e233cd]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-2[data-v-65e233cd]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-3[data-v-65e233cd]{margin-left:26%}.col-no-margin-m-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-4[data-v-65e233cd]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-5[data-v-65e233cd]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-6[data-v-65e233cd]{margin-left:52%}.col-no-margin-m-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-7[data-v-65e233cd]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-8[data-v-65e233cd]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-9[data-v-65e233cd]{margin-left:78%}.col-no-margin-m-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-10[data-v-65e233cd]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-65e233cd]:first-child{margin-left:0}.col-offset-m-11[data-v-65e233cd]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-m-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-65e233cd]{display:none!important}.m-visible[data-v-65e233cd]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-1[data-v-65e233cd]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-2[data-v-65e233cd]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-3[data-v-65e233cd]{margin-left:26%}.col-no-margin-l-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-4[data-v-65e233cd]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-5[data-v-65e233cd]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-6[data-v-65e233cd]{margin-left:52%}.col-no-margin-l-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-7[data-v-65e233cd]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-8[data-v-65e233cd]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-9[data-v-65e233cd]{margin-left:78%}.col-no-margin-l-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-10[data-v-65e233cd]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-65e233cd]:first-child{margin-left:0}.col-offset-l-11[data-v-65e233cd]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-l-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-65e233cd]{display:none!important}.l-visible[data-v-65e233cd]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-1[data-v-65e233cd]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-2[data-v-65e233cd]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-3[data-v-65e233cd]{margin-left:26%}.col-no-margin-xl-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-4[data-v-65e233cd]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-5[data-v-65e233cd]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-6[data-v-65e233cd]{margin-left:52%}.col-no-margin-xl-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-7[data-v-65e233cd]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-8[data-v-65e233cd]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-9[data-v-65e233cd]{margin-left:78%}.col-no-margin-xl-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-10[data-v-65e233cd]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xl-11[data-v-65e233cd]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-65e233cd]{display:none!important}.xl-visible[data-v-65e233cd]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-1[data-v-65e233cd]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-65e233cd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-2[data-v-65e233cd]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-65e233cd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-3[data-v-65e233cd]{margin-left:26%}.col-no-margin-xxl-3[data-v-65e233cd]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-4[data-v-65e233cd]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-65e233cd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-5[data-v-65e233cd]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-65e233cd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-6[data-v-65e233cd]{margin-left:52%}.col-no-margin-xxl-6[data-v-65e233cd]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-7[data-v-65e233cd]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-65e233cd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-8[data-v-65e233cd]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-65e233cd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-9[data-v-65e233cd]{margin-left:78%}.col-no-margin-xxl-9[data-v-65e233cd]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-10[data-v-65e233cd]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-65e233cd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-65e233cd]:first-child{margin-left:0}.col-offset-xxl-11[data-v-65e233cd]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-65e233cd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-65e233cd]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-65e233cd]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-65e233cd]{display:none!important}.xxl-visible[data-v-65e233cd]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-65e233cd]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-65e233cd]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-65e233cd]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-65e233cd]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-65e233cd]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-65e233cd]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-65e233cd]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-65e233cd]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-65e233cd]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-65e233cd]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-65e233cd]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-65e233cd]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-65e233cd]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-65e233cd]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-65e233cd]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-65e233cd]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-65e233cd]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-65e233cd]{display:none!important}}.vertical-center[data-v-65e233cd]{display:flex;align-items:center}.horizontal-center[data-v-65e233cd]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-65e233cd]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-65e233cd]{display:none!important}.no-content[data-v-65e233cd]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-65e233cd]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-65e233cd]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-65e233cd]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-65e233cd]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-65e233cd]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-65e233cd]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-65e233cd],.btn[data-v-65e233cd],button[data-v-65e233cd]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-65e233cd],.btn-default[type=submit][data-v-65e233cd],.btn.btn-primary[data-v-65e233cd],.btn[type=submit][data-v-65e233cd],button.btn-primary[data-v-65e233cd],button[type=submit][data-v-65e233cd]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-65e233cd]:hover,.btn[data-v-65e233cd]:hover,button[data-v-65e233cd]:hover{color:#35b870}.btn .icon[data-v-65e233cd],.btn-default .icon[data-v-65e233cd],button .icon[data-v-65e233cd]{margin-right:.5em}.btn-default[data-v-65e233cd]:disabled,.btn-default[disabled][data-v-65e233cd],.btn[data-v-65e233cd]:disabled,.btn[disabled][data-v-65e233cd],button[data-v-65e233cd]:disabled,button[disabled][data-v-65e233cd]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-65e233cd]{cursor:grab!important}.dragged[data-v-65e233cd]{opacity:.5!important}input[type=password][data-v-65e233cd],input[type=text][data-v-65e233cd]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-65e233cd]:focus,input[type=text][data-v-65e233cd]:focus{border:1px solid #35b870}button[data-v-65e233cd],input[data-v-65e233cd]{outline:none}input[type=text][data-v-65e233cd]:hover,textarea[data-v-65e233cd]:hover{border:1px solid #9cdfb0}ul[data-v-65e233cd]{margin:0;padding:0;list-style:none}a[data-v-65e233cd]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-65e233cd]:hover{color:#35b870}[data-v-65e233cd]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-65e233cd]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-65e233cd]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-65e233cd]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-65e233cd]{color:#ad1717}body[data-v-65e233cd]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-65e233cd] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-65e233cd] .nav .path{cursor:pointer}.browser[data-v-65e233cd] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-65e233cd] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-65e233cd]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-65e233cd]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-65e233cd],input[type=number][data-v-65e233cd],input[type=password][data-v-65e233cd],input[type=search][data-v-65e233cd],input[type=text][data-v-65e233cd],input[type=time][data-v-65e233cd]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-65e233cd]:hover,input[type=number][data-v-65e233cd]:hover,input[type=password][data-v-65e233cd]:hover,input[type=search][data-v-65e233cd]:hover,input[type=text][data-v-65e233cd]:hover,input[type=time][data-v-65e233cd]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-65e233cd]:focus,input[type=number][data-v-65e233cd]:focus,input[type=password][data-v-65e233cd]:focus,input[type=search][data-v-65e233cd]:focus,input[type=text][data-v-65e233cd]:focus,input[type=time][data-v-65e233cd]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-65e233cd],input[type=number].with-icon[data-v-65e233cd],input[type=password].with-icon[data-v-65e233cd],input[type=search].with-icon[data-v-65e233cd],input[type=text].with-icon[data-v-65e233cd],input[type=time].with-icon[data-v-65e233cd]{padding-left:.3em}input[type=search][data-v-65e233cd],input[type=text][data-v-65e233cd]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-65e233cd]{animation-fill-mode:both;animation-name:fadeIn-65e233cd;-webkit-animation-name:fadeIn-65e233cd}.fade-in[data-v-65e233cd],.fade-out[data-v-65e233cd]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-65e233cd]{animation-fill-mode:both;animation-name:fadeOut-65e233cd;-webkit-animation-name:fadeOut-65e233cd}.expand[data-v-65e233cd]{animation-fill-mode:both;animation-name:expand-65e233cd;-webkit-animation-name:expand-65e233cd}.expand[data-v-65e233cd],.shrink[data-v-65e233cd]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-65e233cd]{animation-fill-mode:both;animation-name:shrink-65e233cd;-webkit-animation-name:shrink-65e233cd}.fold[data-v-65e233cd]{animation-fill-mode:both;animation-name:fold-65e233cd;-webkit-animation-name:fold-65e233cd}.fold[data-v-65e233cd],.unfold[data-v-65e233cd]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-65e233cd]{animation-fill-mode:both;animation-name:unfold-65e233cd;-webkit-animation-name:unfold-65e233cd}.dim[data-v-65e233cd]{animation-fill-mode:both;animation-name:dim-65e233cd;-webkit-animation-name:dim-65e233cd}.brighten[data-v-65e233cd],.dim[data-v-65e233cd]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-65e233cd]{animation-fill-mode:both;animation-name:brighten-65e233cd;-webkit-animation-name:brighten-65e233cd}@keyframes fadeIn-65e233cd{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-65e233cd{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-65e233cd{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-65e233cd{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-65e233cd{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-65e233cd{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-65e233cd{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-65e233cd{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-65e233cd]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-65e233cd;-webkit-animation-name:glow-65e233cd}.loop[data-v-65e233cd]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-65e233cd{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-65e233cd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-65e233cd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-65e233cd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-65e233cd]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-65e233cd]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-65e233cd]{background:#8fefb7}.item.selected[data-v-65e233cd]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-65e233cd]{border-top:2px solid #35b870}.item[data-v-65e233cd]::-moz-selection{background:transparent!important}.item[data-v-65e233cd]::selection{background:transparent!important}.item .title[data-v-65e233cd]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-65e233cd]{display:inline-flex;align-items:center}.item .side.right[data-v-65e233cd]{display:inline-flex;justify-content:right}.item .actions[data-v-65e233cd],.item .duration[data-v-65e233cd]{display:inline-flex;align-items:center}.item .duration[data-v-65e233cd]{font-size:.85em;opacity:.7}.item .actions[data-v-65e233cd] button{opacity:.65}.item .icon[data-v-65e233cd]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-65e233cd] .dropdown-container .item{box-shadow:none}.item[data-v-65e233cd] .dropdown-container button{background:none;border:none}.item[data-v-65e233cd] .dropdown-container button:hover{color:#35b870}[data-v-65e233cd] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-65e233cd] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-65e233cd] .table-row{flex-direction:row;align-items:center}}[data-v-65e233cd] .table-row .title,[data-v-65e233cd] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-65e233cd] .table-row .title,[data-v-65e233cd] .table-row .value{display:inline-flex}}[data-v-65e233cd] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-65e233cd] .table-row .title{width:30%}[data-v-65e233cd] .table-row .value{justify-content:right}}.torrent-transfers[data-v-65e233cd]{height:100%;background:#fff}.torrent-transfers .no-content[data-v-65e233cd]{height:100%}[data-v-65e233cd] .modal-body .row{display:flex;border-bottom:1px solid #e1e4e8;padding:.5em .25em;border-radius:.5em}[data-v-65e233cd] .modal-body .row:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-65e233cd] .modal-body .row .attr{display:inline-flex}[data-v-65e233cd] .modal-body .row .value{display:inline-flex;justify-content:right}[data-v-65e233cd] .modal-body .row .value.nowrap{overflow:hidden;white-space:nowrap;text-overflow:clip}[data-v-65e233cd] .modal-body .files-container{flex-direction:column}[data-v-65e233cd] .modal-body .file{margin-bottom:.5em;padding-bottom:.5em;border:#ccc}[data-v-65e233cd] .modal-body .dropdown-container .row{box-shadow:none;border:none}[data-v-65e233cd] .modal-body .dropdown-container button{border:none;background:none}[data-v-65e233cd] .modal-body .dropdown-container button:hover{color:#35b870} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7651.a7141db8.css b/platypush/backend/http/webapp/dist/static/css/7651.febeb48c.css similarity index 72% rename from platypush/backend/http/webapp/dist/static/css/7651.a7141db8.css rename to platypush/backend/http/webapp/dist/static/css/7651.febeb48c.css index d6158a7a56..ed9b026ffe 100644 --- a/platypush/backend/http/webapp/dist/static/css/7651.a7141db8.css +++ b/platypush/backend/http/webapp/dist/static/css/7651.febeb48c.css @@ -1 +1 @@ -.col-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d90e850c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d90e850c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d90e850c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d90e850c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d90e850c]:first-child{margin-left:26%!important}.col-offset-3[data-v-d90e850c]:not(first-child){margin-left:30%!important}.col-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d90e850c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d90e850c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d90e850c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d90e850c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d90e850c]:first-child{margin-left:52%!important}.col-offset-6[data-v-d90e850c]:not(first-child){margin-left:56%!important}.col-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d90e850c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d90e850c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d90e850c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d90e850c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d90e850c]:first-child{margin-left:78%!important}.col-offset-9[data-v-d90e850c]:not(first-child){margin-left:82%!important}.col-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d90e850c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d90e850c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d90e850c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d90e850c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-s-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-s-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-s-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d90e850c]{display:none!important}.s-visible[data-v-d90e850c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-m-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-m-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-m-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d90e850c]{display:none!important}.m-visible[data-v-d90e850c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-l-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-l-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-l-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d90e850c]{display:none!important}.l-visible[data-v-d90e850c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-xl-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-xl-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-xl-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d90e850c]{display:none!important}.xl-visible[data-v-d90e850c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-xxl-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-xxl-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-xxl-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d90e850c]{display:none!important}.xxl-visible[data-v-d90e850c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d90e850c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d90e850c]{display:none!important}}.vertical-center[data-v-d90e850c]{display:flex;align-items:center}.horizontal-center[data-v-d90e850c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-d90e850c],.slider-wrapper .range-labels .right[data-v-d90e850c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d90e850c]{display:none!important}.no-content[data-v-d90e850c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d90e850c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d90e850c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d90e850c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d90e850c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d90e850c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d90e850c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d90e850c],.btn[data-v-d90e850c],button[data-v-d90e850c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d90e850c],.btn-default[type=submit][data-v-d90e850c],.btn.btn-primary[data-v-d90e850c],.btn[type=submit][data-v-d90e850c],button.btn-primary[data-v-d90e850c],button[type=submit][data-v-d90e850c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-d90e850c],.btn-default .icon[data-v-d90e850c],button .icon[data-v-d90e850c]{margin-right:.5em}input[type=password][data-v-d90e850c],input[type=text][data-v-d90e850c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d90e850c]:focus,input[type=text][data-v-d90e850c]:focus{border:1px solid #35b870}button[data-v-d90e850c],input[data-v-d90e850c]{outline:none}input[type=text][data-v-d90e850c]:hover,textarea[data-v-d90e850c]:hover{border:1px solid #9cdfb0}ul[data-v-d90e850c]{margin:0;padding:0;list-style:none}a[data-v-d90e850c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d90e850c]:hover{color:#35b870}[data-v-d90e850c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d90e850c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d90e850c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d90e850c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-d90e850c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d90e850c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d90e850c] .nav .path{cursor:pointer}.browser[data-v-d90e850c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d90e850c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-d90e850c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d90e850c],input[type=number][data-v-d90e850c],input[type=password][data-v-d90e850c],input[type=search][data-v-d90e850c],input[type=text][data-v-d90e850c],input[type=time][data-v-d90e850c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-d90e850c]:hover,input[type=number][data-v-d90e850c]:hover,input[type=password][data-v-d90e850c]:hover,input[type=search][data-v-d90e850c]:hover,input[type=text][data-v-d90e850c]:hover,input[type=time][data-v-d90e850c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d90e850c]:focus,input[type=number][data-v-d90e850c]:focus,input[type=password][data-v-d90e850c]:focus,input[type=search][data-v-d90e850c]:focus,input[type=text][data-v-d90e850c]:focus,input[type=time][data-v-d90e850c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d90e850c],input[type=number].with-icon[data-v-d90e850c],input[type=password].with-icon[data-v-d90e850c],input[type=search].with-icon[data-v-d90e850c],input[type=text].with-icon[data-v-d90e850c],input[type=time].with-icon[data-v-d90e850c]{padding-left:.3em}input[type=search][data-v-d90e850c],input[type=text][data-v-d90e850c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-d90e850c]{animation-fill-mode:both;animation-name:fadeIn-d90e850c;-webkit-animation-name:fadeIn-d90e850c}.fade-in[data-v-d90e850c],.fade-out[data-v-d90e850c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-d90e850c]{animation-fill-mode:both;animation-name:fadeOut-d90e850c;-webkit-animation-name:fadeOut-d90e850c}@keyframes fadeIn-d90e850c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d90e850c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-d90e850c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d90e850c;-webkit-animation-name:glow-d90e850c}.loop[data-v-d90e850c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d90e850c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d90e850c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d90e850c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d90e850c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.slider-wrapper[data-v-d90e850c]{flex-direction:column}.slider-wrapper .slider-container[data-v-d90e850c],.slider-wrapper[data-v-d90e850c]{width:100%;display:flex;position:relative}.slider-wrapper input.slider[data-v-d90e850c]{width:100%;background:none;height:1.5em;position:relative;border-radius:.5em;cursor:pointer;outline:none;overflow:hidden;transition:all .1s ease;-webkit-appearance:none;-o-appearance:none;-moz-appearance:none;appearance:none}.slider-wrapper input.slider[data-v-d90e850c]:active{filter:brightness(80%);cursor:grabbing}.slider-wrapper input.slider[data-v-d90e850c]:hover{filter:saturate(130%)}.slider-wrapper input.slider[data-v-d90e850c]:disabled{cursor:not-allowed;opacity:.5;filter:grayscale(1)}.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-runnable-track{position:relative;border-radius:.5em;background:linear-gradient(#e4e4e4 0 0) scroll no-repeat 50%/100% calc(.5em + 1px)}.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-runnable-track,.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-thumb{-webkit-appearance:none;-webkit-transition:all .1s ease;transition:all .1s ease;height:1em}.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-thumb{--clip-top:0.25em;--clip-bottom:calc(1em - var(--clip-top));--clip-further:calc(100% + 1px);width:1em;background:#00d750;box-shadow:calc(-100vmax - 1em + 2.5px) .5em .5em 100vmax #00d750;border-radius:1em;cursor:grab;-webkit-clip-path:polygon(100% -1px,.5em -1px,0 var(--clip-top),-100vmax var(--clip-top),-100vmax var(--clip-bottom),0 var(--clip-bottom),.5em 100%,var(--clip-further) var(--clip-further));clip-path:polygon(100% -1px,.5em -1px,0 var(--clip-top),-100vmax var(--clip-top),-100vmax var(--clip-bottom),0 var(--clip-bottom),.5em 100%,var(--clip-further) var(--clip-further))}.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-thumb:hover{filter:brightness(130%) blur(1px);cursor:grab}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-track{background:#e4e4e4;position:relative;height:.5em;border-radius:.5em;box-shadow:inset 1px 0 3px 0 #a5a2a2}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-thumb{width:1.125em;height:1.125em;position:relative;background:#37d560;border-radius:50%;border:none;cursor:grabbing;-moz-transition:all .1s ease;transition:all .1s ease;-webkit-appearance:none;-o-appearance:none;-moz-appearance:none;appearance:none}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-thumb:hover{filter:brightness(130%) blur(1px);cursor:grab}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-thumb:disabled{background:rgba(0,215,80,.3);cursor:not-allowed}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-progress{width:100%;height:.5em;cursor:pointer;background:#00d750;border-radius:.5em 0 0 .5em}.slider-wrapper .range-labels[data-v-d90e850c]{width:100%;display:flex}.slider-wrapper .range-labels .left[data-v-d90e850c]{text-align:left}.slider-wrapper .range-labels .right[data-v-d90e850c]{flex-grow:1}.slider-wrapper .label[data-v-d90e850c]{width:3em;position:relative;font-weight:400;text-align:center}.slider-wrapper .with-label[data-v-d90e850c]{width:calc(100% - 3em)} \ No newline at end of file +.col-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d90e850c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d90e850c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d90e850c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d90e850c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d90e850c]:first-child{margin-left:26%!important}.col-offset-3[data-v-d90e850c]:not(first-child){margin-left:30%!important}.col-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d90e850c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d90e850c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d90e850c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d90e850c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d90e850c]:first-child{margin-left:52%!important}.col-offset-6[data-v-d90e850c]:not(first-child){margin-left:56%!important}.col-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d90e850c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d90e850c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d90e850c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d90e850c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d90e850c]:first-child{margin-left:78%!important}.col-offset-9[data-v-d90e850c]:not(first-child){margin-left:82%!important}.col-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d90e850c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d90e850c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d90e850c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d90e850c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-s-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-s-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-s-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-s-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d90e850c]{display:none!important}.s-visible[data-v-d90e850c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-m-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-m-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-m-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-m-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d90e850c]{display:none!important}.m-visible[data-v-d90e850c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-l-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-l-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-l-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-l-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d90e850c]{display:none!important}.l-visible[data-v-d90e850c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-xl-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-xl-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-xl-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xl-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d90e850c]{display:none!important}.xl-visible[data-v-d90e850c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d90e850c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d90e850c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d90e850c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d90e850c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d90e850c]{margin-left:26%}.col-no-margin-xxl-3[data-v-d90e850c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d90e850c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d90e850c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d90e850c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d90e850c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d90e850c]{margin-left:52%}.col-no-margin-xxl-6[data-v-d90e850c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d90e850c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d90e850c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d90e850c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d90e850c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d90e850c]{margin-left:78%}.col-no-margin-xxl-9[data-v-d90e850c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d90e850c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d90e850c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d90e850c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d90e850c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d90e850c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d90e850c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d90e850c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d90e850c]{display:none!important}.xxl-visible[data-v-d90e850c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d90e850c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d90e850c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d90e850c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d90e850c]{display:none!important}}.vertical-center[data-v-d90e850c]{display:flex;align-items:center}.horizontal-center[data-v-d90e850c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-d90e850c],.slider-wrapper .range-labels .right[data-v-d90e850c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d90e850c]{display:none!important}.no-content[data-v-d90e850c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d90e850c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d90e850c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d90e850c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d90e850c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d90e850c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d90e850c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d90e850c],.btn[data-v-d90e850c],button[data-v-d90e850c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d90e850c],.btn-default[type=submit][data-v-d90e850c],.btn.btn-primary[data-v-d90e850c],.btn[type=submit][data-v-d90e850c],button.btn-primary[data-v-d90e850c],button[type=submit][data-v-d90e850c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-d90e850c]:hover,.btn[data-v-d90e850c]:hover,button[data-v-d90e850c]:hover{color:#35b870}.btn .icon[data-v-d90e850c],.btn-default .icon[data-v-d90e850c],button .icon[data-v-d90e850c]{margin-right:.5em}.btn-default[data-v-d90e850c]:disabled,.btn-default[disabled][data-v-d90e850c],.btn[data-v-d90e850c]:disabled,.btn[disabled][data-v-d90e850c],button[data-v-d90e850c]:disabled,button[disabled][data-v-d90e850c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-d90e850c]{cursor:grab!important}.dragged[data-v-d90e850c]{opacity:.5!important}input[type=password][data-v-d90e850c],input[type=text][data-v-d90e850c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d90e850c]:focus,input[type=text][data-v-d90e850c]:focus{border:1px solid #35b870}button[data-v-d90e850c],input[data-v-d90e850c]{outline:none}input[type=text][data-v-d90e850c]:hover,textarea[data-v-d90e850c]:hover{border:1px solid #9cdfb0}ul[data-v-d90e850c]{margin:0;padding:0;list-style:none}a[data-v-d90e850c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d90e850c]:hover{color:#35b870}[data-v-d90e850c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d90e850c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d90e850c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d90e850c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-d90e850c]{color:#ad1717}body[data-v-d90e850c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d90e850c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d90e850c] .nav .path{cursor:pointer}.browser[data-v-d90e850c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d90e850c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-d90e850c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-d90e850c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d90e850c],input[type=number][data-v-d90e850c],input[type=password][data-v-d90e850c],input[type=search][data-v-d90e850c],input[type=text][data-v-d90e850c],input[type=time][data-v-d90e850c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-d90e850c]:hover,input[type=number][data-v-d90e850c]:hover,input[type=password][data-v-d90e850c]:hover,input[type=search][data-v-d90e850c]:hover,input[type=text][data-v-d90e850c]:hover,input[type=time][data-v-d90e850c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d90e850c]:focus,input[type=number][data-v-d90e850c]:focus,input[type=password][data-v-d90e850c]:focus,input[type=search][data-v-d90e850c]:focus,input[type=text][data-v-d90e850c]:focus,input[type=time][data-v-d90e850c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d90e850c],input[type=number].with-icon[data-v-d90e850c],input[type=password].with-icon[data-v-d90e850c],input[type=search].with-icon[data-v-d90e850c],input[type=text].with-icon[data-v-d90e850c],input[type=time].with-icon[data-v-d90e850c]{padding-left:.3em}input[type=search][data-v-d90e850c],input[type=text][data-v-d90e850c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-d90e850c]{animation-fill-mode:both;animation-name:fadeIn-d90e850c;-webkit-animation-name:fadeIn-d90e850c}.fade-in[data-v-d90e850c],.fade-out[data-v-d90e850c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-d90e850c]{animation-fill-mode:both;animation-name:fadeOut-d90e850c;-webkit-animation-name:fadeOut-d90e850c}.expand[data-v-d90e850c]{animation-fill-mode:both;animation-name:expand-d90e850c;-webkit-animation-name:expand-d90e850c}.expand[data-v-d90e850c],.shrink[data-v-d90e850c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-d90e850c]{animation-fill-mode:both;animation-name:shrink-d90e850c;-webkit-animation-name:shrink-d90e850c}.fold[data-v-d90e850c]{animation-fill-mode:both;animation-name:fold-d90e850c;-webkit-animation-name:fold-d90e850c}.fold[data-v-d90e850c],.unfold[data-v-d90e850c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-d90e850c]{animation-fill-mode:both;animation-name:unfold-d90e850c;-webkit-animation-name:unfold-d90e850c}.dim[data-v-d90e850c]{animation-fill-mode:both;animation-name:dim-d90e850c;-webkit-animation-name:dim-d90e850c}.brighten[data-v-d90e850c],.dim[data-v-d90e850c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-d90e850c]{animation-fill-mode:both;animation-name:brighten-d90e850c;-webkit-animation-name:brighten-d90e850c}@keyframes fadeIn-d90e850c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d90e850c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-d90e850c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-d90e850c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-d90e850c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-d90e850c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-d90e850c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-d90e850c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-d90e850c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d90e850c;-webkit-animation-name:glow-d90e850c}.loop[data-v-d90e850c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d90e850c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d90e850c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d90e850c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d90e850c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.slider-wrapper[data-v-d90e850c]{flex-direction:column}.slider-wrapper .slider-container[data-v-d90e850c],.slider-wrapper[data-v-d90e850c]{width:100%;display:flex;position:relative}.slider-wrapper input.slider[data-v-d90e850c]{width:100%;background:none;height:1.5em;position:relative;border-radius:.5em;cursor:pointer;outline:none;overflow:hidden;transition:all .1s ease;-webkit-appearance:none;-o-appearance:none;-moz-appearance:none;appearance:none}.slider-wrapper input.slider[data-v-d90e850c]:active{filter:brightness(80%);cursor:grabbing}.slider-wrapper input.slider[data-v-d90e850c]:hover{filter:saturate(130%)}.slider-wrapper input.slider[data-v-d90e850c]:disabled{cursor:not-allowed;opacity:.5;filter:grayscale(1)}.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-runnable-track{position:relative;border-radius:.5em;background:linear-gradient(#e4e4e4 0 0) scroll no-repeat 50%/100% calc(.5em + 1px)}.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-runnable-track,.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-thumb{-webkit-appearance:none;-webkit-transition:all .1s ease;transition:all .1s ease;height:1em}.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-thumb{--clip-top:0.25em;--clip-bottom:calc(1em - var(--clip-top));--clip-further:calc(100% + 1px);width:1em;background:#00d750;box-shadow:calc(-100vmax - 1em + 2.5px) .5em .5em 100vmax #00d750;border-radius:1em;cursor:grab;clip-path:polygon(100% -1px,.5em -1px,0 var(--clip-top),-100vmax var(--clip-top),-100vmax var(--clip-bottom),0 var(--clip-bottom),.5em 100%,var(--clip-further) var(--clip-further))}.slider-wrapper input.slider[data-v-d90e850c]::-webkit-slider-thumb:hover{filter:brightness(130%) blur(1px);cursor:grab}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-track{background:#e4e4e4;position:relative;height:.5em;border-radius:.5em;box-shadow:inset 1px 0 3px 0 #a5a2a2}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-thumb{width:1.125em;height:1.125em;position:relative;background:#37d560;border-radius:50%;border:none;cursor:grabbing;-moz-transition:all .1s ease;transition:all .1s ease;-webkit-appearance:none;-o-appearance:none;-moz-appearance:none;appearance:none}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-thumb:hover{filter:brightness(130%) blur(1px);cursor:grab}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-thumb:disabled{background:rgba(0,215,80,.3);cursor:not-allowed}.slider-wrapper input.slider[data-v-d90e850c]::-moz-range-progress{width:100%;height:.5em;cursor:pointer;background:#00d750;border-radius:.5em 0 0 .5em}.slider-wrapper .range-labels[data-v-d90e850c]{width:100%;display:flex}.slider-wrapper .range-labels .left[data-v-d90e850c]{text-align:left}.slider-wrapper .range-labels .right[data-v-d90e850c]{flex-grow:1}.slider-wrapper .label[data-v-d90e850c]{width:3em;position:relative;font-weight:400;text-align:center}.slider-wrapper .with-label[data-v-d90e850c]{width:calc(100% - 3em)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7841.634d37da.css b/platypush/backend/http/webapp/dist/static/css/7841.73c7ce9d.css similarity index 73% rename from platypush/backend/http/webapp/dist/static/css/7841.634d37da.css rename to platypush/backend/http/webapp/dist/static/css/7841.73c7ce9d.css index 9bb8023dd1..29dcb15956 100644 --- a/platypush/backend/http/webapp/dist/static/css/7841.634d37da.css +++ b/platypush/backend/http/webapp/dist/static/css/7841.73c7ce9d.css @@ -1 +1 @@ -.col-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3f481e2d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3f481e2d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3f481e2d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3f481e2d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3f481e2d]:first-child{margin-left:26%!important}.col-offset-3[data-v-3f481e2d]:not(first-child){margin-left:30%!important}.col-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3f481e2d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3f481e2d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3f481e2d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3f481e2d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3f481e2d]:first-child{margin-left:52%!important}.col-offset-6[data-v-3f481e2d]:not(first-child){margin-left:56%!important}.col-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3f481e2d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3f481e2d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3f481e2d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3f481e2d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3f481e2d]:first-child{margin-left:78%!important}.col-offset-9[data-v-3f481e2d]:not(first-child){margin-left:82%!important}.col-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3f481e2d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3f481e2d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3f481e2d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3f481e2d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-s-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-s-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-s-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3f481e2d]{display:none!important}.s-visible[data-v-3f481e2d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-m-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-m-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-m-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3f481e2d]{display:none!important}.m-visible[data-v-3f481e2d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-l-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-l-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-l-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3f481e2d]{display:none!important}.l-visible[data-v-3f481e2d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-xl-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-xl-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-xl-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3f481e2d]{display:none!important}.xl-visible[data-v-3f481e2d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-xxl-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-xxl-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-xxl-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3f481e2d]{display:none!important}.xxl-visible[data-v-3f481e2d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3f481e2d]{display:none!important}}.vertical-center[data-v-3f481e2d]{display:flex;align-items:center}.horizontal-center[data-v-3f481e2d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3f481e2d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3f481e2d]{display:none!important}.no-content[data-v-3f481e2d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3f481e2d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3f481e2d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3f481e2d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3f481e2d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3f481e2d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3f481e2d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3f481e2d],.btn[data-v-3f481e2d],button[data-v-3f481e2d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3f481e2d],.btn-default[type=submit][data-v-3f481e2d],.btn.btn-primary[data-v-3f481e2d],.btn[type=submit][data-v-3f481e2d],button.btn-primary[data-v-3f481e2d],button[type=submit][data-v-3f481e2d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3f481e2d],.btn-default .icon[data-v-3f481e2d],button .icon[data-v-3f481e2d]{margin-right:.5em}input[type=password][data-v-3f481e2d],input[type=text][data-v-3f481e2d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3f481e2d]:focus,input[type=text][data-v-3f481e2d]:focus{border:1px solid #35b870}button[data-v-3f481e2d],input[data-v-3f481e2d]{outline:none}input[type=text][data-v-3f481e2d]:hover,textarea[data-v-3f481e2d]:hover{border:1px solid #9cdfb0}ul[data-v-3f481e2d]{margin:0;padding:0;list-style:none}a[data-v-3f481e2d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3f481e2d]:hover{color:#35b870}[data-v-3f481e2d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3f481e2d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3f481e2d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3f481e2d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3f481e2d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3f481e2d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3f481e2d] .nav .path{cursor:pointer}.browser[data-v-3f481e2d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3f481e2d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3f481e2d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3f481e2d],input[type=number][data-v-3f481e2d],input[type=password][data-v-3f481e2d],input[type=search][data-v-3f481e2d],input[type=text][data-v-3f481e2d],input[type=time][data-v-3f481e2d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3f481e2d]:hover,input[type=number][data-v-3f481e2d]:hover,input[type=password][data-v-3f481e2d]:hover,input[type=search][data-v-3f481e2d]:hover,input[type=text][data-v-3f481e2d]:hover,input[type=time][data-v-3f481e2d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3f481e2d]:focus,input[type=number][data-v-3f481e2d]:focus,input[type=password][data-v-3f481e2d]:focus,input[type=search][data-v-3f481e2d]:focus,input[type=text][data-v-3f481e2d]:focus,input[type=time][data-v-3f481e2d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3f481e2d],input[type=number].with-icon[data-v-3f481e2d],input[type=password].with-icon[data-v-3f481e2d],input[type=search].with-icon[data-v-3f481e2d],input[type=text].with-icon[data-v-3f481e2d],input[type=time].with-icon[data-v-3f481e2d]{padding-left:.3em}input[type=search][data-v-3f481e2d],input[type=text][data-v-3f481e2d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3f481e2d]{animation-fill-mode:both;animation-name:fadeIn-3f481e2d;-webkit-animation-name:fadeIn-3f481e2d}.fade-in[data-v-3f481e2d],.fade-out[data-v-3f481e2d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3f481e2d]{animation-fill-mode:both;animation-name:fadeOut-3f481e2d;-webkit-animation-name:fadeOut-3f481e2d}@keyframes fadeIn-3f481e2d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3f481e2d{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3f481e2d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3f481e2d;-webkit-animation-name:glow-3f481e2d}.loop[data-v-3f481e2d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3f481e2d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3f481e2d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3f481e2d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3f481e2d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.music[data-v-3f481e2d]{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.music .background[data-v-3f481e2d]{width:100%;height:100%;position:absolute}.music .background .image[data-v-3f481e2d]{width:100%;height:100%;background-size:cover;background-position:50%;filter:contrast(.15) opacity(.5)}.music .foreground[data-v-3f481e2d]{height:100%}.music .foreground[data-v-3f481e2d],.music .top[data-v-3f481e2d]{width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative}.music .top[data-v-3f481e2d]{height:calc(100% - 2em)}.music .top .section[data-v-3f481e2d]{flex-direction:column}.music .top .section.has-image[data-v-3f481e2d]{padding:1em;border-radius:1em}.music .top .section.has-progress[data-v-3f481e2d]{width:calc(100% - .5em);padding:1.5em .25em}.music .bottom[data-v-3f481e2d]{width:100%;height:2em}.music .bottom .section[data-v-3f481e2d]{border-top:1px solid #ddd}.music .bottom .section.has-image[data-v-3f481e2d]{border-top:none;box-shadow:0 0 .25em rgba(0,0,0,.15)}.music .section[data-v-3f481e2d]{display:flex;align-items:center;justify-content:center}.music .section.has-image[data-v-3f481e2d]{background:hsla(0,0%,100%,.4);box-shadow:0 0 .25em rgba(0,0,0,.15)}.music .track[data-v-3f481e2d]{text-align:center}.music .track .no-track[data-v-3f481e2d],.music .track .unknown[data-v-3f481e2d]{font-size:2em}.music .track .artist[data-v-3f481e2d]{font-size:1.9em;font-weight:700;margin-bottom:.25em}.music .track .title[data-v-3f481e2d]{font-size:1.8em;font-weight:400}.music .progress-bar[data-v-3f481e2d]{width:100%;height:1em;font-size:1.2em;position:relative;margin-top:1.5em;margin-bottom:.75em;padding:0 .5em}.music .playback-status[data-v-3f481e2d]{color:#757f70}.music .playback-status .status-property[data-v-3f481e2d]{display:flex;align-items:center;justify-content:center;height:100%}.music .playback-status .active[data-v-3f481e2d]{color:#35b870}.music .playback-status .active[data-v-3f481e2d]:hover{color:#757f70!important}.music .playback-status button[data-v-3f481e2d]{color:#757f70;padding:.25em .5em;border-top:1px solid transparent}.music .playback-status button[data-v-3f481e2d]:hover{border-top:1px solid #35b870}.music .controls[data-v-3f481e2d]{display:flex;margin-top:.5em;font-size:1.2em}.music button[data-v-3f481e2d]{background:none;border:none;cursor:pointer}.music button[data-v-3f481e2d]:hover{color:#35b870!important}.music button.play-pause[data-v-3f481e2d]{color:#32b646!important;font-size:1.5em}.music .volume .row[data-v-3f481e2d]{width:calc(100% - 1em);margin:0 .5em;display:flex;align-items:center;justify-content:center} \ No newline at end of file +.col-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3f481e2d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3f481e2d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3f481e2d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3f481e2d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3f481e2d]:first-child{margin-left:26%!important}.col-offset-3[data-v-3f481e2d]:not(first-child){margin-left:30%!important}.col-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3f481e2d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3f481e2d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3f481e2d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3f481e2d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3f481e2d]:first-child{margin-left:52%!important}.col-offset-6[data-v-3f481e2d]:not(first-child){margin-left:56%!important}.col-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3f481e2d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3f481e2d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3f481e2d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3f481e2d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3f481e2d]:first-child{margin-left:78%!important}.col-offset-9[data-v-3f481e2d]:not(first-child){margin-left:82%!important}.col-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3f481e2d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3f481e2d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3f481e2d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3f481e2d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-s-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-s-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-s-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-s-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3f481e2d]{display:none!important}.s-visible[data-v-3f481e2d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-m-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-m-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-m-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-m-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3f481e2d]{display:none!important}.m-visible[data-v-3f481e2d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-l-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-l-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-l-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-l-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3f481e2d]{display:none!important}.l-visible[data-v-3f481e2d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-xl-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-xl-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-xl-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xl-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3f481e2d]{display:none!important}.xl-visible[data-v-3f481e2d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3f481e2d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3f481e2d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3f481e2d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3f481e2d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3f481e2d]{margin-left:26%}.col-no-margin-xxl-3[data-v-3f481e2d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3f481e2d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3f481e2d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3f481e2d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3f481e2d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3f481e2d]{margin-left:52%}.col-no-margin-xxl-6[data-v-3f481e2d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3f481e2d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3f481e2d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3f481e2d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3f481e2d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3f481e2d]{margin-left:78%}.col-no-margin-xxl-9[data-v-3f481e2d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3f481e2d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3f481e2d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3f481e2d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3f481e2d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3f481e2d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3f481e2d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3f481e2d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3f481e2d]{display:none!important}.xxl-visible[data-v-3f481e2d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3f481e2d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3f481e2d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3f481e2d]{display:none!important}}.vertical-center[data-v-3f481e2d]{display:flex;align-items:center}.horizontal-center[data-v-3f481e2d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3f481e2d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3f481e2d]{display:none!important}.no-content[data-v-3f481e2d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3f481e2d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3f481e2d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3f481e2d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3f481e2d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3f481e2d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3f481e2d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3f481e2d],.btn[data-v-3f481e2d],button[data-v-3f481e2d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3f481e2d],.btn-default[type=submit][data-v-3f481e2d],.btn.btn-primary[data-v-3f481e2d],.btn[type=submit][data-v-3f481e2d],button.btn-primary[data-v-3f481e2d],button[type=submit][data-v-3f481e2d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3f481e2d]:hover,.btn[data-v-3f481e2d]:hover,button[data-v-3f481e2d]:hover{color:#35b870}.btn .icon[data-v-3f481e2d],.btn-default .icon[data-v-3f481e2d],button .icon[data-v-3f481e2d]{margin-right:.5em}.btn-default[data-v-3f481e2d]:disabled,.btn-default[disabled][data-v-3f481e2d],.btn[data-v-3f481e2d]:disabled,.btn[disabled][data-v-3f481e2d],button[data-v-3f481e2d]:disabled,button[disabled][data-v-3f481e2d]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3f481e2d]{cursor:grab!important}.dragged[data-v-3f481e2d]{opacity:.5!important}input[type=password][data-v-3f481e2d],input[type=text][data-v-3f481e2d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3f481e2d]:focus,input[type=text][data-v-3f481e2d]:focus{border:1px solid #35b870}button[data-v-3f481e2d],input[data-v-3f481e2d]{outline:none}input[type=text][data-v-3f481e2d]:hover,textarea[data-v-3f481e2d]:hover{border:1px solid #9cdfb0}ul[data-v-3f481e2d]{margin:0;padding:0;list-style:none}a[data-v-3f481e2d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3f481e2d]:hover{color:#35b870}[data-v-3f481e2d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3f481e2d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3f481e2d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3f481e2d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3f481e2d]{color:#ad1717}body[data-v-3f481e2d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3f481e2d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3f481e2d] .nav .path{cursor:pointer}.browser[data-v-3f481e2d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3f481e2d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3f481e2d]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3f481e2d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3f481e2d],input[type=number][data-v-3f481e2d],input[type=password][data-v-3f481e2d],input[type=search][data-v-3f481e2d],input[type=text][data-v-3f481e2d],input[type=time][data-v-3f481e2d]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3f481e2d]:hover,input[type=number][data-v-3f481e2d]:hover,input[type=password][data-v-3f481e2d]:hover,input[type=search][data-v-3f481e2d]:hover,input[type=text][data-v-3f481e2d]:hover,input[type=time][data-v-3f481e2d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3f481e2d]:focus,input[type=number][data-v-3f481e2d]:focus,input[type=password][data-v-3f481e2d]:focus,input[type=search][data-v-3f481e2d]:focus,input[type=text][data-v-3f481e2d]:focus,input[type=time][data-v-3f481e2d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3f481e2d],input[type=number].with-icon[data-v-3f481e2d],input[type=password].with-icon[data-v-3f481e2d],input[type=search].with-icon[data-v-3f481e2d],input[type=text].with-icon[data-v-3f481e2d],input[type=time].with-icon[data-v-3f481e2d]{padding-left:.3em}input[type=search][data-v-3f481e2d],input[type=text][data-v-3f481e2d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3f481e2d]{animation-fill-mode:both;animation-name:fadeIn-3f481e2d;-webkit-animation-name:fadeIn-3f481e2d}.fade-in[data-v-3f481e2d],.fade-out[data-v-3f481e2d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3f481e2d]{animation-fill-mode:both;animation-name:fadeOut-3f481e2d;-webkit-animation-name:fadeOut-3f481e2d}.expand[data-v-3f481e2d]{animation-fill-mode:both;animation-name:expand-3f481e2d;-webkit-animation-name:expand-3f481e2d}.expand[data-v-3f481e2d],.shrink[data-v-3f481e2d]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-3f481e2d]{animation-fill-mode:both;animation-name:shrink-3f481e2d;-webkit-animation-name:shrink-3f481e2d}.fold[data-v-3f481e2d]{animation-fill-mode:both;animation-name:fold-3f481e2d;-webkit-animation-name:fold-3f481e2d}.fold[data-v-3f481e2d],.unfold[data-v-3f481e2d]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-3f481e2d]{animation-fill-mode:both;animation-name:unfold-3f481e2d;-webkit-animation-name:unfold-3f481e2d}.dim[data-v-3f481e2d]{animation-fill-mode:both;animation-name:dim-3f481e2d;-webkit-animation-name:dim-3f481e2d}.brighten[data-v-3f481e2d],.dim[data-v-3f481e2d]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-3f481e2d]{animation-fill-mode:both;animation-name:brighten-3f481e2d;-webkit-animation-name:brighten-3f481e2d}@keyframes fadeIn-3f481e2d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3f481e2d{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3f481e2d{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3f481e2d{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3f481e2d{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3f481e2d{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3f481e2d{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3f481e2d{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3f481e2d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3f481e2d;-webkit-animation-name:glow-3f481e2d}.loop[data-v-3f481e2d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3f481e2d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3f481e2d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3f481e2d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3f481e2d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.music[data-v-3f481e2d]{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.music .background[data-v-3f481e2d]{width:100%;height:100%;position:absolute}.music .background .image[data-v-3f481e2d]{width:100%;height:100%;background-size:cover;background-position:50%;filter:contrast(.15) opacity(.5)}.music .foreground[data-v-3f481e2d]{height:100%}.music .foreground[data-v-3f481e2d],.music .top[data-v-3f481e2d]{width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative}.music .top[data-v-3f481e2d]{height:calc(100% - 2em)}.music .top .section[data-v-3f481e2d]{flex-direction:column}.music .top .section.has-image[data-v-3f481e2d]{padding:1em;border-radius:1em}.music .top .section.has-progress[data-v-3f481e2d]{width:calc(100% - .5em);padding:1.5em .25em}.music .bottom[data-v-3f481e2d]{width:100%;height:2em}.music .bottom .section[data-v-3f481e2d]{border-top:1px solid #ddd}.music .bottom .section.has-image[data-v-3f481e2d]{border-top:none;box-shadow:0 0 .25em rgba(0,0,0,.15)}.music .section[data-v-3f481e2d]{display:flex;align-items:center;justify-content:center}.music .section.has-image[data-v-3f481e2d]{background:hsla(0,0%,100%,.4);box-shadow:0 0 .25em rgba(0,0,0,.15)}.music .track[data-v-3f481e2d]{text-align:center}.music .track .no-track[data-v-3f481e2d],.music .track .unknown[data-v-3f481e2d]{font-size:2em}.music .track .artist[data-v-3f481e2d]{font-size:1.9em;font-weight:700;margin-bottom:.25em}.music .track .title[data-v-3f481e2d]{font-size:1.8em;font-weight:400}.music .progress-bar[data-v-3f481e2d]{width:100%;height:1em;font-size:1.2em;position:relative;margin-top:1.5em;margin-bottom:.75em;padding:0 .5em}.music .playback-status[data-v-3f481e2d]{color:#757f70}.music .playback-status .status-property[data-v-3f481e2d]{display:flex;align-items:center;justify-content:center;height:100%}.music .playback-status .active[data-v-3f481e2d]{color:#35b870}.music .playback-status .active[data-v-3f481e2d]:hover{color:#757f70!important}.music .playback-status button[data-v-3f481e2d]{color:#757f70;padding:.25em .5em;border-top:1px solid transparent}.music .playback-status button[data-v-3f481e2d]:hover{border-top:1px solid #35b870}.music .controls[data-v-3f481e2d]{display:flex;margin-top:.5em;font-size:1.2em}.music button[data-v-3f481e2d]{background:none;border:none;cursor:pointer}.music button[data-v-3f481e2d]:hover{color:#35b870!important}.music button.play-pause[data-v-3f481e2d]{color:#32b646!important;font-size:1.5em}.music .volume .row[data-v-3f481e2d]{width:calc(100% - 1em);margin:0 .5em;display:flex;align-items:center;justify-content:center} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7878.ff3f31c5.css b/platypush/backend/http/webapp/dist/static/css/7878.ff3f31c5.css deleted file mode 100644 index efc1287940..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/7878.ff3f31c5.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-59321353]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-59321353]:first-child{margin-left:0}.col-no-margin-1[data-v-59321353]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-59321353]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-59321353]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-59321353]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-59321353]:first-child{margin-left:0}.col-no-margin-2[data-v-59321353]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-59321353]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-59321353]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-59321353]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-59321353]:first-child{margin-left:0}.col-no-margin-3[data-v-59321353]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-59321353]:first-child{margin-left:26%!important}.col-offset-3[data-v-59321353]:not(first-child){margin-left:30%!important}.col-4[data-v-59321353]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-59321353]:first-child{margin-left:0}.col-no-margin-4[data-v-59321353]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-59321353]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-59321353]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-59321353]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-59321353]:first-child{margin-left:0}.col-no-margin-5[data-v-59321353]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-59321353]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-59321353]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-59321353]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-59321353]:first-child{margin-left:0}.col-no-margin-6[data-v-59321353]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-59321353]:first-child{margin-left:52%!important}.col-offset-6[data-v-59321353]:not(first-child){margin-left:56%!important}.col-7[data-v-59321353]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-59321353]:first-child{margin-left:0}.col-no-margin-7[data-v-59321353]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-59321353]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-59321353]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-59321353]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-59321353]:first-child{margin-left:0}.col-no-margin-8[data-v-59321353]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-59321353]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-59321353]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-59321353]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-59321353]:first-child{margin-left:0}.col-no-margin-9[data-v-59321353]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-59321353]:first-child{margin-left:78%!important}.col-offset-9[data-v-59321353]:not(first-child){margin-left:82%!important}.col-10[data-v-59321353]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-59321353]:first-child{margin-left:0}.col-no-margin-10[data-v-59321353]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-59321353]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-59321353]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-59321353]:first-child{margin-left:0}.col-no-margin-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-59321353]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-59321353]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-59321353]:first-child{margin-left:0}.col-no-margin-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-59321353]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-59321353]:first-child{margin-left:0}.col-offset-s-1[data-v-59321353]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-59321353]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-59321353]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-59321353]:first-child{margin-left:0}.col-offset-s-2[data-v-59321353]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-59321353]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-59321353]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-59321353]:first-child{margin-left:0}.col-offset-s-3[data-v-59321353]{margin-left:26%}.col-no-margin-s-3[data-v-59321353]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-59321353]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-59321353]:first-child{margin-left:0}.col-offset-s-4[data-v-59321353]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-59321353]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-59321353]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-59321353]:first-child{margin-left:0}.col-offset-s-5[data-v-59321353]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-59321353]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-59321353]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-59321353]:first-child{margin-left:0}.col-offset-s-6[data-v-59321353]{margin-left:52%}.col-no-margin-s-6[data-v-59321353]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-59321353]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-59321353]:first-child{margin-left:0}.col-offset-s-7[data-v-59321353]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-59321353]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-59321353]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-59321353]:first-child{margin-left:0}.col-offset-s-8[data-v-59321353]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-59321353]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-59321353]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-59321353]:first-child{margin-left:0}.col-offset-s-9[data-v-59321353]{margin-left:78%}.col-no-margin-s-9[data-v-59321353]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-59321353]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-59321353]:first-child{margin-left:0}.col-offset-s-10[data-v-59321353]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-59321353]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-59321353]:first-child{margin-left:0}.col-offset-s-11[data-v-59321353]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-59321353]:first-child{margin-left:0}.col-no-margin-s-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-59321353]{display:none!important}.s-visible[data-v-59321353]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-59321353]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-59321353]:first-child{margin-left:0}.col-offset-m-1[data-v-59321353]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-59321353]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-59321353]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-59321353]:first-child{margin-left:0}.col-offset-m-2[data-v-59321353]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-59321353]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-59321353]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-59321353]:first-child{margin-left:0}.col-offset-m-3[data-v-59321353]{margin-left:26%}.col-no-margin-m-3[data-v-59321353]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-59321353]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-59321353]:first-child{margin-left:0}.col-offset-m-4[data-v-59321353]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-59321353]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-59321353]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-59321353]:first-child{margin-left:0}.col-offset-m-5[data-v-59321353]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-59321353]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-59321353]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-59321353]:first-child{margin-left:0}.col-offset-m-6[data-v-59321353]{margin-left:52%}.col-no-margin-m-6[data-v-59321353]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-59321353]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-59321353]:first-child{margin-left:0}.col-offset-m-7[data-v-59321353]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-59321353]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-59321353]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-59321353]:first-child{margin-left:0}.col-offset-m-8[data-v-59321353]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-59321353]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-59321353]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-59321353]:first-child{margin-left:0}.col-offset-m-9[data-v-59321353]{margin-left:78%}.col-no-margin-m-9[data-v-59321353]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-59321353]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-59321353]:first-child{margin-left:0}.col-offset-m-10[data-v-59321353]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-59321353]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-59321353]:first-child{margin-left:0}.col-offset-m-11[data-v-59321353]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-59321353]:first-child{margin-left:0}.col-no-margin-m-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-59321353]{display:none!important}.m-visible[data-v-59321353]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-59321353]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-59321353]:first-child{margin-left:0}.col-offset-l-1[data-v-59321353]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-59321353]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-59321353]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-59321353]:first-child{margin-left:0}.col-offset-l-2[data-v-59321353]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-59321353]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-59321353]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-59321353]:first-child{margin-left:0}.col-offset-l-3[data-v-59321353]{margin-left:26%}.col-no-margin-l-3[data-v-59321353]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-59321353]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-59321353]:first-child{margin-left:0}.col-offset-l-4[data-v-59321353]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-59321353]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-59321353]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-59321353]:first-child{margin-left:0}.col-offset-l-5[data-v-59321353]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-59321353]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-59321353]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-59321353]:first-child{margin-left:0}.col-offset-l-6[data-v-59321353]{margin-left:52%}.col-no-margin-l-6[data-v-59321353]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-59321353]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-59321353]:first-child{margin-left:0}.col-offset-l-7[data-v-59321353]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-59321353]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-59321353]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-59321353]:first-child{margin-left:0}.col-offset-l-8[data-v-59321353]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-59321353]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-59321353]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-59321353]:first-child{margin-left:0}.col-offset-l-9[data-v-59321353]{margin-left:78%}.col-no-margin-l-9[data-v-59321353]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-59321353]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-59321353]:first-child{margin-left:0}.col-offset-l-10[data-v-59321353]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-59321353]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-59321353]:first-child{margin-left:0}.col-offset-l-11[data-v-59321353]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-59321353]:first-child{margin-left:0}.col-no-margin-l-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-59321353]{display:none!important}.l-visible[data-v-59321353]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-59321353]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-1[data-v-59321353]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-59321353]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-59321353]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-2[data-v-59321353]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-59321353]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-59321353]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-3[data-v-59321353]{margin-left:26%}.col-no-margin-xl-3[data-v-59321353]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-59321353]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-4[data-v-59321353]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-59321353]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-59321353]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-5[data-v-59321353]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-59321353]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-59321353]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-6[data-v-59321353]{margin-left:52%}.col-no-margin-xl-6[data-v-59321353]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-59321353]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-7[data-v-59321353]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-59321353]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-59321353]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-8[data-v-59321353]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-59321353]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-59321353]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-9[data-v-59321353]{margin-left:78%}.col-no-margin-xl-9[data-v-59321353]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-59321353]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-10[data-v-59321353]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-59321353]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-59321353]:first-child{margin-left:0}.col-offset-xl-11[data-v-59321353]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-59321353]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-59321353]{display:none!important}.xl-visible[data-v-59321353]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-59321353]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-1[data-v-59321353]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-59321353]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-59321353]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-2[data-v-59321353]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-59321353]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-59321353]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-3[data-v-59321353]{margin-left:26%}.col-no-margin-xxl-3[data-v-59321353]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-59321353]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-4[data-v-59321353]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-59321353]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-59321353]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-5[data-v-59321353]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-59321353]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-59321353]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-6[data-v-59321353]{margin-left:52%}.col-no-margin-xxl-6[data-v-59321353]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-59321353]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-7[data-v-59321353]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-59321353]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-59321353]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-8[data-v-59321353]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-59321353]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-59321353]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-9[data-v-59321353]{margin-left:78%}.col-no-margin-xxl-9[data-v-59321353]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-59321353]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-10[data-v-59321353]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-59321353]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-59321353]:first-child{margin-left:0}.col-offset-xxl-11[data-v-59321353]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-59321353]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-59321353]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-59321353]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-59321353]{display:none!important}.xxl-visible[data-v-59321353]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-59321353]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-59321353]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-59321353]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-59321353]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-59321353]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-59321353]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-59321353]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-59321353]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-59321353]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-59321353]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-59321353]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-59321353]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-59321353]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-59321353]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-59321353]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-59321353]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-59321353]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-59321353]{display:none!important}}.vertical-center[data-v-59321353]{display:flex;align-items:center}.horizontal-center[data-v-59321353]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-59321353]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-59321353]{display:none!important}.no-content[data-v-59321353]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-59321353]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-59321353]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-59321353]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-59321353]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-59321353]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-59321353]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-59321353],.btn[data-v-59321353],button[data-v-59321353]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-59321353],.btn-default[type=submit][data-v-59321353],.btn.btn-primary[data-v-59321353],.btn[type=submit][data-v-59321353],button.btn-primary[data-v-59321353],button[type=submit][data-v-59321353]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-59321353],.btn-default .icon[data-v-59321353],button .icon[data-v-59321353]{margin-right:.5em}input[type=password][data-v-59321353],input[type=text][data-v-59321353]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-59321353]:focus,input[type=text][data-v-59321353]:focus{border:1px solid #35b870}button[data-v-59321353],input[data-v-59321353]{outline:none}input[type=text][data-v-59321353]:hover,textarea[data-v-59321353]:hover{border:1px solid #9cdfb0}ul[data-v-59321353]{margin:0;padding:0;list-style:none}a[data-v-59321353]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-59321353]:hover{color:#35b870}[data-v-59321353]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-59321353]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-59321353]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-59321353]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-59321353]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-59321353] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-59321353] .nav .path{cursor:pointer}.browser[data-v-59321353] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-59321353] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-59321353]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-59321353],input[type=number][data-v-59321353],input[type=password][data-v-59321353],input[type=search][data-v-59321353],input[type=text][data-v-59321353],input[type=time][data-v-59321353]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-59321353]:hover,input[type=number][data-v-59321353]:hover,input[type=password][data-v-59321353]:hover,input[type=search][data-v-59321353]:hover,input[type=text][data-v-59321353]:hover,input[type=time][data-v-59321353]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-59321353]:focus,input[type=number][data-v-59321353]:focus,input[type=password][data-v-59321353]:focus,input[type=search][data-v-59321353]:focus,input[type=text][data-v-59321353]:focus,input[type=time][data-v-59321353]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-59321353],input[type=number].with-icon[data-v-59321353],input[type=password].with-icon[data-v-59321353],input[type=search].with-icon[data-v-59321353],input[type=text].with-icon[data-v-59321353],input[type=time].with-icon[data-v-59321353]{padding-left:.3em}input[type=search][data-v-59321353],input[type=text][data-v-59321353]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-59321353]{animation-fill-mode:both;animation-name:fadeIn-59321353;-webkit-animation-name:fadeIn-59321353}.fade-in[data-v-59321353],.fade-out[data-v-59321353]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-59321353]{animation-fill-mode:both;animation-name:fadeOut-59321353;-webkit-animation-name:fadeOut-59321353}@keyframes fadeIn-59321353{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-59321353{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-59321353]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-59321353;-webkit-animation-name:glow-59321353}.loop[data-v-59321353]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-59321353{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-59321353]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-59321353]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-59321353]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-59321353]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-59321353]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-59321353]{background:#8fefb7}.item.selected[data-v-59321353]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-59321353]{border-top:2px solid #35b870}.item[data-v-59321353]::-moz-selection{background:transparent!important}.item[data-v-59321353]::selection{background:transparent!important}.item .title[data-v-59321353]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-59321353]{display:inline-flex;align-items:center}.item .side.right[data-v-59321353]{display:inline-flex;justify-content:right}.item .actions[data-v-59321353],.item .duration[data-v-59321353]{display:inline-flex;align-items:center}.item .duration[data-v-59321353]{font-size:.85em;opacity:.7}.item .actions[data-v-59321353] button{opacity:.65}.item .icon[data-v-59321353]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-59321353] .dropdown-container .item{box-shadow:none}.item[data-v-59321353] .dropdown-container button{background:none;border:none}.item[data-v-59321353] .dropdown-container button:hover{color:#35b870}[data-v-59321353] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-59321353] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-59321353] .table-row{flex-direction:row;align-items:center}}[data-v-59321353] .table-row .title,[data-v-59321353] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-59321353] .table-row .title,[data-v-59321353] .table-row .value{display:inline-flex}}[data-v-59321353] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-59321353] .table-row .title{width:30%}[data-v-59321353] .table-row .value{justify-content:right}}.entities-container[data-v-59321353]{--groups-per-row:1;width:100%;height:100%;overflow:auto;color:#23513a;font-weight:400}@media screen and (min-width:1024px){.entities-container[data-v-59321353]{--groups-per-row:2}}@media screen and (min-width:1408px){.entities-container[data-v-59321353]{--groups-per-row:3}}.entities-container button[data-v-59321353]{background:transparent;border:0}.entities-container button[data-v-59321353]:hover{color:#35b870}.entities-container header[data-v-59321353]{width:calc(100% - 2px);height:2.5em;display:flex;background:#f8f8f8;margin-left:2px;box-shadow:0 3px 2px -1px silver;position:relative}.entities-container header .right[data-v-59321353]{position:absolute;right:0;text-align:right;margin-right:.5em;padding-right:0}.entities-container header .right button[data-v-59321353]{padding:.5em 0}.entities-container .groups-canvas[data-v-59321353]{width:100%;height:calc(100% - 2.5em);overflow:auto}@media screen and (max-width:calc(768px - 1px)){.entities-container .groups-container[data-v-59321353]{background:#f8f8f8}}@media screen and (max-width:calc(1023px - 1px)){.entities-container .groups-container[data-v-59321353]{display:flex;flex-direction:column;align-items:center}}@media screen and (min-width:1024px){.entities-container .groups-container[data-v-59321353]{-moz-column-count:var(--groups-per-row);column-count:var(--groups-per-row)}}.entities-container .group[data-v-59321353]{width:100%;max-width:600px;max-height:100%;position:relative;display:flex;-moz-column-break-inside:avoid;break-inside:avoid}@media screen and (max-width:calc(768px - 1px)){.entities-container .group[data-v-59321353]{padding:0;margin-bottom:1em}}@media screen and (min-width:769px){.entities-container .group[data-v-59321353]{padding:1em}}.entities-container .group .frame[data-v-59321353]{display:flex;flex-direction:column;flex-grow:1;position:relative;border-radius:1em;box-shadow:3px -2px 6px 1px #98b0a0}@media screen and (min-width:1024px){.entities-container .group .frame[data-v-59321353]{max-height:calc(100vh - 4.5em)}}.entities-container .group .header[data-v-59321353]{width:100%;height:3.5em;display:table;background:linear-gradient(0deg,#c0e8e4,#e4f8f4);box-shadow:0 1px 3px 1px #bbb}@media screen and (max-width:calc(768px - 1px)){.entities-container .group .header[data-v-59321353]{border-bottom:1px solid #ddd}}@media screen and (min-width:769px){.entities-container .group .header[data-v-59321353]{border-radius:1em 1em 0 0}}.entities-container .group .header .section[data-v-59321353]{height:100%;display:table-cell;vertical-align:middle}.entities-container .group .header .section.left[data-v-59321353],.entities-container .group .header .section.right[data-v-59321353]{width:10%}.entities-container .group .header .section.right[data-v-59321353]{text-align:right}.entities-container .group .header .section.center[data-v-59321353]{width:80%;text-align:center}.entities-container .group .header .title[data-v-59321353]{text-transform:capitalize}@media screen and (max-width:calc(768px - 1px)){.entities-container .group .header .title[data-v-59321353]{font-weight:700}}.entities-container .group .body[data-v-59321353]{max-height:calc(100% - 3.5em);overflow:auto;flex-grow:1}@media screen and (min-width:769px){.entities-container .group .body[data-v-59321353]{background:#f8f8f8}}.entities-container .group .body .entity-frame[data-v-59321353]{background:#fff}.entities-container .group .body .entity-frame[data-v-59321353]:last-child{border-radius:0 0 1em 1em}.entities-container[data-v-59321353] .dropdown-container .dropdown{min-width:10em;margin-left:0}.entities-container[data-v-59321353] .dropdown-container .dropdown .item{box-shadow:none}.entities-container[data-v-59321353] .dropdown-container button{background:none} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7880.bec7de73.css b/platypush/backend/http/webapp/dist/static/css/7880.bec7de73.css deleted file mode 100644 index 2213ba4e74..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/7880.bec7de73.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-56458f8e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-56458f8e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-56458f8e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-56458f8e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-56458f8e]:first-child{margin-left:26%!important}.col-offset-3[data-v-56458f8e]:not(first-child){margin-left:30%!important}.col-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-56458f8e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-56458f8e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-56458f8e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-56458f8e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-56458f8e]:first-child{margin-left:52%!important}.col-offset-6[data-v-56458f8e]:not(first-child){margin-left:56%!important}.col-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-56458f8e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-56458f8e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-56458f8e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-56458f8e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-56458f8e]:first-child{margin-left:78%!important}.col-offset-9[data-v-56458f8e]:not(first-child){margin-left:82%!important}.col-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-56458f8e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-56458f8e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-56458f8e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-56458f8e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-s-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-s-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-s-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-s-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-56458f8e]{display:none!important}.s-visible[data-v-56458f8e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-m-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-m-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-m-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-m-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-56458f8e]{display:none!important}.m-visible[data-v-56458f8e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-l-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-l-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-l-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-l-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-56458f8e]{display:none!important}.l-visible[data-v-56458f8e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-xl-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-xl-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-xl-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xl-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-56458f8e]{display:none!important}.xl-visible[data-v-56458f8e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-56458f8e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-56458f8e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-56458f8e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-56458f8e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-56458f8e]{margin-left:26%}.col-no-margin-xxl-3[data-v-56458f8e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-56458f8e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-56458f8e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-56458f8e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-56458f8e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-56458f8e]{margin-left:52%}.col-no-margin-xxl-6[data-v-56458f8e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-56458f8e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-56458f8e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-56458f8e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-56458f8e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-56458f8e]{margin-left:78%}.col-no-margin-xxl-9[data-v-56458f8e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-56458f8e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-56458f8e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-56458f8e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-56458f8e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-56458f8e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-56458f8e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-56458f8e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-56458f8e]{display:none!important}.xxl-visible[data-v-56458f8e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-56458f8e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-56458f8e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-56458f8e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-56458f8e]{display:none!important}}.vertical-center[data-v-56458f8e]{display:flex;align-items:center}.horizontal-center[data-v-56458f8e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-56458f8e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-56458f8e]{display:none!important}.no-content[data-v-56458f8e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-56458f8e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-56458f8e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-56458f8e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-56458f8e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-56458f8e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-56458f8e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-56458f8e],.btn[data-v-56458f8e],button[data-v-56458f8e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-56458f8e],.btn-default[type=submit][data-v-56458f8e],.btn.btn-primary[data-v-56458f8e],.btn[type=submit][data-v-56458f8e],button.btn-primary[data-v-56458f8e],button[type=submit][data-v-56458f8e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-56458f8e],.btn-default .icon[data-v-56458f8e],button .icon[data-v-56458f8e]{margin-right:.5em}input[type=password][data-v-56458f8e],input[type=text][data-v-56458f8e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-56458f8e]:focus,input[type=text][data-v-56458f8e]:focus{border:1px solid #35b870}button[data-v-56458f8e],input[data-v-56458f8e]{outline:none}input[type=text][data-v-56458f8e]:hover,textarea[data-v-56458f8e]:hover{border:1px solid #9cdfb0}ul[data-v-56458f8e]{margin:0;padding:0;list-style:none}a[data-v-56458f8e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-56458f8e]:hover{color:#35b870}[data-v-56458f8e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-56458f8e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-56458f8e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-56458f8e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-56458f8e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-56458f8e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-56458f8e] .nav .path{cursor:pointer}.browser[data-v-56458f8e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-56458f8e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-56458f8e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-56458f8e],input[type=number][data-v-56458f8e],input[type=password][data-v-56458f8e],input[type=search][data-v-56458f8e],input[type=text][data-v-56458f8e],input[type=time][data-v-56458f8e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-56458f8e]:hover,input[type=number][data-v-56458f8e]:hover,input[type=password][data-v-56458f8e]:hover,input[type=search][data-v-56458f8e]:hover,input[type=text][data-v-56458f8e]:hover,input[type=time][data-v-56458f8e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-56458f8e]:focus,input[type=number][data-v-56458f8e]:focus,input[type=password][data-v-56458f8e]:focus,input[type=search][data-v-56458f8e]:focus,input[type=text][data-v-56458f8e]:focus,input[type=time][data-v-56458f8e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-56458f8e],input[type=number].with-icon[data-v-56458f8e],input[type=password].with-icon[data-v-56458f8e],input[type=search].with-icon[data-v-56458f8e],input[type=text].with-icon[data-v-56458f8e],input[type=time].with-icon[data-v-56458f8e]{padding-left:.3em}input[type=search][data-v-56458f8e],input[type=text][data-v-56458f8e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-56458f8e]{animation-fill-mode:both;animation-name:fadeIn-56458f8e;-webkit-animation-name:fadeIn-56458f8e}.fade-in[data-v-56458f8e],.fade-out[data-v-56458f8e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-56458f8e]{animation-fill-mode:both;animation-name:fadeOut-56458f8e;-webkit-animation-name:fadeOut-56458f8e}@keyframes fadeIn-56458f8e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-56458f8e{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-56458f8e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-56458f8e;-webkit-animation-name:glow-56458f8e}.loop[data-v-56458f8e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-56458f8e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-56458f8e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-56458f8e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-56458f8e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zwave-container .no-items[data-v-56458f8e]{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zwave-container .info-body .row[data-v-56458f8e]:nth-child(2n),.zwave-container .params .row[data-v-56458f8e]:nth-child(2n){background:#f0f0f0}.zwave-container .info-body .row[data-v-56458f8e]:nth-child(odd),.zwave-container .params .row[data-v-56458f8e]:nth-child(odd){background:#fff}.zwave-container .info-body .row[data-v-56458f8e]:hover,.zwave-container .params .row[data-v-56458f8e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .node .actions .row[data-v-56458f8e],.zwave-container .scene .actions .row[data-v-56458f8e]{cursor:pointer}.zwave-container .node form[data-v-56458f8e],.zwave-container .scene form[data-v-56458f8e]{margin-bottom:0}.zwave-container .params[data-v-56458f8e]{background:#fff;padding-bottom:1em}.zwave-container .params .title[data-v-56458f8e]{font-size:1.1em!important;margin:0!important}.zwave-container .params .section[data-v-56458f8e]{display:flex;flex-direction:column;padding:0 1em}.zwave-container .params .section[data-v-56458f8e]:not(:first-child){padding-top:1em}.zwave-container .params .section .header[data-v-56458f8e]{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zwave-container .params .section .header .buttons[data-v-56458f8e]{display:inline-flex;justify-content:right}.zwave-container .params .row[data-v-56458f8e]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zwave-container .params .row[data-v-56458f8e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .params .param-name[data-v-56458f8e]{display:inline-flex;width:40%;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .params .param-value[data-v-56458f8e]{display:inline-block;width:58%;text-align:right}.zwave-container .params .param-value .value-edit[data-v-56458f8e]{display:flex;align-items:center}.zwave-container .params .param-value .value-data[data-v-56458f8e]{display:inline-block;font-weight:700}.zwave-container .params .param-value .slider-container[data-v-56458f8e]{display:flex;align-items:center}.zwave-container .params .param-value .unit[data-v-56458f8e]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .params .param-value select[data-v-56458f8e]{width:100%}.zwave-container .params .param-value .numeric input.slider[data-v-56458f8e]{text-align:left}.zwave-container .params .param-value .numeric input[type=text][data-v-56458f8e]{text-align:right;width:100%}.zwave-container .params .param-value .numeric .row[data-v-56458f8e],.zwave-container .params .param-value .numeric .row[data-v-56458f8e]:hover{background:none}.zwave-container .params .param-value .numeric .value-max[data-v-56458f8e],.zwave-container .params .param-value .numeric .value-min[data-v-56458f8e]{width:50%;font-size:.85em;opacity:.75}.zwave-container .params .param-value .numeric .value-min[data-v-56458f8e]{text-align:left}.zwave-container .params .param-value .numeric .value-max[data-v-56458f8e]{text-align:right}.zwave-container .params .param-value .edit-cell[data-v-56458f8e]{width:100%;display:inline-flex;justify-content:right;align-items:center}.zwave-container .params .param-value .edit-cell .buttons[data-v-56458f8e]{margin:0}.zwave-container .row[data-v-56458f8e]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zwave-container .row .param-name[data-v-56458f8e]{width:100%;font-weight:700}.zwave-container .row .param-value[data-v-56458f8e]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zwave-container .row .param-name[data-v-56458f8e]{width:40%}.zwave-container .row .param-value[data-v-56458f8e]{width:58%;justify-content:right}}.zwave-container .row .param-name[data-v-56458f8e]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .row .param-value[data-v-56458f8e]{display:inline-flex;align-items:center}.zwave-container .row .param-value .value-edit[data-v-56458f8e]{display:flex;align-items:center}.zwave-container .row .param-value .value-data[data-v-56458f8e]{display:inline-block;font-weight:700}.zwave-container .row .param-value .slider-container[data-v-56458f8e]{display:flex;align-items:center}.zwave-container .row .param-value .unit[data-v-56458f8e]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .row .param-value select[data-v-56458f8e]{width:100%}.zwave-container .row .param-value .numeric input.slider[data-v-56458f8e]{text-align:left}.zwave-container .row .param-value .numeric input[type=text][data-v-56458f8e]{text-align:right;width:100%}.zwave-container .row .param-value .numeric .row[data-v-56458f8e],.zwave-container .row .param-value .numeric .row[data-v-56458f8e]:hover{background:none}.zwave-container .row .param-value .numeric .value-max[data-v-56458f8e],.zwave-container .row .param-value .numeric .value-min[data-v-56458f8e]{width:50%;font-size:.85em;opacity:.75}.zwave-container .row .param-value .numeric .value-min[data-v-56458f8e]{text-align:left}.zwave-container .row .param-value .numeric .value-max[data-v-56458f8e]{text-align:right}.zwave-container .btn-default[data-v-56458f8e]{border:0;padding:0 1em}.zwave-container .btn-default[data-v-56458f8e]:hover{border:1px solid #ddd;border-radius:1em}.zwave-container .buttons[data-v-56458f8e]{text-align:right}.zwave-container .view-container[data-v-56458f8e]{width:100%;height:calc(100% - 3.5em);overflow:auto;display:flex;justify-content:center}.zwave-container .view[data-v-56458f8e]{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:1024px){.zwave-container .view[data-v-56458f8e]{width:100%;border-radius:0;margin-top:0}}@media screen and (min-width:1024px){.zwave-container .view[data-v-56458f8e]{min-width:400pt;max-width:750pt;border-radius:1.5em;margin-top:1em}}.zwave-container .item[data-v-56458f8e]{border-bottom:1px solid #ddd}.zwave-container .item.selected[data-v-56458f8e]{box-shadow:0 2px 4px 0 #bbb}.zwave-container .item .name.header[data-v-56458f8e]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zwave-container .item .name.header[data-v-56458f8e]:hover{border-radius:1.5em}.zwave-container .item .name.header.selected[data-v-56458f8e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:1.5em}.zwave-container .item .title[data-v-56458f8e]{font-size:1.2em;padding-left:.5em}.zwave-container .item .buttons[data-v-56458f8e]{margin:0}.zwave-container .item[data-v-56458f8e]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .item:hover.selected[data-v-56458f8e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zwave-container .item[data-v-56458f8e]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .item[data-v-56458f8e]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .item .params .section[data-v-56458f8e]{padding:1.5em 0 0 0}.zwave-container .item .value .param-name[data-v-56458f8e]{display:inline-block}.zwave-container .item .value .param-name .name[data-v-56458f8e]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zwave-container .item .value .param-name .name[data-v-56458f8e]:before{content:"["}.zwave-container .item .value .param-name .name[data-v-56458f8e]:after{content:"]"}.zwave-container .item .value .param-name .unit[data-v-56458f8e]{font-size:.8em}.zwave-container .item .value .param-name .unit[data-v-56458f8e]:before{content:" [unit: "}.zwave-container .item .value .param-name .unit[data-v-56458f8e]:after{content:"]"}.zwave-container .item .value .param-value label[data-v-56458f8e]{width:90%}.zwave-container .item .value .param-value input[data-v-56458f8e]{width:100%}.zwave-container .item button[data-v-56458f8e]{border:0;background:none;padding:0 .5em}.zwave-container .item button[data-v-56458f8e]:hover{color:#35b870}@media screen and (max-width:769px){.zwave-container .item .name-edit[data-v-56458f8e]{justify-content:left}}@media screen and (min-width:769px){.zwave-container .item .name-edit[data-v-56458f8e]{justify-content:right}}.zwave-container .item .name-edit[data-v-56458f8e]{width:100%;display:inline-flex;align-items:center}.zwave-container .item .name-edit form[data-v-56458f8e]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zwave-container .item .name-edit .buttons[data-v-56458f8e]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zwave-container .item .name-edit form[data-v-56458f8e]{background:none;padding:0;border:none;box-shadow:none}.zwave-container .btn-value-name-edit[data-v-56458f8e]{padding:0}.zwave-container .modal .section .header[data-v-56458f8e]{background:none;padding:.5em 0}.zwave-container .modal .section .body[data-v-56458f8e]{padding:0}.zwave-container .modal .network-info[data-v-56458f8e]{min-width:600pt}.zwave-container .error[data-v-56458f8e]{color:#a00}.zwave-container form[data-v-56458f8e]{border:none;box-shadow:none;padding:0;margin:0}.zwave-container button[data-v-56458f8e]{background:none;border:none;padding:0 .75em}.zwave-container button[data-v-56458f8e]:hover{color:#35b870}.zwave-container .buttons[data-v-56458f8e]{display:inline-flex;margin:0}.zwave-container .buttons .dropdown .item[data-v-56458f8e]{padding:.5em 2em .5em .5em}.zwave-container select[data-v-56458f8e]{width:100%}.zwave-container .clickable[data-v-56458f8e]{cursor:pointer}.zwave-container .buttons button[data-v-56458f8e]{background:none!important}.zwave-container .view.values .node-container[data-v-56458f8e]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .view.values .node-container[data-v-56458f8e]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .view.values .node-container .item[data-v-56458f8e]{border-radius:0}.section.nodes .header[data-v-56458f8e],.section.nodes .row[data-v-56458f8e]{position:relative}.section.nodes .header .buttons[data-v-56458f8e],.section.nodes .row .buttons[data-v-56458f8e]{position:absolute;right:0;display:flex;justify-content:right}.col-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3da196a6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3da196a6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3da196a6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3da196a6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3da196a6]:first-child{margin-left:26%!important}.col-offset-3[data-v-3da196a6]:not(first-child){margin-left:30%!important}.col-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3da196a6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3da196a6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3da196a6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3da196a6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3da196a6]:first-child{margin-left:52%!important}.col-offset-6[data-v-3da196a6]:not(first-child){margin-left:56%!important}.col-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3da196a6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3da196a6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3da196a6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3da196a6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3da196a6]:first-child{margin-left:78%!important}.col-offset-9[data-v-3da196a6]:not(first-child){margin-left:82%!important}.col-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3da196a6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3da196a6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3da196a6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3da196a6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-s-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-s-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-s-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-s-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3da196a6]{display:none!important}.s-visible[data-v-3da196a6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-m-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-m-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-m-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-m-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3da196a6]{display:none!important}.m-visible[data-v-3da196a6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-l-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-l-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-l-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-l-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3da196a6]{display:none!important}.l-visible[data-v-3da196a6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-xl-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-xl-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-xl-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xl-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3da196a6]{display:none!important}.xl-visible[data-v-3da196a6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3da196a6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3da196a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3da196a6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3da196a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3da196a6]{margin-left:26%}.col-no-margin-xxl-3[data-v-3da196a6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3da196a6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3da196a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3da196a6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3da196a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3da196a6]{margin-left:52%}.col-no-margin-xxl-6[data-v-3da196a6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3da196a6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3da196a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3da196a6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3da196a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3da196a6]{margin-left:78%}.col-no-margin-xxl-9[data-v-3da196a6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3da196a6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3da196a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3da196a6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3da196a6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3da196a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3da196a6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3da196a6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3da196a6]{display:none!important}.xxl-visible[data-v-3da196a6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3da196a6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3da196a6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3da196a6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3da196a6]{display:none!important}}.vertical-center[data-v-3da196a6]{display:flex;align-items:center}.horizontal-center[data-v-3da196a6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3da196a6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3da196a6]{display:none!important}.no-content[data-v-3da196a6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3da196a6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3da196a6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3da196a6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3da196a6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3da196a6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3da196a6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3da196a6],.btn[data-v-3da196a6],button[data-v-3da196a6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3da196a6],.btn-default[type=submit][data-v-3da196a6],.btn.btn-primary[data-v-3da196a6],.btn[type=submit][data-v-3da196a6],button.btn-primary[data-v-3da196a6],button[type=submit][data-v-3da196a6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3da196a6],.btn-default .icon[data-v-3da196a6],button .icon[data-v-3da196a6]{margin-right:.5em}input[type=password][data-v-3da196a6],input[type=text][data-v-3da196a6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3da196a6]:focus,input[type=text][data-v-3da196a6]:focus{border:1px solid #35b870}button[data-v-3da196a6],input[data-v-3da196a6]{outline:none}input[type=text][data-v-3da196a6]:hover,textarea[data-v-3da196a6]:hover{border:1px solid #9cdfb0}ul[data-v-3da196a6]{margin:0;padding:0;list-style:none}a[data-v-3da196a6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3da196a6]:hover{color:#35b870}[data-v-3da196a6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3da196a6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3da196a6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3da196a6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3da196a6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3da196a6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3da196a6] .nav .path{cursor:pointer}.browser[data-v-3da196a6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3da196a6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3da196a6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3da196a6],input[type=number][data-v-3da196a6],input[type=password][data-v-3da196a6],input[type=search][data-v-3da196a6],input[type=text][data-v-3da196a6],input[type=time][data-v-3da196a6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3da196a6]:hover,input[type=number][data-v-3da196a6]:hover,input[type=password][data-v-3da196a6]:hover,input[type=search][data-v-3da196a6]:hover,input[type=text][data-v-3da196a6]:hover,input[type=time][data-v-3da196a6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3da196a6]:focus,input[type=number][data-v-3da196a6]:focus,input[type=password][data-v-3da196a6]:focus,input[type=search][data-v-3da196a6]:focus,input[type=text][data-v-3da196a6]:focus,input[type=time][data-v-3da196a6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3da196a6],input[type=number].with-icon[data-v-3da196a6],input[type=password].with-icon[data-v-3da196a6],input[type=search].with-icon[data-v-3da196a6],input[type=text].with-icon[data-v-3da196a6],input[type=time].with-icon[data-v-3da196a6]{padding-left:.3em}input[type=search][data-v-3da196a6],input[type=text][data-v-3da196a6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3da196a6]{animation-fill-mode:both;animation-name:fadeIn-3da196a6;-webkit-animation-name:fadeIn-3da196a6}.fade-in[data-v-3da196a6],.fade-out[data-v-3da196a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3da196a6]{animation-fill-mode:both;animation-name:fadeOut-3da196a6;-webkit-animation-name:fadeOut-3da196a6}@keyframes fadeIn-3da196a6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3da196a6{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3da196a6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3da196a6;-webkit-animation-name:glow-3da196a6}.loop[data-v-3da196a6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3da196a6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3da196a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3da196a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3da196a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zwave-container .no-items[data-v-3da196a6]{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zwave-container .info-body .row[data-v-3da196a6]:nth-child(2n),.zwave-container .params .row[data-v-3da196a6]:nth-child(2n){background:#f0f0f0}.zwave-container .info-body .row[data-v-3da196a6]:nth-child(odd),.zwave-container .params .row[data-v-3da196a6]:nth-child(odd){background:#fff}.zwave-container .info-body .row[data-v-3da196a6]:hover,.zwave-container .params .row[data-v-3da196a6]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .node .actions .row[data-v-3da196a6],.zwave-container .scene .actions .row[data-v-3da196a6]{cursor:pointer}.zwave-container .node form[data-v-3da196a6],.zwave-container .scene form[data-v-3da196a6]{margin-bottom:0}.zwave-container .params[data-v-3da196a6]{background:#fff;padding-bottom:1em}.zwave-container .params .title[data-v-3da196a6]{font-size:1.1em!important;margin:0!important}.zwave-container .params .section[data-v-3da196a6]{display:flex;flex-direction:column;padding:0 1em}.zwave-container .params .section[data-v-3da196a6]:not(:first-child){padding-top:1em}.zwave-container .params .section .header[data-v-3da196a6]{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zwave-container .params .section .header .buttons[data-v-3da196a6]{display:inline-flex;justify-content:right}.zwave-container .params .row[data-v-3da196a6]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zwave-container .params .row[data-v-3da196a6]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .params .param-name[data-v-3da196a6]{display:inline-flex;width:40%;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .params .param-value[data-v-3da196a6]{display:inline-block;width:58%;text-align:right}.zwave-container .params .param-value .value-edit[data-v-3da196a6]{display:flex;align-items:center}.zwave-container .params .param-value .value-data[data-v-3da196a6]{display:inline-block;font-weight:700}.zwave-container .params .param-value .slider-container[data-v-3da196a6]{display:flex;align-items:center}.zwave-container .params .param-value .unit[data-v-3da196a6]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .params .param-value select[data-v-3da196a6]{width:100%}.zwave-container .params .param-value .numeric input.slider[data-v-3da196a6]{text-align:left}.zwave-container .params .param-value .numeric input[type=text][data-v-3da196a6]{text-align:right;width:100%}.zwave-container .params .param-value .numeric .row[data-v-3da196a6],.zwave-container .params .param-value .numeric .row[data-v-3da196a6]:hover{background:none}.zwave-container .params .param-value .numeric .value-max[data-v-3da196a6],.zwave-container .params .param-value .numeric .value-min[data-v-3da196a6]{width:50%;font-size:.85em;opacity:.75}.zwave-container .params .param-value .numeric .value-min[data-v-3da196a6]{text-align:left}.zwave-container .params .param-value .numeric .value-max[data-v-3da196a6]{text-align:right}.zwave-container .params .param-value .edit-cell[data-v-3da196a6]{width:100%;display:inline-flex;justify-content:right;align-items:center}.zwave-container .params .param-value .edit-cell .buttons[data-v-3da196a6]{margin:0}.zwave-container .row[data-v-3da196a6]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zwave-container .row .param-name[data-v-3da196a6]{width:100%;font-weight:700}.zwave-container .row .param-value[data-v-3da196a6]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zwave-container .row .param-name[data-v-3da196a6]{width:40%}.zwave-container .row .param-value[data-v-3da196a6]{width:58%;justify-content:right}}.zwave-container .row .param-name[data-v-3da196a6]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .row .param-value[data-v-3da196a6]{display:inline-flex;align-items:center}.zwave-container .row .param-value .value-edit[data-v-3da196a6]{display:flex;align-items:center}.zwave-container .row .param-value .value-data[data-v-3da196a6]{display:inline-block;font-weight:700}.zwave-container .row .param-value .slider-container[data-v-3da196a6]{display:flex;align-items:center}.zwave-container .row .param-value .unit[data-v-3da196a6]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .row .param-value select[data-v-3da196a6]{width:100%}.zwave-container .row .param-value .numeric input.slider[data-v-3da196a6]{text-align:left}.zwave-container .row .param-value .numeric input[type=text][data-v-3da196a6]{text-align:right;width:100%}.zwave-container .row .param-value .numeric .row[data-v-3da196a6],.zwave-container .row .param-value .numeric .row[data-v-3da196a6]:hover{background:none}.zwave-container .row .param-value .numeric .value-max[data-v-3da196a6],.zwave-container .row .param-value .numeric .value-min[data-v-3da196a6]{width:50%;font-size:.85em;opacity:.75}.zwave-container .row .param-value .numeric .value-min[data-v-3da196a6]{text-align:left}.zwave-container .row .param-value .numeric .value-max[data-v-3da196a6]{text-align:right}.zwave-container .btn-default[data-v-3da196a6]{border:0;padding:0 1em}.zwave-container .btn-default[data-v-3da196a6]:hover{border:1px solid #ddd;border-radius:1em}.zwave-container .buttons[data-v-3da196a6]{text-align:right}.zwave-container .view-container[data-v-3da196a6]{width:100%;height:calc(100% - 3.5em);overflow:auto;display:flex;justify-content:center}.zwave-container .view[data-v-3da196a6]{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:1024px){.zwave-container .view[data-v-3da196a6]{width:100%;border-radius:0;margin-top:0}}@media screen and (min-width:1024px){.zwave-container .view[data-v-3da196a6]{min-width:400pt;max-width:750pt;border-radius:1.5em;margin-top:1em}}.zwave-container .item[data-v-3da196a6]{border-bottom:1px solid #ddd}.zwave-container .item.selected[data-v-3da196a6]{box-shadow:0 2px 4px 0 #bbb}.zwave-container .item .name.header[data-v-3da196a6]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zwave-container .item .name.header[data-v-3da196a6]:hover{border-radius:1.5em}.zwave-container .item .name.header.selected[data-v-3da196a6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:1.5em}.zwave-container .item .title[data-v-3da196a6]{font-size:1.2em;padding-left:.5em}.zwave-container .item .buttons[data-v-3da196a6]{margin:0}.zwave-container .item[data-v-3da196a6]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .item:hover.selected[data-v-3da196a6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zwave-container .item[data-v-3da196a6]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .item[data-v-3da196a6]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .item .params .section[data-v-3da196a6]{padding:1.5em 0 0 0}.zwave-container .item .value .param-name[data-v-3da196a6]{display:inline-block}.zwave-container .item .value .param-name .name[data-v-3da196a6]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zwave-container .item .value .param-name .name[data-v-3da196a6]:before{content:"["}.zwave-container .item .value .param-name .name[data-v-3da196a6]:after{content:"]"}.zwave-container .item .value .param-name .unit[data-v-3da196a6]{font-size:.8em}.zwave-container .item .value .param-name .unit[data-v-3da196a6]:before{content:" [unit: "}.zwave-container .item .value .param-name .unit[data-v-3da196a6]:after{content:"]"}.zwave-container .item .value .param-value label[data-v-3da196a6]{width:90%}.zwave-container .item .value .param-value input[data-v-3da196a6]{width:100%}.zwave-container .item button[data-v-3da196a6]{border:0;background:none;padding:0 .5em}.zwave-container .item button[data-v-3da196a6]:hover{color:#35b870}@media screen and (max-width:769px){.zwave-container .item .name-edit[data-v-3da196a6]{justify-content:left}}@media screen and (min-width:769px){.zwave-container .item .name-edit[data-v-3da196a6]{justify-content:right}}.zwave-container .item .name-edit[data-v-3da196a6]{width:100%;display:inline-flex;align-items:center}.zwave-container .item .name-edit form[data-v-3da196a6]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zwave-container .item .name-edit .buttons[data-v-3da196a6]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zwave-container .item .name-edit form[data-v-3da196a6]{background:none;padding:0;border:none;box-shadow:none}.zwave-container .btn-value-name-edit[data-v-3da196a6]{padding:0}.zwave-container .modal .section .header[data-v-3da196a6]{background:none;padding:.5em 0}.zwave-container .modal .section .body[data-v-3da196a6]{padding:0}.zwave-container .modal .network-info[data-v-3da196a6]{min-width:600pt}.zwave-container .error[data-v-3da196a6]{color:#a00}.zwave-container form[data-v-3da196a6]{border:none;box-shadow:none;padding:0;margin:0}.zwave-container button[data-v-3da196a6]{background:none;border:none;padding:0 .75em}.zwave-container button[data-v-3da196a6]:hover{color:#35b870}.zwave-container .buttons[data-v-3da196a6]{display:inline-flex;margin:0}.zwave-container .buttons .dropdown .item[data-v-3da196a6]{padding:.5em 2em .5em .5em}.zwave-container select[data-v-3da196a6]{width:100%}.zwave-container .clickable[data-v-3da196a6]{cursor:pointer}.zwave-container .buttons button[data-v-3da196a6]{background:none!important}.zwave-container .view.values .node-container[data-v-3da196a6]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .view.values .node-container[data-v-3da196a6]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .view.values .node-container .item[data-v-3da196a6]{border-radius:0}.col-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c1863a74]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c1863a74]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c1863a74]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c1863a74]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c1863a74]:first-child{margin-left:26%!important}.col-offset-3[data-v-c1863a74]:not(first-child){margin-left:30%!important}.col-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c1863a74]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c1863a74]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c1863a74]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c1863a74]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c1863a74]:first-child{margin-left:52%!important}.col-offset-6[data-v-c1863a74]:not(first-child){margin-left:56%!important}.col-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c1863a74]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c1863a74]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c1863a74]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c1863a74]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c1863a74]:first-child{margin-left:78%!important}.col-offset-9[data-v-c1863a74]:not(first-child){margin-left:82%!important}.col-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c1863a74]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c1863a74]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c1863a74]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c1863a74]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-s-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-s-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-s-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-s-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c1863a74]{display:none!important}.s-visible[data-v-c1863a74]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-m-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-m-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-m-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-m-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c1863a74]{display:none!important}.m-visible[data-v-c1863a74]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-l-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-l-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-l-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-l-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c1863a74]{display:none!important}.l-visible[data-v-c1863a74]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-xl-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-xl-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-xl-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xl-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c1863a74]{display:none!important}.xl-visible[data-v-c1863a74]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c1863a74]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c1863a74]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c1863a74]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c1863a74]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c1863a74]{margin-left:26%}.col-no-margin-xxl-3[data-v-c1863a74]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c1863a74]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c1863a74]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c1863a74]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c1863a74]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c1863a74]{margin-left:52%}.col-no-margin-xxl-6[data-v-c1863a74]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c1863a74]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c1863a74]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c1863a74]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c1863a74]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c1863a74]{margin-left:78%}.col-no-margin-xxl-9[data-v-c1863a74]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c1863a74]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c1863a74]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c1863a74]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c1863a74]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c1863a74]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c1863a74]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c1863a74]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c1863a74]{display:none!important}.xxl-visible[data-v-c1863a74]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-c1863a74]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-c1863a74]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-c1863a74]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c1863a74]{display:none!important}}.vertical-center[data-v-c1863a74]{display:flex;align-items:center}.horizontal-center[data-v-c1863a74]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c1863a74]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c1863a74]{display:none!important}.no-content[data-v-c1863a74]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-c1863a74]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-c1863a74]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-c1863a74]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-c1863a74]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-c1863a74]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-c1863a74]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-c1863a74],.btn[data-v-c1863a74],button[data-v-c1863a74]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c1863a74],.btn-default[type=submit][data-v-c1863a74],.btn.btn-primary[data-v-c1863a74],.btn[type=submit][data-v-c1863a74],button.btn-primary[data-v-c1863a74],button[type=submit][data-v-c1863a74]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-c1863a74],.btn-default .icon[data-v-c1863a74],button .icon[data-v-c1863a74]{margin-right:.5em}input[type=password][data-v-c1863a74],input[type=text][data-v-c1863a74]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c1863a74]:focus,input[type=text][data-v-c1863a74]:focus{border:1px solid #35b870}button[data-v-c1863a74],input[data-v-c1863a74]{outline:none}input[type=text][data-v-c1863a74]:hover,textarea[data-v-c1863a74]:hover{border:1px solid #9cdfb0}ul[data-v-c1863a74]{margin:0;padding:0;list-style:none}a[data-v-c1863a74]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c1863a74]:hover{color:#35b870}[data-v-c1863a74]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-c1863a74]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-c1863a74]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c1863a74]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-c1863a74]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-c1863a74] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-c1863a74] .nav .path{cursor:pointer}.browser[data-v-c1863a74] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-c1863a74] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-c1863a74]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-c1863a74],input[type=number][data-v-c1863a74],input[type=password][data-v-c1863a74],input[type=search][data-v-c1863a74],input[type=text][data-v-c1863a74],input[type=time][data-v-c1863a74]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-c1863a74]:hover,input[type=number][data-v-c1863a74]:hover,input[type=password][data-v-c1863a74]:hover,input[type=search][data-v-c1863a74]:hover,input[type=text][data-v-c1863a74]:hover,input[type=time][data-v-c1863a74]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-c1863a74]:focus,input[type=number][data-v-c1863a74]:focus,input[type=password][data-v-c1863a74]:focus,input[type=search][data-v-c1863a74]:focus,input[type=text][data-v-c1863a74]:focus,input[type=time][data-v-c1863a74]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-c1863a74],input[type=number].with-icon[data-v-c1863a74],input[type=password].with-icon[data-v-c1863a74],input[type=search].with-icon[data-v-c1863a74],input[type=text].with-icon[data-v-c1863a74],input[type=time].with-icon[data-v-c1863a74]{padding-left:.3em}input[type=search][data-v-c1863a74],input[type=text][data-v-c1863a74]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c1863a74]{animation-fill-mode:both;animation-name:fadeIn-c1863a74;-webkit-animation-name:fadeIn-c1863a74}.fade-in[data-v-c1863a74],.fade-out[data-v-c1863a74]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c1863a74]{animation-fill-mode:both;animation-name:fadeOut-c1863a74;-webkit-animation-name:fadeOut-c1863a74}@keyframes fadeIn-c1863a74{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c1863a74{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-c1863a74]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-c1863a74;-webkit-animation-name:glow-c1863a74}.loop[data-v-c1863a74]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-c1863a74{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-c1863a74]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c1863a74]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c1863a74]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-c1863a74] .modal .dialog-content{padding:1em}[data-v-c1863a74] .modal .buttons{display:flex;flex-direction:row;justify-content:right;padding:1em 0 1em 1em;border:0;border-radius:0;box-shadow:0 -1px silver}[data-v-c1863a74] .modal .buttons button{padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-c1863a74] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0021cd76]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0021cd76]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0021cd76]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0021cd76]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0021cd76]:first-child{margin-left:26%!important}.col-offset-3[data-v-0021cd76]:not(first-child){margin-left:30%!important}.col-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0021cd76]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0021cd76]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0021cd76]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0021cd76]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0021cd76]:first-child{margin-left:52%!important}.col-offset-6[data-v-0021cd76]:not(first-child){margin-left:56%!important}.col-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0021cd76]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0021cd76]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0021cd76]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0021cd76]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0021cd76]:first-child{margin-left:78%!important}.col-offset-9[data-v-0021cd76]:not(first-child){margin-left:82%!important}.col-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0021cd76]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0021cd76]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0021cd76]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0021cd76]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-1[data-v-0021cd76]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-2[data-v-0021cd76]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-3[data-v-0021cd76]{margin-left:26%}.col-no-margin-s-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-4[data-v-0021cd76]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-5[data-v-0021cd76]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-6[data-v-0021cd76]{margin-left:52%}.col-no-margin-s-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-7[data-v-0021cd76]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-8[data-v-0021cd76]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-9[data-v-0021cd76]{margin-left:78%}.col-no-margin-s-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-10[data-v-0021cd76]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0021cd76]:first-child{margin-left:0}.col-offset-s-11[data-v-0021cd76]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0021cd76]{display:none!important}.s-visible[data-v-0021cd76]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-1[data-v-0021cd76]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-2[data-v-0021cd76]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-3[data-v-0021cd76]{margin-left:26%}.col-no-margin-m-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-4[data-v-0021cd76]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-5[data-v-0021cd76]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-6[data-v-0021cd76]{margin-left:52%}.col-no-margin-m-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-7[data-v-0021cd76]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-8[data-v-0021cd76]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-9[data-v-0021cd76]{margin-left:78%}.col-no-margin-m-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-10[data-v-0021cd76]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0021cd76]:first-child{margin-left:0}.col-offset-m-11[data-v-0021cd76]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0021cd76]{display:none!important}.m-visible[data-v-0021cd76]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-1[data-v-0021cd76]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-2[data-v-0021cd76]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-3[data-v-0021cd76]{margin-left:26%}.col-no-margin-l-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-4[data-v-0021cd76]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-5[data-v-0021cd76]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-6[data-v-0021cd76]{margin-left:52%}.col-no-margin-l-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-7[data-v-0021cd76]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-8[data-v-0021cd76]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-9[data-v-0021cd76]{margin-left:78%}.col-no-margin-l-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-10[data-v-0021cd76]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0021cd76]:first-child{margin-left:0}.col-offset-l-11[data-v-0021cd76]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0021cd76]{display:none!important}.l-visible[data-v-0021cd76]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-1[data-v-0021cd76]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-2[data-v-0021cd76]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-3[data-v-0021cd76]{margin-left:26%}.col-no-margin-xl-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-4[data-v-0021cd76]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-5[data-v-0021cd76]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-6[data-v-0021cd76]{margin-left:52%}.col-no-margin-xl-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-7[data-v-0021cd76]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-8[data-v-0021cd76]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-9[data-v-0021cd76]{margin-left:78%}.col-no-margin-xl-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-10[data-v-0021cd76]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xl-11[data-v-0021cd76]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0021cd76]{display:none!important}.xl-visible[data-v-0021cd76]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0021cd76]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0021cd76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0021cd76]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0021cd76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0021cd76]{margin-left:26%}.col-no-margin-xxl-3[data-v-0021cd76]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0021cd76]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0021cd76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0021cd76]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0021cd76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0021cd76]{margin-left:52%}.col-no-margin-xxl-6[data-v-0021cd76]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0021cd76]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0021cd76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0021cd76]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0021cd76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0021cd76]{margin-left:78%}.col-no-margin-xxl-9[data-v-0021cd76]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0021cd76]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0021cd76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0021cd76]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0021cd76]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0021cd76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0021cd76]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0021cd76]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0021cd76]{display:none!important}.xxl-visible[data-v-0021cd76]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0021cd76]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0021cd76]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0021cd76]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0021cd76]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0021cd76]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0021cd76]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0021cd76]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0021cd76]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0021cd76]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0021cd76]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0021cd76]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0021cd76]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0021cd76]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0021cd76]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0021cd76]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0021cd76]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0021cd76]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0021cd76]{display:none!important}}.vertical-center[data-v-0021cd76]{display:flex;align-items:center}.horizontal-center[data-v-0021cd76]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0021cd76]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0021cd76]{display:none!important}.no-content[data-v-0021cd76]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0021cd76]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0021cd76]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0021cd76]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0021cd76]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0021cd76]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0021cd76]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0021cd76],.btn[data-v-0021cd76],button[data-v-0021cd76]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0021cd76],.btn-default[type=submit][data-v-0021cd76],.btn.btn-primary[data-v-0021cd76],.btn[type=submit][data-v-0021cd76],button.btn-primary[data-v-0021cd76],button[type=submit][data-v-0021cd76]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0021cd76],.btn-default .icon[data-v-0021cd76],button .icon[data-v-0021cd76]{margin-right:.5em}input[type=password][data-v-0021cd76],input[type=text][data-v-0021cd76]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0021cd76]:focus,input[type=text][data-v-0021cd76]:focus{border:1px solid #35b870}button[data-v-0021cd76],input[data-v-0021cd76]{outline:none}input[type=text][data-v-0021cd76]:hover,textarea[data-v-0021cd76]:hover{border:1px solid #9cdfb0}ul[data-v-0021cd76]{margin:0;padding:0;list-style:none}a[data-v-0021cd76]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0021cd76]:hover{color:#35b870}[data-v-0021cd76]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0021cd76]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0021cd76]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0021cd76]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0021cd76]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0021cd76] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0021cd76] .nav .path{cursor:pointer}.browser[data-v-0021cd76] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0021cd76] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0021cd76]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0021cd76],input[type=number][data-v-0021cd76],input[type=password][data-v-0021cd76],input[type=search][data-v-0021cd76],input[type=text][data-v-0021cd76],input[type=time][data-v-0021cd76]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0021cd76]:hover,input[type=number][data-v-0021cd76]:hover,input[type=password][data-v-0021cd76]:hover,input[type=search][data-v-0021cd76]:hover,input[type=text][data-v-0021cd76]:hover,input[type=time][data-v-0021cd76]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0021cd76]:focus,input[type=number][data-v-0021cd76]:focus,input[type=password][data-v-0021cd76]:focus,input[type=search][data-v-0021cd76]:focus,input[type=text][data-v-0021cd76]:focus,input[type=time][data-v-0021cd76]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0021cd76],input[type=number].with-icon[data-v-0021cd76],input[type=password].with-icon[data-v-0021cd76],input[type=search].with-icon[data-v-0021cd76],input[type=text].with-icon[data-v-0021cd76],input[type=time].with-icon[data-v-0021cd76]{padding-left:.3em}input[type=search][data-v-0021cd76],input[type=text][data-v-0021cd76]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0021cd76]{animation-fill-mode:both;animation-name:fadeIn-0021cd76;-webkit-animation-name:fadeIn-0021cd76}.fade-in[data-v-0021cd76],.fade-out[data-v-0021cd76]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0021cd76]{animation-fill-mode:both;animation-name:fadeOut-0021cd76;-webkit-animation-name:fadeOut-0021cd76}@keyframes fadeIn-0021cd76{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0021cd76{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0021cd76]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0021cd76;-webkit-animation-name:glow-0021cd76}.loop[data-v-0021cd76]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0021cd76{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0021cd76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0021cd76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0021cd76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zwave-container .no-items[data-v-0021cd76]{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zwave-container .info-body .row[data-v-0021cd76]:nth-child(2n),.zwave-container .params .row[data-v-0021cd76]:nth-child(2n){background:#f0f0f0}.zwave-container .info-body .row[data-v-0021cd76]:nth-child(odd),.zwave-container .params .row[data-v-0021cd76]:nth-child(odd){background:#fff}.zwave-container .info-body .row[data-v-0021cd76]:hover,.zwave-container .params .row[data-v-0021cd76]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .node .actions .row[data-v-0021cd76],.zwave-container .scene .actions .row[data-v-0021cd76]{cursor:pointer}.zwave-container .node form[data-v-0021cd76],.zwave-container .scene form[data-v-0021cd76]{margin-bottom:0}.zwave-container .params[data-v-0021cd76]{background:#fff;padding-bottom:1em}.zwave-container .params .title[data-v-0021cd76]{font-size:1.1em!important;margin:0!important}.zwave-container .params .section[data-v-0021cd76]{display:flex;flex-direction:column;padding:0 1em}.zwave-container .params .section[data-v-0021cd76]:not(:first-child){padding-top:1em}.zwave-container .params .section .header[data-v-0021cd76]{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zwave-container .params .section .header .buttons[data-v-0021cd76]{display:inline-flex;justify-content:right}.zwave-container .params .row[data-v-0021cd76]{display:flex;align-items:center;border-radius:1em;padding:.3em}.zwave-container .params .row[data-v-0021cd76]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .params .param-name[data-v-0021cd76]{display:inline-flex;width:40%;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .params .param-value[data-v-0021cd76]{display:inline-block;width:58%;text-align:right}.zwave-container .params .param-value .value-edit[data-v-0021cd76]{display:flex;align-items:center}.zwave-container .params .param-value .value-data[data-v-0021cd76]{display:inline-block;font-weight:700}.zwave-container .params .param-value .slider-container[data-v-0021cd76]{display:flex;align-items:center}.zwave-container .params .param-value .unit[data-v-0021cd76]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .params .param-value select[data-v-0021cd76]{width:100%}.zwave-container .params .param-value .numeric input.slider[data-v-0021cd76]{text-align:left}.zwave-container .params .param-value .numeric input[type=text][data-v-0021cd76]{text-align:right;width:100%}.zwave-container .params .param-value .numeric .row[data-v-0021cd76],.zwave-container .params .param-value .numeric .row[data-v-0021cd76]:hover{background:none}.zwave-container .params .param-value .numeric .value-max[data-v-0021cd76],.zwave-container .params .param-value .numeric .value-min[data-v-0021cd76]{width:50%;font-size:.85em;opacity:.75}.zwave-container .params .param-value .numeric .value-min[data-v-0021cd76]{text-align:left}.zwave-container .params .param-value .numeric .value-max[data-v-0021cd76]{text-align:right}.zwave-container .params .param-value .edit-cell[data-v-0021cd76]{width:100%;display:inline-flex;justify-content:right;align-items:center}.zwave-container .params .param-value .edit-cell .buttons[data-v-0021cd76]{margin:0}.zwave-container .row[data-v-0021cd76]{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zwave-container .row .param-name[data-v-0021cd76]{width:100%;font-weight:700}.zwave-container .row .param-value[data-v-0021cd76]{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zwave-container .row .param-name[data-v-0021cd76]{width:40%}.zwave-container .row .param-value[data-v-0021cd76]{width:58%;justify-content:right}}.zwave-container .row .param-name[data-v-0021cd76]{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .row .param-value[data-v-0021cd76]{display:inline-flex;align-items:center}.zwave-container .row .param-value .value-edit[data-v-0021cd76]{display:flex;align-items:center}.zwave-container .row .param-value .value-data[data-v-0021cd76]{display:inline-block;font-weight:700}.zwave-container .row .param-value .slider-container[data-v-0021cd76]{display:flex;align-items:center}.zwave-container .row .param-value .unit[data-v-0021cd76]{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .row .param-value select[data-v-0021cd76]{width:100%}.zwave-container .row .param-value .numeric input.slider[data-v-0021cd76]{text-align:left}.zwave-container .row .param-value .numeric input[type=text][data-v-0021cd76]{text-align:right;width:100%}.zwave-container .row .param-value .numeric .row[data-v-0021cd76],.zwave-container .row .param-value .numeric .row[data-v-0021cd76]:hover{background:none}.zwave-container .row .param-value .numeric .value-max[data-v-0021cd76],.zwave-container .row .param-value .numeric .value-min[data-v-0021cd76]{width:50%;font-size:.85em;opacity:.75}.zwave-container .row .param-value .numeric .value-min[data-v-0021cd76]{text-align:left}.zwave-container .row .param-value .numeric .value-max[data-v-0021cd76]{text-align:right}.zwave-container .btn-default[data-v-0021cd76]{border:0;padding:0 1em}.zwave-container .btn-default[data-v-0021cd76]:hover{border:1px solid #ddd;border-radius:1em}.zwave-container .buttons[data-v-0021cd76]{text-align:right}.zwave-container .view-container[data-v-0021cd76]{width:100%;height:calc(100% - 3.5em);overflow:auto;display:flex;justify-content:center}.zwave-container .view[data-v-0021cd76]{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:1024px){.zwave-container .view[data-v-0021cd76]{width:100%;border-radius:0;margin-top:0}}@media screen and (min-width:1024px){.zwave-container .view[data-v-0021cd76]{min-width:400pt;max-width:750pt;border-radius:1.5em;margin-top:1em}}.zwave-container .item[data-v-0021cd76]{border-bottom:1px solid #ddd}.zwave-container .item.selected[data-v-0021cd76]{box-shadow:0 2px 4px 0 #bbb}.zwave-container .item .name.header[data-v-0021cd76]{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zwave-container .item .name.header[data-v-0021cd76]:hover{border-radius:1.5em}.zwave-container .item .name.header.selected[data-v-0021cd76]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:1.5em}.zwave-container .item .title[data-v-0021cd76]{font-size:1.2em;padding-left:.5em}.zwave-container .item .buttons[data-v-0021cd76]{margin:0}.zwave-container .item[data-v-0021cd76]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .item:hover.selected[data-v-0021cd76]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zwave-container .item[data-v-0021cd76]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .item[data-v-0021cd76]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .item .params .section[data-v-0021cd76]{padding:1.5em 0 0 0}.zwave-container .item .value .param-name[data-v-0021cd76]{display:inline-block}.zwave-container .item .value .param-name .name[data-v-0021cd76]{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zwave-container .item .value .param-name .name[data-v-0021cd76]:before{content:"["}.zwave-container .item .value .param-name .name[data-v-0021cd76]:after{content:"]"}.zwave-container .item .value .param-name .unit[data-v-0021cd76]{font-size:.8em}.zwave-container .item .value .param-name .unit[data-v-0021cd76]:before{content:" [unit: "}.zwave-container .item .value .param-name .unit[data-v-0021cd76]:after{content:"]"}.zwave-container .item .value .param-value label[data-v-0021cd76]{width:90%}.zwave-container .item .value .param-value input[data-v-0021cd76]{width:100%}.zwave-container .item button[data-v-0021cd76]{border:0;background:none;padding:0 .5em}.zwave-container .item button[data-v-0021cd76]:hover{color:#35b870}@media screen and (max-width:769px){.zwave-container .item .name-edit[data-v-0021cd76]{justify-content:left}}@media screen and (min-width:769px){.zwave-container .item .name-edit[data-v-0021cd76]{justify-content:right}}.zwave-container .item .name-edit[data-v-0021cd76]{width:100%;display:inline-flex;align-items:center}.zwave-container .item .name-edit form[data-v-0021cd76]{width:100%;display:inline-flex;align-items:center;justify-content:right;flex-direction:row}.zwave-container .item .name-edit .buttons[data-v-0021cd76]{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zwave-container .item .name-edit form[data-v-0021cd76]{background:none;padding:0;border:none;box-shadow:none}.zwave-container .btn-value-name-edit[data-v-0021cd76]{padding:0}.zwave-container .modal .section .header[data-v-0021cd76]{background:none;padding:.5em 0}.zwave-container .modal .section .body[data-v-0021cd76]{padding:0}.zwave-container .modal .network-info[data-v-0021cd76]{min-width:600pt}.zwave-container .error[data-v-0021cd76]{color:#a00}.zwave-container form[data-v-0021cd76]{border:none;box-shadow:none;padding:0;margin:0}.zwave-container button[data-v-0021cd76]{background:none;border:none;padding:0 .75em}.zwave-container button[data-v-0021cd76]:hover{color:#35b870}.zwave-container .buttons[data-v-0021cd76]{display:inline-flex;margin:0}.zwave-container .buttons .dropdown .item[data-v-0021cd76]{padding:.5em 2em .5em .5em}.zwave-container select[data-v-0021cd76]{width:100%}.zwave-container .clickable[data-v-0021cd76]{cursor:pointer}.zwave-container .buttons button[data-v-0021cd76]{background:none!important}.zwave-container .view.values .node-container[data-v-0021cd76]:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .view.values .node-container[data-v-0021cd76]:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .view.values .node-container .item[data-v-0021cd76]{border-radius:0}.node-container:first-child .item.node[data-v-0021cd76]:hover{border-radius:1.5em 1.5em 0 0}.node-container:last-child .item.node[data-v-0021cd76]:hover{border-radius:0 0 1.5em 1.5em}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.zwave-container .no-items{padding:2em;font-size:1.5em;color:#555;display:flex;align-items:center;justify-content:center}.zwave-container .info-body .row:nth-child(2n),.zwave-container .params .row:nth-child(2n){background:#f0f0f0}.zwave-container .info-body .row:nth-child(odd),.zwave-container .params .row:nth-child(odd){background:#fff}.zwave-container .info-body .row:hover,.zwave-container .params .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .node .actions .row,.zwave-container .scene .actions .row{cursor:pointer}.zwave-container .node form,.zwave-container .scene form{margin-bottom:0}.zwave-container .params{background:#fff;padding-bottom:1em}.zwave-container .params .title{font-size:1.1em!important;margin:0!important}.zwave-container .params .section{display:flex;flex-direction:column;padding:0 1em}.zwave-container .params .section:not(:first-child){padding-top:1em}.zwave-container .params .section .header{display:flex;align-items:center;font-weight:700;border-bottom:1px solid #e8e8e8}.zwave-container .params .section .header .buttons{display:inline-flex;justify-content:right}.zwave-container .params .row{display:flex;align-items:center;border-radius:1em;padding:.3em}.zwave-container .params .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .params .param-name{display:inline-flex;width:40%;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .params .param-value{display:inline-block;width:58%;text-align:right}.zwave-container .params .param-value .value-edit{display:flex;align-items:center}.zwave-container .params .param-value .value-data{display:inline-block;font-weight:700}.zwave-container .params .param-value .slider-container{display:flex;align-items:center}.zwave-container .params .param-value .unit{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .params .param-value select{width:100%}.zwave-container .params .param-value .numeric input.slider{text-align:left}.zwave-container .params .param-value .numeric input[type=text]{text-align:right;width:100%}.zwave-container .params .param-value .numeric .row,.zwave-container .params .param-value .numeric .row:hover{background:none}.zwave-container .params .param-value .numeric .value-max,.zwave-container .params .param-value .numeric .value-min{width:50%;font-size:.85em;opacity:.75}.zwave-container .params .param-value .numeric .value-min{text-align:left}.zwave-container .params .param-value .numeric .value-max{text-align:right}.zwave-container .params .param-value .edit-cell{width:100%;display:inline-flex;justify-content:right;align-items:center}.zwave-container .params .param-value .edit-cell .buttons{margin:0}.zwave-container .row{display:flex;flex-wrap:wrap}@media screen and (max-width:769px){.zwave-container .row .param-name{width:100%;font-weight:700}.zwave-container .row .param-value{width:100%;margin-left:1%}}@media screen and (min-width:769px){.zwave-container .row .param-name{width:40%}.zwave-container .row .param-value{width:58%;justify-content:right}}.zwave-container .row .param-name{display:inline-flex;margin-left:1%;vertical-align:top;letter-spacing:.04em}.zwave-container .row .param-value{display:inline-flex;align-items:center}.zwave-container .row .param-value .value-edit{display:flex;align-items:center}.zwave-container .row .param-value .value-data{display:inline-block;font-weight:700}.zwave-container .row .param-value .slider-container{display:flex;align-items:center}.zwave-container .row .param-value .unit{font-size:.8em;margin-left:.5em;display:inline}.zwave-container .row .param-value select{width:100%}.zwave-container .row .param-value .numeric input.slider{text-align:left}.zwave-container .row .param-value .numeric input[type=text]{text-align:right;width:100%}.zwave-container .row .param-value .numeric .row,.zwave-container .row .param-value .numeric .row:hover{background:none}.zwave-container .row .param-value .numeric .value-max,.zwave-container .row .param-value .numeric .value-min{width:50%;font-size:.85em;opacity:.75}.zwave-container .row .param-value .numeric .value-min{text-align:left}.zwave-container .row .param-value .numeric .value-max{text-align:right}.zwave-container .btn-default{border:0;padding:0 1em}.zwave-container .btn-default:hover{border:1px solid #ddd;border-radius:1em}.zwave-container .buttons{text-align:right}.zwave-container .view-container{width:100%;height:calc(100% - 3.5em);overflow:auto;display:flex;justify-content:center}.zwave-container .view{height:-moz-max-content;height:max-content;background:#fff;border:1px solid #d8d8d8;box-shadow:1px 2px 2px #ccc}@media screen and (max-width:1024px){.zwave-container .view{width:100%;border-radius:0;margin-top:0}}@media screen and (min-width:1024px){.zwave-container .view{min-width:400pt;max-width:750pt;border-radius:1.5em;margin-top:1em}}.zwave-container .item{border-bottom:1px solid #ddd}.zwave-container .item.selected{box-shadow:0 2px 4px 0 #bbb}.zwave-container .item .name.header{padding:1em!important;cursor:pointer;text-transform:uppercase;letter-spacing:.06em}.zwave-container .item .name.header:hover{border-radius:1.5em}.zwave-container .item .name.header.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:1.5em}.zwave-container .item .title{font-size:1.2em;padding-left:.5em}.zwave-container .item .buttons{margin:0}.zwave-container .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.zwave-container .item:hover.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.zwave-container .item:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .item:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .item .params .section{padding:1.5em 0 0 0}.zwave-container .item .value .param-name{display:inline-block}.zwave-container .item .value .param-name .name{font-family:monospace;font-size:.8em;text-transform:unset;padding:0}.zwave-container .item .value .param-name .name:before{content:"["}.zwave-container .item .value .param-name .name:after{content:"]"}.zwave-container .item .value .param-name .unit{font-size:.8em}.zwave-container .item .value .param-name .unit:before{content:" [unit: "}.zwave-container .item .value .param-name .unit:after{content:"]"}.zwave-container .item .value .param-value label{width:90%}.zwave-container .item .value .param-value input{width:100%}.zwave-container .item button{border:0;background:none;padding:0 .5em}.zwave-container .item button:hover{color:#35b870}@media screen and (max-width:769px){.zwave-container .item .name-edit{justify-content:left}}@media screen and (min-width:769px){.zwave-container .item .name-edit{justify-content:right}}.zwave-container .item .name-edit,.zwave-container .item .name-edit form{width:100%;display:inline-flex;align-items:center}.zwave-container .item .name-edit form{justify-content:right;flex-direction:row}.zwave-container .item .name-edit .buttons{display:inline-flex;justify-content:right;margin:0 0 0 .5em}.zwave-container .item .name-edit form{background:none;padding:0;border:none;box-shadow:none}.zwave-container .btn-value-name-edit{padding:0}.zwave-container .modal .section .header{background:none;padding:.5em 0}.zwave-container .modal .section .body{padding:0}.zwave-container .modal .network-info{min-width:600pt}.zwave-container .error{color:#a00}.zwave-container form{border:none;box-shadow:none;padding:0;margin:0}.zwave-container button{background:none;border:none;padding:0 .75em}.zwave-container button:hover{color:#35b870}.zwave-container .buttons{display:inline-flex;margin:0}.zwave-container .buttons .dropdown .item{padding:.5em 2em .5em .5em}.zwave-container select{width:100%}.zwave-container .clickable{cursor:pointer}.zwave-container .buttons button{background:none!important}.zwave-container .view.values .node-container:first-child{border-radius:1.5em 1.5em 0 0}.zwave-container .view.values .node-container:last-child{border-radius:0 0 1.5em 1.5em}.zwave-container .view.values .node-container .item{border-radius:0}.zwave-container{height:100%;flex-direction:column;overflow:auto}.zwave-container,.zwave-container .view-options{width:100%;padding:0;display:flex;align-items:center}.zwave-container .view-options{height:3.5em;justify-content:space-between;background:#f9fafa;border-bottom:1px solid #ddd;box-shadow:0 3px 2px -1px silver}.zwave-container .view-options .view-selector{display:inline-flex;padding-left:.5em}.zwave-container .view-options .view-selector label,.zwave-container .view-options select{width:100%}.zwave-container .view-options .buttons{display:inline-flex;margin:0!important;justify-content:flex-end}.zwave-container .view-options .buttons button{border:none;background:none}.zwave-container .group-add{margin:-2em;min-width:20em;padding-bottom:1em}.zwave-container .network-info{margin:-1em}.zwave-container .add-node-form,.zwave-container .fields{display:flex;flex-direction:column;justify-content:center}.zwave-container .add-node-form input,.zwave-container .fields input{margin:.5em}.zwave-container .add-node-form .buttons,.zwave-container .fields .buttons{box-shadow:0 -1px silver;margin-top:.75em;padding-top:.75em;justify-content:right} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7897.f0ce1f42.css b/platypush/backend/http/webapp/dist/static/css/7897.f0ce1f42.css new file mode 100644 index 0000000000..30eb857a32 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7897.f0ce1f42.css @@ -0,0 +1 @@ +.col-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-24c5aa28]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-24c5aa28]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-24c5aa28]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-24c5aa28]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-24c5aa28]:first-child{margin-left:26%!important}.col-offset-3[data-v-24c5aa28]:not(first-child){margin-left:30%!important}.col-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-24c5aa28]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-24c5aa28]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-24c5aa28]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-24c5aa28]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-24c5aa28]:first-child{margin-left:52%!important}.col-offset-6[data-v-24c5aa28]:not(first-child){margin-left:56%!important}.col-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-24c5aa28]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-24c5aa28]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-24c5aa28]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-24c5aa28]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-24c5aa28]:first-child{margin-left:78%!important}.col-offset-9[data-v-24c5aa28]:not(first-child){margin-left:82%!important}.col-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-24c5aa28]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-24c5aa28]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-24c5aa28]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-24c5aa28]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-1[data-v-24c5aa28]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-2[data-v-24c5aa28]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-3[data-v-24c5aa28]{margin-left:26%}.col-no-margin-s-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-4[data-v-24c5aa28]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-5[data-v-24c5aa28]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-6[data-v-24c5aa28]{margin-left:52%}.col-no-margin-s-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-7[data-v-24c5aa28]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-8[data-v-24c5aa28]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-9[data-v-24c5aa28]{margin-left:78%}.col-no-margin-s-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-10[data-v-24c5aa28]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-s-11[data-v-24c5aa28]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-s-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-24c5aa28]{display:none!important}.s-visible[data-v-24c5aa28]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-1[data-v-24c5aa28]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-2[data-v-24c5aa28]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-3[data-v-24c5aa28]{margin-left:26%}.col-no-margin-m-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-4[data-v-24c5aa28]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-5[data-v-24c5aa28]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-6[data-v-24c5aa28]{margin-left:52%}.col-no-margin-m-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-7[data-v-24c5aa28]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-8[data-v-24c5aa28]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-9[data-v-24c5aa28]{margin-left:78%}.col-no-margin-m-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-10[data-v-24c5aa28]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-m-11[data-v-24c5aa28]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-m-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-24c5aa28]{display:none!important}.m-visible[data-v-24c5aa28]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-1[data-v-24c5aa28]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-2[data-v-24c5aa28]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-3[data-v-24c5aa28]{margin-left:26%}.col-no-margin-l-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-4[data-v-24c5aa28]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-5[data-v-24c5aa28]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-6[data-v-24c5aa28]{margin-left:52%}.col-no-margin-l-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-7[data-v-24c5aa28]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-8[data-v-24c5aa28]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-9[data-v-24c5aa28]{margin-left:78%}.col-no-margin-l-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-10[data-v-24c5aa28]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-l-11[data-v-24c5aa28]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-l-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-24c5aa28]{display:none!important}.l-visible[data-v-24c5aa28]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-1[data-v-24c5aa28]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-2[data-v-24c5aa28]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-3[data-v-24c5aa28]{margin-left:26%}.col-no-margin-xl-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-4[data-v-24c5aa28]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-5[data-v-24c5aa28]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-6[data-v-24c5aa28]{margin-left:52%}.col-no-margin-xl-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-7[data-v-24c5aa28]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-8[data-v-24c5aa28]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-9[data-v-24c5aa28]{margin-left:78%}.col-no-margin-xl-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-10[data-v-24c5aa28]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xl-11[data-v-24c5aa28]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-24c5aa28]{display:none!important}.xl-visible[data-v-24c5aa28]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-1[data-v-24c5aa28]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-24c5aa28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-2[data-v-24c5aa28]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-24c5aa28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-3[data-v-24c5aa28]{margin-left:26%}.col-no-margin-xxl-3[data-v-24c5aa28]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-4[data-v-24c5aa28]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-24c5aa28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-5[data-v-24c5aa28]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-24c5aa28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-6[data-v-24c5aa28]{margin-left:52%}.col-no-margin-xxl-6[data-v-24c5aa28]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-7[data-v-24c5aa28]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-24c5aa28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-8[data-v-24c5aa28]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-24c5aa28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-9[data-v-24c5aa28]{margin-left:78%}.col-no-margin-xxl-9[data-v-24c5aa28]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-10[data-v-24c5aa28]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-24c5aa28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-24c5aa28]:first-child{margin-left:0}.col-offset-xxl-11[data-v-24c5aa28]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-24c5aa28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-24c5aa28]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-24c5aa28]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-24c5aa28]{display:none!important}.xxl-visible[data-v-24c5aa28]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-24c5aa28]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-24c5aa28]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-24c5aa28]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-24c5aa28]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-24c5aa28]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-24c5aa28]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-24c5aa28]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-24c5aa28]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-24c5aa28]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-24c5aa28]{display:none!important}}.vertical-center[data-v-24c5aa28]{display:flex;align-items:center}.horizontal-center[data-v-24c5aa28]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-24c5aa28]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-24c5aa28]{display:none!important}.no-content[data-v-24c5aa28]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-24c5aa28]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-24c5aa28]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-24c5aa28]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-24c5aa28]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-24c5aa28]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-24c5aa28]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-24c5aa28],.btn[data-v-24c5aa28],button[data-v-24c5aa28]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-24c5aa28],.btn-default[type=submit][data-v-24c5aa28],.btn.btn-primary[data-v-24c5aa28],.btn[type=submit][data-v-24c5aa28],button.btn-primary[data-v-24c5aa28],button[type=submit][data-v-24c5aa28]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-24c5aa28]:hover,.btn[data-v-24c5aa28]:hover,button[data-v-24c5aa28]:hover{color:#35b870}.btn .icon[data-v-24c5aa28],.btn-default .icon[data-v-24c5aa28],button .icon[data-v-24c5aa28]{margin-right:.5em}.btn-default[data-v-24c5aa28]:disabled,.btn-default[disabled][data-v-24c5aa28],.btn[data-v-24c5aa28]:disabled,.btn[disabled][data-v-24c5aa28],button[data-v-24c5aa28]:disabled,button[disabled][data-v-24c5aa28]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-24c5aa28]{cursor:grab!important}.dragged[data-v-24c5aa28]{opacity:.5!important}input[type=password][data-v-24c5aa28],input[type=text][data-v-24c5aa28]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-24c5aa28]:focus,input[type=text][data-v-24c5aa28]:focus{border:1px solid #35b870}button[data-v-24c5aa28],input[data-v-24c5aa28]{outline:none}input[type=text][data-v-24c5aa28]:hover,textarea[data-v-24c5aa28]:hover{border:1px solid #9cdfb0}ul[data-v-24c5aa28]{margin:0;padding:0;list-style:none}a[data-v-24c5aa28]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-24c5aa28]:hover{color:#35b870}[data-v-24c5aa28]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-24c5aa28]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-24c5aa28]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-24c5aa28]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-24c5aa28]{color:#ad1717}body[data-v-24c5aa28]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-24c5aa28] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-24c5aa28] .nav .path{cursor:pointer}.browser[data-v-24c5aa28] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-24c5aa28] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-24c5aa28]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-24c5aa28]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-24c5aa28],input[type=number][data-v-24c5aa28],input[type=password][data-v-24c5aa28],input[type=search][data-v-24c5aa28],input[type=text][data-v-24c5aa28],input[type=time][data-v-24c5aa28]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-24c5aa28]:hover,input[type=number][data-v-24c5aa28]:hover,input[type=password][data-v-24c5aa28]:hover,input[type=search][data-v-24c5aa28]:hover,input[type=text][data-v-24c5aa28]:hover,input[type=time][data-v-24c5aa28]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-24c5aa28]:focus,input[type=number][data-v-24c5aa28]:focus,input[type=password][data-v-24c5aa28]:focus,input[type=search][data-v-24c5aa28]:focus,input[type=text][data-v-24c5aa28]:focus,input[type=time][data-v-24c5aa28]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-24c5aa28],input[type=number].with-icon[data-v-24c5aa28],input[type=password].with-icon[data-v-24c5aa28],input[type=search].with-icon[data-v-24c5aa28],input[type=text].with-icon[data-v-24c5aa28],input[type=time].with-icon[data-v-24c5aa28]{padding-left:.3em}input[type=search][data-v-24c5aa28],input[type=text][data-v-24c5aa28]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-24c5aa28]{animation-fill-mode:both;animation-name:fadeIn-24c5aa28;-webkit-animation-name:fadeIn-24c5aa28}.fade-in[data-v-24c5aa28],.fade-out[data-v-24c5aa28]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-24c5aa28]{animation-fill-mode:both;animation-name:fadeOut-24c5aa28;-webkit-animation-name:fadeOut-24c5aa28}.expand[data-v-24c5aa28]{animation-fill-mode:both;animation-name:expand-24c5aa28;-webkit-animation-name:expand-24c5aa28}.expand[data-v-24c5aa28],.shrink[data-v-24c5aa28]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-24c5aa28]{animation-fill-mode:both;animation-name:shrink-24c5aa28;-webkit-animation-name:shrink-24c5aa28}.fold[data-v-24c5aa28]{animation-fill-mode:both;animation-name:fold-24c5aa28;-webkit-animation-name:fold-24c5aa28}.fold[data-v-24c5aa28],.unfold[data-v-24c5aa28]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-24c5aa28]{animation-fill-mode:both;animation-name:unfold-24c5aa28;-webkit-animation-name:unfold-24c5aa28}.dim[data-v-24c5aa28]{animation-fill-mode:both;animation-name:dim-24c5aa28;-webkit-animation-name:dim-24c5aa28}.brighten[data-v-24c5aa28],.dim[data-v-24c5aa28]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-24c5aa28]{animation-fill-mode:both;animation-name:brighten-24c5aa28;-webkit-animation-name:brighten-24c5aa28}@keyframes fadeIn-24c5aa28{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-24c5aa28{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-24c5aa28{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-24c5aa28{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-24c5aa28{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-24c5aa28{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-24c5aa28{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-24c5aa28{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-24c5aa28]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-24c5aa28;-webkit-animation-name:glow-24c5aa28}.loop[data-v-24c5aa28]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-24c5aa28{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-24c5aa28]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-24c5aa28]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-24c5aa28]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.dropdown[data-v-24c5aa28]{position:absolute;width:-moz-max-content;width:max-content;background:#f1f3f2;border-radius:.25em;box-shadow:1px 1px 1px #bbb;display:flex;flex-direction:column;z-index:2}[data-v-24c5aa28] .dropdown-container button{width:100%;height:100%;color:#23513a;background:#f1f3f2;border:0;padding:.75em .5em;text-align:left;letter-spacing:.01em}[data-v-24c5aa28] .dropdown-container button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);color:#23513a}[data-v-24c5aa28] .dropdown-container button .text{padding-left:.25em}.col-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3f1ad726]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3f1ad726]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3f1ad726]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3f1ad726]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3f1ad726]:first-child{margin-left:26%!important}.col-offset-3[data-v-3f1ad726]:not(first-child){margin-left:30%!important}.col-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3f1ad726]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3f1ad726]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3f1ad726]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3f1ad726]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3f1ad726]:first-child{margin-left:52%!important}.col-offset-6[data-v-3f1ad726]:not(first-child){margin-left:56%!important}.col-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3f1ad726]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3f1ad726]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3f1ad726]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3f1ad726]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3f1ad726]:first-child{margin-left:78%!important}.col-offset-9[data-v-3f1ad726]:not(first-child){margin-left:82%!important}.col-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3f1ad726]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3f1ad726]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3f1ad726]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3f1ad726]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-1[data-v-3f1ad726]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-2[data-v-3f1ad726]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-3[data-v-3f1ad726]{margin-left:26%}.col-no-margin-s-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-4[data-v-3f1ad726]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-5[data-v-3f1ad726]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-6[data-v-3f1ad726]{margin-left:52%}.col-no-margin-s-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-7[data-v-3f1ad726]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-8[data-v-3f1ad726]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-9[data-v-3f1ad726]{margin-left:78%}.col-no-margin-s-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-10[data-v-3f1ad726]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-s-11[data-v-3f1ad726]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3f1ad726]{display:none!important}.s-visible[data-v-3f1ad726]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-1[data-v-3f1ad726]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-2[data-v-3f1ad726]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-3[data-v-3f1ad726]{margin-left:26%}.col-no-margin-m-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-4[data-v-3f1ad726]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-5[data-v-3f1ad726]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-6[data-v-3f1ad726]{margin-left:52%}.col-no-margin-m-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-7[data-v-3f1ad726]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-8[data-v-3f1ad726]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-9[data-v-3f1ad726]{margin-left:78%}.col-no-margin-m-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-10[data-v-3f1ad726]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-m-11[data-v-3f1ad726]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3f1ad726]{display:none!important}.m-visible[data-v-3f1ad726]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-1[data-v-3f1ad726]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-2[data-v-3f1ad726]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-3[data-v-3f1ad726]{margin-left:26%}.col-no-margin-l-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-4[data-v-3f1ad726]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-5[data-v-3f1ad726]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-6[data-v-3f1ad726]{margin-left:52%}.col-no-margin-l-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-7[data-v-3f1ad726]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-8[data-v-3f1ad726]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-9[data-v-3f1ad726]{margin-left:78%}.col-no-margin-l-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-10[data-v-3f1ad726]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-l-11[data-v-3f1ad726]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3f1ad726]{display:none!important}.l-visible[data-v-3f1ad726]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-1[data-v-3f1ad726]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-2[data-v-3f1ad726]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-3[data-v-3f1ad726]{margin-left:26%}.col-no-margin-xl-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-4[data-v-3f1ad726]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-5[data-v-3f1ad726]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-6[data-v-3f1ad726]{margin-left:52%}.col-no-margin-xl-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-7[data-v-3f1ad726]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-8[data-v-3f1ad726]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-9[data-v-3f1ad726]{margin-left:78%}.col-no-margin-xl-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-10[data-v-3f1ad726]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xl-11[data-v-3f1ad726]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3f1ad726]{display:none!important}.xl-visible[data-v-3f1ad726]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3f1ad726]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3f1ad726]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3f1ad726]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3f1ad726]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3f1ad726]{margin-left:26%}.col-no-margin-xxl-3[data-v-3f1ad726]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3f1ad726]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3f1ad726]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3f1ad726]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3f1ad726]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3f1ad726]{margin-left:52%}.col-no-margin-xxl-6[data-v-3f1ad726]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3f1ad726]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3f1ad726]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3f1ad726]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3f1ad726]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3f1ad726]{margin-left:78%}.col-no-margin-xxl-9[data-v-3f1ad726]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3f1ad726]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3f1ad726]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3f1ad726]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3f1ad726]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3f1ad726]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3f1ad726]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3f1ad726]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3f1ad726]{display:none!important}.xxl-visible[data-v-3f1ad726]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3f1ad726]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3f1ad726]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3f1ad726]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3f1ad726]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3f1ad726]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3f1ad726]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3f1ad726]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3f1ad726]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3f1ad726]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3f1ad726]{display:none!important}}.vertical-center[data-v-3f1ad726]{display:flex;align-items:center}.horizontal-center[data-v-3f1ad726]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3f1ad726]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3f1ad726]{display:none!important}.no-content[data-v-3f1ad726]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3f1ad726]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3f1ad726]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3f1ad726]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3f1ad726]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3f1ad726]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3f1ad726]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3f1ad726],.btn[data-v-3f1ad726],button[data-v-3f1ad726]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3f1ad726],.btn-default[type=submit][data-v-3f1ad726],.btn.btn-primary[data-v-3f1ad726],.btn[type=submit][data-v-3f1ad726],button.btn-primary[data-v-3f1ad726],button[type=submit][data-v-3f1ad726]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3f1ad726]:hover,.btn[data-v-3f1ad726]:hover,button[data-v-3f1ad726]:hover{color:#35b870}.btn .icon[data-v-3f1ad726],.btn-default .icon[data-v-3f1ad726],button .icon[data-v-3f1ad726]{margin-right:.5em}.btn-default[data-v-3f1ad726]:disabled,.btn-default[disabled][data-v-3f1ad726],.btn[data-v-3f1ad726]:disabled,.btn[disabled][data-v-3f1ad726],button[data-v-3f1ad726]:disabled,button[disabled][data-v-3f1ad726]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3f1ad726]{cursor:grab!important}.dragged[data-v-3f1ad726]{opacity:.5!important}input[type=password][data-v-3f1ad726],input[type=text][data-v-3f1ad726]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3f1ad726]:focus,input[type=text][data-v-3f1ad726]:focus{border:1px solid #35b870}button[data-v-3f1ad726],input[data-v-3f1ad726]{outline:none}input[type=text][data-v-3f1ad726]:hover,textarea[data-v-3f1ad726]:hover{border:1px solid #9cdfb0}ul[data-v-3f1ad726]{margin:0;padding:0;list-style:none}a[data-v-3f1ad726]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3f1ad726]:hover{color:#35b870}[data-v-3f1ad726]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3f1ad726]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3f1ad726]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3f1ad726]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3f1ad726]{color:#ad1717}body[data-v-3f1ad726]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3f1ad726] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3f1ad726] .nav .path{cursor:pointer}.browser[data-v-3f1ad726] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3f1ad726] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3f1ad726]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3f1ad726]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3f1ad726],input[type=number][data-v-3f1ad726],input[type=password][data-v-3f1ad726],input[type=search][data-v-3f1ad726],input[type=text][data-v-3f1ad726],input[type=time][data-v-3f1ad726]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3f1ad726]:hover,input[type=number][data-v-3f1ad726]:hover,input[type=password][data-v-3f1ad726]:hover,input[type=search][data-v-3f1ad726]:hover,input[type=text][data-v-3f1ad726]:hover,input[type=time][data-v-3f1ad726]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3f1ad726]:focus,input[type=number][data-v-3f1ad726]:focus,input[type=password][data-v-3f1ad726]:focus,input[type=search][data-v-3f1ad726]:focus,input[type=text][data-v-3f1ad726]:focus,input[type=time][data-v-3f1ad726]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3f1ad726],input[type=number].with-icon[data-v-3f1ad726],input[type=password].with-icon[data-v-3f1ad726],input[type=search].with-icon[data-v-3f1ad726],input[type=text].with-icon[data-v-3f1ad726],input[type=time].with-icon[data-v-3f1ad726]{padding-left:.3em}input[type=search][data-v-3f1ad726],input[type=text][data-v-3f1ad726]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3f1ad726]{animation-fill-mode:both;animation-name:fadeIn-3f1ad726;-webkit-animation-name:fadeIn-3f1ad726}.fade-in[data-v-3f1ad726],.fade-out[data-v-3f1ad726]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3f1ad726]{animation-fill-mode:both;animation-name:fadeOut-3f1ad726;-webkit-animation-name:fadeOut-3f1ad726}.expand[data-v-3f1ad726]{animation-fill-mode:both;animation-name:expand-3f1ad726;-webkit-animation-name:expand-3f1ad726}.expand[data-v-3f1ad726],.shrink[data-v-3f1ad726]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-3f1ad726]{animation-fill-mode:both;animation-name:shrink-3f1ad726;-webkit-animation-name:shrink-3f1ad726}.fold[data-v-3f1ad726]{animation-fill-mode:both;animation-name:fold-3f1ad726;-webkit-animation-name:fold-3f1ad726}.fold[data-v-3f1ad726],.unfold[data-v-3f1ad726]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-3f1ad726]{animation-fill-mode:both;animation-name:unfold-3f1ad726;-webkit-animation-name:unfold-3f1ad726}.dim[data-v-3f1ad726]{animation-fill-mode:both;animation-name:dim-3f1ad726;-webkit-animation-name:dim-3f1ad726}.brighten[data-v-3f1ad726],.dim[data-v-3f1ad726]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-3f1ad726]{animation-fill-mode:both;animation-name:brighten-3f1ad726;-webkit-animation-name:brighten-3f1ad726}@keyframes fadeIn-3f1ad726{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3f1ad726{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3f1ad726{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3f1ad726{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3f1ad726{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3f1ad726{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3f1ad726{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3f1ad726{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3f1ad726]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3f1ad726;-webkit-animation-name:glow-3f1ad726}.loop[data-v-3f1ad726]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3f1ad726{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3f1ad726]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3f1ad726]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3f1ad726]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.dropdown-container[data-v-3f1ad726]{position:relative;display:inline-flex;flex-direction:column}.dropdown-container button[data-v-3f1ad726]{background:none;border:0;padding:.5em}.dropdown-container button[data-v-3f1ad726]:hover{color:#35b870}.col-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2babe09c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2babe09c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2babe09c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2babe09c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2babe09c]:first-child{margin-left:26%!important}.col-offset-3[data-v-2babe09c]:not(first-child){margin-left:30%!important}.col-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2babe09c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2babe09c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2babe09c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2babe09c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2babe09c]:first-child{margin-left:52%!important}.col-offset-6[data-v-2babe09c]:not(first-child){margin-left:56%!important}.col-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2babe09c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2babe09c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2babe09c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2babe09c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2babe09c]:first-child{margin-left:78%!important}.col-offset-9[data-v-2babe09c]:not(first-child){margin-left:82%!important}.col-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2babe09c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2babe09c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2babe09c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2babe09c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-1[data-v-2babe09c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-2[data-v-2babe09c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-3[data-v-2babe09c]{margin-left:26%}.col-no-margin-s-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-4[data-v-2babe09c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-5[data-v-2babe09c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-6[data-v-2babe09c]{margin-left:52%}.col-no-margin-s-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-7[data-v-2babe09c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-8[data-v-2babe09c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-9[data-v-2babe09c]{margin-left:78%}.col-no-margin-s-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-10[data-v-2babe09c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2babe09c]:first-child{margin-left:0}.col-offset-s-11[data-v-2babe09c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2babe09c]{display:none!important}.s-visible[data-v-2babe09c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-1[data-v-2babe09c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-2[data-v-2babe09c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-3[data-v-2babe09c]{margin-left:26%}.col-no-margin-m-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-4[data-v-2babe09c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-5[data-v-2babe09c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-6[data-v-2babe09c]{margin-left:52%}.col-no-margin-m-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-7[data-v-2babe09c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-8[data-v-2babe09c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-9[data-v-2babe09c]{margin-left:78%}.col-no-margin-m-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-10[data-v-2babe09c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2babe09c]:first-child{margin-left:0}.col-offset-m-11[data-v-2babe09c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2babe09c]{display:none!important}.m-visible[data-v-2babe09c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-1[data-v-2babe09c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-2[data-v-2babe09c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-3[data-v-2babe09c]{margin-left:26%}.col-no-margin-l-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-4[data-v-2babe09c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-5[data-v-2babe09c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-6[data-v-2babe09c]{margin-left:52%}.col-no-margin-l-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-7[data-v-2babe09c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-8[data-v-2babe09c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-9[data-v-2babe09c]{margin-left:78%}.col-no-margin-l-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-10[data-v-2babe09c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2babe09c]:first-child{margin-left:0}.col-offset-l-11[data-v-2babe09c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2babe09c]{display:none!important}.l-visible[data-v-2babe09c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-1[data-v-2babe09c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-2[data-v-2babe09c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-3[data-v-2babe09c]{margin-left:26%}.col-no-margin-xl-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-4[data-v-2babe09c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-5[data-v-2babe09c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-6[data-v-2babe09c]{margin-left:52%}.col-no-margin-xl-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-7[data-v-2babe09c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-8[data-v-2babe09c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-9[data-v-2babe09c]{margin-left:78%}.col-no-margin-xl-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-10[data-v-2babe09c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xl-11[data-v-2babe09c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2babe09c]{display:none!important}.xl-visible[data-v-2babe09c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2babe09c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2babe09c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2babe09c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2babe09c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2babe09c]{margin-left:26%}.col-no-margin-xxl-3[data-v-2babe09c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2babe09c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2babe09c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2babe09c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2babe09c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2babe09c]{margin-left:52%}.col-no-margin-xxl-6[data-v-2babe09c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2babe09c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2babe09c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2babe09c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2babe09c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2babe09c]{margin-left:78%}.col-no-margin-xxl-9[data-v-2babe09c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2babe09c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2babe09c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2babe09c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2babe09c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2babe09c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2babe09c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2babe09c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2babe09c]{display:none!important}.xxl-visible[data-v-2babe09c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2babe09c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2babe09c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2babe09c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2babe09c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2babe09c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2babe09c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2babe09c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2babe09c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2babe09c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2babe09c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2babe09c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2babe09c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2babe09c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2babe09c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2babe09c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2babe09c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2babe09c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2babe09c]{display:none!important}}.vertical-center[data-v-2babe09c]{display:flex;align-items:center}.horizontal-center[data-v-2babe09c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2babe09c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2babe09c]{display:none!important}.no-content[data-v-2babe09c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2babe09c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2babe09c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2babe09c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2babe09c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2babe09c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2babe09c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2babe09c],.btn[data-v-2babe09c],button[data-v-2babe09c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2babe09c],.btn-default[type=submit][data-v-2babe09c],.btn.btn-primary[data-v-2babe09c],.btn[type=submit][data-v-2babe09c],button.btn-primary[data-v-2babe09c],button[type=submit][data-v-2babe09c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2babe09c]:hover,.btn[data-v-2babe09c]:hover,button[data-v-2babe09c]:hover{color:#35b870}.btn .icon[data-v-2babe09c],.btn-default .icon[data-v-2babe09c],button .icon[data-v-2babe09c]{margin-right:.5em}.btn-default[data-v-2babe09c]:disabled,.btn-default[disabled][data-v-2babe09c],.btn[data-v-2babe09c]:disabled,.btn[disabled][data-v-2babe09c],button[data-v-2babe09c]:disabled,button[disabled][data-v-2babe09c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2babe09c]{cursor:grab!important}.dragged[data-v-2babe09c]{opacity:.5!important}input[type=password][data-v-2babe09c],input[type=text][data-v-2babe09c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2babe09c]:focus,input[type=text][data-v-2babe09c]:focus{border:1px solid #35b870}button[data-v-2babe09c],input[data-v-2babe09c]{outline:none}input[type=text][data-v-2babe09c]:hover,textarea[data-v-2babe09c]:hover{border:1px solid #9cdfb0}ul[data-v-2babe09c]{margin:0;padding:0;list-style:none}a[data-v-2babe09c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2babe09c]:hover{color:#35b870}[data-v-2babe09c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2babe09c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2babe09c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2babe09c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2babe09c]{color:#ad1717}body[data-v-2babe09c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2babe09c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2babe09c] .nav .path{cursor:pointer}.browser[data-v-2babe09c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2babe09c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2babe09c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2babe09c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2babe09c],input[type=number][data-v-2babe09c],input[type=password][data-v-2babe09c],input[type=search][data-v-2babe09c],input[type=text][data-v-2babe09c],input[type=time][data-v-2babe09c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2babe09c]:hover,input[type=number][data-v-2babe09c]:hover,input[type=password][data-v-2babe09c]:hover,input[type=search][data-v-2babe09c]:hover,input[type=text][data-v-2babe09c]:hover,input[type=time][data-v-2babe09c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2babe09c]:focus,input[type=number][data-v-2babe09c]:focus,input[type=password][data-v-2babe09c]:focus,input[type=search][data-v-2babe09c]:focus,input[type=text][data-v-2babe09c]:focus,input[type=time][data-v-2babe09c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2babe09c],input[type=number].with-icon[data-v-2babe09c],input[type=password].with-icon[data-v-2babe09c],input[type=search].with-icon[data-v-2babe09c],input[type=text].with-icon[data-v-2babe09c],input[type=time].with-icon[data-v-2babe09c]{padding-left:.3em}input[type=search][data-v-2babe09c],input[type=text][data-v-2babe09c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2babe09c]{animation-fill-mode:both;animation-name:fadeIn-2babe09c;-webkit-animation-name:fadeIn-2babe09c}.fade-in[data-v-2babe09c],.fade-out[data-v-2babe09c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2babe09c]{animation-fill-mode:both;animation-name:fadeOut-2babe09c;-webkit-animation-name:fadeOut-2babe09c}.expand[data-v-2babe09c]{animation-fill-mode:both;animation-name:expand-2babe09c;-webkit-animation-name:expand-2babe09c}.expand[data-v-2babe09c],.shrink[data-v-2babe09c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2babe09c]{animation-fill-mode:both;animation-name:shrink-2babe09c;-webkit-animation-name:shrink-2babe09c}.fold[data-v-2babe09c]{animation-fill-mode:both;animation-name:fold-2babe09c;-webkit-animation-name:fold-2babe09c}.fold[data-v-2babe09c],.unfold[data-v-2babe09c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2babe09c]{animation-fill-mode:both;animation-name:unfold-2babe09c;-webkit-animation-name:unfold-2babe09c}.dim[data-v-2babe09c]{animation-fill-mode:both;animation-name:dim-2babe09c;-webkit-animation-name:dim-2babe09c}.brighten[data-v-2babe09c],.dim[data-v-2babe09c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2babe09c]{animation-fill-mode:both;animation-name:brighten-2babe09c;-webkit-animation-name:brighten-2babe09c}@keyframes fadeIn-2babe09c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2babe09c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2babe09c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2babe09c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2babe09c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2babe09c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2babe09c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2babe09c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2babe09c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2babe09c;-webkit-animation-name:glow-2babe09c}.loop[data-v-2babe09c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2babe09c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2babe09c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2babe09c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2babe09c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-2babe09c]{display:flex;flex-direction:row!important;min-width:7.5em;padding:.75em .5em;cursor:pointer;align-items:center;color:#23513a;border:0!important;cursor:pointer!important;box-shadow:none!important}.item[data-v-2babe09c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important}.item.selected[data-v-2babe09c]{font-weight:700!important}.item.disabled[data-v-2babe09c]{color:#999;cursor:auto!important}.item .text[data-v-2babe09c]{text-align:left;margin-left:.5em}.item .icon[data-v-2babe09c]{width:1.5em;display:inline-flex;align-items:center}.item[data-v-2babe09c] .icon-container{width:2em;display:inline-flex;align-items:center}.item[data-v-2babe09c] .icon-container .icon{margin:0 1.5em 0 .5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7976.45217ed0.css b/platypush/backend/http/webapp/dist/static/css/7976.45217ed0.css new file mode 100644 index 0000000000..a947c811d9 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7976.45217ed0.css @@ -0,0 +1 @@ +.col-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-76d6af7b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-76d6af7b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-76d6af7b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-76d6af7b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-76d6af7b]:first-child{margin-left:26%!important}.col-offset-3[data-v-76d6af7b]:not(first-child){margin-left:30%!important}.col-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-76d6af7b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-76d6af7b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-76d6af7b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-76d6af7b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-76d6af7b]:first-child{margin-left:52%!important}.col-offset-6[data-v-76d6af7b]:not(first-child){margin-left:56%!important}.col-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-76d6af7b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-76d6af7b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-76d6af7b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-76d6af7b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-76d6af7b]:first-child{margin-left:78%!important}.col-offset-9[data-v-76d6af7b]:not(first-child){margin-left:82%!important}.col-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-76d6af7b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-76d6af7b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-76d6af7b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-76d6af7b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-1[data-v-76d6af7b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-2[data-v-76d6af7b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-3[data-v-76d6af7b]{margin-left:26%}.col-no-margin-s-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-4[data-v-76d6af7b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-5[data-v-76d6af7b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-6[data-v-76d6af7b]{margin-left:52%}.col-no-margin-s-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-7[data-v-76d6af7b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-8[data-v-76d6af7b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-9[data-v-76d6af7b]{margin-left:78%}.col-no-margin-s-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-10[data-v-76d6af7b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-s-11[data-v-76d6af7b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-76d6af7b]{display:none!important}.s-visible[data-v-76d6af7b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-1[data-v-76d6af7b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-2[data-v-76d6af7b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-3[data-v-76d6af7b]{margin-left:26%}.col-no-margin-m-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-4[data-v-76d6af7b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-5[data-v-76d6af7b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-6[data-v-76d6af7b]{margin-left:52%}.col-no-margin-m-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-7[data-v-76d6af7b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-8[data-v-76d6af7b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-9[data-v-76d6af7b]{margin-left:78%}.col-no-margin-m-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-10[data-v-76d6af7b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-m-11[data-v-76d6af7b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-76d6af7b]{display:none!important}.m-visible[data-v-76d6af7b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-1[data-v-76d6af7b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-2[data-v-76d6af7b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-3[data-v-76d6af7b]{margin-left:26%}.col-no-margin-l-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-4[data-v-76d6af7b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-5[data-v-76d6af7b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-6[data-v-76d6af7b]{margin-left:52%}.col-no-margin-l-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-7[data-v-76d6af7b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-8[data-v-76d6af7b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-9[data-v-76d6af7b]{margin-left:78%}.col-no-margin-l-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-10[data-v-76d6af7b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-l-11[data-v-76d6af7b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-76d6af7b]{display:none!important}.l-visible[data-v-76d6af7b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-1[data-v-76d6af7b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-2[data-v-76d6af7b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-3[data-v-76d6af7b]{margin-left:26%}.col-no-margin-xl-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-4[data-v-76d6af7b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-5[data-v-76d6af7b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-6[data-v-76d6af7b]{margin-left:52%}.col-no-margin-xl-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-7[data-v-76d6af7b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-8[data-v-76d6af7b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-9[data-v-76d6af7b]{margin-left:78%}.col-no-margin-xl-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-10[data-v-76d6af7b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xl-11[data-v-76d6af7b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-76d6af7b]{display:none!important}.xl-visible[data-v-76d6af7b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-76d6af7b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-76d6af7b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-76d6af7b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-76d6af7b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-76d6af7b]{margin-left:26%}.col-no-margin-xxl-3[data-v-76d6af7b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-76d6af7b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-76d6af7b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-76d6af7b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-76d6af7b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-76d6af7b]{margin-left:52%}.col-no-margin-xxl-6[data-v-76d6af7b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-76d6af7b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-76d6af7b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-76d6af7b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-76d6af7b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-76d6af7b]{margin-left:78%}.col-no-margin-xxl-9[data-v-76d6af7b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-76d6af7b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-76d6af7b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-76d6af7b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-76d6af7b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-76d6af7b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-76d6af7b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-76d6af7b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-76d6af7b]{display:none!important}.xxl-visible[data-v-76d6af7b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-76d6af7b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-76d6af7b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-76d6af7b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-76d6af7b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-76d6af7b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-76d6af7b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-76d6af7b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-76d6af7b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-76d6af7b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-76d6af7b]{display:none!important}}.vertical-center[data-v-76d6af7b]{display:flex;align-items:center}.horizontal-center[data-v-76d6af7b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-76d6af7b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-76d6af7b]{display:none!important}.no-content[data-v-76d6af7b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-76d6af7b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-76d6af7b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-76d6af7b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-76d6af7b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-76d6af7b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-76d6af7b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-76d6af7b],.btn[data-v-76d6af7b],button[data-v-76d6af7b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-76d6af7b],.btn-default[type=submit][data-v-76d6af7b],.btn.btn-primary[data-v-76d6af7b],.btn[type=submit][data-v-76d6af7b],button.btn-primary[data-v-76d6af7b],button[type=submit][data-v-76d6af7b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-76d6af7b]:hover,.btn[data-v-76d6af7b]:hover,button[data-v-76d6af7b]:hover{color:#35b870}.btn .icon[data-v-76d6af7b],.btn-default .icon[data-v-76d6af7b],button .icon[data-v-76d6af7b]{margin-right:.5em}.btn-default[data-v-76d6af7b]:disabled,.btn-default[disabled][data-v-76d6af7b],.btn[data-v-76d6af7b]:disabled,.btn[disabled][data-v-76d6af7b],button[data-v-76d6af7b]:disabled,button[disabled][data-v-76d6af7b]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-76d6af7b]{cursor:grab!important}.dragged[data-v-76d6af7b]{opacity:.5!important}input[type=password][data-v-76d6af7b],input[type=text][data-v-76d6af7b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-76d6af7b]:focus,input[type=text][data-v-76d6af7b]:focus{border:1px solid #35b870}button[data-v-76d6af7b],input[data-v-76d6af7b]{outline:none}input[type=text][data-v-76d6af7b]:hover,textarea[data-v-76d6af7b]:hover{border:1px solid #9cdfb0}ul[data-v-76d6af7b]{margin:0;padding:0;list-style:none}a[data-v-76d6af7b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-76d6af7b]:hover{color:#35b870}[data-v-76d6af7b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-76d6af7b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-76d6af7b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-76d6af7b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-76d6af7b]{color:#ad1717}body[data-v-76d6af7b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-76d6af7b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-76d6af7b] .nav .path{cursor:pointer}.browser[data-v-76d6af7b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-76d6af7b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-76d6af7b]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-76d6af7b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-76d6af7b],input[type=number][data-v-76d6af7b],input[type=password][data-v-76d6af7b],input[type=search][data-v-76d6af7b],input[type=text][data-v-76d6af7b],input[type=time][data-v-76d6af7b]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-76d6af7b]:hover,input[type=number][data-v-76d6af7b]:hover,input[type=password][data-v-76d6af7b]:hover,input[type=search][data-v-76d6af7b]:hover,input[type=text][data-v-76d6af7b]:hover,input[type=time][data-v-76d6af7b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-76d6af7b]:focus,input[type=number][data-v-76d6af7b]:focus,input[type=password][data-v-76d6af7b]:focus,input[type=search][data-v-76d6af7b]:focus,input[type=text][data-v-76d6af7b]:focus,input[type=time][data-v-76d6af7b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-76d6af7b],input[type=number].with-icon[data-v-76d6af7b],input[type=password].with-icon[data-v-76d6af7b],input[type=search].with-icon[data-v-76d6af7b],input[type=text].with-icon[data-v-76d6af7b],input[type=time].with-icon[data-v-76d6af7b]{padding-left:.3em}input[type=search][data-v-76d6af7b],input[type=text][data-v-76d6af7b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-76d6af7b]{animation-fill-mode:both;animation-name:fadeIn-76d6af7b;-webkit-animation-name:fadeIn-76d6af7b}.fade-in[data-v-76d6af7b],.fade-out[data-v-76d6af7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-76d6af7b]{animation-fill-mode:both;animation-name:fadeOut-76d6af7b;-webkit-animation-name:fadeOut-76d6af7b}.expand[data-v-76d6af7b]{animation-fill-mode:both;animation-name:expand-76d6af7b;-webkit-animation-name:expand-76d6af7b}.expand[data-v-76d6af7b],.shrink[data-v-76d6af7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-76d6af7b]{animation-fill-mode:both;animation-name:shrink-76d6af7b;-webkit-animation-name:shrink-76d6af7b}.fold[data-v-76d6af7b]{animation-fill-mode:both;animation-name:fold-76d6af7b;-webkit-animation-name:fold-76d6af7b}.fold[data-v-76d6af7b],.unfold[data-v-76d6af7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-76d6af7b]{animation-fill-mode:both;animation-name:unfold-76d6af7b;-webkit-animation-name:unfold-76d6af7b}.dim[data-v-76d6af7b]{animation-fill-mode:both;animation-name:dim-76d6af7b;-webkit-animation-name:dim-76d6af7b}.brighten[data-v-76d6af7b],.dim[data-v-76d6af7b]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-76d6af7b]{animation-fill-mode:both;animation-name:brighten-76d6af7b;-webkit-animation-name:brighten-76d6af7b}@keyframes fadeIn-76d6af7b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-76d6af7b{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-76d6af7b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-76d6af7b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-76d6af7b{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-76d6af7b{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-76d6af7b{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-76d6af7b{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-76d6af7b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-76d6af7b;-webkit-animation-name:glow-76d6af7b}.loop[data-v-76d6af7b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-76d6af7b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-76d6af7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-76d6af7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-76d6af7b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-76d6af7b]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header[data-v-76d6af7b] button{background:none;padding:0 .5em;border:0}.header[data-v-76d6af7b] button:hover{color:#38cf80}.header .search-box[data-v-76d6af7b]{width:100%;margin-left:.5em}.header .search-box input[type=search][data-v-76d6af7b]{width:100%}.col-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-ac6ee662]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-ac6ee662]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-ac6ee662]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-ac6ee662]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-ac6ee662]:first-child{margin-left:26%!important}.col-offset-3[data-v-ac6ee662]:not(first-child){margin-left:30%!important}.col-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-ac6ee662]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-ac6ee662]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-ac6ee662]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-ac6ee662]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-ac6ee662]:first-child{margin-left:52%!important}.col-offset-6[data-v-ac6ee662]:not(first-child){margin-left:56%!important}.col-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-ac6ee662]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-ac6ee662]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-ac6ee662]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-ac6ee662]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-ac6ee662]:first-child{margin-left:78%!important}.col-offset-9[data-v-ac6ee662]:not(first-child){margin-left:82%!important}.col-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-ac6ee662]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-ac6ee662]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-ac6ee662]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-ac6ee662]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-1[data-v-ac6ee662]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-2[data-v-ac6ee662]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-3[data-v-ac6ee662]{margin-left:26%}.col-no-margin-s-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-4[data-v-ac6ee662]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-5[data-v-ac6ee662]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-6[data-v-ac6ee662]{margin-left:52%}.col-no-margin-s-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-7[data-v-ac6ee662]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-8[data-v-ac6ee662]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-9[data-v-ac6ee662]{margin-left:78%}.col-no-margin-s-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-10[data-v-ac6ee662]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-s-11[data-v-ac6ee662]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-s-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-ac6ee662]{display:none!important}.s-visible[data-v-ac6ee662]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-1[data-v-ac6ee662]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-2[data-v-ac6ee662]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-3[data-v-ac6ee662]{margin-left:26%}.col-no-margin-m-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-4[data-v-ac6ee662]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-5[data-v-ac6ee662]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-6[data-v-ac6ee662]{margin-left:52%}.col-no-margin-m-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-7[data-v-ac6ee662]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-8[data-v-ac6ee662]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-9[data-v-ac6ee662]{margin-left:78%}.col-no-margin-m-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-10[data-v-ac6ee662]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-m-11[data-v-ac6ee662]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-m-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-ac6ee662]{display:none!important}.m-visible[data-v-ac6ee662]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-1[data-v-ac6ee662]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-2[data-v-ac6ee662]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-3[data-v-ac6ee662]{margin-left:26%}.col-no-margin-l-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-4[data-v-ac6ee662]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-5[data-v-ac6ee662]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-6[data-v-ac6ee662]{margin-left:52%}.col-no-margin-l-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-7[data-v-ac6ee662]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-8[data-v-ac6ee662]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-9[data-v-ac6ee662]{margin-left:78%}.col-no-margin-l-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-10[data-v-ac6ee662]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-l-11[data-v-ac6ee662]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-l-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-ac6ee662]{display:none!important}.l-visible[data-v-ac6ee662]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-1[data-v-ac6ee662]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-2[data-v-ac6ee662]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-3[data-v-ac6ee662]{margin-left:26%}.col-no-margin-xl-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-4[data-v-ac6ee662]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-5[data-v-ac6ee662]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-6[data-v-ac6ee662]{margin-left:52%}.col-no-margin-xl-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-7[data-v-ac6ee662]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-8[data-v-ac6ee662]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-9[data-v-ac6ee662]{margin-left:78%}.col-no-margin-xl-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-10[data-v-ac6ee662]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xl-11[data-v-ac6ee662]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-ac6ee662]{display:none!important}.xl-visible[data-v-ac6ee662]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-1[data-v-ac6ee662]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-ac6ee662]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-2[data-v-ac6ee662]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-ac6ee662]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-3[data-v-ac6ee662]{margin-left:26%}.col-no-margin-xxl-3[data-v-ac6ee662]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-4[data-v-ac6ee662]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-ac6ee662]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-5[data-v-ac6ee662]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-ac6ee662]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-6[data-v-ac6ee662]{margin-left:52%}.col-no-margin-xxl-6[data-v-ac6ee662]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-7[data-v-ac6ee662]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-ac6ee662]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-8[data-v-ac6ee662]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-ac6ee662]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-9[data-v-ac6ee662]{margin-left:78%}.col-no-margin-xxl-9[data-v-ac6ee662]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-10[data-v-ac6ee662]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-ac6ee662]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-ac6ee662]:first-child{margin-left:0}.col-offset-xxl-11[data-v-ac6ee662]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-ac6ee662]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-ac6ee662]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-ac6ee662]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-ac6ee662]{display:none!important}.xxl-visible[data-v-ac6ee662]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-ac6ee662]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-ac6ee662]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-ac6ee662]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-ac6ee662]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-ac6ee662]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-ac6ee662]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-ac6ee662]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-ac6ee662]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-ac6ee662]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-ac6ee662]{display:none!important}}.vertical-center[data-v-ac6ee662]{display:flex;align-items:center}.horizontal-center[data-v-ac6ee662]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-ac6ee662]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-ac6ee662]{display:none!important}.no-content[data-v-ac6ee662]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-ac6ee662]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-ac6ee662]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-ac6ee662]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-ac6ee662]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-ac6ee662]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-ac6ee662]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-ac6ee662],.btn[data-v-ac6ee662],button[data-v-ac6ee662]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-ac6ee662],.btn-default[type=submit][data-v-ac6ee662],.btn.btn-primary[data-v-ac6ee662],.btn[type=submit][data-v-ac6ee662],button.btn-primary[data-v-ac6ee662],button[type=submit][data-v-ac6ee662]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-ac6ee662]:hover,.btn[data-v-ac6ee662]:hover,button[data-v-ac6ee662]:hover{color:#35b870}.btn .icon[data-v-ac6ee662],.btn-default .icon[data-v-ac6ee662],button .icon[data-v-ac6ee662]{margin-right:.5em}.btn-default[data-v-ac6ee662]:disabled,.btn-default[disabled][data-v-ac6ee662],.btn[data-v-ac6ee662]:disabled,.btn[disabled][data-v-ac6ee662],button[data-v-ac6ee662]:disabled,button[disabled][data-v-ac6ee662]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-ac6ee662]{cursor:grab!important}.dragged[data-v-ac6ee662]{opacity:.5!important}input[type=password][data-v-ac6ee662],input[type=text][data-v-ac6ee662]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-ac6ee662]:focus,input[type=text][data-v-ac6ee662]:focus{border:1px solid #35b870}button[data-v-ac6ee662],input[data-v-ac6ee662]{outline:none}input[type=text][data-v-ac6ee662]:hover,textarea[data-v-ac6ee662]:hover{border:1px solid #9cdfb0}ul[data-v-ac6ee662]{margin:0;padding:0;list-style:none}a[data-v-ac6ee662]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-ac6ee662]:hover{color:#35b870}[data-v-ac6ee662]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-ac6ee662]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-ac6ee662]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-ac6ee662]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-ac6ee662]{color:#ad1717}body[data-v-ac6ee662]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-ac6ee662] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-ac6ee662] .nav .path{cursor:pointer}.browser[data-v-ac6ee662] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-ac6ee662] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-ac6ee662]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-ac6ee662]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-ac6ee662],input[type=number][data-v-ac6ee662],input[type=password][data-v-ac6ee662],input[type=search][data-v-ac6ee662],input[type=text][data-v-ac6ee662],input[type=time][data-v-ac6ee662]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-ac6ee662]:hover,input[type=number][data-v-ac6ee662]:hover,input[type=password][data-v-ac6ee662]:hover,input[type=search][data-v-ac6ee662]:hover,input[type=text][data-v-ac6ee662]:hover,input[type=time][data-v-ac6ee662]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-ac6ee662]:focus,input[type=number][data-v-ac6ee662]:focus,input[type=password][data-v-ac6ee662]:focus,input[type=search][data-v-ac6ee662]:focus,input[type=text][data-v-ac6ee662]:focus,input[type=time][data-v-ac6ee662]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-ac6ee662],input[type=number].with-icon[data-v-ac6ee662],input[type=password].with-icon[data-v-ac6ee662],input[type=search].with-icon[data-v-ac6ee662],input[type=text].with-icon[data-v-ac6ee662],input[type=time].with-icon[data-v-ac6ee662]{padding-left:.3em}input[type=search][data-v-ac6ee662],input[type=text][data-v-ac6ee662]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-ac6ee662]{animation-fill-mode:both;animation-name:fadeIn-ac6ee662;-webkit-animation-name:fadeIn-ac6ee662}.fade-in[data-v-ac6ee662],.fade-out[data-v-ac6ee662]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-ac6ee662]{animation-fill-mode:both;animation-name:fadeOut-ac6ee662;-webkit-animation-name:fadeOut-ac6ee662}.expand[data-v-ac6ee662]{animation-fill-mode:both;animation-name:expand-ac6ee662;-webkit-animation-name:expand-ac6ee662}.expand[data-v-ac6ee662],.shrink[data-v-ac6ee662]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-ac6ee662]{animation-fill-mode:both;animation-name:shrink-ac6ee662;-webkit-animation-name:shrink-ac6ee662}.fold[data-v-ac6ee662]{animation-fill-mode:both;animation-name:fold-ac6ee662;-webkit-animation-name:fold-ac6ee662}.fold[data-v-ac6ee662],.unfold[data-v-ac6ee662]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-ac6ee662]{animation-fill-mode:both;animation-name:unfold-ac6ee662;-webkit-animation-name:unfold-ac6ee662}.dim[data-v-ac6ee662]{animation-fill-mode:both;animation-name:dim-ac6ee662;-webkit-animation-name:dim-ac6ee662}.brighten[data-v-ac6ee662],.dim[data-v-ac6ee662]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-ac6ee662]{animation-fill-mode:both;animation-name:brighten-ac6ee662;-webkit-animation-name:brighten-ac6ee662}@keyframes fadeIn-ac6ee662{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-ac6ee662{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-ac6ee662{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-ac6ee662{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-ac6ee662{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-ac6ee662{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-ac6ee662{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-ac6ee662{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-ac6ee662]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-ac6ee662;-webkit-animation-name:glow-ac6ee662}.loop[data-v-ac6ee662]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-ac6ee662{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-ac6ee662]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-ac6ee662]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-ac6ee662]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.file-container[data-v-ac6ee662]{display:flex;width:100%;height:100%;position:relative}.file-container .file-browser[data-v-ac6ee662]{width:100%;height:calc(100% - 3.3em);display:flex;flex-direction:column}.file-container[data-v-ac6ee662] .browser{width:100%;height:100%;background:#fff} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7998.e7f9b7de.css b/platypush/backend/http/webapp/dist/static/css/7998.e7f9b7de.css new file mode 100644 index 0000000000..dd98d5b8b4 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7998.e7f9b7de.css @@ -0,0 +1 @@ +.col-1[data-v-448cf852]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-1[data-v-448cf852]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-448cf852]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-448cf852]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-448cf852]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-2[data-v-448cf852]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-448cf852]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-448cf852]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-448cf852]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-3[data-v-448cf852]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-448cf852]:first-child{margin-left:26%!important}.col-offset-3[data-v-448cf852]:not(first-child){margin-left:30%!important}.col-4[data-v-448cf852]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-4[data-v-448cf852]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-448cf852]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-448cf852]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-448cf852]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-5[data-v-448cf852]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-448cf852]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-448cf852]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-448cf852]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-6[data-v-448cf852]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-448cf852]:first-child{margin-left:52%!important}.col-offset-6[data-v-448cf852]:not(first-child){margin-left:56%!important}.col-7[data-v-448cf852]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-7[data-v-448cf852]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-448cf852]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-448cf852]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-448cf852]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-8[data-v-448cf852]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-448cf852]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-448cf852]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-448cf852]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-9[data-v-448cf852]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-448cf852]:first-child{margin-left:78%!important}.col-offset-9[data-v-448cf852]:not(first-child){margin-left:82%!important}.col-10[data-v-448cf852]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-10[data-v-448cf852]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-448cf852]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-448cf852]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-448cf852]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-448cf852]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-448cf852]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-1[data-v-448cf852]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-448cf852]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-448cf852]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-2[data-v-448cf852]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-448cf852]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-448cf852]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-3[data-v-448cf852]{margin-left:26%}.col-no-margin-s-3[data-v-448cf852]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-448cf852]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-4[data-v-448cf852]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-448cf852]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-448cf852]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-5[data-v-448cf852]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-448cf852]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-448cf852]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-6[data-v-448cf852]{margin-left:52%}.col-no-margin-s-6[data-v-448cf852]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-448cf852]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-7[data-v-448cf852]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-448cf852]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-448cf852]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-8[data-v-448cf852]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-448cf852]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-448cf852]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-9[data-v-448cf852]{margin-left:78%}.col-no-margin-s-9[data-v-448cf852]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-448cf852]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-10[data-v-448cf852]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-448cf852]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-448cf852]:first-child{margin-left:0}.col-offset-s-11[data-v-448cf852]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-s-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-448cf852]{display:none!important}.s-visible[data-v-448cf852]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-448cf852]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-1[data-v-448cf852]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-448cf852]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-448cf852]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-2[data-v-448cf852]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-448cf852]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-448cf852]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-3[data-v-448cf852]{margin-left:26%}.col-no-margin-m-3[data-v-448cf852]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-448cf852]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-4[data-v-448cf852]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-448cf852]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-448cf852]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-5[data-v-448cf852]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-448cf852]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-448cf852]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-6[data-v-448cf852]{margin-left:52%}.col-no-margin-m-6[data-v-448cf852]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-448cf852]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-7[data-v-448cf852]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-448cf852]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-448cf852]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-8[data-v-448cf852]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-448cf852]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-448cf852]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-9[data-v-448cf852]{margin-left:78%}.col-no-margin-m-9[data-v-448cf852]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-448cf852]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-10[data-v-448cf852]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-448cf852]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-448cf852]:first-child{margin-left:0}.col-offset-m-11[data-v-448cf852]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-m-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-448cf852]{display:none!important}.m-visible[data-v-448cf852]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-448cf852]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-1[data-v-448cf852]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-448cf852]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-448cf852]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-2[data-v-448cf852]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-448cf852]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-448cf852]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-3[data-v-448cf852]{margin-left:26%}.col-no-margin-l-3[data-v-448cf852]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-448cf852]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-4[data-v-448cf852]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-448cf852]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-448cf852]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-5[data-v-448cf852]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-448cf852]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-448cf852]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-6[data-v-448cf852]{margin-left:52%}.col-no-margin-l-6[data-v-448cf852]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-448cf852]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-7[data-v-448cf852]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-448cf852]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-448cf852]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-8[data-v-448cf852]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-448cf852]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-448cf852]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-9[data-v-448cf852]{margin-left:78%}.col-no-margin-l-9[data-v-448cf852]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-448cf852]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-10[data-v-448cf852]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-448cf852]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-448cf852]:first-child{margin-left:0}.col-offset-l-11[data-v-448cf852]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-l-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-448cf852]{display:none!important}.l-visible[data-v-448cf852]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-448cf852]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-1[data-v-448cf852]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-448cf852]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-448cf852]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-2[data-v-448cf852]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-448cf852]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-448cf852]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-3[data-v-448cf852]{margin-left:26%}.col-no-margin-xl-3[data-v-448cf852]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-448cf852]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-4[data-v-448cf852]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-448cf852]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-448cf852]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-5[data-v-448cf852]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-448cf852]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-448cf852]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-6[data-v-448cf852]{margin-left:52%}.col-no-margin-xl-6[data-v-448cf852]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-448cf852]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-7[data-v-448cf852]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-448cf852]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-448cf852]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-8[data-v-448cf852]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-448cf852]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-448cf852]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-9[data-v-448cf852]{margin-left:78%}.col-no-margin-xl-9[data-v-448cf852]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-448cf852]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-10[data-v-448cf852]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-448cf852]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-448cf852]:first-child{margin-left:0}.col-offset-xl-11[data-v-448cf852]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-448cf852]{display:none!important}.xl-visible[data-v-448cf852]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-448cf852]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-1[data-v-448cf852]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-448cf852]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-448cf852]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-2[data-v-448cf852]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-448cf852]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-448cf852]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-3[data-v-448cf852]{margin-left:26%}.col-no-margin-xxl-3[data-v-448cf852]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-448cf852]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-4[data-v-448cf852]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-448cf852]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-448cf852]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-5[data-v-448cf852]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-448cf852]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-448cf852]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-6[data-v-448cf852]{margin-left:52%}.col-no-margin-xxl-6[data-v-448cf852]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-448cf852]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-7[data-v-448cf852]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-448cf852]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-448cf852]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-8[data-v-448cf852]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-448cf852]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-448cf852]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-9[data-v-448cf852]{margin-left:78%}.col-no-margin-xxl-9[data-v-448cf852]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-448cf852]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-10[data-v-448cf852]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-448cf852]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-448cf852]:first-child{margin-left:0}.col-offset-xxl-11[data-v-448cf852]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-448cf852]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-448cf852]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-448cf852]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-448cf852]{display:none!important}.xxl-visible[data-v-448cf852]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-448cf852]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-448cf852]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-448cf852]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-448cf852]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-448cf852]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-448cf852]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-448cf852]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-448cf852]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-448cf852]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-448cf852]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-448cf852]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-448cf852]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-448cf852]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-448cf852]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-448cf852]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-448cf852]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-448cf852]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-448cf852]{display:none!important}}.vertical-center[data-v-448cf852]{display:flex;align-items:center}.horizontal-center[data-v-448cf852]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-448cf852]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-448cf852]{display:none!important}.no-content[data-v-448cf852]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-448cf852]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-448cf852]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-448cf852]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-448cf852]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-448cf852]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-448cf852]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-448cf852],.btn[data-v-448cf852],button[data-v-448cf852]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-448cf852],.btn-default[type=submit][data-v-448cf852],.btn.btn-primary[data-v-448cf852],.btn[type=submit][data-v-448cf852],button.btn-primary[data-v-448cf852],button[type=submit][data-v-448cf852]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-448cf852]:hover,.btn[data-v-448cf852]:hover,button[data-v-448cf852]:hover{color:#35b870}.btn .icon[data-v-448cf852],.btn-default .icon[data-v-448cf852],button .icon[data-v-448cf852]{margin-right:.5em}.btn-default[data-v-448cf852]:disabled,.btn-default[disabled][data-v-448cf852],.btn[data-v-448cf852]:disabled,.btn[disabled][data-v-448cf852],button[data-v-448cf852]:disabled,button[disabled][data-v-448cf852]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-448cf852]{cursor:grab!important}.dragged[data-v-448cf852]{opacity:.5!important}input[type=password][data-v-448cf852],input[type=text][data-v-448cf852]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-448cf852]:focus,input[type=text][data-v-448cf852]:focus{border:1px solid #35b870}button[data-v-448cf852],input[data-v-448cf852]{outline:none}input[type=text][data-v-448cf852]:hover,textarea[data-v-448cf852]:hover{border:1px solid #9cdfb0}ul[data-v-448cf852]{margin:0;padding:0;list-style:none}a[data-v-448cf852]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-448cf852]:hover{color:#35b870}[data-v-448cf852]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-448cf852]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-448cf852]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-448cf852]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-448cf852]{color:#ad1717}body[data-v-448cf852]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-448cf852] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-448cf852] .nav .path{cursor:pointer}.browser[data-v-448cf852] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-448cf852] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-448cf852]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-448cf852]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-448cf852],input[type=number][data-v-448cf852],input[type=password][data-v-448cf852],input[type=search][data-v-448cf852],input[type=text][data-v-448cf852],input[type=time][data-v-448cf852]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-448cf852]:hover,input[type=number][data-v-448cf852]:hover,input[type=password][data-v-448cf852]:hover,input[type=search][data-v-448cf852]:hover,input[type=text][data-v-448cf852]:hover,input[type=time][data-v-448cf852]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-448cf852]:focus,input[type=number][data-v-448cf852]:focus,input[type=password][data-v-448cf852]:focus,input[type=search][data-v-448cf852]:focus,input[type=text][data-v-448cf852]:focus,input[type=time][data-v-448cf852]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-448cf852],input[type=number].with-icon[data-v-448cf852],input[type=password].with-icon[data-v-448cf852],input[type=search].with-icon[data-v-448cf852],input[type=text].with-icon[data-v-448cf852],input[type=time].with-icon[data-v-448cf852]{padding-left:.3em}input[type=search][data-v-448cf852],input[type=text][data-v-448cf852]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-448cf852]{animation-fill-mode:both;animation-name:fadeIn-448cf852;-webkit-animation-name:fadeIn-448cf852}.fade-in[data-v-448cf852],.fade-out[data-v-448cf852]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-448cf852]{animation-fill-mode:both;animation-name:fadeOut-448cf852;-webkit-animation-name:fadeOut-448cf852}.expand[data-v-448cf852]{animation-fill-mode:both;animation-name:expand-448cf852;-webkit-animation-name:expand-448cf852}.expand[data-v-448cf852],.shrink[data-v-448cf852]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-448cf852]{animation-fill-mode:both;animation-name:shrink-448cf852;-webkit-animation-name:shrink-448cf852}.fold[data-v-448cf852]{animation-fill-mode:both;animation-name:fold-448cf852;-webkit-animation-name:fold-448cf852}.fold[data-v-448cf852],.unfold[data-v-448cf852]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-448cf852]{animation-fill-mode:both;animation-name:unfold-448cf852;-webkit-animation-name:unfold-448cf852}.dim[data-v-448cf852]{animation-fill-mode:both;animation-name:dim-448cf852;-webkit-animation-name:dim-448cf852}.brighten[data-v-448cf852],.dim[data-v-448cf852]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-448cf852]{animation-fill-mode:both;animation-name:brighten-448cf852;-webkit-animation-name:brighten-448cf852}@keyframes fadeIn-448cf852{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-448cf852{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-448cf852{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-448cf852{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-448cf852{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-448cf852{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-448cf852{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-448cf852{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-448cf852]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-448cf852;-webkit-animation-name:glow-448cf852}.loop[data-v-448cf852]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-448cf852{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-448cf852]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-448cf852]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-448cf852]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.channel[data-v-448cf852],.playlist-container[data-v-448cf852]{--banner-height:5em}}@media screen and (min-width:769px){.channel[data-v-448cf852],.playlist-container[data-v-448cf852]{--banner-height:100px}}.header[data-v-448cf852]{border-bottom:1px solid #ddd;margin-bottom:.5em;position:relative;overflow-y:auto}.header .banner[data-v-448cf852]{height:var(--banner-height);display:flex;background-color:#000;justify-content:center}.header .banner img[data-v-448cf852]{max-width:800px;max-height:100%;flex:1}.header .image[data-v-448cf852]{height:100px;margin:-2.5em 2em .5em .5em}.header .image img[data-v-448cf852]{height:100%;border-radius:50%}.header .row[data-v-448cf852]{display:flex}@media screen and (min-width:1024px){.header .row[data-v-448cf852]{flex-direction:row}}.header .row .info[data-v-448cf852]{display:flex;flex-direction:column;align-items:center;height:100%;background-color:rgba(0,0,0,.5)}.header .row .info .row[data-v-448cf852]{width:100%;display:flex;align-items:center;justify-content:center;flex:1;padding:0 .5em}.header .info-container[data-v-448cf852]{position:absolute;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);color:hsla(0,0%,100%,.9);display:flex;flex-direction:column}.header .info-container a[data-v-448cf852]{color:hsla(0,0%,100%,.9)!important}.header .info-container a[data-v-448cf852]:hover{color:#35b870!important}.header .info-container .title[data-v-448cf852]{letter-spacing:.1em;color:hsla(0,0%,100%,.9)!important}.header .info-container .n-items[data-v-448cf852]{margin-left:auto;padding:0 .5em}.header .title-container[data-v-448cf852]{max-height:var(--banner-height);overflow-y:hidden}.header .title[data-v-448cf852]{height:100%;align-content:center;color:#23513a;font-size:1.7em;font-weight:700;margin:.5em 0;-webkit-text-decoration:dotted;text-decoration:dotted}.header .title[data-v-448cf852]:hover{color:#35b870}.header .description[data-v-448cf852]{font-size:.9em;margin-right:.5em}.media-results[data-v-448cf852]{height:calc(100% - var(--banner-height) - 1em)}.media-youtube-channel[data-v-448cf852]{height:100%;overflow-y:auto}.media-youtube-channel .channel[data-v-448cf852]{height:100%}.media-youtube-channel .header .title-container[data-v-448cf852]{flex:1}.media-youtube-channel .header .actions[data-v-448cf852]{display:flex;flex-direction:column;align-items:flex-end}.media-youtube-channel .header .actions button[data-v-448cf852]{background:#e4e4e4;padding:.5em 1em;border-radius:.5em;cursor:pointer}.media-youtube-channel .header .actions button[data-v-448cf852]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.media-youtube-channel .header .subscribers[data-v-448cf852]{font-size:.8em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8069.6bdb62a5.css b/platypush/backend/http/webapp/dist/static/css/8069.6137b3a0.css similarity index 76% rename from platypush/backend/http/webapp/dist/static/css/8069.6bdb62a5.css rename to platypush/backend/http/webapp/dist/static/css/8069.6137b3a0.css index 41ef4dadd0..a7d4834981 100644 --- a/platypush/backend/http/webapp/dist/static/css/8069.6bdb62a5.css +++ b/platypush/backend/http/webapp/dist/static/css/8069.6137b3a0.css @@ -1 +1 @@ -.col-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a248454a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a248454a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a248454a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a248454a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a248454a]:first-child{margin-left:26%!important}.col-offset-3[data-v-a248454a]:not(first-child){margin-left:30%!important}.col-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a248454a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a248454a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a248454a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a248454a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a248454a]:first-child{margin-left:52%!important}.col-offset-6[data-v-a248454a]:not(first-child){margin-left:56%!important}.col-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a248454a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a248454a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a248454a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a248454a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a248454a]:first-child{margin-left:78%!important}.col-offset-9[data-v-a248454a]:not(first-child){margin-left:82%!important}.col-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a248454a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a248454a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a248454a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a248454a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-3[data-v-a248454a]{margin-left:26%}.col-no-margin-s-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-6[data-v-a248454a]{margin-left:52%}.col-no-margin-s-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-9[data-v-a248454a]{margin-left:78%}.col-no-margin-s-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a248454a]{display:none!important}.s-visible[data-v-a248454a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-3[data-v-a248454a]{margin-left:26%}.col-no-margin-m-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-6[data-v-a248454a]{margin-left:52%}.col-no-margin-m-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-9[data-v-a248454a]{margin-left:78%}.col-no-margin-m-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a248454a]{display:none!important}.m-visible[data-v-a248454a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-3[data-v-a248454a]{margin-left:26%}.col-no-margin-l-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-6[data-v-a248454a]{margin-left:52%}.col-no-margin-l-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-9[data-v-a248454a]{margin-left:78%}.col-no-margin-l-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a248454a]{display:none!important}.l-visible[data-v-a248454a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-3[data-v-a248454a]{margin-left:26%}.col-no-margin-xl-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-6[data-v-a248454a]{margin-left:52%}.col-no-margin-xl-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-9[data-v-a248454a]{margin-left:78%}.col-no-margin-xl-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a248454a]{display:none!important}.xl-visible[data-v-a248454a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a248454a]{margin-left:26%}.col-no-margin-xxl-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a248454a]{margin-left:52%}.col-no-margin-xxl-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a248454a]{margin-left:78%}.col-no-margin-xxl-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a248454a]{display:none!important}.xxl-visible[data-v-a248454a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-a248454a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a248454a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a248454a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a248454a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a248454a]{display:none!important}}.vertical-center[data-v-a248454a]{display:flex;align-items:center}.horizontal-center[data-v-a248454a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a248454a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a248454a]{display:none!important}.no-content[data-v-a248454a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-a248454a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-a248454a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-a248454a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-a248454a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-a248454a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-a248454a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-a248454a],.btn[data-v-a248454a],button[data-v-a248454a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a248454a],.btn-default[type=submit][data-v-a248454a],.btn.btn-primary[data-v-a248454a],.btn[type=submit][data-v-a248454a],button.btn-primary[data-v-a248454a],button[type=submit][data-v-a248454a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a248454a],.btn-default .icon[data-v-a248454a],button .icon[data-v-a248454a]{margin-right:.5em}input[type=password][data-v-a248454a],input[type=text][data-v-a248454a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a248454a]:focus,input[type=text][data-v-a248454a]:focus{border:1px solid #35b870}button[data-v-a248454a],input[data-v-a248454a]{outline:none}input[type=text][data-v-a248454a]:hover,textarea[data-v-a248454a]:hover{border:1px solid #9cdfb0}ul[data-v-a248454a]{margin:0;padding:0;list-style:none}a[data-v-a248454a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a248454a]:hover{color:#35b870}[data-v-a248454a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-a248454a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-a248454a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a248454a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a248454a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-a248454a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-a248454a] .nav .path{cursor:pointer}.browser[data-v-a248454a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-a248454a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-a248454a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-a248454a],input[type=number][data-v-a248454a],input[type=password][data-v-a248454a],input[type=search][data-v-a248454a],input[type=text][data-v-a248454a],input[type=time][data-v-a248454a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-a248454a]:hover,input[type=number][data-v-a248454a]:hover,input[type=password][data-v-a248454a]:hover,input[type=search][data-v-a248454a]:hover,input[type=text][data-v-a248454a]:hover,input[type=time][data-v-a248454a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-a248454a]:focus,input[type=number][data-v-a248454a]:focus,input[type=password][data-v-a248454a]:focus,input[type=search][data-v-a248454a]:focus,input[type=text][data-v-a248454a]:focus,input[type=time][data-v-a248454a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-a248454a],input[type=number].with-icon[data-v-a248454a],input[type=password].with-icon[data-v-a248454a],input[type=search].with-icon[data-v-a248454a],input[type=text].with-icon[data-v-a248454a],input[type=time].with-icon[data-v-a248454a]{padding-left:.3em}input[type=search][data-v-a248454a],input[type=text][data-v-a248454a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a248454a]{animation-fill-mode:both;animation-name:fadeIn-a248454a;-webkit-animation-name:fadeIn-a248454a}.fade-in[data-v-a248454a],.fade-out[data-v-a248454a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a248454a]{animation-fill-mode:both;animation-name:fadeOut-a248454a;-webkit-animation-name:fadeOut-a248454a}@keyframes fadeIn-a248454a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a248454a{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-a248454a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-a248454a;-webkit-animation-name:glow-a248454a}.loop[data-v-a248454a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-a248454a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-a248454a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a248454a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a248454a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tts-container[data-v-a248454a]{height:-moz-max-content;height:max-content;background:#fff;display:flex;justify-content:center;border:1px solid #ccc;box-shadow:2.5px 2.5px 3px 0 silver}@media screen and (max-width:calc(768px)){.tts-container[data-v-a248454a]{width:100%}}@media screen and (min-width:769px){.tts-container[data-v-a248454a]{width:80%;border-radius:1.5em;margin:1.5em auto}}@media screen and (min-width:1024px){.tts-container[data-v-a248454a]{width:30em}}.tts-container form[data-v-a248454a]{width:100%;border:none;box-shadow:none;padding:1em .5em;margin:0;display:flex;align-items:center;flex-wrap:wrap;flex-direction:row}.tts-container form .field[data-v-a248454a]{margin:0 .5em}.tts-container form .text-container[data-v-a248454a]{width:100%;margin-bottom:1em}.tts-container form input[type=text][data-v-a248454a]{width:100%}.tts-container form button[data-v-a248454a]{border-radius:1.5em}.tts-container form button[data-v-a248454a]:hover,.tts-container form input[data-v-a248454a]:hover{border-color:#35b870} \ No newline at end of file +.col-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a248454a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a248454a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a248454a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a248454a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a248454a]:first-child{margin-left:26%!important}.col-offset-3[data-v-a248454a]:not(first-child){margin-left:30%!important}.col-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a248454a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a248454a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a248454a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a248454a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a248454a]:first-child{margin-left:52%!important}.col-offset-6[data-v-a248454a]:not(first-child){margin-left:56%!important}.col-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a248454a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a248454a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a248454a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a248454a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a248454a]:first-child{margin-left:78%!important}.col-offset-9[data-v-a248454a]:not(first-child){margin-left:82%!important}.col-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a248454a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a248454a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a248454a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a248454a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-3[data-v-a248454a]{margin-left:26%}.col-no-margin-s-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-6[data-v-a248454a]{margin-left:52%}.col-no-margin-s-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-9[data-v-a248454a]{margin-left:78%}.col-no-margin-s-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-s-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a248454a]{display:none!important}.s-visible[data-v-a248454a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-3[data-v-a248454a]{margin-left:26%}.col-no-margin-m-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-6[data-v-a248454a]{margin-left:52%}.col-no-margin-m-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-9[data-v-a248454a]{margin-left:78%}.col-no-margin-m-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-m-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a248454a]{display:none!important}.m-visible[data-v-a248454a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-3[data-v-a248454a]{margin-left:26%}.col-no-margin-l-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-6[data-v-a248454a]{margin-left:52%}.col-no-margin-l-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-9[data-v-a248454a]{margin-left:78%}.col-no-margin-l-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-l-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a248454a]{display:none!important}.l-visible[data-v-a248454a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-3[data-v-a248454a]{margin-left:26%}.col-no-margin-xl-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-6[data-v-a248454a]{margin-left:52%}.col-no-margin-xl-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-9[data-v-a248454a]{margin-left:78%}.col-no-margin-xl-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-xl-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a248454a]{display:none!important}.xl-visible[data-v-a248454a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a248454a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a248454a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a248454a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a248454a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a248454a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a248454a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a248454a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a248454a]{margin-left:26%}.col-no-margin-xxl-3[data-v-a248454a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a248454a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a248454a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a248454a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a248454a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a248454a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a248454a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a248454a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a248454a]{margin-left:52%}.col-no-margin-xxl-6[data-v-a248454a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a248454a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a248454a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a248454a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a248454a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a248454a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a248454a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a248454a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a248454a]{margin-left:78%}.col-no-margin-xxl-9[data-v-a248454a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a248454a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a248454a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a248454a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a248454a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a248454a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a248454a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a248454a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a248454a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a248454a]{display:none!important}.xxl-visible[data-v-a248454a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-a248454a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a248454a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a248454a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a248454a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-a248454a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-a248454a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a248454a]{display:none!important}}.vertical-center[data-v-a248454a]{display:flex;align-items:center}.horizontal-center[data-v-a248454a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a248454a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a248454a]{display:none!important}.no-content[data-v-a248454a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-a248454a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-a248454a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-a248454a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-a248454a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-a248454a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-a248454a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-a248454a],.btn[data-v-a248454a],button[data-v-a248454a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a248454a],.btn-default[type=submit][data-v-a248454a],.btn.btn-primary[data-v-a248454a],.btn[type=submit][data-v-a248454a],button.btn-primary[data-v-a248454a],button[type=submit][data-v-a248454a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-a248454a]:hover,.btn[data-v-a248454a]:hover,button[data-v-a248454a]:hover{color:#35b870}.btn .icon[data-v-a248454a],.btn-default .icon[data-v-a248454a],button .icon[data-v-a248454a]{margin-right:.5em}.btn-default[data-v-a248454a]:disabled,.btn-default[disabled][data-v-a248454a],.btn[data-v-a248454a]:disabled,.btn[disabled][data-v-a248454a],button[data-v-a248454a]:disabled,button[disabled][data-v-a248454a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-a248454a]{cursor:grab!important}.dragged[data-v-a248454a]{opacity:.5!important}input[type=password][data-v-a248454a],input[type=text][data-v-a248454a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a248454a]:focus,input[type=text][data-v-a248454a]:focus{border:1px solid #35b870}button[data-v-a248454a],input[data-v-a248454a]{outline:none}input[type=text][data-v-a248454a]:hover,textarea[data-v-a248454a]:hover{border:1px solid #9cdfb0}ul[data-v-a248454a]{margin:0;padding:0;list-style:none}a[data-v-a248454a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a248454a]:hover{color:#35b870}[data-v-a248454a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-a248454a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-a248454a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a248454a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-a248454a]{color:#ad1717}body[data-v-a248454a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-a248454a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-a248454a] .nav .path{cursor:pointer}.browser[data-v-a248454a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-a248454a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-a248454a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-a248454a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-a248454a],input[type=number][data-v-a248454a],input[type=password][data-v-a248454a],input[type=search][data-v-a248454a],input[type=text][data-v-a248454a],input[type=time][data-v-a248454a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-a248454a]:hover,input[type=number][data-v-a248454a]:hover,input[type=password][data-v-a248454a]:hover,input[type=search][data-v-a248454a]:hover,input[type=text][data-v-a248454a]:hover,input[type=time][data-v-a248454a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-a248454a]:focus,input[type=number][data-v-a248454a]:focus,input[type=password][data-v-a248454a]:focus,input[type=search][data-v-a248454a]:focus,input[type=text][data-v-a248454a]:focus,input[type=time][data-v-a248454a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-a248454a],input[type=number].with-icon[data-v-a248454a],input[type=password].with-icon[data-v-a248454a],input[type=search].with-icon[data-v-a248454a],input[type=text].with-icon[data-v-a248454a],input[type=time].with-icon[data-v-a248454a]{padding-left:.3em}input[type=search][data-v-a248454a],input[type=text][data-v-a248454a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a248454a]{animation-fill-mode:both;animation-name:fadeIn-a248454a;-webkit-animation-name:fadeIn-a248454a}.fade-in[data-v-a248454a],.fade-out[data-v-a248454a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a248454a]{animation-fill-mode:both;animation-name:fadeOut-a248454a;-webkit-animation-name:fadeOut-a248454a}.expand[data-v-a248454a]{animation-fill-mode:both;animation-name:expand-a248454a;-webkit-animation-name:expand-a248454a}.expand[data-v-a248454a],.shrink[data-v-a248454a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-a248454a]{animation-fill-mode:both;animation-name:shrink-a248454a;-webkit-animation-name:shrink-a248454a}.fold[data-v-a248454a]{animation-fill-mode:both;animation-name:fold-a248454a;-webkit-animation-name:fold-a248454a}.fold[data-v-a248454a],.unfold[data-v-a248454a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-a248454a]{animation-fill-mode:both;animation-name:unfold-a248454a;-webkit-animation-name:unfold-a248454a}.dim[data-v-a248454a]{animation-fill-mode:both;animation-name:dim-a248454a;-webkit-animation-name:dim-a248454a}.brighten[data-v-a248454a],.dim[data-v-a248454a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-a248454a]{animation-fill-mode:both;animation-name:brighten-a248454a;-webkit-animation-name:brighten-a248454a}@keyframes fadeIn-a248454a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a248454a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-a248454a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-a248454a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-a248454a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-a248454a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-a248454a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-a248454a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-a248454a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-a248454a;-webkit-animation-name:glow-a248454a}.loop[data-v-a248454a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-a248454a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-a248454a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a248454a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a248454a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tts-container[data-v-a248454a]{height:-moz-max-content;height:max-content;background:#fff;display:flex;justify-content:center;border:1px solid #ccc;box-shadow:2.5px 2.5px 3px 0 silver}@media screen and (max-width:calc(768px)){.tts-container[data-v-a248454a]{width:100%}}@media screen and (min-width:769px){.tts-container[data-v-a248454a]{width:80%;border-radius:1.5em;margin:1.5em auto}}@media screen and (min-width:1024px){.tts-container[data-v-a248454a]{width:30em}}.tts-container form[data-v-a248454a]{width:100%;border:none;box-shadow:none;padding:1em .5em;margin:0;display:flex;align-items:center;flex-wrap:wrap;flex-direction:row}.tts-container form .field[data-v-a248454a]{margin:0 .5em}.tts-container form .text-container[data-v-a248454a]{width:100%;margin-bottom:1em}.tts-container form input[type=text][data-v-a248454a]{width:100%}.tts-container form button[data-v-a248454a]{border-radius:1.5em}.tts-container form button[data-v-a248454a]:hover,.tts-container form input[data-v-a248454a]:hover{border-color:#35b870} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8179.cf2ba7d1.css b/platypush/backend/http/webapp/dist/static/css/8179.54b37efe.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/8179.cf2ba7d1.css rename to platypush/backend/http/webapp/dist/static/css/8179.54b37efe.css index daf247d7b5..a303cbb05f 100644 --- a/platypush/backend/http/webapp/dist/static/css/8179.cf2ba7d1.css +++ b/platypush/backend/http/webapp/dist/static/css/8179.54b37efe.css @@ -1 +1 @@ -.col-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-69b17daa]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-69b17daa]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-69b17daa]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-69b17daa]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-69b17daa]:first-child{margin-left:26%!important}.col-offset-3[data-v-69b17daa]:not(first-child){margin-left:30%!important}.col-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-69b17daa]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-69b17daa]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-69b17daa]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-69b17daa]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-69b17daa]:first-child{margin-left:52%!important}.col-offset-6[data-v-69b17daa]:not(first-child){margin-left:56%!important}.col-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-69b17daa]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-69b17daa]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-69b17daa]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-69b17daa]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-69b17daa]:first-child{margin-left:78%!important}.col-offset-9[data-v-69b17daa]:not(first-child){margin-left:82%!important}.col-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-69b17daa]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-69b17daa]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-69b17daa]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-69b17daa]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-s-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-s-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-s-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-s-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-69b17daa]{display:none!important}.s-visible[data-v-69b17daa]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-m-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-m-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-m-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-m-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-69b17daa]{display:none!important}.m-visible[data-v-69b17daa]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-l-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-l-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-l-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-l-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-69b17daa]{display:none!important}.l-visible[data-v-69b17daa]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-xl-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-xl-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-xl-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-69b17daa]{display:none!important}.xl-visible[data-v-69b17daa]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-xxl-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-xxl-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-xxl-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-69b17daa]{display:none!important}.xxl-visible[data-v-69b17daa]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-69b17daa]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-69b17daa]{display:none!important}}.vertical-center[data-v-69b17daa]{display:flex;align-items:center}.horizontal-center[data-v-69b17daa]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-69b17daa]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-69b17daa]{display:none!important}.no-content[data-v-69b17daa]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-69b17daa]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-69b17daa]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-69b17daa]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-69b17daa]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-69b17daa]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-69b17daa]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-69b17daa],.btn[data-v-69b17daa],button[data-v-69b17daa]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-69b17daa],.btn-default[type=submit][data-v-69b17daa],.btn.btn-primary[data-v-69b17daa],.btn[type=submit][data-v-69b17daa],button.btn-primary[data-v-69b17daa],button[type=submit][data-v-69b17daa]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-69b17daa],.btn-default .icon[data-v-69b17daa],button .icon[data-v-69b17daa]{margin-right:.5em}input[type=password][data-v-69b17daa],input[type=text][data-v-69b17daa]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-69b17daa]:focus,input[type=text][data-v-69b17daa]:focus{border:1px solid #35b870}button[data-v-69b17daa],input[data-v-69b17daa]{outline:none}input[type=text][data-v-69b17daa]:hover,textarea[data-v-69b17daa]:hover{border:1px solid #9cdfb0}ul[data-v-69b17daa]{margin:0;padding:0;list-style:none}a[data-v-69b17daa]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-69b17daa]:hover{color:#35b870}[data-v-69b17daa]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-69b17daa]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-69b17daa]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-69b17daa]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-69b17daa]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-69b17daa] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-69b17daa] .nav .path{cursor:pointer}.browser[data-v-69b17daa] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-69b17daa] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-69b17daa]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-69b17daa],input[type=number][data-v-69b17daa],input[type=password][data-v-69b17daa],input[type=search][data-v-69b17daa],input[type=text][data-v-69b17daa],input[type=time][data-v-69b17daa]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-69b17daa]:hover,input[type=number][data-v-69b17daa]:hover,input[type=password][data-v-69b17daa]:hover,input[type=search][data-v-69b17daa]:hover,input[type=text][data-v-69b17daa]:hover,input[type=time][data-v-69b17daa]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-69b17daa]:focus,input[type=number][data-v-69b17daa]:focus,input[type=password][data-v-69b17daa]:focus,input[type=search][data-v-69b17daa]:focus,input[type=text][data-v-69b17daa]:focus,input[type=time][data-v-69b17daa]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-69b17daa],input[type=number].with-icon[data-v-69b17daa],input[type=password].with-icon[data-v-69b17daa],input[type=search].with-icon[data-v-69b17daa],input[type=text].with-icon[data-v-69b17daa],input[type=time].with-icon[data-v-69b17daa]{padding-left:.3em}input[type=search][data-v-69b17daa],input[type=text][data-v-69b17daa]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-69b17daa]{animation-fill-mode:both;animation-name:fadeIn-69b17daa;-webkit-animation-name:fadeIn-69b17daa}.fade-in[data-v-69b17daa],.fade-out[data-v-69b17daa]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-69b17daa]{animation-fill-mode:both;animation-name:fadeOut-69b17daa;-webkit-animation-name:fadeOut-69b17daa}@keyframes fadeIn-69b17daa{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-69b17daa{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-69b17daa]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-69b17daa;-webkit-animation-name:glow-69b17daa}.loop[data-v-69b17daa]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-69b17daa{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-69b17daa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-69b17daa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-69b17daa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.plugin[data-v-69b17daa]{margin:-1em 0 0 -1em!important;padding:0;width:calc(100% + 2em);height:calc(100% + 2em)} \ No newline at end of file +.col-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-69b17daa]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-69b17daa]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-69b17daa]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-69b17daa]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-69b17daa]:first-child{margin-left:26%!important}.col-offset-3[data-v-69b17daa]:not(first-child){margin-left:30%!important}.col-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-69b17daa]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-69b17daa]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-69b17daa]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-69b17daa]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-69b17daa]:first-child{margin-left:52%!important}.col-offset-6[data-v-69b17daa]:not(first-child){margin-left:56%!important}.col-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-69b17daa]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-69b17daa]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-69b17daa]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-69b17daa]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-69b17daa]:first-child{margin-left:78%!important}.col-offset-9[data-v-69b17daa]:not(first-child){margin-left:82%!important}.col-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-69b17daa]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-69b17daa]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-69b17daa]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-69b17daa]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-s-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-s-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-s-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-s-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-s-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-69b17daa]{display:none!important}.s-visible[data-v-69b17daa]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-m-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-m-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-m-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-m-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-m-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-69b17daa]{display:none!important}.m-visible[data-v-69b17daa]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-l-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-l-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-l-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-l-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-l-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-69b17daa]{display:none!important}.l-visible[data-v-69b17daa]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-xl-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-xl-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-xl-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xl-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-69b17daa]{display:none!important}.xl-visible[data-v-69b17daa]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-1[data-v-69b17daa]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-69b17daa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-2[data-v-69b17daa]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-69b17daa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-3[data-v-69b17daa]{margin-left:26%}.col-no-margin-xxl-3[data-v-69b17daa]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-4[data-v-69b17daa]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-69b17daa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-5[data-v-69b17daa]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-69b17daa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-6[data-v-69b17daa]{margin-left:52%}.col-no-margin-xxl-6[data-v-69b17daa]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-7[data-v-69b17daa]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-69b17daa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-8[data-v-69b17daa]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-69b17daa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-9[data-v-69b17daa]{margin-left:78%}.col-no-margin-xxl-9[data-v-69b17daa]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-10[data-v-69b17daa]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-69b17daa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-69b17daa]:first-child{margin-left:0}.col-offset-xxl-11[data-v-69b17daa]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-69b17daa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-69b17daa]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-69b17daa]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-69b17daa]{display:none!important}.xxl-visible[data-v-69b17daa]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-69b17daa]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-69b17daa]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-69b17daa]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-69b17daa]{display:none!important}}.vertical-center[data-v-69b17daa]{display:flex;align-items:center}.horizontal-center[data-v-69b17daa]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-69b17daa]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-69b17daa]{display:none!important}.no-content[data-v-69b17daa]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-69b17daa]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-69b17daa]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-69b17daa]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-69b17daa]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-69b17daa]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-69b17daa]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-69b17daa],.btn[data-v-69b17daa],button[data-v-69b17daa]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-69b17daa],.btn-default[type=submit][data-v-69b17daa],.btn.btn-primary[data-v-69b17daa],.btn[type=submit][data-v-69b17daa],button.btn-primary[data-v-69b17daa],button[type=submit][data-v-69b17daa]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-69b17daa]:hover,.btn[data-v-69b17daa]:hover,button[data-v-69b17daa]:hover{color:#35b870}.btn .icon[data-v-69b17daa],.btn-default .icon[data-v-69b17daa],button .icon[data-v-69b17daa]{margin-right:.5em}.btn-default[data-v-69b17daa]:disabled,.btn-default[disabled][data-v-69b17daa],.btn[data-v-69b17daa]:disabled,.btn[disabled][data-v-69b17daa],button[data-v-69b17daa]:disabled,button[disabled][data-v-69b17daa]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-69b17daa]{cursor:grab!important}.dragged[data-v-69b17daa]{opacity:.5!important}input[type=password][data-v-69b17daa],input[type=text][data-v-69b17daa]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-69b17daa]:focus,input[type=text][data-v-69b17daa]:focus{border:1px solid #35b870}button[data-v-69b17daa],input[data-v-69b17daa]{outline:none}input[type=text][data-v-69b17daa]:hover,textarea[data-v-69b17daa]:hover{border:1px solid #9cdfb0}ul[data-v-69b17daa]{margin:0;padding:0;list-style:none}a[data-v-69b17daa]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-69b17daa]:hover{color:#35b870}[data-v-69b17daa]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-69b17daa]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-69b17daa]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-69b17daa]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-69b17daa]{color:#ad1717}body[data-v-69b17daa]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-69b17daa] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-69b17daa] .nav .path{cursor:pointer}.browser[data-v-69b17daa] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-69b17daa] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-69b17daa]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-69b17daa]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-69b17daa],input[type=number][data-v-69b17daa],input[type=password][data-v-69b17daa],input[type=search][data-v-69b17daa],input[type=text][data-v-69b17daa],input[type=time][data-v-69b17daa]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-69b17daa]:hover,input[type=number][data-v-69b17daa]:hover,input[type=password][data-v-69b17daa]:hover,input[type=search][data-v-69b17daa]:hover,input[type=text][data-v-69b17daa]:hover,input[type=time][data-v-69b17daa]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-69b17daa]:focus,input[type=number][data-v-69b17daa]:focus,input[type=password][data-v-69b17daa]:focus,input[type=search][data-v-69b17daa]:focus,input[type=text][data-v-69b17daa]:focus,input[type=time][data-v-69b17daa]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-69b17daa],input[type=number].with-icon[data-v-69b17daa],input[type=password].with-icon[data-v-69b17daa],input[type=search].with-icon[data-v-69b17daa],input[type=text].with-icon[data-v-69b17daa],input[type=time].with-icon[data-v-69b17daa]{padding-left:.3em}input[type=search][data-v-69b17daa],input[type=text][data-v-69b17daa]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-69b17daa]{animation-fill-mode:both;animation-name:fadeIn-69b17daa;-webkit-animation-name:fadeIn-69b17daa}.fade-in[data-v-69b17daa],.fade-out[data-v-69b17daa]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-69b17daa]{animation-fill-mode:both;animation-name:fadeOut-69b17daa;-webkit-animation-name:fadeOut-69b17daa}.expand[data-v-69b17daa]{animation-fill-mode:both;animation-name:expand-69b17daa;-webkit-animation-name:expand-69b17daa}.expand[data-v-69b17daa],.shrink[data-v-69b17daa]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-69b17daa]{animation-fill-mode:both;animation-name:shrink-69b17daa;-webkit-animation-name:shrink-69b17daa}.fold[data-v-69b17daa]{animation-fill-mode:both;animation-name:fold-69b17daa;-webkit-animation-name:fold-69b17daa}.fold[data-v-69b17daa],.unfold[data-v-69b17daa]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-69b17daa]{animation-fill-mode:both;animation-name:unfold-69b17daa;-webkit-animation-name:unfold-69b17daa}.dim[data-v-69b17daa]{animation-fill-mode:both;animation-name:dim-69b17daa;-webkit-animation-name:dim-69b17daa}.brighten[data-v-69b17daa],.dim[data-v-69b17daa]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-69b17daa]{animation-fill-mode:both;animation-name:brighten-69b17daa;-webkit-animation-name:brighten-69b17daa}@keyframes fadeIn-69b17daa{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-69b17daa{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-69b17daa{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-69b17daa{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-69b17daa{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-69b17daa{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-69b17daa{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-69b17daa{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-69b17daa]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-69b17daa;-webkit-animation-name:glow-69b17daa}.loop[data-v-69b17daa]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-69b17daa{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-69b17daa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-69b17daa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-69b17daa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.plugin[data-v-69b17daa]{margin:-1em 0 0 -1em!important;padding:0;width:calc(100% + 2em);height:calc(100% + 2em)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8224.f72887fc.css b/platypush/backend/http/webapp/dist/static/css/8224.f72887fc.css deleted file mode 100644 index c3586eee5d..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/8224.f72887fc.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3344f2bf]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3344f2bf]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3344f2bf]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3344f2bf]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3344f2bf]:first-child{margin-left:26%!important}.col-offset-3[data-v-3344f2bf]:not(first-child){margin-left:30%!important}.col-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3344f2bf]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3344f2bf]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3344f2bf]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3344f2bf]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3344f2bf]:first-child{margin-left:52%!important}.col-offset-6[data-v-3344f2bf]:not(first-child){margin-left:56%!important}.col-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3344f2bf]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3344f2bf]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3344f2bf]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3344f2bf]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3344f2bf]:first-child{margin-left:78%!important}.col-offset-9[data-v-3344f2bf]:not(first-child){margin-left:82%!important}.col-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3344f2bf]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3344f2bf]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3344f2bf]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3344f2bf]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-1[data-v-3344f2bf]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-2[data-v-3344f2bf]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-3[data-v-3344f2bf]{margin-left:26%}.col-no-margin-s-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-4[data-v-3344f2bf]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-5[data-v-3344f2bf]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-6[data-v-3344f2bf]{margin-left:52%}.col-no-margin-s-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-7[data-v-3344f2bf]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-8[data-v-3344f2bf]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-9[data-v-3344f2bf]{margin-left:78%}.col-no-margin-s-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-10[data-v-3344f2bf]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-s-11[data-v-3344f2bf]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3344f2bf]{display:none!important}.s-visible[data-v-3344f2bf]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-1[data-v-3344f2bf]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-2[data-v-3344f2bf]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-3[data-v-3344f2bf]{margin-left:26%}.col-no-margin-m-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-4[data-v-3344f2bf]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-5[data-v-3344f2bf]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-6[data-v-3344f2bf]{margin-left:52%}.col-no-margin-m-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-7[data-v-3344f2bf]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-8[data-v-3344f2bf]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-9[data-v-3344f2bf]{margin-left:78%}.col-no-margin-m-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-10[data-v-3344f2bf]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-m-11[data-v-3344f2bf]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3344f2bf]{display:none!important}.m-visible[data-v-3344f2bf]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-1[data-v-3344f2bf]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-2[data-v-3344f2bf]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-3[data-v-3344f2bf]{margin-left:26%}.col-no-margin-l-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-4[data-v-3344f2bf]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-5[data-v-3344f2bf]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-6[data-v-3344f2bf]{margin-left:52%}.col-no-margin-l-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-7[data-v-3344f2bf]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-8[data-v-3344f2bf]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-9[data-v-3344f2bf]{margin-left:78%}.col-no-margin-l-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-10[data-v-3344f2bf]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-l-11[data-v-3344f2bf]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3344f2bf]{display:none!important}.l-visible[data-v-3344f2bf]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-1[data-v-3344f2bf]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-2[data-v-3344f2bf]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-3[data-v-3344f2bf]{margin-left:26%}.col-no-margin-xl-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-4[data-v-3344f2bf]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-5[data-v-3344f2bf]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-6[data-v-3344f2bf]{margin-left:52%}.col-no-margin-xl-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-7[data-v-3344f2bf]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-8[data-v-3344f2bf]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-9[data-v-3344f2bf]{margin-left:78%}.col-no-margin-xl-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-10[data-v-3344f2bf]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xl-11[data-v-3344f2bf]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3344f2bf]{display:none!important}.xl-visible[data-v-3344f2bf]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3344f2bf]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3344f2bf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3344f2bf]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3344f2bf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3344f2bf]{margin-left:26%}.col-no-margin-xxl-3[data-v-3344f2bf]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3344f2bf]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3344f2bf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3344f2bf]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3344f2bf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3344f2bf]{margin-left:52%}.col-no-margin-xxl-6[data-v-3344f2bf]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3344f2bf]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3344f2bf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3344f2bf]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3344f2bf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3344f2bf]{margin-left:78%}.col-no-margin-xxl-9[data-v-3344f2bf]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3344f2bf]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3344f2bf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3344f2bf]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3344f2bf]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3344f2bf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3344f2bf]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3344f2bf]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3344f2bf]{display:none!important}.xxl-visible[data-v-3344f2bf]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3344f2bf]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3344f2bf]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3344f2bf]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3344f2bf]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3344f2bf]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3344f2bf]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3344f2bf]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3344f2bf]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3344f2bf]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3344f2bf]{display:none!important}}.vertical-center[data-v-3344f2bf]{display:flex;align-items:center}.horizontal-center[data-v-3344f2bf]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3344f2bf]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3344f2bf]{display:none!important}.no-content[data-v-3344f2bf]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3344f2bf]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3344f2bf]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3344f2bf]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3344f2bf]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3344f2bf]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3344f2bf]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3344f2bf],.btn[data-v-3344f2bf],button[data-v-3344f2bf]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3344f2bf],.btn-default[type=submit][data-v-3344f2bf],.btn.btn-primary[data-v-3344f2bf],.btn[type=submit][data-v-3344f2bf],button.btn-primary[data-v-3344f2bf],button[type=submit][data-v-3344f2bf]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3344f2bf],.btn-default .icon[data-v-3344f2bf],button .icon[data-v-3344f2bf]{margin-right:.5em}input[type=password][data-v-3344f2bf],input[type=text][data-v-3344f2bf]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3344f2bf]:focus,input[type=text][data-v-3344f2bf]:focus{border:1px solid #35b870}button[data-v-3344f2bf],input[data-v-3344f2bf]{outline:none}input[type=text][data-v-3344f2bf]:hover,textarea[data-v-3344f2bf]:hover{border:1px solid #9cdfb0}ul[data-v-3344f2bf]{margin:0;padding:0;list-style:none}a[data-v-3344f2bf]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3344f2bf]:hover{color:#35b870}[data-v-3344f2bf]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3344f2bf]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3344f2bf]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3344f2bf]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3344f2bf]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3344f2bf] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3344f2bf] .nav .path{cursor:pointer}.browser[data-v-3344f2bf] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3344f2bf] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3344f2bf]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3344f2bf],input[type=number][data-v-3344f2bf],input[type=password][data-v-3344f2bf],input[type=search][data-v-3344f2bf],input[type=text][data-v-3344f2bf],input[type=time][data-v-3344f2bf]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3344f2bf]:hover,input[type=number][data-v-3344f2bf]:hover,input[type=password][data-v-3344f2bf]:hover,input[type=search][data-v-3344f2bf]:hover,input[type=text][data-v-3344f2bf]:hover,input[type=time][data-v-3344f2bf]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3344f2bf]:focus,input[type=number][data-v-3344f2bf]:focus,input[type=password][data-v-3344f2bf]:focus,input[type=search][data-v-3344f2bf]:focus,input[type=text][data-v-3344f2bf]:focus,input[type=time][data-v-3344f2bf]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3344f2bf],input[type=number].with-icon[data-v-3344f2bf],input[type=password].with-icon[data-v-3344f2bf],input[type=search].with-icon[data-v-3344f2bf],input[type=text].with-icon[data-v-3344f2bf],input[type=time].with-icon[data-v-3344f2bf]{padding-left:.3em}input[type=search][data-v-3344f2bf],input[type=text][data-v-3344f2bf]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3344f2bf]{animation-fill-mode:both;animation-name:fadeIn-3344f2bf;-webkit-animation-name:fadeIn-3344f2bf}.fade-in[data-v-3344f2bf],.fade-out[data-v-3344f2bf]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3344f2bf]{animation-fill-mode:both;animation-name:fadeOut-3344f2bf;-webkit-animation-name:fadeOut-3344f2bf}@keyframes fadeIn-3344f2bf{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3344f2bf{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3344f2bf]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3344f2bf;-webkit-animation-name:glow-3344f2bf}.loop[data-v-3344f2bf]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3344f2bf{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3344f2bf]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3344f2bf]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3344f2bf]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.edit-btn[data-v-3344f2bf]{border:0;background:none;padding:0 .25em;margin-left:.25em;border:1px solid transparent}.edit-btn[data-v-3344f2bf]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);border:1px solid #32b646}.col-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-49689016]:first-child{margin-left:0}.col-no-margin-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-49689016]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-49689016]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-49689016]:first-child{margin-left:0}.col-no-margin-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-49689016]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-49689016]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-49689016]:first-child{margin-left:0}.col-no-margin-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-49689016]:first-child{margin-left:26%!important}.col-offset-3[data-v-49689016]:not(first-child){margin-left:30%!important}.col-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-49689016]:first-child{margin-left:0}.col-no-margin-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-49689016]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-49689016]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-49689016]:first-child{margin-left:0}.col-no-margin-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-49689016]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-49689016]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-49689016]:first-child{margin-left:0}.col-no-margin-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-49689016]:first-child{margin-left:52%!important}.col-offset-6[data-v-49689016]:not(first-child){margin-left:56%!important}.col-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-49689016]:first-child{margin-left:0}.col-no-margin-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-49689016]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-49689016]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-49689016]:first-child{margin-left:0}.col-no-margin-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-49689016]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-49689016]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-49689016]:first-child{margin-left:0}.col-no-margin-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-49689016]:first-child{margin-left:78%!important}.col-offset-9[data-v-49689016]:not(first-child){margin-left:82%!important}.col-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-49689016]:first-child{margin-left:0}.col-no-margin-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-49689016]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-49689016]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-49689016]:first-child{margin-left:0}.col-no-margin-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-49689016]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-49689016]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-49689016]:first-child{margin-left:0}.col-offset-s-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-49689016]:first-child{margin-left:0}.col-offset-s-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-49689016]:first-child{margin-left:0}.col-offset-s-3[data-v-49689016]{margin-left:26%}.col-no-margin-s-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-49689016]:first-child{margin-left:0}.col-offset-s-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-49689016]:first-child{margin-left:0}.col-offset-s-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-49689016]:first-child{margin-left:0}.col-offset-s-6[data-v-49689016]{margin-left:52%}.col-no-margin-s-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-49689016]:first-child{margin-left:0}.col-offset-s-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-49689016]:first-child{margin-left:0}.col-offset-s-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-49689016]:first-child{margin-left:0}.col-offset-s-9[data-v-49689016]{margin-left:78%}.col-no-margin-s-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-49689016]:first-child{margin-left:0}.col-offset-s-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-49689016]:first-child{margin-left:0}.col-offset-s-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-s-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-49689016]{display:none!important}.s-visible[data-v-49689016]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-49689016]:first-child{margin-left:0}.col-offset-m-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-49689016]:first-child{margin-left:0}.col-offset-m-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-49689016]:first-child{margin-left:0}.col-offset-m-3[data-v-49689016]{margin-left:26%}.col-no-margin-m-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-49689016]:first-child{margin-left:0}.col-offset-m-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-49689016]:first-child{margin-left:0}.col-offset-m-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-49689016]:first-child{margin-left:0}.col-offset-m-6[data-v-49689016]{margin-left:52%}.col-no-margin-m-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-49689016]:first-child{margin-left:0}.col-offset-m-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-49689016]:first-child{margin-left:0}.col-offset-m-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-49689016]:first-child{margin-left:0}.col-offset-m-9[data-v-49689016]{margin-left:78%}.col-no-margin-m-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-49689016]:first-child{margin-left:0}.col-offset-m-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-49689016]:first-child{margin-left:0}.col-offset-m-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-m-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-49689016]{display:none!important}.m-visible[data-v-49689016]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-49689016]:first-child{margin-left:0}.col-offset-l-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-49689016]:first-child{margin-left:0}.col-offset-l-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-49689016]:first-child{margin-left:0}.col-offset-l-3[data-v-49689016]{margin-left:26%}.col-no-margin-l-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-49689016]:first-child{margin-left:0}.col-offset-l-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-49689016]:first-child{margin-left:0}.col-offset-l-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-49689016]:first-child{margin-left:0}.col-offset-l-6[data-v-49689016]{margin-left:52%}.col-no-margin-l-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-49689016]:first-child{margin-left:0}.col-offset-l-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-49689016]:first-child{margin-left:0}.col-offset-l-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-49689016]:first-child{margin-left:0}.col-offset-l-9[data-v-49689016]{margin-left:78%}.col-no-margin-l-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-49689016]:first-child{margin-left:0}.col-offset-l-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-49689016]:first-child{margin-left:0}.col-offset-l-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-l-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-49689016]{display:none!important}.l-visible[data-v-49689016]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-3[data-v-49689016]{margin-left:26%}.col-no-margin-xl-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-6[data-v-49689016]{margin-left:52%}.col-no-margin-xl-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-9[data-v-49689016]{margin-left:78%}.col-no-margin-xl-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-49689016]:first-child{margin-left:0}.col-offset-xl-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-49689016]{display:none!important}.xl-visible[data-v-49689016]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-49689016]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-1[data-v-49689016]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-49689016]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-49689016]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-2[data-v-49689016]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-49689016]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-49689016]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-3[data-v-49689016]{margin-left:26%}.col-no-margin-xxl-3[data-v-49689016]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-49689016]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-4[data-v-49689016]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-49689016]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-49689016]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-5[data-v-49689016]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-49689016]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-49689016]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-6[data-v-49689016]{margin-left:52%}.col-no-margin-xxl-6[data-v-49689016]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-49689016]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-7[data-v-49689016]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-49689016]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-49689016]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-8[data-v-49689016]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-49689016]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-49689016]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-9[data-v-49689016]{margin-left:78%}.col-no-margin-xxl-9[data-v-49689016]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-49689016]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-10[data-v-49689016]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-49689016]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-49689016]:first-child{margin-left:0}.col-offset-xxl-11[data-v-49689016]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-49689016]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-49689016]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-49689016]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-49689016]{display:none!important}.xxl-visible[data-v-49689016]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-49689016]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-49689016]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-49689016]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-49689016]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-49689016]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-49689016]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-49689016]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-49689016]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-49689016]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-49689016]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-49689016]{display:none!important}}.vertical-center[data-v-49689016]{display:flex;align-items:center}.horizontal-center[data-v-49689016]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-49689016]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-49689016]{display:none!important}.no-content[data-v-49689016]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-49689016]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-49689016]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-49689016]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-49689016]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-49689016]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-49689016]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-49689016],.btn[data-v-49689016],button[data-v-49689016]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-49689016],.btn-default[type=submit][data-v-49689016],.btn.btn-primary[data-v-49689016],.btn[type=submit][data-v-49689016],button.btn-primary[data-v-49689016],button[type=submit][data-v-49689016]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-49689016],.btn-default .icon[data-v-49689016],button .icon[data-v-49689016]{margin-right:.5em}input[type=password][data-v-49689016],input[type=text][data-v-49689016]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-49689016]:focus,input[type=text][data-v-49689016]:focus{border:1px solid #35b870}button[data-v-49689016],input[data-v-49689016]{outline:none}input[type=text][data-v-49689016]:hover,textarea[data-v-49689016]:hover{border:1px solid #9cdfb0}ul[data-v-49689016]{margin:0;padding:0;list-style:none}a[data-v-49689016]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-49689016]:hover{color:#35b870}[data-v-49689016]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-49689016]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-49689016]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-49689016]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-49689016]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-49689016] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-49689016] .nav .path{cursor:pointer}.browser[data-v-49689016] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-49689016] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-49689016]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-49689016],input[type=number][data-v-49689016],input[type=password][data-v-49689016],input[type=search][data-v-49689016],input[type=text][data-v-49689016],input[type=time][data-v-49689016]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-49689016]:hover,input[type=number][data-v-49689016]:hover,input[type=password][data-v-49689016]:hover,input[type=search][data-v-49689016]:hover,input[type=text][data-v-49689016]:hover,input[type=time][data-v-49689016]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-49689016]:focus,input[type=number][data-v-49689016]:focus,input[type=password][data-v-49689016]:focus,input[type=search][data-v-49689016]:focus,input[type=text][data-v-49689016]:focus,input[type=time][data-v-49689016]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-49689016],input[type=number].with-icon[data-v-49689016],input[type=password].with-icon[data-v-49689016],input[type=search].with-icon[data-v-49689016],input[type=text].with-icon[data-v-49689016],input[type=time].with-icon[data-v-49689016]{padding-left:.3em}input[type=search][data-v-49689016],input[type=text][data-v-49689016]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-49689016]{animation-fill-mode:both;animation-name:fadeIn-49689016;-webkit-animation-name:fadeIn-49689016}.fade-in[data-v-49689016],.fade-out[data-v-49689016]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-49689016]{animation-fill-mode:both;animation-name:fadeOut-49689016;-webkit-animation-name:fadeOut-49689016}@keyframes fadeIn-49689016{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-49689016{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-49689016]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-49689016;-webkit-animation-name:glow-49689016}.loop[data-v-49689016]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-49689016{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-49689016]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-49689016]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-49689016]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-icon-container[data-v-49689016]{width:1.625em;height:1.5em;display:inline-flex;margin-top:.25em;margin-left:.25em;position:relative;text-align:center;justify-content:center;align-items:center}.entity-icon-container.with-color-fill[data-v-49689016]{border-radius:1em}.entity-icon-container .loading[data-v-49689016]{position:absolute;bottom:0;transform:translateY(-50%);width:1em;height:1em;opacity:.6}.entity-icon-container .error[data-v-49689016]{color:#ad1717}.col-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-600cb1a8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-600cb1a8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-600cb1a8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-600cb1a8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-600cb1a8]:first-child{margin-left:26%!important}.col-offset-3[data-v-600cb1a8]:not(first-child){margin-left:30%!important}.col-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-600cb1a8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-600cb1a8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-600cb1a8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-600cb1a8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-600cb1a8]:first-child{margin-left:52%!important}.col-offset-6[data-v-600cb1a8]:not(first-child){margin-left:56%!important}.col-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-600cb1a8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-600cb1a8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-600cb1a8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-600cb1a8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-600cb1a8]:first-child{margin-left:78%!important}.col-offset-9[data-v-600cb1a8]:not(first-child){margin-left:82%!important}.col-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-600cb1a8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-600cb1a8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-600cb1a8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-600cb1a8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-1[data-v-600cb1a8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-2[data-v-600cb1a8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-3[data-v-600cb1a8]{margin-left:26%}.col-no-margin-s-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-4[data-v-600cb1a8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-5[data-v-600cb1a8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-6[data-v-600cb1a8]{margin-left:52%}.col-no-margin-s-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-7[data-v-600cb1a8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-8[data-v-600cb1a8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-9[data-v-600cb1a8]{margin-left:78%}.col-no-margin-s-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-10[data-v-600cb1a8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-s-11[data-v-600cb1a8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-600cb1a8]{display:none!important}.s-visible[data-v-600cb1a8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-1[data-v-600cb1a8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-2[data-v-600cb1a8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-3[data-v-600cb1a8]{margin-left:26%}.col-no-margin-m-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-4[data-v-600cb1a8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-5[data-v-600cb1a8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-6[data-v-600cb1a8]{margin-left:52%}.col-no-margin-m-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-7[data-v-600cb1a8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-8[data-v-600cb1a8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-9[data-v-600cb1a8]{margin-left:78%}.col-no-margin-m-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-10[data-v-600cb1a8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-m-11[data-v-600cb1a8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-600cb1a8]{display:none!important}.m-visible[data-v-600cb1a8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-1[data-v-600cb1a8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-2[data-v-600cb1a8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-3[data-v-600cb1a8]{margin-left:26%}.col-no-margin-l-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-4[data-v-600cb1a8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-5[data-v-600cb1a8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-6[data-v-600cb1a8]{margin-left:52%}.col-no-margin-l-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-7[data-v-600cb1a8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-8[data-v-600cb1a8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-9[data-v-600cb1a8]{margin-left:78%}.col-no-margin-l-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-10[data-v-600cb1a8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-l-11[data-v-600cb1a8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-600cb1a8]{display:none!important}.l-visible[data-v-600cb1a8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-1[data-v-600cb1a8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-2[data-v-600cb1a8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-3[data-v-600cb1a8]{margin-left:26%}.col-no-margin-xl-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-4[data-v-600cb1a8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-5[data-v-600cb1a8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-6[data-v-600cb1a8]{margin-left:52%}.col-no-margin-xl-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-7[data-v-600cb1a8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-8[data-v-600cb1a8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-9[data-v-600cb1a8]{margin-left:78%}.col-no-margin-xl-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-10[data-v-600cb1a8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xl-11[data-v-600cb1a8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-600cb1a8]{display:none!important}.xl-visible[data-v-600cb1a8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-600cb1a8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-600cb1a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-600cb1a8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-600cb1a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-600cb1a8]{margin-left:26%}.col-no-margin-xxl-3[data-v-600cb1a8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-600cb1a8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-600cb1a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-600cb1a8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-600cb1a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-600cb1a8]{margin-left:52%}.col-no-margin-xxl-6[data-v-600cb1a8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-600cb1a8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-600cb1a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-600cb1a8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-600cb1a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-600cb1a8]{margin-left:78%}.col-no-margin-xxl-9[data-v-600cb1a8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-600cb1a8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-600cb1a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-600cb1a8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-600cb1a8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-600cb1a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-600cb1a8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-600cb1a8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-600cb1a8]{display:none!important}.xxl-visible[data-v-600cb1a8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-600cb1a8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-600cb1a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-600cb1a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-600cb1a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-600cb1a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-600cb1a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-600cb1a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-600cb1a8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-600cb1a8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-600cb1a8]{display:none!important}}.vertical-center[data-v-600cb1a8]{display:flex;align-items:center}.horizontal-center[data-v-600cb1a8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-600cb1a8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-600cb1a8]{display:none!important}.no-content[data-v-600cb1a8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-600cb1a8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-600cb1a8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-600cb1a8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-600cb1a8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-600cb1a8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-600cb1a8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-600cb1a8],.btn[data-v-600cb1a8],button[data-v-600cb1a8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-600cb1a8],.btn-default[type=submit][data-v-600cb1a8],.btn.btn-primary[data-v-600cb1a8],.btn[type=submit][data-v-600cb1a8],button.btn-primary[data-v-600cb1a8],button[type=submit][data-v-600cb1a8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-600cb1a8],.btn-default .icon[data-v-600cb1a8],button .icon[data-v-600cb1a8]{margin-right:.5em}input[type=password][data-v-600cb1a8],input[type=text][data-v-600cb1a8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-600cb1a8]:focus,input[type=text][data-v-600cb1a8]:focus{border:1px solid #35b870}button[data-v-600cb1a8],input[data-v-600cb1a8]{outline:none}input[type=text][data-v-600cb1a8]:hover,textarea[data-v-600cb1a8]:hover{border:1px solid #9cdfb0}ul[data-v-600cb1a8]{margin:0;padding:0;list-style:none}a[data-v-600cb1a8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-600cb1a8]:hover{color:#35b870}[data-v-600cb1a8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-600cb1a8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-600cb1a8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-600cb1a8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-600cb1a8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-600cb1a8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-600cb1a8] .nav .path{cursor:pointer}.browser[data-v-600cb1a8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-600cb1a8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-600cb1a8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-600cb1a8],input[type=number][data-v-600cb1a8],input[type=password][data-v-600cb1a8],input[type=search][data-v-600cb1a8],input[type=text][data-v-600cb1a8],input[type=time][data-v-600cb1a8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-600cb1a8]:hover,input[type=number][data-v-600cb1a8]:hover,input[type=password][data-v-600cb1a8]:hover,input[type=search][data-v-600cb1a8]:hover,input[type=text][data-v-600cb1a8]:hover,input[type=time][data-v-600cb1a8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-600cb1a8]:focus,input[type=number][data-v-600cb1a8]:focus,input[type=password][data-v-600cb1a8]:focus,input[type=search][data-v-600cb1a8]:focus,input[type=text][data-v-600cb1a8]:focus,input[type=time][data-v-600cb1a8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-600cb1a8],input[type=number].with-icon[data-v-600cb1a8],input[type=password].with-icon[data-v-600cb1a8],input[type=search].with-icon[data-v-600cb1a8],input[type=text].with-icon[data-v-600cb1a8],input[type=time].with-icon[data-v-600cb1a8]{padding-left:.3em}input[type=search][data-v-600cb1a8],input[type=text][data-v-600cb1a8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-600cb1a8]{animation-fill-mode:both;animation-name:fadeIn-600cb1a8;-webkit-animation-name:fadeIn-600cb1a8}.fade-in[data-v-600cb1a8],.fade-out[data-v-600cb1a8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-600cb1a8]{animation-fill-mode:both;animation-name:fadeOut-600cb1a8;-webkit-animation-name:fadeOut-600cb1a8}@keyframes fadeIn-600cb1a8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-600cb1a8{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-600cb1a8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-600cb1a8;-webkit-animation-name:glow-600cb1a8}.loop[data-v-600cb1a8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-600cb1a8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-600cb1a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-600cb1a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-600cb1a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.name-editor[data-v-600cb1a8]{background:transparent;display:inline-flex;flex-direction:row;padding:0;border:0;border-radius:0;box-shadow:none}.name-editor button[data-v-600cb1a8]{border:none;background:none;padding:0 .5em}.name-editor button.confirm[data-v-600cb1a8]{color:#32b646}.name-editor button.cancel[data-v-600cb1a8]{color:#ad1717}.col-1[data-v-7b0732e4],.entity .head .icon[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7b0732e4]:first-child,.entity .head .icon[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7b0732e4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7b0732e4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7b0732e4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7b0732e4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7b0732e4],.entity .head .value-and-toggler[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7b0732e4]:first-child,.entity .head .value-and-toggler[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7b0732e4]:first-child{margin-left:26%!important}.col-offset-3[data-v-7b0732e4]:not(first-child){margin-left:30%!important}.col-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7b0732e4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7b0732e4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7b0732e4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7b0732e4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7b0732e4]:first-child{margin-left:52%!important}.col-offset-6[data-v-7b0732e4]:not(first-child){margin-left:56%!important}.col-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7b0732e4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7b0732e4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7b0732e4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7b0732e4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7b0732e4]:first-child{margin-left:78%!important}.col-offset-9[data-v-7b0732e4]:not(first-child){margin-left:82%!important}.col-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7b0732e4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7b0732e4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7b0732e4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7b0732e4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7b0732e4],.entity .head .value-container[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7b0732e4]:first-child,.entity .head .value-container[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-s-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-s-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7b0732e4],.entity .head .label[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7b0732e4]:first-child,.entity .head .label[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-s-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-s-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-7b0732e4],.attributes .child .value[data-v-7b0732e4],.col-s-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-7b0732e4]:first-child,.attributes .child .value[data-v-7b0732e4]:first-child,.col-s-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7b0732e4]{display:none!important}.s-visible[data-v-7b0732e4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7b0732e4],.entity .head .value-container[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7b0732e4]:first-child,.entity .head .value-container[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-m-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-7b0732e4],.attributes .child .value[data-v-7b0732e4],.col-m-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-7b0732e4]:first-child,.attributes .child .value[data-v-7b0732e4]:first-child,.col-m-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-m-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7b0732e4],.entity .head .label[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7b0732e4]:first-child,.entity .head .label[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-m-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-m-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7b0732e4]{display:none!important}.m-visible[data-v-7b0732e4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-l-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-l-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-l-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-l-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7b0732e4]{display:none!important}.l-visible[data-v-7b0732e4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-xl-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-xl-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-xl-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xl-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7b0732e4]{display:none!important}.xl-visible[data-v-7b0732e4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7b0732e4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7b0732e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7b0732e4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7b0732e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7b0732e4]{margin-left:26%}.col-no-margin-xxl-3[data-v-7b0732e4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7b0732e4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7b0732e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7b0732e4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7b0732e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7b0732e4]{margin-left:52%}.col-no-margin-xxl-6[data-v-7b0732e4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7b0732e4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7b0732e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7b0732e4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7b0732e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7b0732e4]{margin-left:78%}.col-no-margin-xxl-9[data-v-7b0732e4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7b0732e4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7b0732e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7b0732e4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7b0732e4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7b0732e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7b0732e4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7b0732e4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7b0732e4]{display:none!important}.xxl-visible[data-v-7b0732e4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7b0732e4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7b0732e4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7b0732e4]{display:none!important}}.vertical-center[data-v-7b0732e4]{display:flex;align-items:center}.horizontal-center[data-v-7b0732e4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-7b0732e4],.pull-right[data-v-7b0732e4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7b0732e4]{display:none!important}.no-content[data-v-7b0732e4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7b0732e4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7b0732e4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7b0732e4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7b0732e4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7b0732e4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7b0732e4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7b0732e4],.btn[data-v-7b0732e4],button[data-v-7b0732e4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7b0732e4],.btn-default[type=submit][data-v-7b0732e4],.btn.btn-primary[data-v-7b0732e4],.btn[type=submit][data-v-7b0732e4],button.btn-primary[data-v-7b0732e4],button[type=submit][data-v-7b0732e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7b0732e4],.btn-default .icon[data-v-7b0732e4],button .icon[data-v-7b0732e4]{margin-right:.5em}input[type=password][data-v-7b0732e4],input[type=text][data-v-7b0732e4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7b0732e4]:focus,input[type=text][data-v-7b0732e4]:focus{border:1px solid #35b870}button[data-v-7b0732e4],input[data-v-7b0732e4]{outline:none}input[type=text][data-v-7b0732e4]:hover,textarea[data-v-7b0732e4]:hover{border:1px solid #9cdfb0}ul[data-v-7b0732e4]{margin:0;padding:0;list-style:none}a[data-v-7b0732e4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7b0732e4]:hover{color:#35b870}[data-v-7b0732e4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7b0732e4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7b0732e4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7b0732e4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7b0732e4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7b0732e4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7b0732e4] .nav .path{cursor:pointer}.browser[data-v-7b0732e4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7b0732e4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7b0732e4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7b0732e4],input[type=number][data-v-7b0732e4],input[type=password][data-v-7b0732e4],input[type=search][data-v-7b0732e4],input[type=text][data-v-7b0732e4],input[type=time][data-v-7b0732e4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7b0732e4]:hover,input[type=number][data-v-7b0732e4]:hover,input[type=password][data-v-7b0732e4]:hover,input[type=search][data-v-7b0732e4]:hover,input[type=text][data-v-7b0732e4]:hover,input[type=time][data-v-7b0732e4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7b0732e4]:focus,input[type=number][data-v-7b0732e4]:focus,input[type=password][data-v-7b0732e4]:focus,input[type=search][data-v-7b0732e4]:focus,input[type=text][data-v-7b0732e4]:focus,input[type=time][data-v-7b0732e4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7b0732e4],input[type=number].with-icon[data-v-7b0732e4],input[type=password].with-icon[data-v-7b0732e4],input[type=search].with-icon[data-v-7b0732e4],input[type=text].with-icon[data-v-7b0732e4],input[type=time].with-icon[data-v-7b0732e4]{padding-left:.3em}input[type=search][data-v-7b0732e4],input[type=text][data-v-7b0732e4]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-7b0732e4],.fade-in[data-v-7b0732e4]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-7b0732e4;-webkit-animation-name:fadeIn-7b0732e4}.fade-out[data-v-7b0732e4]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-7b0732e4;-webkit-animation-name:fadeOut-7b0732e4}@keyframes fadeIn-7b0732e4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7b0732e4{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7b0732e4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7b0732e4;-webkit-animation-name:glow-7b0732e4}.loop[data-v-7b0732e4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7b0732e4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7b0732e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7b0732e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7b0732e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-7b0732e4]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-7b0732e4]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-7b0732e4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-7b0732e4]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-7b0732e4]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-7b0732e4]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-7b0732e4]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-7b0732e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-7b0732e4]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-7b0732e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-7b0732e4]{margin-right:.5em}.entity .head .icon[data-v-7b0732e4]:hover{color:#35b870}.entity .head .label[data-v-7b0732e4]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-7b0732e4]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-7b0732e4]:hover{color:#35b870}.entity .head .value[data-v-7b0732e4]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-7b0732e4]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-7b0732e4]{margin-right:2.5em}.entity .head .value-container[data-v-7b0732e4]{min-width:7em}.entity .head .unit[data-v-7b0732e4]{margin-left:.2em}.entity .head .pull-right[data-v-7b0732e4],.entity .head .value-container[data-v-7b0732e4]{padding-right:.5em}.entity .head .pull-right[data-v-7b0732e4] .power-switch,.entity .head .value-container[data-v-7b0732e4] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-7b0732e4]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-7b0732e4]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-7b0732e4]:hover{color:#35b870}.collapse-toggler[data-v-7b0732e4]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-7b0732e4]:hover{color:#35b870}.attributes .child[data-v-7b0732e4]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-7b0732e4]{flex-direction:column}}.attributes .child[data-v-7b0732e4]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-7b0732e4]:hover{cursor:auto}.attributes .child.head[data-v-7b0732e4]{cursor:pointer}.attributes .child.head[data-v-7b0732e4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-7b0732e4]{font-weight:700}.attributes .child .value[data-v-7b0732e4]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-7b0732e4]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-7b0732e4]:last-child,.entity-container-wrapper.with-children[data-v-7b0732e4]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-7b0732e4]{animation:blink-animation-7b0732e4 1s steps(20,start)}@keyframes blink-animation-7b0732e4{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.col-1[data-v-6fce01a8],.entity .head .icon[data-v-6fce01a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6fce01a8]:first-child,.entity .head .icon[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6fce01a8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6fce01a8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6fce01a8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6fce01a8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6fce01a8],.entity .head .value-and-toggler[data-v-6fce01a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6fce01a8]:first-child,.entity .head .value-and-toggler[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6fce01a8]:first-child{margin-left:26%!important}.col-offset-3[data-v-6fce01a8]:not(first-child){margin-left:30%!important}.col-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6fce01a8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6fce01a8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6fce01a8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6fce01a8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6fce01a8]:first-child{margin-left:52%!important}.col-offset-6[data-v-6fce01a8]:not(first-child){margin-left:56%!important}.col-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6fce01a8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6fce01a8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6fce01a8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6fce01a8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6fce01a8]:first-child{margin-left:78%!important}.col-offset-9[data-v-6fce01a8]:not(first-child){margin-left:82%!important}.col-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6fce01a8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6fce01a8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6fce01a8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6fce01a8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-1[data-v-6fce01a8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-2[data-v-6fce01a8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6fce01a8],.entity .head .value-container[data-v-6fce01a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6fce01a8]:first-child,.entity .head .value-container[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-3[data-v-6fce01a8]{margin-left:26%}.col-no-margin-s-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-4[data-v-6fce01a8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-5[data-v-6fce01a8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-6[data-v-6fce01a8]{margin-left:52%}.col-no-margin-s-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-7[data-v-6fce01a8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6fce01a8],.entity .head .label[data-v-6fce01a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6fce01a8]:first-child,.entity .head .label[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-8[data-v-6fce01a8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-9[data-v-6fce01a8]{margin-left:78%}.col-no-margin-s-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-10[data-v-6fce01a8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-s-11[data-v-6fce01a8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-6fce01a8],.attributes .child .value[data-v-6fce01a8],.col-s-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-6fce01a8]:first-child,.attributes .child .value[data-v-6fce01a8]:first-child,.col-s-12[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6fce01a8]{display:none!important}.s-visible[data-v-6fce01a8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-1[data-v-6fce01a8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6fce01a8],.entity .head .value-container[data-v-6fce01a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6fce01a8]:first-child,.entity .head .value-container[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-2[data-v-6fce01a8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-3[data-v-6fce01a8]{margin-left:26%}.col-no-margin-m-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-4[data-v-6fce01a8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-5[data-v-6fce01a8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-6fce01a8],.attributes .child .value[data-v-6fce01a8],.col-m-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-6fce01a8]:first-child,.attributes .child .value[data-v-6fce01a8]:first-child,.col-m-6[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-6[data-v-6fce01a8]{margin-left:52%}.col-no-margin-m-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-7[data-v-6fce01a8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-8[data-v-6fce01a8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6fce01a8],.entity .head .label[data-v-6fce01a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6fce01a8]:first-child,.entity .head .label[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-9[data-v-6fce01a8]{margin-left:78%}.col-no-margin-m-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-10[data-v-6fce01a8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-m-11[data-v-6fce01a8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6fce01a8]{display:none!important}.m-visible[data-v-6fce01a8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-1[data-v-6fce01a8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-2[data-v-6fce01a8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-3[data-v-6fce01a8]{margin-left:26%}.col-no-margin-l-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-4[data-v-6fce01a8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-5[data-v-6fce01a8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-6[data-v-6fce01a8]{margin-left:52%}.col-no-margin-l-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-7[data-v-6fce01a8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-8[data-v-6fce01a8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-9[data-v-6fce01a8]{margin-left:78%}.col-no-margin-l-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-10[data-v-6fce01a8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-l-11[data-v-6fce01a8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6fce01a8]{display:none!important}.l-visible[data-v-6fce01a8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-1[data-v-6fce01a8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-2[data-v-6fce01a8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-3[data-v-6fce01a8]{margin-left:26%}.col-no-margin-xl-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-4[data-v-6fce01a8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-5[data-v-6fce01a8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-6[data-v-6fce01a8]{margin-left:52%}.col-no-margin-xl-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-7[data-v-6fce01a8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-8[data-v-6fce01a8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-9[data-v-6fce01a8]{margin-left:78%}.col-no-margin-xl-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-10[data-v-6fce01a8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xl-11[data-v-6fce01a8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6fce01a8]{display:none!important}.xl-visible[data-v-6fce01a8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6fce01a8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6fce01a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6fce01a8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6fce01a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6fce01a8]{margin-left:26%}.col-no-margin-xxl-3[data-v-6fce01a8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6fce01a8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6fce01a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6fce01a8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6fce01a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6fce01a8]{margin-left:52%}.col-no-margin-xxl-6[data-v-6fce01a8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6fce01a8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6fce01a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6fce01a8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6fce01a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6fce01a8]{margin-left:78%}.col-no-margin-xxl-9[data-v-6fce01a8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6fce01a8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6fce01a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6fce01a8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6fce01a8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6fce01a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6fce01a8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6fce01a8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6fce01a8]{display:none!important}.xxl-visible[data-v-6fce01a8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6fce01a8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6fce01a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6fce01a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6fce01a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6fce01a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6fce01a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6fce01a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6fce01a8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6fce01a8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6fce01a8]{display:none!important}}.vertical-center[data-v-6fce01a8]{display:flex;align-items:center}.horizontal-center[data-v-6fce01a8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-6fce01a8],.pull-right[data-v-6fce01a8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6fce01a8]{display:none!important}.no-content[data-v-6fce01a8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6fce01a8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6fce01a8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6fce01a8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6fce01a8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6fce01a8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6fce01a8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6fce01a8],.btn[data-v-6fce01a8],button[data-v-6fce01a8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6fce01a8],.btn-default[type=submit][data-v-6fce01a8],.btn.btn-primary[data-v-6fce01a8],.btn[type=submit][data-v-6fce01a8],button.btn-primary[data-v-6fce01a8],button[type=submit][data-v-6fce01a8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6fce01a8],.btn-default .icon[data-v-6fce01a8],button .icon[data-v-6fce01a8]{margin-right:.5em}input[type=password][data-v-6fce01a8],input[type=text][data-v-6fce01a8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6fce01a8]:focus,input[type=text][data-v-6fce01a8]:focus{border:1px solid #35b870}button[data-v-6fce01a8],input[data-v-6fce01a8]{outline:none}input[type=text][data-v-6fce01a8]:hover,textarea[data-v-6fce01a8]:hover{border:1px solid #9cdfb0}ul[data-v-6fce01a8]{margin:0;padding:0;list-style:none}a[data-v-6fce01a8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6fce01a8]:hover{color:#35b870}[data-v-6fce01a8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6fce01a8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6fce01a8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6fce01a8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6fce01a8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6fce01a8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6fce01a8] .nav .path{cursor:pointer}.browser[data-v-6fce01a8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6fce01a8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-6fce01a8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6fce01a8],input[type=number][data-v-6fce01a8],input[type=password][data-v-6fce01a8],input[type=search][data-v-6fce01a8],input[type=text][data-v-6fce01a8],input[type=time][data-v-6fce01a8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-6fce01a8]:hover,input[type=number][data-v-6fce01a8]:hover,input[type=password][data-v-6fce01a8]:hover,input[type=search][data-v-6fce01a8]:hover,input[type=text][data-v-6fce01a8]:hover,input[type=time][data-v-6fce01a8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6fce01a8]:focus,input[type=number][data-v-6fce01a8]:focus,input[type=password][data-v-6fce01a8]:focus,input[type=search][data-v-6fce01a8]:focus,input[type=text][data-v-6fce01a8]:focus,input[type=time][data-v-6fce01a8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6fce01a8],input[type=number].with-icon[data-v-6fce01a8],input[type=password].with-icon[data-v-6fce01a8],input[type=search].with-icon[data-v-6fce01a8],input[type=text].with-icon[data-v-6fce01a8],input[type=time].with-icon[data-v-6fce01a8]{padding-left:.3em}input[type=search][data-v-6fce01a8],input[type=text][data-v-6fce01a8]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-6fce01a8],.fade-in[data-v-6fce01a8]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-6fce01a8;-webkit-animation-name:fadeIn-6fce01a8}.fade-out[data-v-6fce01a8]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-6fce01a8;-webkit-animation-name:fadeOut-6fce01a8}@keyframes fadeIn-6fce01a8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6fce01a8{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-6fce01a8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6fce01a8;-webkit-animation-name:glow-6fce01a8}.loop[data-v-6fce01a8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6fce01a8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6fce01a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6fce01a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6fce01a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-6fce01a8]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-6fce01a8]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-6fce01a8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-6fce01a8]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-6fce01a8]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-6fce01a8]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-6fce01a8]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-6fce01a8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-6fce01a8]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-6fce01a8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-6fce01a8]{margin-right:.5em}.entity .head .icon[data-v-6fce01a8]:hover{color:#35b870}.entity .head .label[data-v-6fce01a8]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-6fce01a8]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-6fce01a8]:hover{color:#35b870}.entity .head .value[data-v-6fce01a8]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-6fce01a8]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-6fce01a8]{margin-right:2.5em}.entity .head .value-container[data-v-6fce01a8]{min-width:7em}.entity .head .unit[data-v-6fce01a8]{margin-left:.2em}.entity .head .pull-right[data-v-6fce01a8],.entity .head .value-container[data-v-6fce01a8]{padding-right:.5em}.entity .head .pull-right[data-v-6fce01a8] .power-switch,.entity .head .value-container[data-v-6fce01a8] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-6fce01a8]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-6fce01a8]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-6fce01a8]:hover{color:#35b870}.collapse-toggler[data-v-6fce01a8]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-6fce01a8]:hover{color:#35b870}.attributes .child[data-v-6fce01a8]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-6fce01a8]{flex-direction:column}}.attributes .child[data-v-6fce01a8]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-6fce01a8]:hover{cursor:auto}.attributes .child.head[data-v-6fce01a8]{cursor:pointer}.attributes .child.head[data-v-6fce01a8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-6fce01a8]{font-weight:700}.attributes .child .value[data-v-6fce01a8]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-6fce01a8]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-6fce01a8]:last-child,.entity-container-wrapper.with-children[data-v-6fce01a8]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-6fce01a8]{animation:blink-animation-6fce01a8 1s steps(20,start)}@keyframes blink-animation-6fce01a8{0%{background:initial}50%{background:#8fefb7}to{background:initial}}@media screen and (max-width:calc(769px - 1px)){[data-v-6fce01a8] .modal{width:100%}}[data-v-6fce01a8] .modal .table-row{display:flex;align-items:center;box-shadow:none;padding:.5em;border-bottom:1px solid #ddd}[data-v-6fce01a8] .modal .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-6fce01a8] .modal .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-6fce01a8] .modal .table-row .title{width:50%;display:inline-block}}[data-v-6fce01a8] .modal .table-row .value{overflow:auto}@media screen and (min-width:769px){[data-v-6fce01a8] .modal .table-row .value{width:50%;display:inline-block;text-align:right}}@media screen and (max-width:calc(769px - 1px)){[data-v-6fce01a8] .modal .content{width:calc(100% - 1em)!important}}@media screen and (min-width:769px){[data-v-6fce01a8] .modal .content{min-width:30em}}[data-v-6fce01a8] .modal .content .body{padding:0}@media screen and (min-width:1024px){[data-v-6fce01a8] .modal .content .body{min-width:45em}}[data-v-6fce01a8] .modal .icon-canvas{display:inline-flex;align-items:center}@media screen and (max-width:calc(769px - 1px)){[data-v-6fce01a8] .modal .icon-canvas .icon-container{justify-content:left}}@media screen and (min-width:769px){[data-v-6fce01a8] .modal .icon-canvas .icon-container{justify-content:right;margin-right:.5em}}[data-v-6fce01a8] .modal .icon-editor{display:flex;flex-direction:column}[data-v-6fce01a8] .modal button{border:none;background:none;padding:0 .5em}[data-v-6fce01a8] .modal .help{font-size:.75em}[data-v-6fce01a8] .modal .delete-entity-container{color:#ad1717;cursor:pointer}[data-v-6fce01a8] .modal .delete-entity-container button{color:#ad1717}[data-v-6fce01a8] .modal .section{margin:0}[data-v-6fce01a8] .modal .section .section-title{display:flex;cursor:pointer;padding:1em;text-transform:uppercase;letter-spacing:.033em;border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver}[data-v-6fce01a8] .modal .section .section-title:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-6fce01a8] .modal .extra-info-container .value{white-space:pre-wrap;opacity:.8}[data-v-6fce01a8] .modal .value a,[data-v-6fce01a8] .modal .value.url{text-align:right;text-decoration:underline;opacity:.8}[data-v-6fce01a8] .modal .value a:hover,[data-v-6fce01a8] .modal .value.url:hover{opacity:.6}[data-v-6fce01a8] .modal .value .entity-image{max-height:5em}@media screen and (max-width:calc(768px - 1px)){[data-v-6fce01a8] .modal .entity-container-wrapper.collapsed{border-radius:0;box-shadow:none;border-bottom:1px solid #e1e4e8}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8391.af187453.css b/platypush/backend/http/webapp/dist/static/css/8391.57207909.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/8391.af187453.css rename to platypush/backend/http/webapp/dist/static/css/8391.57207909.css index 404ceca213..267da53a86 100644 --- a/platypush/backend/http/webapp/dist/static/css/8391.af187453.css +++ b/platypush/backend/http/webapp/dist/static/css/8391.57207909.css @@ -1 +1 @@ -.col-1[data-v-2aaabd26],.entity .head .icon[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2aaabd26]:first-child,.entity .head .icon[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2aaabd26]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2aaabd26]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2aaabd26]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2aaabd26]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2aaabd26],.entity .head .value-and-toggler[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2aaabd26]:first-child,.entity .head .value-and-toggler[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2aaabd26]:first-child{margin-left:26%!important}.col-offset-3[data-v-2aaabd26]:not(first-child){margin-left:30%!important}.col-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2aaabd26]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2aaabd26]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2aaabd26]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2aaabd26]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2aaabd26]:first-child{margin-left:52%!important}.col-offset-6[data-v-2aaabd26]:not(first-child){margin-left:56%!important}.col-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2aaabd26]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2aaabd26]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2aaabd26]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2aaabd26]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2aaabd26]:first-child{margin-left:78%!important}.col-offset-9[data-v-2aaabd26]:not(first-child){margin-left:82%!important}.col-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2aaabd26]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2aaabd26]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2aaabd26]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2aaabd26]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2aaabd26],.entity .head .value-container[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2aaabd26]:first-child,.entity .head .value-container[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-s-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-s-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2aaabd26],.entity .head .label[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2aaabd26]:first-child,.entity .head .label[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-s-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-2aaabd26],.attributes .child .value[data-v-2aaabd26],.col-s-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-2aaabd26]:first-child,.attributes .child .value[data-v-2aaabd26]:first-child,.col-s-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2aaabd26]{display:none!important}.s-visible[data-v-2aaabd26]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2aaabd26],.entity .head .value-container[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2aaabd26]:first-child,.entity .head .value-container[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-m-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-2aaabd26],.attributes .child .value[data-v-2aaabd26],.col-m-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-2aaabd26]:first-child,.attributes .child .value[data-v-2aaabd26]:first-child,.col-m-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-m-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2aaabd26],.entity .head .label[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2aaabd26]:first-child,.entity .head .label[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-m-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2aaabd26]{display:none!important}.m-visible[data-v-2aaabd26]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-l-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-l-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-l-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2aaabd26]{display:none!important}.l-visible[data-v-2aaabd26]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-xl-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-xl-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-xl-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2aaabd26]{display:none!important}.xl-visible[data-v-2aaabd26]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-xxl-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-xxl-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-xxl-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2aaabd26]{display:none!important}.xxl-visible[data-v-2aaabd26]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2aaabd26]{display:none!important}}.vertical-center[data-v-2aaabd26]{display:flex;align-items:center}.horizontal-center[data-v-2aaabd26]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-2aaabd26],.pull-right[data-v-2aaabd26]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2aaabd26]{display:none!important}.no-content[data-v-2aaabd26]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2aaabd26]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2aaabd26]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2aaabd26]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2aaabd26]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2aaabd26]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2aaabd26]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2aaabd26],.btn[data-v-2aaabd26],button[data-v-2aaabd26]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2aaabd26],.btn-default[type=submit][data-v-2aaabd26],.btn.btn-primary[data-v-2aaabd26],.btn[type=submit][data-v-2aaabd26],button.btn-primary[data-v-2aaabd26],button[type=submit][data-v-2aaabd26]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-2aaabd26],.btn-default .icon[data-v-2aaabd26],button .icon[data-v-2aaabd26]{margin-right:.5em}input[type=password][data-v-2aaabd26],input[type=text][data-v-2aaabd26]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2aaabd26]:focus,input[type=text][data-v-2aaabd26]:focus{border:1px solid #35b870}button[data-v-2aaabd26],input[data-v-2aaabd26]{outline:none}input[type=text][data-v-2aaabd26]:hover,textarea[data-v-2aaabd26]:hover{border:1px solid #9cdfb0}ul[data-v-2aaabd26]{margin:0;padding:0;list-style:none}a[data-v-2aaabd26]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2aaabd26]:hover{color:#35b870}[data-v-2aaabd26]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2aaabd26]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2aaabd26]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2aaabd26]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-2aaabd26]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2aaabd26] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2aaabd26] .nav .path{cursor:pointer}.browser[data-v-2aaabd26] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2aaabd26] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-2aaabd26]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2aaabd26],input[type=number][data-v-2aaabd26],input[type=password][data-v-2aaabd26],input[type=search][data-v-2aaabd26],input[type=text][data-v-2aaabd26],input[type=time][data-v-2aaabd26]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-2aaabd26]:hover,input[type=number][data-v-2aaabd26]:hover,input[type=password][data-v-2aaabd26]:hover,input[type=search][data-v-2aaabd26]:hover,input[type=text][data-v-2aaabd26]:hover,input[type=time][data-v-2aaabd26]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2aaabd26]:focus,input[type=number][data-v-2aaabd26]:focus,input[type=password][data-v-2aaabd26]:focus,input[type=search][data-v-2aaabd26]:focus,input[type=text][data-v-2aaabd26]:focus,input[type=time][data-v-2aaabd26]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2aaabd26],input[type=number].with-icon[data-v-2aaabd26],input[type=password].with-icon[data-v-2aaabd26],input[type=search].with-icon[data-v-2aaabd26],input[type=text].with-icon[data-v-2aaabd26],input[type=time].with-icon[data-v-2aaabd26]{padding-left:.3em}input[type=search][data-v-2aaabd26],input[type=text][data-v-2aaabd26]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-2aaabd26],.fade-in[data-v-2aaabd26]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-2aaabd26;-webkit-animation-name:fadeIn-2aaabd26}.fade-out[data-v-2aaabd26]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-2aaabd26;-webkit-animation-name:fadeOut-2aaabd26}@keyframes fadeIn-2aaabd26{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2aaabd26{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-2aaabd26]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2aaabd26;-webkit-animation-name:glow-2aaabd26}.loop[data-v-2aaabd26]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2aaabd26{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2aaabd26]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2aaabd26]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2aaabd26]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-2aaabd26]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-2aaabd26]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-2aaabd26]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-2aaabd26]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-2aaabd26]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-2aaabd26]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-2aaabd26]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-2aaabd26]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-2aaabd26]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-2aaabd26]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-2aaabd26]{margin-right:.5em}.entity .head .icon[data-v-2aaabd26]:hover{color:#35b870}.entity .head .label[data-v-2aaabd26]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-2aaabd26]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-2aaabd26]:hover{color:#35b870}.entity .head .value[data-v-2aaabd26]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-2aaabd26]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-2aaabd26]{margin-right:2.5em}.entity .head .value-container[data-v-2aaabd26]{min-width:7em}.entity .head .unit[data-v-2aaabd26]{margin-left:.2em}.entity .head .pull-right[data-v-2aaabd26],.entity .head .value-container[data-v-2aaabd26]{padding-right:.5em}.entity .head .pull-right[data-v-2aaabd26] .power-switch,.entity .head .value-container[data-v-2aaabd26] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-2aaabd26]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-2aaabd26]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-2aaabd26]:hover{color:#35b870}.collapse-toggler[data-v-2aaabd26]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-2aaabd26]:hover{color:#35b870}.attributes .child[data-v-2aaabd26]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-2aaabd26]{flex-direction:column}}.attributes .child[data-v-2aaabd26]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-2aaabd26]:hover{cursor:auto}.attributes .child.head[data-v-2aaabd26]{cursor:pointer}.attributes .child.head[data-v-2aaabd26]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-2aaabd26]{font-weight:700}.attributes .child .value[data-v-2aaabd26]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-2aaabd26]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-2aaabd26]:last-child,.entity-container-wrapper.with-children[data-v-2aaabd26]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-2aaabd26]{animation:blink-animation-2aaabd26 1s steps(20,start)}@keyframes blink-animation-2aaabd26{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.switch-container .switch[data-v-2aaabd26]{direction:rtl} \ No newline at end of file +.col-1[data-v-2aaabd26],.entity .head .icon[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2aaabd26]:first-child,.entity .head .icon[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2aaabd26]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2aaabd26]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2aaabd26]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2aaabd26]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2aaabd26],.entity .head .value-and-toggler[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2aaabd26]:first-child,.entity .head .value-and-toggler[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2aaabd26]:first-child{margin-left:26%!important}.col-offset-3[data-v-2aaabd26]:not(first-child){margin-left:30%!important}.col-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2aaabd26]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2aaabd26]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2aaabd26]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2aaabd26]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2aaabd26]:first-child{margin-left:52%!important}.col-offset-6[data-v-2aaabd26]:not(first-child){margin-left:56%!important}.col-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2aaabd26]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2aaabd26]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2aaabd26]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2aaabd26]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2aaabd26]:first-child{margin-left:78%!important}.col-offset-9[data-v-2aaabd26]:not(first-child){margin-left:82%!important}.col-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2aaabd26]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2aaabd26]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2aaabd26]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2aaabd26]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2aaabd26],.entity .head .value-container[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2aaabd26]:first-child,.entity .head .value-container[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-s-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-s-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2aaabd26],.entity .head .label[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2aaabd26]:first-child,.entity .head .label[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-s-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-s-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-2aaabd26],.attributes .child .value[data-v-2aaabd26],.col-s-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-2aaabd26]:first-child,.attributes .child .value[data-v-2aaabd26]:first-child,.col-s-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2aaabd26]{display:none!important}.s-visible[data-v-2aaabd26]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2aaabd26],.entity .head .value-container[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2aaabd26]:first-child,.entity .head .value-container[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-m-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-2aaabd26],.attributes .child .value[data-v-2aaabd26],.col-m-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-2aaabd26]:first-child,.attributes .child .value[data-v-2aaabd26]:first-child,.col-m-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-m-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2aaabd26],.entity .head .label[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2aaabd26]:first-child,.entity .head .label[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-m-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-m-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2aaabd26]{display:none!important}.m-visible[data-v-2aaabd26]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-l-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-l-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-l-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-l-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2aaabd26]{display:none!important}.l-visible[data-v-2aaabd26]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-xl-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-xl-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-xl-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xl-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2aaabd26]{display:none!important}.xl-visible[data-v-2aaabd26]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2aaabd26]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2aaabd26]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2aaabd26]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2aaabd26]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2aaabd26]{margin-left:26%}.col-no-margin-xxl-3[data-v-2aaabd26]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2aaabd26]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2aaabd26]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2aaabd26]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2aaabd26]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2aaabd26]{margin-left:52%}.col-no-margin-xxl-6[data-v-2aaabd26]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2aaabd26]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2aaabd26]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2aaabd26]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2aaabd26]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2aaabd26]{margin-left:78%}.col-no-margin-xxl-9[data-v-2aaabd26]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2aaabd26]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2aaabd26]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2aaabd26]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2aaabd26]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2aaabd26]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2aaabd26]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2aaabd26]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2aaabd26]{display:none!important}.xxl-visible[data-v-2aaabd26]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2aaabd26]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2aaabd26]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2aaabd26]{display:none!important}}.vertical-center[data-v-2aaabd26]{display:flex;align-items:center}.horizontal-center[data-v-2aaabd26]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-2aaabd26],.pull-right[data-v-2aaabd26]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2aaabd26]{display:none!important}.no-content[data-v-2aaabd26]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2aaabd26]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2aaabd26]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2aaabd26]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2aaabd26]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2aaabd26]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2aaabd26]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2aaabd26],.btn[data-v-2aaabd26],button[data-v-2aaabd26]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2aaabd26],.btn-default[type=submit][data-v-2aaabd26],.btn.btn-primary[data-v-2aaabd26],.btn[type=submit][data-v-2aaabd26],button.btn-primary[data-v-2aaabd26],button[type=submit][data-v-2aaabd26]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2aaabd26]:hover,.btn[data-v-2aaabd26]:hover,button[data-v-2aaabd26]:hover{color:#35b870}.btn .icon[data-v-2aaabd26],.btn-default .icon[data-v-2aaabd26],button .icon[data-v-2aaabd26]{margin-right:.5em}.btn-default[data-v-2aaabd26]:disabled,.btn-default[disabled][data-v-2aaabd26],.btn[data-v-2aaabd26]:disabled,.btn[disabled][data-v-2aaabd26],button[data-v-2aaabd26]:disabled,button[disabled][data-v-2aaabd26]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2aaabd26]{cursor:grab!important}.dragged[data-v-2aaabd26]{opacity:.5!important}input[type=password][data-v-2aaabd26],input[type=text][data-v-2aaabd26]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2aaabd26]:focus,input[type=text][data-v-2aaabd26]:focus{border:1px solid #35b870}button[data-v-2aaabd26],input[data-v-2aaabd26]{outline:none}input[type=text][data-v-2aaabd26]:hover,textarea[data-v-2aaabd26]:hover{border:1px solid #9cdfb0}ul[data-v-2aaabd26]{margin:0;padding:0;list-style:none}a[data-v-2aaabd26]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2aaabd26]:hover{color:#35b870}[data-v-2aaabd26]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2aaabd26]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2aaabd26]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2aaabd26]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2aaabd26]{color:#ad1717}body[data-v-2aaabd26]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2aaabd26] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2aaabd26] .nav .path{cursor:pointer}.browser[data-v-2aaabd26] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2aaabd26] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2aaabd26]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2aaabd26]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2aaabd26],input[type=number][data-v-2aaabd26],input[type=password][data-v-2aaabd26],input[type=search][data-v-2aaabd26],input[type=text][data-v-2aaabd26],input[type=time][data-v-2aaabd26]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2aaabd26]:hover,input[type=number][data-v-2aaabd26]:hover,input[type=password][data-v-2aaabd26]:hover,input[type=search][data-v-2aaabd26]:hover,input[type=text][data-v-2aaabd26]:hover,input[type=time][data-v-2aaabd26]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2aaabd26]:focus,input[type=number][data-v-2aaabd26]:focus,input[type=password][data-v-2aaabd26]:focus,input[type=search][data-v-2aaabd26]:focus,input[type=text][data-v-2aaabd26]:focus,input[type=time][data-v-2aaabd26]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2aaabd26],input[type=number].with-icon[data-v-2aaabd26],input[type=password].with-icon[data-v-2aaabd26],input[type=search].with-icon[data-v-2aaabd26],input[type=text].with-icon[data-v-2aaabd26],input[type=time].with-icon[data-v-2aaabd26]{padding-left:.3em}input[type=search][data-v-2aaabd26],input[type=text][data-v-2aaabd26]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-2aaabd26],.fade-in[data-v-2aaabd26]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-2aaabd26;-webkit-animation-name:fadeIn-2aaabd26}.fade-out[data-v-2aaabd26]{animation-fill-mode:both;animation-name:fadeOut-2aaabd26;-webkit-animation-name:fadeOut-2aaabd26}.expand[data-v-2aaabd26],.fade-out[data-v-2aaabd26]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-2aaabd26]{animation-fill-mode:both;animation-name:expand-2aaabd26;-webkit-animation-name:expand-2aaabd26}.shrink[data-v-2aaabd26]{animation-fill-mode:both;animation-name:shrink-2aaabd26;-webkit-animation-name:shrink-2aaabd26}.fold[data-v-2aaabd26],.shrink[data-v-2aaabd26]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-2aaabd26]{animation-fill-mode:both;animation-name:fold-2aaabd26;-webkit-animation-name:fold-2aaabd26}.unfold[data-v-2aaabd26]{animation-fill-mode:both;animation-name:unfold-2aaabd26;-webkit-animation-name:unfold-2aaabd26}.dim[data-v-2aaabd26],.unfold[data-v-2aaabd26]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-2aaabd26]{animation-fill-mode:both;animation-name:dim-2aaabd26;-webkit-animation-name:dim-2aaabd26}.brighten[data-v-2aaabd26]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-2aaabd26;-webkit-animation-name:brighten-2aaabd26}@keyframes fadeIn-2aaabd26{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2aaabd26{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2aaabd26{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2aaabd26{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2aaabd26{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2aaabd26{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2aaabd26{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2aaabd26{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2aaabd26]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2aaabd26;-webkit-animation-name:glow-2aaabd26}.loop[data-v-2aaabd26]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2aaabd26{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2aaabd26]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2aaabd26]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2aaabd26]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-2aaabd26]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-2aaabd26]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-2aaabd26]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-2aaabd26]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-2aaabd26]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-2aaabd26]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-2aaabd26]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-2aaabd26]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-2aaabd26]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-2aaabd26]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-2aaabd26]{margin-right:.5em}.entity .head .icon[data-v-2aaabd26]:hover{color:#35b870}.entity .head .label[data-v-2aaabd26]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-2aaabd26]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-2aaabd26]:hover{color:#35b870}.entity .head .value[data-v-2aaabd26]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-2aaabd26]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-2aaabd26]{margin-right:2.5em}.entity .head .value-container[data-v-2aaabd26]{min-width:7em}.entity .head .unit[data-v-2aaabd26]{margin-left:.2em}.entity .head .pull-right[data-v-2aaabd26],.entity .head .value-container[data-v-2aaabd26]{padding-right:.5em}.entity .head .pull-right[data-v-2aaabd26] .power-switch,.entity .head .value-container[data-v-2aaabd26] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-2aaabd26]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-2aaabd26]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-2aaabd26]:hover{color:#35b870}.collapse-toggler[data-v-2aaabd26]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-2aaabd26]:hover{color:#35b870}.attributes .child[data-v-2aaabd26]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-2aaabd26]{flex-direction:column}}.attributes .child[data-v-2aaabd26]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-2aaabd26]:hover{cursor:auto}.attributes .child.head[data-v-2aaabd26]{cursor:pointer}.attributes .child.head[data-v-2aaabd26]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-2aaabd26]{font-weight:700}.attributes .child .value[data-v-2aaabd26]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-2aaabd26]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-2aaabd26]:last-child,.entity-container-wrapper.with-children[data-v-2aaabd26]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-2aaabd26]{animation:blink-animation-2aaabd26 1s steps(20,start)}@keyframes blink-animation-2aaabd26{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.switch-container .switch[data-v-2aaabd26]{direction:rtl} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8409.5edaa185.css b/platypush/backend/http/webapp/dist/static/css/8409.5edaa185.css new file mode 100644 index 0000000000..fda927a3e0 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/8409.5edaa185.css @@ -0,0 +1 @@ +.col-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c4abebfe]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c4abebfe]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c4abebfe]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c4abebfe]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c4abebfe]:first-child{margin-left:26%!important}.col-offset-3[data-v-c4abebfe]:not(first-child){margin-left:30%!important}.col-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c4abebfe]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c4abebfe]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c4abebfe]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c4abebfe]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c4abebfe]:first-child{margin-left:52%!important}.col-offset-6[data-v-c4abebfe]:not(first-child){margin-left:56%!important}.col-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c4abebfe]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c4abebfe]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c4abebfe]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c4abebfe]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c4abebfe]:first-child{margin-left:78%!important}.col-offset-9[data-v-c4abebfe]:not(first-child){margin-left:82%!important}.col-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c4abebfe]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c4abebfe]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c4abebfe]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c4abebfe]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-1[data-v-c4abebfe]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-2[data-v-c4abebfe]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-3[data-v-c4abebfe]{margin-left:26%}.col-no-margin-s-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-4[data-v-c4abebfe]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-5[data-v-c4abebfe]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-6[data-v-c4abebfe]{margin-left:52%}.col-no-margin-s-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-7[data-v-c4abebfe]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-8[data-v-c4abebfe]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-9[data-v-c4abebfe]{margin-left:78%}.col-no-margin-s-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-10[data-v-c4abebfe]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-s-11[data-v-c4abebfe]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c4abebfe]{display:none!important}.s-visible[data-v-c4abebfe]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-1[data-v-c4abebfe]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-2[data-v-c4abebfe]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-3[data-v-c4abebfe]{margin-left:26%}.col-no-margin-m-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-4[data-v-c4abebfe]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-5[data-v-c4abebfe]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-6[data-v-c4abebfe]{margin-left:52%}.col-no-margin-m-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-7[data-v-c4abebfe]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-8[data-v-c4abebfe]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-9[data-v-c4abebfe]{margin-left:78%}.col-no-margin-m-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-10[data-v-c4abebfe]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-m-11[data-v-c4abebfe]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c4abebfe]{display:none!important}.m-visible[data-v-c4abebfe]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-1[data-v-c4abebfe]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-2[data-v-c4abebfe]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-3[data-v-c4abebfe]{margin-left:26%}.col-no-margin-l-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-4[data-v-c4abebfe]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-5[data-v-c4abebfe]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-6[data-v-c4abebfe]{margin-left:52%}.col-no-margin-l-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-7[data-v-c4abebfe]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-8[data-v-c4abebfe]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-9[data-v-c4abebfe]{margin-left:78%}.col-no-margin-l-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-10[data-v-c4abebfe]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-l-11[data-v-c4abebfe]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c4abebfe]{display:none!important}.l-visible[data-v-c4abebfe]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-1[data-v-c4abebfe]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-2[data-v-c4abebfe]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-3[data-v-c4abebfe]{margin-left:26%}.col-no-margin-xl-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-4[data-v-c4abebfe]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-5[data-v-c4abebfe]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-6[data-v-c4abebfe]{margin-left:52%}.col-no-margin-xl-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-7[data-v-c4abebfe]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-8[data-v-c4abebfe]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-9[data-v-c4abebfe]{margin-left:78%}.col-no-margin-xl-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-10[data-v-c4abebfe]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xl-11[data-v-c4abebfe]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c4abebfe]{display:none!important}.xl-visible[data-v-c4abebfe]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c4abebfe]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c4abebfe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c4abebfe]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c4abebfe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c4abebfe]{margin-left:26%}.col-no-margin-xxl-3[data-v-c4abebfe]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c4abebfe]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c4abebfe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c4abebfe]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c4abebfe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c4abebfe]{margin-left:52%}.col-no-margin-xxl-6[data-v-c4abebfe]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c4abebfe]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c4abebfe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c4abebfe]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c4abebfe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c4abebfe]{margin-left:78%}.col-no-margin-xxl-9[data-v-c4abebfe]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c4abebfe]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c4abebfe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c4abebfe]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c4abebfe]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c4abebfe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c4abebfe]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c4abebfe]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c4abebfe]{display:none!important}.xxl-visible[data-v-c4abebfe]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-c4abebfe]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-c4abebfe]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-c4abebfe]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-c4abebfe]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-c4abebfe]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-c4abebfe]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-c4abebfe]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-c4abebfe]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-c4abebfe]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c4abebfe]{display:none!important}}.vertical-center[data-v-c4abebfe]{display:flex;align-items:center}.horizontal-center[data-v-c4abebfe]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c4abebfe]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c4abebfe]{display:none!important}.no-content[data-v-c4abebfe]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-c4abebfe]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-c4abebfe]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-c4abebfe]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-c4abebfe]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-c4abebfe]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-c4abebfe]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-c4abebfe],.btn[data-v-c4abebfe],button[data-v-c4abebfe]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c4abebfe],.btn-default[type=submit][data-v-c4abebfe],.btn.btn-primary[data-v-c4abebfe],.btn[type=submit][data-v-c4abebfe],button.btn-primary[data-v-c4abebfe],button[type=submit][data-v-c4abebfe]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-c4abebfe]:hover,.btn[data-v-c4abebfe]:hover,button[data-v-c4abebfe]:hover{color:#35b870}.btn .icon[data-v-c4abebfe],.btn-default .icon[data-v-c4abebfe],button .icon[data-v-c4abebfe]{margin-right:.5em}.btn-default[data-v-c4abebfe]:disabled,.btn-default[disabled][data-v-c4abebfe],.btn[data-v-c4abebfe]:disabled,.btn[disabled][data-v-c4abebfe],button[data-v-c4abebfe]:disabled,button[disabled][data-v-c4abebfe]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-c4abebfe]{cursor:grab!important}.dragged[data-v-c4abebfe]{opacity:.5!important}input[type=password][data-v-c4abebfe],input[type=text][data-v-c4abebfe]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c4abebfe]:focus,input[type=text][data-v-c4abebfe]:focus{border:1px solid #35b870}button[data-v-c4abebfe],input[data-v-c4abebfe]{outline:none}input[type=text][data-v-c4abebfe]:hover,textarea[data-v-c4abebfe]:hover{border:1px solid #9cdfb0}ul[data-v-c4abebfe]{margin:0;padding:0;list-style:none}a[data-v-c4abebfe]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c4abebfe]:hover{color:#35b870}[data-v-c4abebfe]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-c4abebfe]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-c4abebfe]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c4abebfe]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-c4abebfe]{color:#ad1717}body[data-v-c4abebfe]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-c4abebfe] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-c4abebfe] .nav .path{cursor:pointer}.browser[data-v-c4abebfe] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-c4abebfe] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-c4abebfe]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-c4abebfe]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-c4abebfe],input[type=number][data-v-c4abebfe],input[type=password][data-v-c4abebfe],input[type=search][data-v-c4abebfe],input[type=text][data-v-c4abebfe],input[type=time][data-v-c4abebfe]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-c4abebfe]:hover,input[type=number][data-v-c4abebfe]:hover,input[type=password][data-v-c4abebfe]:hover,input[type=search][data-v-c4abebfe]:hover,input[type=text][data-v-c4abebfe]:hover,input[type=time][data-v-c4abebfe]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-c4abebfe]:focus,input[type=number][data-v-c4abebfe]:focus,input[type=password][data-v-c4abebfe]:focus,input[type=search][data-v-c4abebfe]:focus,input[type=text][data-v-c4abebfe]:focus,input[type=time][data-v-c4abebfe]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-c4abebfe],input[type=number].with-icon[data-v-c4abebfe],input[type=password].with-icon[data-v-c4abebfe],input[type=search].with-icon[data-v-c4abebfe],input[type=text].with-icon[data-v-c4abebfe],input[type=time].with-icon[data-v-c4abebfe]{padding-left:.3em}input[type=search][data-v-c4abebfe],input[type=text][data-v-c4abebfe]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c4abebfe]{animation-fill-mode:both;animation-name:fadeIn-c4abebfe;-webkit-animation-name:fadeIn-c4abebfe}.fade-in[data-v-c4abebfe],.fade-out[data-v-c4abebfe]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c4abebfe]{animation-fill-mode:both;animation-name:fadeOut-c4abebfe;-webkit-animation-name:fadeOut-c4abebfe}.expand[data-v-c4abebfe]{animation-fill-mode:both;animation-name:expand-c4abebfe;-webkit-animation-name:expand-c4abebfe}.expand[data-v-c4abebfe],.shrink[data-v-c4abebfe]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-c4abebfe]{animation-fill-mode:both;animation-name:shrink-c4abebfe;-webkit-animation-name:shrink-c4abebfe}.fold[data-v-c4abebfe]{animation-fill-mode:both;animation-name:fold-c4abebfe;-webkit-animation-name:fold-c4abebfe}.fold[data-v-c4abebfe],.unfold[data-v-c4abebfe]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-c4abebfe]{animation-fill-mode:both;animation-name:unfold-c4abebfe;-webkit-animation-name:unfold-c4abebfe}.dim[data-v-c4abebfe]{animation-fill-mode:both;animation-name:dim-c4abebfe;-webkit-animation-name:dim-c4abebfe}.brighten[data-v-c4abebfe],.dim[data-v-c4abebfe]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-c4abebfe]{animation-fill-mode:both;animation-name:brighten-c4abebfe;-webkit-animation-name:brighten-c4abebfe}@keyframes fadeIn-c4abebfe{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c4abebfe{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-c4abebfe{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-c4abebfe{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-c4abebfe{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-c4abebfe{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-c4abebfe{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-c4abebfe{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-c4abebfe]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-c4abebfe;-webkit-animation-name:glow-c4abebfe}.loop[data-v-c4abebfe]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-c4abebfe{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-c4abebfe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c4abebfe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c4abebfe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-c4abebfe]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-c4abebfe]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-c4abebfe]{background:#8fefb7}.item.selected[data-v-c4abebfe]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-c4abebfe]{border-top:2px solid #35b870}.item[data-v-c4abebfe]::-moz-selection{background:transparent!important}.item[data-v-c4abebfe]::selection{background:transparent!important}.item .title[data-v-c4abebfe]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-c4abebfe]{display:inline-flex;align-items:center}.item .side.right[data-v-c4abebfe]{display:inline-flex;justify-content:right}.item .actions[data-v-c4abebfe],.item .duration[data-v-c4abebfe]{display:inline-flex;align-items:center}.item .duration[data-v-c4abebfe]{font-size:.85em;opacity:.7}.item .actions[data-v-c4abebfe] button{opacity:.65}.item .icon[data-v-c4abebfe]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-c4abebfe] .dropdown-container .item{box-shadow:none}.item[data-v-c4abebfe] .dropdown-container button{background:none;border:none}.item[data-v-c4abebfe] .dropdown-container button:hover{color:#35b870}[data-v-c4abebfe] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-c4abebfe] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-c4abebfe] .table-row{flex-direction:row;align-items:center}}[data-v-c4abebfe] .table-row .title,[data-v-c4abebfe] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-c4abebfe] .table-row .title,[data-v-c4abebfe] .table-row .value{display:inline-flex}}[data-v-c4abebfe] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-c4abebfe] .table-row .title{width:30%}[data-v-c4abebfe] .table-row .value{justify-content:right}}.browser-options[data-v-c4abebfe]{width:100%;height:100%;display:flex;flex-direction:column}.browser-options .options-body[data-v-c4abebfe]{flex:1;display:flex;flex-direction:column;padding:0}.browser-options .item[data-v-c4abebfe]{padding:1em}.browser-options .item label[data-v-c4abebfe]{width:100%;cursor:pointer}.browser-options .item[data-v-c4abebfe]:last-child{border-bottom:none}.browser-options .sort-container[data-v-c4abebfe]{width:100%;flex-direction:column;align-items:flex-start}.browser-options .sort-container span[data-v-c4abebfe]{width:100%;display:flex;justify-content:space-between;padding:.5em 0}.col-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-417b1bc7]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-417b1bc7]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-417b1bc7]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-417b1bc7]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-417b1bc7]:first-child{margin-left:26%!important}.col-offset-3[data-v-417b1bc7]:not(first-child){margin-left:30%!important}.col-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-417b1bc7]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-417b1bc7]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-417b1bc7]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-417b1bc7]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-417b1bc7]:first-child{margin-left:52%!important}.col-offset-6[data-v-417b1bc7]:not(first-child){margin-left:56%!important}.col-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-417b1bc7]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-417b1bc7]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-417b1bc7]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-417b1bc7]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-417b1bc7]:first-child{margin-left:78%!important}.col-offset-9[data-v-417b1bc7]:not(first-child){margin-left:82%!important}.col-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-417b1bc7]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-417b1bc7]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-417b1bc7]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-417b1bc7]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-1[data-v-417b1bc7]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-2[data-v-417b1bc7]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-3[data-v-417b1bc7]{margin-left:26%}.col-no-margin-s-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-4[data-v-417b1bc7]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-5[data-v-417b1bc7]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-6[data-v-417b1bc7]{margin-left:52%}.col-no-margin-s-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-7[data-v-417b1bc7]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-8[data-v-417b1bc7]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-9[data-v-417b1bc7]{margin-left:78%}.col-no-margin-s-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-10[data-v-417b1bc7]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-s-11[data-v-417b1bc7]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-s-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-417b1bc7]{display:none!important}.s-visible[data-v-417b1bc7]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-1[data-v-417b1bc7]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-2[data-v-417b1bc7]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-3[data-v-417b1bc7]{margin-left:26%}.col-no-margin-m-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-4[data-v-417b1bc7]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-5[data-v-417b1bc7]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-6[data-v-417b1bc7]{margin-left:52%}.col-no-margin-m-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-7[data-v-417b1bc7]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-8[data-v-417b1bc7]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-9[data-v-417b1bc7]{margin-left:78%}.col-no-margin-m-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-10[data-v-417b1bc7]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-m-11[data-v-417b1bc7]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-m-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-417b1bc7]{display:none!important}.m-visible[data-v-417b1bc7]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-1[data-v-417b1bc7]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-2[data-v-417b1bc7]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-3[data-v-417b1bc7]{margin-left:26%}.col-no-margin-l-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-4[data-v-417b1bc7]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-5[data-v-417b1bc7]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-6[data-v-417b1bc7]{margin-left:52%}.col-no-margin-l-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-7[data-v-417b1bc7]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-8[data-v-417b1bc7]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-9[data-v-417b1bc7]{margin-left:78%}.col-no-margin-l-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-10[data-v-417b1bc7]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-l-11[data-v-417b1bc7]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-l-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-417b1bc7]{display:none!important}.l-visible[data-v-417b1bc7]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-1[data-v-417b1bc7]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-2[data-v-417b1bc7]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-3[data-v-417b1bc7]{margin-left:26%}.col-no-margin-xl-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-4[data-v-417b1bc7]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-5[data-v-417b1bc7]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-6[data-v-417b1bc7]{margin-left:52%}.col-no-margin-xl-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-7[data-v-417b1bc7]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-8[data-v-417b1bc7]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-9[data-v-417b1bc7]{margin-left:78%}.col-no-margin-xl-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-10[data-v-417b1bc7]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xl-11[data-v-417b1bc7]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-417b1bc7]{display:none!important}.xl-visible[data-v-417b1bc7]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-1[data-v-417b1bc7]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-417b1bc7]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-2[data-v-417b1bc7]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-417b1bc7]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-3[data-v-417b1bc7]{margin-left:26%}.col-no-margin-xxl-3[data-v-417b1bc7]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-4[data-v-417b1bc7]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-417b1bc7]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-5[data-v-417b1bc7]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-417b1bc7]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-6[data-v-417b1bc7]{margin-left:52%}.col-no-margin-xxl-6[data-v-417b1bc7]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-7[data-v-417b1bc7]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-417b1bc7]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-8[data-v-417b1bc7]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-417b1bc7]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-9[data-v-417b1bc7]{margin-left:78%}.col-no-margin-xxl-9[data-v-417b1bc7]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-10[data-v-417b1bc7]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-417b1bc7]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-417b1bc7]:first-child{margin-left:0}.col-offset-xxl-11[data-v-417b1bc7]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-417b1bc7]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-417b1bc7]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-417b1bc7]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-417b1bc7]{display:none!important}.xxl-visible[data-v-417b1bc7]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-417b1bc7]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-417b1bc7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-417b1bc7]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-417b1bc7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-417b1bc7]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-417b1bc7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-417b1bc7]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-417b1bc7]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-417b1bc7]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-417b1bc7]{display:none!important}}.vertical-center[data-v-417b1bc7]{display:flex;align-items:center}.horizontal-center[data-v-417b1bc7]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-417b1bc7]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-417b1bc7]{display:none!important}.no-content[data-v-417b1bc7]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-417b1bc7]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-417b1bc7]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-417b1bc7]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-417b1bc7]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-417b1bc7]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-417b1bc7]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-417b1bc7],.btn[data-v-417b1bc7],button[data-v-417b1bc7]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-417b1bc7],.btn-default[type=submit][data-v-417b1bc7],.btn.btn-primary[data-v-417b1bc7],.btn[type=submit][data-v-417b1bc7],button.btn-primary[data-v-417b1bc7],button[type=submit][data-v-417b1bc7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-417b1bc7]:hover,.btn[data-v-417b1bc7]:hover,button[data-v-417b1bc7]:hover{color:#35b870}.btn .icon[data-v-417b1bc7],.btn-default .icon[data-v-417b1bc7],button .icon[data-v-417b1bc7]{margin-right:.5em}.btn-default[data-v-417b1bc7]:disabled,.btn-default[disabled][data-v-417b1bc7],.btn[data-v-417b1bc7]:disabled,.btn[disabled][data-v-417b1bc7],button[data-v-417b1bc7]:disabled,button[disabled][data-v-417b1bc7]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-417b1bc7]{cursor:grab!important}.dragged[data-v-417b1bc7]{opacity:.5!important}input[type=password][data-v-417b1bc7],input[type=text][data-v-417b1bc7]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-417b1bc7]:focus,input[type=text][data-v-417b1bc7]:focus{border:1px solid #35b870}button[data-v-417b1bc7],input[data-v-417b1bc7]{outline:none}input[type=text][data-v-417b1bc7]:hover,textarea[data-v-417b1bc7]:hover{border:1px solid #9cdfb0}ul[data-v-417b1bc7]{margin:0;padding:0;list-style:none}a[data-v-417b1bc7]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-417b1bc7]:hover{color:#35b870}[data-v-417b1bc7]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-417b1bc7]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-417b1bc7]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-417b1bc7]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-417b1bc7]{color:#ad1717}body[data-v-417b1bc7]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-417b1bc7] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-417b1bc7] .nav .path{cursor:pointer}.browser[data-v-417b1bc7] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-417b1bc7] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-417b1bc7]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-417b1bc7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-417b1bc7],input[type=number][data-v-417b1bc7],input[type=password][data-v-417b1bc7],input[type=search][data-v-417b1bc7],input[type=text][data-v-417b1bc7],input[type=time][data-v-417b1bc7]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-417b1bc7]:hover,input[type=number][data-v-417b1bc7]:hover,input[type=password][data-v-417b1bc7]:hover,input[type=search][data-v-417b1bc7]:hover,input[type=text][data-v-417b1bc7]:hover,input[type=time][data-v-417b1bc7]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-417b1bc7]:focus,input[type=number][data-v-417b1bc7]:focus,input[type=password][data-v-417b1bc7]:focus,input[type=search][data-v-417b1bc7]:focus,input[type=text][data-v-417b1bc7]:focus,input[type=time][data-v-417b1bc7]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-417b1bc7],input[type=number].with-icon[data-v-417b1bc7],input[type=password].with-icon[data-v-417b1bc7],input[type=search].with-icon[data-v-417b1bc7],input[type=text].with-icon[data-v-417b1bc7],input[type=time].with-icon[data-v-417b1bc7]{padding-left:.3em}input[type=search][data-v-417b1bc7],input[type=text][data-v-417b1bc7]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-417b1bc7]{animation-fill-mode:both;animation-name:fadeIn-417b1bc7;-webkit-animation-name:fadeIn-417b1bc7}.fade-in[data-v-417b1bc7],.fade-out[data-v-417b1bc7]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-417b1bc7]{animation-fill-mode:both;animation-name:fadeOut-417b1bc7;-webkit-animation-name:fadeOut-417b1bc7}.expand[data-v-417b1bc7]{animation-fill-mode:both;animation-name:expand-417b1bc7;-webkit-animation-name:expand-417b1bc7}.expand[data-v-417b1bc7],.shrink[data-v-417b1bc7]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-417b1bc7]{animation-fill-mode:both;animation-name:shrink-417b1bc7;-webkit-animation-name:shrink-417b1bc7}.fold[data-v-417b1bc7]{animation-fill-mode:both;animation-name:fold-417b1bc7;-webkit-animation-name:fold-417b1bc7}.fold[data-v-417b1bc7],.unfold[data-v-417b1bc7]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-417b1bc7]{animation-fill-mode:both;animation-name:unfold-417b1bc7;-webkit-animation-name:unfold-417b1bc7}.dim[data-v-417b1bc7]{animation-fill-mode:both;animation-name:dim-417b1bc7;-webkit-animation-name:dim-417b1bc7}.brighten[data-v-417b1bc7],.dim[data-v-417b1bc7]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-417b1bc7]{animation-fill-mode:both;animation-name:brighten-417b1bc7;-webkit-animation-name:brighten-417b1bc7}@keyframes fadeIn-417b1bc7{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-417b1bc7{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-417b1bc7{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-417b1bc7{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-417b1bc7{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-417b1bc7{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-417b1bc7{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-417b1bc7{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-417b1bc7]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-417b1bc7;-webkit-animation-name:glow-417b1bc7}.loop[data-v-417b1bc7]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-417b1bc7{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-417b1bc7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-417b1bc7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-417b1bc7]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-417b1bc7]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-417b1bc7]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-417b1bc7]{background:#8fefb7}.item.selected[data-v-417b1bc7]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-417b1bc7]{border-top:2px solid #35b870}.item[data-v-417b1bc7]::-moz-selection{background:transparent!important}.item[data-v-417b1bc7]::selection{background:transparent!important}.item .title[data-v-417b1bc7]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-417b1bc7]{display:inline-flex;align-items:center}.item .side.right[data-v-417b1bc7]{display:inline-flex;justify-content:right}.item .actions[data-v-417b1bc7],.item .duration[data-v-417b1bc7]{display:inline-flex;align-items:center}.item .duration[data-v-417b1bc7]{font-size:.85em;opacity:.7}.item .actions[data-v-417b1bc7] button{opacity:.65}.item .icon[data-v-417b1bc7]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-417b1bc7] .dropdown-container .item{box-shadow:none}.item[data-v-417b1bc7] .dropdown-container button{background:none;border:none}.item[data-v-417b1bc7] .dropdown-container button:hover{color:#35b870}[data-v-417b1bc7] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-417b1bc7] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-417b1bc7] .table-row{flex-direction:row;align-items:center}}[data-v-417b1bc7] .table-row .title,[data-v-417b1bc7] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-417b1bc7] .table-row .title,[data-v-417b1bc7] .table-row .value{display:inline-flex}}[data-v-417b1bc7] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-417b1bc7] .table-row .title{width:30%}[data-v-417b1bc7] .table-row .value{justify-content:right}}.file-info .file-info-container[data-v-417b1bc7],.file-info[data-v-417b1bc7]{width:100%;height:100%}.file-info .item[data-v-417b1bc7]{width:100%;padding:.75em .5em}.file-info .label[data-v-417b1bc7]{opacity:.7}.file-info .value[data-v-417b1bc7]{text-align:right;flex-grow:1;margin-left:1.5em}.col-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-67b7ea3b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-67b7ea3b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-67b7ea3b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-67b7ea3b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-67b7ea3b]:first-child{margin-left:26%!important}.col-offset-3[data-v-67b7ea3b]:not(first-child){margin-left:30%!important}.col-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-67b7ea3b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-67b7ea3b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-67b7ea3b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-67b7ea3b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-67b7ea3b]:first-child{margin-left:52%!important}.col-offset-6[data-v-67b7ea3b]:not(first-child){margin-left:56%!important}.col-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-67b7ea3b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-67b7ea3b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-67b7ea3b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-67b7ea3b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-67b7ea3b]:first-child{margin-left:78%!important}.col-offset-9[data-v-67b7ea3b]:not(first-child){margin-left:82%!important}.col-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-67b7ea3b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-67b7ea3b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-67b7ea3b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-67b7ea3b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-1[data-v-67b7ea3b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-2[data-v-67b7ea3b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-3[data-v-67b7ea3b]{margin-left:26%}.col-no-margin-s-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-4[data-v-67b7ea3b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-5[data-v-67b7ea3b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-6[data-v-67b7ea3b]{margin-left:52%}.col-no-margin-s-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-7[data-v-67b7ea3b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-8[data-v-67b7ea3b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-9[data-v-67b7ea3b]{margin-left:78%}.col-no-margin-s-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-10[data-v-67b7ea3b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-s-11[data-v-67b7ea3b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-67b7ea3b]{display:none!important}.s-visible[data-v-67b7ea3b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-1[data-v-67b7ea3b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-2[data-v-67b7ea3b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-3[data-v-67b7ea3b]{margin-left:26%}.col-no-margin-m-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-4[data-v-67b7ea3b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-5[data-v-67b7ea3b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-6[data-v-67b7ea3b]{margin-left:52%}.col-no-margin-m-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-7[data-v-67b7ea3b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-8[data-v-67b7ea3b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-9[data-v-67b7ea3b]{margin-left:78%}.col-no-margin-m-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-10[data-v-67b7ea3b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-m-11[data-v-67b7ea3b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-67b7ea3b]{display:none!important}.m-visible[data-v-67b7ea3b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-1[data-v-67b7ea3b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-2[data-v-67b7ea3b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-3[data-v-67b7ea3b]{margin-left:26%}.col-no-margin-l-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-4[data-v-67b7ea3b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-5[data-v-67b7ea3b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-6[data-v-67b7ea3b]{margin-left:52%}.col-no-margin-l-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-7[data-v-67b7ea3b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-8[data-v-67b7ea3b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-9[data-v-67b7ea3b]{margin-left:78%}.col-no-margin-l-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-10[data-v-67b7ea3b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-l-11[data-v-67b7ea3b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-67b7ea3b]{display:none!important}.l-visible[data-v-67b7ea3b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-1[data-v-67b7ea3b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-2[data-v-67b7ea3b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-3[data-v-67b7ea3b]{margin-left:26%}.col-no-margin-xl-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-4[data-v-67b7ea3b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-5[data-v-67b7ea3b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-6[data-v-67b7ea3b]{margin-left:52%}.col-no-margin-xl-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-7[data-v-67b7ea3b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-8[data-v-67b7ea3b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-9[data-v-67b7ea3b]{margin-left:78%}.col-no-margin-xl-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-10[data-v-67b7ea3b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xl-11[data-v-67b7ea3b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-67b7ea3b]{display:none!important}.xl-visible[data-v-67b7ea3b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-67b7ea3b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-67b7ea3b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-67b7ea3b]{margin-left:26%}.col-no-margin-xxl-3[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-67b7ea3b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-67b7ea3b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-67b7ea3b]{margin-left:52%}.col-no-margin-xxl-6[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-67b7ea3b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-67b7ea3b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-67b7ea3b]{margin-left:78%}.col-no-margin-xxl-9[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-67b7ea3b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-67b7ea3b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-67b7ea3b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-67b7ea3b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-67b7ea3b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-67b7ea3b]{display:none!important}.xxl-visible[data-v-67b7ea3b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-67b7ea3b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-67b7ea3b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-67b7ea3b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-67b7ea3b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-67b7ea3b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-67b7ea3b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-67b7ea3b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-67b7ea3b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-67b7ea3b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-67b7ea3b]{display:none!important}}.vertical-center[data-v-67b7ea3b]{display:flex;align-items:center}.horizontal-center[data-v-67b7ea3b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-67b7ea3b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-67b7ea3b]{display:none!important}.no-content[data-v-67b7ea3b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-67b7ea3b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-67b7ea3b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-67b7ea3b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-67b7ea3b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-67b7ea3b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-67b7ea3b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-67b7ea3b],.btn[data-v-67b7ea3b],button[data-v-67b7ea3b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-67b7ea3b],.btn-default[type=submit][data-v-67b7ea3b],.btn.btn-primary[data-v-67b7ea3b],.btn[type=submit][data-v-67b7ea3b],button.btn-primary[data-v-67b7ea3b],button[type=submit][data-v-67b7ea3b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-67b7ea3b]:hover,.btn[data-v-67b7ea3b]:hover,button[data-v-67b7ea3b]:hover{color:#35b870}.btn .icon[data-v-67b7ea3b],.btn-default .icon[data-v-67b7ea3b],button .icon[data-v-67b7ea3b]{margin-right:.5em}.btn-default[data-v-67b7ea3b]:disabled,.btn-default[disabled][data-v-67b7ea3b],.btn[data-v-67b7ea3b]:disabled,.btn[disabled][data-v-67b7ea3b],button[data-v-67b7ea3b]:disabled,button[disabled][data-v-67b7ea3b]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-67b7ea3b]{cursor:grab!important}.dragged[data-v-67b7ea3b]{opacity:.5!important}input[type=password][data-v-67b7ea3b],input[type=text][data-v-67b7ea3b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-67b7ea3b]:focus,input[type=text][data-v-67b7ea3b]:focus{border:1px solid #35b870}button[data-v-67b7ea3b],input[data-v-67b7ea3b]{outline:none}input[type=text][data-v-67b7ea3b]:hover,textarea[data-v-67b7ea3b]:hover{border:1px solid #9cdfb0}ul[data-v-67b7ea3b]{margin:0;padding:0;list-style:none}a[data-v-67b7ea3b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-67b7ea3b]:hover{color:#35b870}[data-v-67b7ea3b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-67b7ea3b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-67b7ea3b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-67b7ea3b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-67b7ea3b]{color:#ad1717}body[data-v-67b7ea3b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-67b7ea3b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-67b7ea3b] .nav .path{cursor:pointer}.browser[data-v-67b7ea3b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-67b7ea3b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-67b7ea3b]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-67b7ea3b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-67b7ea3b],input[type=number][data-v-67b7ea3b],input[type=password][data-v-67b7ea3b],input[type=search][data-v-67b7ea3b],input[type=text][data-v-67b7ea3b],input[type=time][data-v-67b7ea3b]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-67b7ea3b]:hover,input[type=number][data-v-67b7ea3b]:hover,input[type=password][data-v-67b7ea3b]:hover,input[type=search][data-v-67b7ea3b]:hover,input[type=text][data-v-67b7ea3b]:hover,input[type=time][data-v-67b7ea3b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-67b7ea3b]:focus,input[type=number][data-v-67b7ea3b]:focus,input[type=password][data-v-67b7ea3b]:focus,input[type=search][data-v-67b7ea3b]:focus,input[type=text][data-v-67b7ea3b]:focus,input[type=time][data-v-67b7ea3b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-67b7ea3b],input[type=number].with-icon[data-v-67b7ea3b],input[type=password].with-icon[data-v-67b7ea3b],input[type=search].with-icon[data-v-67b7ea3b],input[type=text].with-icon[data-v-67b7ea3b],input[type=time].with-icon[data-v-67b7ea3b]{padding-left:.3em}input[type=search][data-v-67b7ea3b],input[type=text][data-v-67b7ea3b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-67b7ea3b]{animation-fill-mode:both;animation-name:fadeIn-67b7ea3b;-webkit-animation-name:fadeIn-67b7ea3b}.fade-in[data-v-67b7ea3b],.fade-out[data-v-67b7ea3b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-67b7ea3b]{animation-fill-mode:both;animation-name:fadeOut-67b7ea3b;-webkit-animation-name:fadeOut-67b7ea3b}.expand[data-v-67b7ea3b]{animation-fill-mode:both;animation-name:expand-67b7ea3b;-webkit-animation-name:expand-67b7ea3b}.expand[data-v-67b7ea3b],.shrink[data-v-67b7ea3b]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-67b7ea3b]{animation-fill-mode:both;animation-name:shrink-67b7ea3b;-webkit-animation-name:shrink-67b7ea3b}.fold[data-v-67b7ea3b]{animation-fill-mode:both;animation-name:fold-67b7ea3b;-webkit-animation-name:fold-67b7ea3b}.fold[data-v-67b7ea3b],.unfold[data-v-67b7ea3b]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-67b7ea3b]{animation-fill-mode:both;animation-name:unfold-67b7ea3b;-webkit-animation-name:unfold-67b7ea3b}.dim[data-v-67b7ea3b]{animation-fill-mode:both;animation-name:dim-67b7ea3b;-webkit-animation-name:dim-67b7ea3b}.brighten[data-v-67b7ea3b],.dim[data-v-67b7ea3b]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-67b7ea3b]{animation-fill-mode:both;animation-name:brighten-67b7ea3b;-webkit-animation-name:brighten-67b7ea3b}@keyframes fadeIn-67b7ea3b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-67b7ea3b{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-67b7ea3b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-67b7ea3b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-67b7ea3b{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-67b7ea3b{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-67b7ea3b{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-67b7ea3b{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-67b7ea3b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-67b7ea3b;-webkit-animation-name:glow-67b7ea3b}.loop[data-v-67b7ea3b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-67b7ea3b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-67b7ea3b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-67b7ea3b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-67b7ea3b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.upload-file-container[data-v-67b7ea3b] .modal .modal-body{position:relative}.upload-file-container form .row[data-v-67b7ea3b]{width:100%;display:flex;justify-content:center;align-items:center;padding:1em 0}.upload-file-container .progress-container[data-v-67b7ea3b]{display:flex;flex-direction:column}.upload-file-container .progress-container .progress[data-v-67b7ea3b]{width:100%;display:flex;align-items:center;padding:1em}.upload-file-container .progress-container .progress .filename[data-v-67b7ea3b]{width:35%;overflow:clip;text-overflow:ellipsis}.upload-file-container .progress-container .progress .progress-bar-container[data-v-67b7ea3b]{width:65%}.upload-file-container .progress-container .progress progress[value][data-v-67b7ea3b]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;width:100%;height:1.5em;border-radius:.75em}.col-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f6e584b8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f6e584b8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f6e584b8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f6e584b8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f6e584b8]:first-child{margin-left:26%!important}.col-offset-3[data-v-f6e584b8]:not(first-child){margin-left:30%!important}.col-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f6e584b8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f6e584b8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f6e584b8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f6e584b8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f6e584b8]:first-child{margin-left:52%!important}.col-offset-6[data-v-f6e584b8]:not(first-child){margin-left:56%!important}.col-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f6e584b8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f6e584b8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f6e584b8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f6e584b8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f6e584b8]:first-child{margin-left:78%!important}.col-offset-9[data-v-f6e584b8]:not(first-child){margin-left:82%!important}.col-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f6e584b8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f6e584b8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f6e584b8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f6e584b8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-1[data-v-f6e584b8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-2[data-v-f6e584b8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-3[data-v-f6e584b8]{margin-left:26%}.col-no-margin-s-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-4[data-v-f6e584b8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-5[data-v-f6e584b8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-6[data-v-f6e584b8]{margin-left:52%}.col-no-margin-s-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-7[data-v-f6e584b8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-8[data-v-f6e584b8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-9[data-v-f6e584b8]{margin-left:78%}.col-no-margin-s-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-10[data-v-f6e584b8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-s-11[data-v-f6e584b8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f6e584b8]{display:none!important}.s-visible[data-v-f6e584b8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-1[data-v-f6e584b8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-2[data-v-f6e584b8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-3[data-v-f6e584b8]{margin-left:26%}.col-no-margin-m-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-4[data-v-f6e584b8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-5[data-v-f6e584b8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-6[data-v-f6e584b8]{margin-left:52%}.col-no-margin-m-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-7[data-v-f6e584b8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-8[data-v-f6e584b8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-9[data-v-f6e584b8]{margin-left:78%}.col-no-margin-m-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-10[data-v-f6e584b8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-m-11[data-v-f6e584b8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f6e584b8]{display:none!important}.m-visible[data-v-f6e584b8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-1[data-v-f6e584b8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-2[data-v-f6e584b8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-3[data-v-f6e584b8]{margin-left:26%}.col-no-margin-l-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-4[data-v-f6e584b8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-5[data-v-f6e584b8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-6[data-v-f6e584b8]{margin-left:52%}.col-no-margin-l-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-7[data-v-f6e584b8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-8[data-v-f6e584b8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-9[data-v-f6e584b8]{margin-left:78%}.col-no-margin-l-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-10[data-v-f6e584b8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-l-11[data-v-f6e584b8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f6e584b8]{display:none!important}.l-visible[data-v-f6e584b8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-1[data-v-f6e584b8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-2[data-v-f6e584b8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-3[data-v-f6e584b8]{margin-left:26%}.col-no-margin-xl-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-4[data-v-f6e584b8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-5[data-v-f6e584b8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-6[data-v-f6e584b8]{margin-left:52%}.col-no-margin-xl-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-7[data-v-f6e584b8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-8[data-v-f6e584b8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-9[data-v-f6e584b8]{margin-left:78%}.col-no-margin-xl-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-10[data-v-f6e584b8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xl-11[data-v-f6e584b8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f6e584b8]{display:none!important}.xl-visible[data-v-f6e584b8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f6e584b8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f6e584b8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f6e584b8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f6e584b8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f6e584b8]{margin-left:26%}.col-no-margin-xxl-3[data-v-f6e584b8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f6e584b8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f6e584b8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f6e584b8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f6e584b8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f6e584b8]{margin-left:52%}.col-no-margin-xxl-6[data-v-f6e584b8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f6e584b8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f6e584b8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f6e584b8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f6e584b8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f6e584b8]{margin-left:78%}.col-no-margin-xxl-9[data-v-f6e584b8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f6e584b8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f6e584b8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f6e584b8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f6e584b8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f6e584b8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f6e584b8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f6e584b8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f6e584b8]{display:none!important}.xxl-visible[data-v-f6e584b8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f6e584b8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f6e584b8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f6e584b8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f6e584b8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f6e584b8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f6e584b8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f6e584b8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f6e584b8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f6e584b8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f6e584b8]{display:none!important}}.vertical-center[data-v-f6e584b8]{display:flex;align-items:center}.horizontal-center[data-v-f6e584b8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f6e584b8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f6e584b8]{display:none!important}.no-content[data-v-f6e584b8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f6e584b8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f6e584b8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f6e584b8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f6e584b8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f6e584b8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f6e584b8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f6e584b8],.btn[data-v-f6e584b8],button[data-v-f6e584b8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f6e584b8],.btn-default[type=submit][data-v-f6e584b8],.btn.btn-primary[data-v-f6e584b8],.btn[type=submit][data-v-f6e584b8],button.btn-primary[data-v-f6e584b8],button[type=submit][data-v-f6e584b8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-f6e584b8]:hover,.btn[data-v-f6e584b8]:hover,button[data-v-f6e584b8]:hover{color:#35b870}.btn .icon[data-v-f6e584b8],.btn-default .icon[data-v-f6e584b8],button .icon[data-v-f6e584b8]{margin-right:.5em}.btn-default[data-v-f6e584b8]:disabled,.btn-default[disabled][data-v-f6e584b8],.btn[data-v-f6e584b8]:disabled,.btn[disabled][data-v-f6e584b8],button[data-v-f6e584b8]:disabled,button[disabled][data-v-f6e584b8]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-f6e584b8]{cursor:grab!important}.dragged[data-v-f6e584b8]{opacity:.5!important}input[type=password][data-v-f6e584b8],input[type=text][data-v-f6e584b8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f6e584b8]:focus,input[type=text][data-v-f6e584b8]:focus{border:1px solid #35b870}button[data-v-f6e584b8],input[data-v-f6e584b8]{outline:none}input[type=text][data-v-f6e584b8]:hover,textarea[data-v-f6e584b8]:hover{border:1px solid #9cdfb0}ul[data-v-f6e584b8]{margin:0;padding:0;list-style:none}a[data-v-f6e584b8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f6e584b8]:hover{color:#35b870}[data-v-f6e584b8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f6e584b8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f6e584b8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f6e584b8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-f6e584b8]{color:#ad1717}body[data-v-f6e584b8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f6e584b8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f6e584b8] .nav .path{cursor:pointer}.browser[data-v-f6e584b8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f6e584b8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-f6e584b8]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-f6e584b8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f6e584b8],input[type=number][data-v-f6e584b8],input[type=password][data-v-f6e584b8],input[type=search][data-v-f6e584b8],input[type=text][data-v-f6e584b8],input[type=time][data-v-f6e584b8]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-f6e584b8]:hover,input[type=number][data-v-f6e584b8]:hover,input[type=password][data-v-f6e584b8]:hover,input[type=search][data-v-f6e584b8]:hover,input[type=text][data-v-f6e584b8]:hover,input[type=time][data-v-f6e584b8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f6e584b8]:focus,input[type=number][data-v-f6e584b8]:focus,input[type=password][data-v-f6e584b8]:focus,input[type=search][data-v-f6e584b8]:focus,input[type=text][data-v-f6e584b8]:focus,input[type=time][data-v-f6e584b8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f6e584b8],input[type=number].with-icon[data-v-f6e584b8],input[type=password].with-icon[data-v-f6e584b8],input[type=search].with-icon[data-v-f6e584b8],input[type=text].with-icon[data-v-f6e584b8],input[type=time].with-icon[data-v-f6e584b8]{padding-left:.3em}input[type=search][data-v-f6e584b8],input[type=text][data-v-f6e584b8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f6e584b8]{animation-fill-mode:both;animation-name:fadeIn-f6e584b8;-webkit-animation-name:fadeIn-f6e584b8}.fade-in[data-v-f6e584b8],.fade-out[data-v-f6e584b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f6e584b8]{animation-fill-mode:both;animation-name:fadeOut-f6e584b8;-webkit-animation-name:fadeOut-f6e584b8}.expand[data-v-f6e584b8]{animation-fill-mode:both;animation-name:expand-f6e584b8;-webkit-animation-name:expand-f6e584b8}.expand[data-v-f6e584b8],.shrink[data-v-f6e584b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-f6e584b8]{animation-fill-mode:both;animation-name:shrink-f6e584b8;-webkit-animation-name:shrink-f6e584b8}.fold[data-v-f6e584b8]{animation-fill-mode:both;animation-name:fold-f6e584b8;-webkit-animation-name:fold-f6e584b8}.fold[data-v-f6e584b8],.unfold[data-v-f6e584b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-f6e584b8]{animation-fill-mode:both;animation-name:unfold-f6e584b8;-webkit-animation-name:unfold-f6e584b8}.dim[data-v-f6e584b8]{animation-fill-mode:both;animation-name:dim-f6e584b8;-webkit-animation-name:dim-f6e584b8}.brighten[data-v-f6e584b8],.dim[data-v-f6e584b8]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-f6e584b8]{animation-fill-mode:both;animation-name:brighten-f6e584b8;-webkit-animation-name:brighten-f6e584b8}@keyframes fadeIn-f6e584b8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f6e584b8{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-f6e584b8{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-f6e584b8{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-f6e584b8{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-f6e584b8{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-f6e584b8{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-f6e584b8{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-f6e584b8]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f6e584b8;-webkit-animation-name:glow-f6e584b8}.loop[data-v-f6e584b8]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f6e584b8{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f6e584b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f6e584b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f6e584b8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.upload-file-modal-container[data-v-f6e584b8] .modal .modal-body{position:relative}.col-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e2c178b2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e2c178b2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e2c178b2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e2c178b2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e2c178b2]:first-child{margin-left:26%!important}.col-offset-3[data-v-e2c178b2]:not(first-child){margin-left:30%!important}.col-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e2c178b2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e2c178b2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e2c178b2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e2c178b2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e2c178b2]:first-child{margin-left:52%!important}.col-offset-6[data-v-e2c178b2]:not(first-child){margin-left:56%!important}.col-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e2c178b2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e2c178b2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e2c178b2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e2c178b2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e2c178b2]:first-child{margin-left:78%!important}.col-offset-9[data-v-e2c178b2]:not(first-child){margin-left:82%!important}.col-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e2c178b2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e2c178b2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e2c178b2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e2c178b2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-1[data-v-e2c178b2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-2[data-v-e2c178b2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-3[data-v-e2c178b2]{margin-left:26%}.col-no-margin-s-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-4[data-v-e2c178b2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-5[data-v-e2c178b2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-6[data-v-e2c178b2]{margin-left:52%}.col-no-margin-s-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-7[data-v-e2c178b2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-8[data-v-e2c178b2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-9[data-v-e2c178b2]{margin-left:78%}.col-no-margin-s-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-10[data-v-e2c178b2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-s-11[data-v-e2c178b2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e2c178b2]{display:none!important}.s-visible[data-v-e2c178b2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-1[data-v-e2c178b2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-2[data-v-e2c178b2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-3[data-v-e2c178b2]{margin-left:26%}.col-no-margin-m-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-4[data-v-e2c178b2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-5[data-v-e2c178b2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-6[data-v-e2c178b2]{margin-left:52%}.col-no-margin-m-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-7[data-v-e2c178b2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-8[data-v-e2c178b2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-9[data-v-e2c178b2]{margin-left:78%}.col-no-margin-m-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-10[data-v-e2c178b2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-m-11[data-v-e2c178b2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e2c178b2]{display:none!important}.m-visible[data-v-e2c178b2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-1[data-v-e2c178b2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-2[data-v-e2c178b2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-3[data-v-e2c178b2]{margin-left:26%}.col-no-margin-l-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-4[data-v-e2c178b2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-5[data-v-e2c178b2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-6[data-v-e2c178b2]{margin-left:52%}.col-no-margin-l-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-7[data-v-e2c178b2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-8[data-v-e2c178b2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-9[data-v-e2c178b2]{margin-left:78%}.col-no-margin-l-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-10[data-v-e2c178b2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-l-11[data-v-e2c178b2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e2c178b2]{display:none!important}.l-visible[data-v-e2c178b2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-1[data-v-e2c178b2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-2[data-v-e2c178b2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-3[data-v-e2c178b2]{margin-left:26%}.col-no-margin-xl-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-4[data-v-e2c178b2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-5[data-v-e2c178b2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-6[data-v-e2c178b2]{margin-left:52%}.col-no-margin-xl-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-7[data-v-e2c178b2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-8[data-v-e2c178b2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-9[data-v-e2c178b2]{margin-left:78%}.col-no-margin-xl-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-10[data-v-e2c178b2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xl-11[data-v-e2c178b2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e2c178b2]{display:none!important}.xl-visible[data-v-e2c178b2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e2c178b2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e2c178b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e2c178b2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e2c178b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e2c178b2]{margin-left:26%}.col-no-margin-xxl-3[data-v-e2c178b2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e2c178b2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e2c178b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e2c178b2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e2c178b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e2c178b2]{margin-left:52%}.col-no-margin-xxl-6[data-v-e2c178b2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e2c178b2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e2c178b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e2c178b2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e2c178b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e2c178b2]{margin-left:78%}.col-no-margin-xxl-9[data-v-e2c178b2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e2c178b2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e2c178b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e2c178b2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e2c178b2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e2c178b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e2c178b2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e2c178b2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e2c178b2]{display:none!important}.xxl-visible[data-v-e2c178b2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e2c178b2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e2c178b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e2c178b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e2c178b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e2c178b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e2c178b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e2c178b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e2c178b2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e2c178b2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e2c178b2]{display:none!important}}.vertical-center[data-v-e2c178b2]{display:flex;align-items:center}.horizontal-center[data-v-e2c178b2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e2c178b2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e2c178b2]{display:none!important}.no-content[data-v-e2c178b2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e2c178b2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e2c178b2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e2c178b2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e2c178b2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e2c178b2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e2c178b2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e2c178b2],.btn[data-v-e2c178b2],button[data-v-e2c178b2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e2c178b2],.btn-default[type=submit][data-v-e2c178b2],.btn.btn-primary[data-v-e2c178b2],.btn[type=submit][data-v-e2c178b2],button.btn-primary[data-v-e2c178b2],button[type=submit][data-v-e2c178b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-e2c178b2]:hover,.btn[data-v-e2c178b2]:hover,button[data-v-e2c178b2]:hover{color:#35b870}.btn .icon[data-v-e2c178b2],.btn-default .icon[data-v-e2c178b2],button .icon[data-v-e2c178b2]{margin-right:.5em}.btn-default[data-v-e2c178b2]:disabled,.btn-default[disabled][data-v-e2c178b2],.btn[data-v-e2c178b2]:disabled,.btn[disabled][data-v-e2c178b2],button[data-v-e2c178b2]:disabled,button[disabled][data-v-e2c178b2]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-e2c178b2]{cursor:grab!important}.dragged[data-v-e2c178b2]{opacity:.5!important}input[type=password][data-v-e2c178b2],input[type=text][data-v-e2c178b2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e2c178b2]:focus,input[type=text][data-v-e2c178b2]:focus{border:1px solid #35b870}button[data-v-e2c178b2],input[data-v-e2c178b2]{outline:none}input[type=text][data-v-e2c178b2]:hover,textarea[data-v-e2c178b2]:hover{border:1px solid #9cdfb0}ul[data-v-e2c178b2]{margin:0;padding:0;list-style:none}a[data-v-e2c178b2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e2c178b2]:hover{color:#35b870}[data-v-e2c178b2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e2c178b2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e2c178b2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e2c178b2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-e2c178b2]{color:#ad1717}body[data-v-e2c178b2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e2c178b2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e2c178b2] .nav .path{cursor:pointer}.browser[data-v-e2c178b2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e2c178b2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-e2c178b2]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-e2c178b2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e2c178b2],input[type=number][data-v-e2c178b2],input[type=password][data-v-e2c178b2],input[type=search][data-v-e2c178b2],input[type=text][data-v-e2c178b2],input[type=time][data-v-e2c178b2]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-e2c178b2]:hover,input[type=number][data-v-e2c178b2]:hover,input[type=password][data-v-e2c178b2]:hover,input[type=search][data-v-e2c178b2]:hover,input[type=text][data-v-e2c178b2]:hover,input[type=time][data-v-e2c178b2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e2c178b2]:focus,input[type=number][data-v-e2c178b2]:focus,input[type=password][data-v-e2c178b2]:focus,input[type=search][data-v-e2c178b2]:focus,input[type=text][data-v-e2c178b2]:focus,input[type=time][data-v-e2c178b2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e2c178b2],input[type=number].with-icon[data-v-e2c178b2],input[type=password].with-icon[data-v-e2c178b2],input[type=search].with-icon[data-v-e2c178b2],input[type=text].with-icon[data-v-e2c178b2],input[type=time].with-icon[data-v-e2c178b2]{padding-left:.3em}input[type=search][data-v-e2c178b2],input[type=text][data-v-e2c178b2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e2c178b2]{animation-fill-mode:both;animation-name:fadeIn-e2c178b2;-webkit-animation-name:fadeIn-e2c178b2}.fade-in[data-v-e2c178b2],.fade-out[data-v-e2c178b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e2c178b2]{animation-fill-mode:both;animation-name:fadeOut-e2c178b2;-webkit-animation-name:fadeOut-e2c178b2}.expand[data-v-e2c178b2]{animation-fill-mode:both;animation-name:expand-e2c178b2;-webkit-animation-name:expand-e2c178b2}.expand[data-v-e2c178b2],.shrink[data-v-e2c178b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-e2c178b2]{animation-fill-mode:both;animation-name:shrink-e2c178b2;-webkit-animation-name:shrink-e2c178b2}.fold[data-v-e2c178b2]{animation-fill-mode:both;animation-name:fold-e2c178b2;-webkit-animation-name:fold-e2c178b2}.fold[data-v-e2c178b2],.unfold[data-v-e2c178b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-e2c178b2]{animation-fill-mode:both;animation-name:unfold-e2c178b2;-webkit-animation-name:unfold-e2c178b2}.dim[data-v-e2c178b2]{animation-fill-mode:both;animation-name:dim-e2c178b2;-webkit-animation-name:dim-e2c178b2}.brighten[data-v-e2c178b2],.dim[data-v-e2c178b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-e2c178b2]{animation-fill-mode:both;animation-name:brighten-e2c178b2;-webkit-animation-name:brighten-e2c178b2}@keyframes fadeIn-e2c178b2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e2c178b2{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-e2c178b2{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-e2c178b2{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-e2c178b2{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-e2c178b2{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-e2c178b2{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-e2c178b2{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-e2c178b2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-e2c178b2;-webkit-animation-name:glow-e2c178b2}.loop[data-v-e2c178b2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-e2c178b2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-e2c178b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e2c178b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e2c178b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-e2c178b2]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-e2c178b2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-e2c178b2]{background:#8fefb7}.item.selected[data-v-e2c178b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-e2c178b2]{border-top:2px solid #35b870}.item[data-v-e2c178b2]::-moz-selection{background:transparent!important}.item[data-v-e2c178b2]::selection{background:transparent!important}.item .title[data-v-e2c178b2]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-e2c178b2]{display:inline-flex;align-items:center}.item .side.right[data-v-e2c178b2]{display:inline-flex;justify-content:right}.item .actions[data-v-e2c178b2],.item .duration[data-v-e2c178b2]{display:inline-flex;align-items:center}.item .duration[data-v-e2c178b2]{font-size:.85em;opacity:.7}.item .actions[data-v-e2c178b2] button{opacity:.65}.item .icon[data-v-e2c178b2]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-e2c178b2] .dropdown-container .item{box-shadow:none}.item[data-v-e2c178b2] .dropdown-container button{background:none;border:none}.item[data-v-e2c178b2] .dropdown-container button:hover{color:#35b870}[data-v-e2c178b2] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-e2c178b2] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-e2c178b2] .table-row{flex-direction:row;align-items:center}}[data-v-e2c178b2] .table-row .title,[data-v-e2c178b2] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-e2c178b2] .table-row .title,[data-v-e2c178b2] .table-row .value{display:inline-flex}}[data-v-e2c178b2] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-e2c178b2] .table-row .title{width:30%}[data-v-e2c178b2] .table-row .value{justify-content:right}}.browser-home[data-v-e2c178b2]{height:100%;display:flex;flex-direction:column}.browser-home .items[data-v-e2c178b2]{height:calc(100% - 2.5em);overflow:auto}.browser-home .icon-container[data-v-e2c178b2]{width:2em;display:inline-flex;justify-content:center}.browser-home .icon-container img[data-v-e2c178b2]{max-width:calc(100% - .25em)}.col-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0c7b0e28]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0c7b0e28]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0c7b0e28]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0c7b0e28]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0c7b0e28]:first-child{margin-left:26%!important}.col-offset-3[data-v-0c7b0e28]:not(first-child){margin-left:30%!important}.col-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0c7b0e28]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0c7b0e28]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0c7b0e28]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0c7b0e28]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0c7b0e28]:first-child{margin-left:52%!important}.col-offset-6[data-v-0c7b0e28]:not(first-child){margin-left:56%!important}.col-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0c7b0e28]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0c7b0e28]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0c7b0e28]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0c7b0e28]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0c7b0e28]:first-child{margin-left:78%!important}.col-offset-9[data-v-0c7b0e28]:not(first-child){margin-left:82%!important}.col-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0c7b0e28]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0c7b0e28]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0c7b0e28]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0c7b0e28]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-1[data-v-0c7b0e28]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-2[data-v-0c7b0e28]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-3[data-v-0c7b0e28]{margin-left:26%}.col-no-margin-s-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-4[data-v-0c7b0e28]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-5[data-v-0c7b0e28]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-6[data-v-0c7b0e28]{margin-left:52%}.col-no-margin-s-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-7[data-v-0c7b0e28]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-8[data-v-0c7b0e28]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-9[data-v-0c7b0e28]{margin-left:78%}.col-no-margin-s-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-10[data-v-0c7b0e28]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-s-11[data-v-0c7b0e28]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0c7b0e28]{display:none!important}.s-visible[data-v-0c7b0e28]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-1[data-v-0c7b0e28]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-2[data-v-0c7b0e28]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-3[data-v-0c7b0e28]{margin-left:26%}.col-no-margin-m-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-4[data-v-0c7b0e28]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-5[data-v-0c7b0e28]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-6[data-v-0c7b0e28]{margin-left:52%}.col-no-margin-m-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-7[data-v-0c7b0e28]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-8[data-v-0c7b0e28]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-9[data-v-0c7b0e28]{margin-left:78%}.col-no-margin-m-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-10[data-v-0c7b0e28]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-m-11[data-v-0c7b0e28]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0c7b0e28]{display:none!important}.m-visible[data-v-0c7b0e28]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-1[data-v-0c7b0e28]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-2[data-v-0c7b0e28]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-3[data-v-0c7b0e28]{margin-left:26%}.col-no-margin-l-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-4[data-v-0c7b0e28]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-5[data-v-0c7b0e28]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-6[data-v-0c7b0e28]{margin-left:52%}.col-no-margin-l-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-7[data-v-0c7b0e28]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-8[data-v-0c7b0e28]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-9[data-v-0c7b0e28]{margin-left:78%}.col-no-margin-l-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-10[data-v-0c7b0e28]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-l-11[data-v-0c7b0e28]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0c7b0e28]{display:none!important}.l-visible[data-v-0c7b0e28]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-1[data-v-0c7b0e28]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-2[data-v-0c7b0e28]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-3[data-v-0c7b0e28]{margin-left:26%}.col-no-margin-xl-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-4[data-v-0c7b0e28]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-5[data-v-0c7b0e28]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-6[data-v-0c7b0e28]{margin-left:52%}.col-no-margin-xl-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-7[data-v-0c7b0e28]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-8[data-v-0c7b0e28]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-9[data-v-0c7b0e28]{margin-left:78%}.col-no-margin-xl-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-10[data-v-0c7b0e28]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xl-11[data-v-0c7b0e28]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0c7b0e28]{display:none!important}.xl-visible[data-v-0c7b0e28]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0c7b0e28]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0c7b0e28]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0c7b0e28]{margin-left:26%}.col-no-margin-xxl-3[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0c7b0e28]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0c7b0e28]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0c7b0e28]{margin-left:52%}.col-no-margin-xxl-6[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0c7b0e28]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0c7b0e28]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0c7b0e28]{margin-left:78%}.col-no-margin-xxl-9[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0c7b0e28]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0c7b0e28]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0c7b0e28]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0c7b0e28]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0c7b0e28]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0c7b0e28]{display:none!important}.xxl-visible[data-v-0c7b0e28]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0c7b0e28]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0c7b0e28]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0c7b0e28]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0c7b0e28]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0c7b0e28]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0c7b0e28]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0c7b0e28]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0c7b0e28]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0c7b0e28]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0c7b0e28]{display:none!important}}.vertical-center[data-v-0c7b0e28]{display:flex;align-items:center}.horizontal-center[data-v-0c7b0e28]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0c7b0e28]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0c7b0e28]{display:none!important}.no-content[data-v-0c7b0e28]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0c7b0e28]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0c7b0e28]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0c7b0e28]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0c7b0e28]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0c7b0e28]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0c7b0e28]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0c7b0e28],.btn[data-v-0c7b0e28],button[data-v-0c7b0e28]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0c7b0e28],.btn-default[type=submit][data-v-0c7b0e28],.btn.btn-primary[data-v-0c7b0e28],.btn[type=submit][data-v-0c7b0e28],button.btn-primary[data-v-0c7b0e28],button[type=submit][data-v-0c7b0e28]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-0c7b0e28]:hover,.btn[data-v-0c7b0e28]:hover,button[data-v-0c7b0e28]:hover{color:#35b870}.btn .icon[data-v-0c7b0e28],.btn-default .icon[data-v-0c7b0e28],button .icon[data-v-0c7b0e28]{margin-right:.5em}.btn-default[data-v-0c7b0e28]:disabled,.btn-default[disabled][data-v-0c7b0e28],.btn[data-v-0c7b0e28]:disabled,.btn[disabled][data-v-0c7b0e28],button[data-v-0c7b0e28]:disabled,button[disabled][data-v-0c7b0e28]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-0c7b0e28]{cursor:grab!important}.dragged[data-v-0c7b0e28]{opacity:.5!important}input[type=password][data-v-0c7b0e28],input[type=text][data-v-0c7b0e28]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0c7b0e28]:focus,input[type=text][data-v-0c7b0e28]:focus{border:1px solid #35b870}button[data-v-0c7b0e28],input[data-v-0c7b0e28]{outline:none}input[type=text][data-v-0c7b0e28]:hover,textarea[data-v-0c7b0e28]:hover{border:1px solid #9cdfb0}ul[data-v-0c7b0e28]{margin:0;padding:0;list-style:none}a[data-v-0c7b0e28]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0c7b0e28]:hover{color:#35b870}[data-v-0c7b0e28]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0c7b0e28]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0c7b0e28]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0c7b0e28]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-0c7b0e28]{color:#ad1717}body[data-v-0c7b0e28]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0c7b0e28] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0c7b0e28] .nav .path{cursor:pointer}.browser[data-v-0c7b0e28] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0c7b0e28] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-0c7b0e28]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-0c7b0e28]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0c7b0e28],input[type=number][data-v-0c7b0e28],input[type=password][data-v-0c7b0e28],input[type=search][data-v-0c7b0e28],input[type=text][data-v-0c7b0e28],input[type=time][data-v-0c7b0e28]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-0c7b0e28]:hover,input[type=number][data-v-0c7b0e28]:hover,input[type=password][data-v-0c7b0e28]:hover,input[type=search][data-v-0c7b0e28]:hover,input[type=text][data-v-0c7b0e28]:hover,input[type=time][data-v-0c7b0e28]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0c7b0e28]:focus,input[type=number][data-v-0c7b0e28]:focus,input[type=password][data-v-0c7b0e28]:focus,input[type=search][data-v-0c7b0e28]:focus,input[type=text][data-v-0c7b0e28]:focus,input[type=time][data-v-0c7b0e28]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0c7b0e28],input[type=number].with-icon[data-v-0c7b0e28],input[type=password].with-icon[data-v-0c7b0e28],input[type=search].with-icon[data-v-0c7b0e28],input[type=text].with-icon[data-v-0c7b0e28],input[type=time].with-icon[data-v-0c7b0e28]{padding-left:.3em}input[type=search][data-v-0c7b0e28],input[type=text][data-v-0c7b0e28]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0c7b0e28]{animation-fill-mode:both;animation-name:fadeIn-0c7b0e28;-webkit-animation-name:fadeIn-0c7b0e28}.fade-in[data-v-0c7b0e28],.fade-out[data-v-0c7b0e28]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0c7b0e28]{animation-fill-mode:both;animation-name:fadeOut-0c7b0e28;-webkit-animation-name:fadeOut-0c7b0e28}.expand[data-v-0c7b0e28]{animation-fill-mode:both;animation-name:expand-0c7b0e28;-webkit-animation-name:expand-0c7b0e28}.expand[data-v-0c7b0e28],.shrink[data-v-0c7b0e28]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-0c7b0e28]{animation-fill-mode:both;animation-name:shrink-0c7b0e28;-webkit-animation-name:shrink-0c7b0e28}.fold[data-v-0c7b0e28]{animation-fill-mode:both;animation-name:fold-0c7b0e28;-webkit-animation-name:fold-0c7b0e28}.fold[data-v-0c7b0e28],.unfold[data-v-0c7b0e28]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-0c7b0e28]{animation-fill-mode:both;animation-name:unfold-0c7b0e28;-webkit-animation-name:unfold-0c7b0e28}.dim[data-v-0c7b0e28]{animation-fill-mode:both;animation-name:dim-0c7b0e28;-webkit-animation-name:dim-0c7b0e28}.brighten[data-v-0c7b0e28],.dim[data-v-0c7b0e28]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-0c7b0e28]{animation-fill-mode:both;animation-name:brighten-0c7b0e28;-webkit-animation-name:brighten-0c7b0e28}@keyframes fadeIn-0c7b0e28{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0c7b0e28{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-0c7b0e28{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-0c7b0e28{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-0c7b0e28{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-0c7b0e28{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-0c7b0e28{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-0c7b0e28{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-0c7b0e28]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0c7b0e28;-webkit-animation-name:glow-0c7b0e28}.loop[data-v-0c7b0e28]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0c7b0e28{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0c7b0e28]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0c7b0e28]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0c7b0e28]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-0c7b0e28]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-0c7b0e28]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-0c7b0e28]{background:#8fefb7}.item.selected[data-v-0c7b0e28]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-0c7b0e28]{border-top:2px solid #35b870}.item[data-v-0c7b0e28]::-moz-selection{background:transparent!important}.item[data-v-0c7b0e28]::selection{background:transparent!important}.item .title[data-v-0c7b0e28]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-0c7b0e28]{display:inline-flex;align-items:center}.item .side.right[data-v-0c7b0e28]{display:inline-flex;justify-content:right}.item .actions[data-v-0c7b0e28],.item .duration[data-v-0c7b0e28]{display:inline-flex;align-items:center}.item .duration[data-v-0c7b0e28]{font-size:.85em;opacity:.7}.item .actions[data-v-0c7b0e28] button{opacity:.65}.item .icon[data-v-0c7b0e28]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-0c7b0e28] .dropdown-container .item{box-shadow:none}.item[data-v-0c7b0e28] .dropdown-container button{background:none;border:none}.item[data-v-0c7b0e28] .dropdown-container button:hover{color:#35b870}[data-v-0c7b0e28] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-0c7b0e28] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-0c7b0e28] .table-row{flex-direction:row;align-items:center}}[data-v-0c7b0e28] .table-row .title,[data-v-0c7b0e28] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-0c7b0e28] .table-row .title,[data-v-0c7b0e28] .table-row .value{display:inline-flex}}[data-v-0c7b0e28] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-0c7b0e28] .table-row .title{width:30%}[data-v-0c7b0e28] .table-row .value{justify-content:right}}.browser[data-v-0c7b0e28]{height:100%;display:flex;flex-direction:column}.browser .item .actions[data-v-0c7b0e28]{display:inline-flex;justify-content:right}.browser .items[data-v-0c7b0e28]{height:calc(100% - 2.5em);overflow:auto}.browser .nav[data-v-0c7b0e28]{width:100%;display:flex;flex-direction:row;padding:0!important}.browser .nav .btn-container[data-v-0c7b0e28]{width:1.5em;display:inline-flex;justify-content:center;align-items:center}.browser .nav .btn-container button[data-v-0c7b0e28]{padding:0;background:none;border:none;cursor:pointer}.browser .nav .btn-container button[data-v-0c7b0e28]:hover{color:#35b870}.browser .nav .path-container[data-v-0c7b0e28]{flex-grow:1;display:inline-flex;flex-direction:row;overflow:auto;padding:.5em 1em}.browser .nav .path-container .path[data-v-0c7b0e28]{display:inline-flex;flex-direction:row;align-items:center;cursor:pointer}.browser .nav .path-container .separator[data-v-0c7b0e28]{width:1em;margin-right:.5em}.browser[data-v-0c7b0e28] .modal .body{display:flex;flex-direction:column;padding:0}.browser[data-v-0c7b0e28] .modal .modal-body{min-width:20em;max-width:100%}.browser[data-v-0c7b0e28] .modal ul{padding:1em 0 .5em 2em}.browser[data-v-0c7b0e28] .modal ul li{margin-bottom:.5em;list-style:disc}.browser .upload-file-container[data-v-0c7b0e28] .modal .modal-body{position:relative}.browser .copy-modal-container[data-v-0c7b0e28] .modal{width:100%}.browser .copy-modal-container[data-v-0c7b0e28] .modal .content{width:80%;max-width:40em}.browser .copy-modal-container[data-v-0c7b0e28] .modal .body{width:100%;height:100%}.browser .copy-modal-container[data-v-0c7b0e28] .modal .modal-body{width:100%;height:100%;position:relative} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8434.61db845a.css b/platypush/backend/http/webapp/dist/static/css/8434.61db845a.css new file mode 100644 index 0000000000..8cdbe5ce5e --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/8434.61db845a.css @@ -0,0 +1 @@ +.col-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-46a825e6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-46a825e6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-46a825e6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-46a825e6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-46a825e6]:first-child{margin-left:26%!important}.col-offset-3[data-v-46a825e6]:not(first-child){margin-left:30%!important}.col-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-46a825e6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-46a825e6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-46a825e6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-46a825e6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-46a825e6]:first-child{margin-left:52%!important}.col-offset-6[data-v-46a825e6]:not(first-child){margin-left:56%!important}.col-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-46a825e6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-46a825e6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-46a825e6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-46a825e6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-46a825e6]:first-child{margin-left:78%!important}.col-offset-9[data-v-46a825e6]:not(first-child){margin-left:82%!important}.col-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-46a825e6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-46a825e6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-46a825e6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-46a825e6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-1[data-v-46a825e6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-2[data-v-46a825e6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-3[data-v-46a825e6]{margin-left:26%}.col-no-margin-s-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-4[data-v-46a825e6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-5[data-v-46a825e6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-6[data-v-46a825e6]{margin-left:52%}.col-no-margin-s-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-7[data-v-46a825e6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-8[data-v-46a825e6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-9[data-v-46a825e6]{margin-left:78%}.col-no-margin-s-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-10[data-v-46a825e6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-46a825e6]:first-child{margin-left:0}.col-offset-s-11[data-v-46a825e6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-46a825e6]{display:none!important}.s-visible[data-v-46a825e6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-1[data-v-46a825e6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-2[data-v-46a825e6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-3[data-v-46a825e6]{margin-left:26%}.col-no-margin-m-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-4[data-v-46a825e6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-5[data-v-46a825e6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-6[data-v-46a825e6]{margin-left:52%}.col-no-margin-m-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-7[data-v-46a825e6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-8[data-v-46a825e6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-9[data-v-46a825e6]{margin-left:78%}.col-no-margin-m-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-10[data-v-46a825e6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-46a825e6]:first-child{margin-left:0}.col-offset-m-11[data-v-46a825e6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-46a825e6]{display:none!important}.m-visible[data-v-46a825e6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-1[data-v-46a825e6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-2[data-v-46a825e6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-3[data-v-46a825e6]{margin-left:26%}.col-no-margin-l-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-4[data-v-46a825e6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-5[data-v-46a825e6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-6[data-v-46a825e6]{margin-left:52%}.col-no-margin-l-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-7[data-v-46a825e6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-8[data-v-46a825e6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-9[data-v-46a825e6]{margin-left:78%}.col-no-margin-l-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-10[data-v-46a825e6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-46a825e6]:first-child{margin-left:0}.col-offset-l-11[data-v-46a825e6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-46a825e6]{display:none!important}.l-visible[data-v-46a825e6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-1[data-v-46a825e6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-2[data-v-46a825e6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-3[data-v-46a825e6]{margin-left:26%}.col-no-margin-xl-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-4[data-v-46a825e6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-5[data-v-46a825e6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-6[data-v-46a825e6]{margin-left:52%}.col-no-margin-xl-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-7[data-v-46a825e6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-8[data-v-46a825e6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-9[data-v-46a825e6]{margin-left:78%}.col-no-margin-xl-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-10[data-v-46a825e6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xl-11[data-v-46a825e6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-46a825e6]{display:none!important}.xl-visible[data-v-46a825e6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-46a825e6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-46a825e6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-46a825e6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-46a825e6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-46a825e6]{margin-left:26%}.col-no-margin-xxl-3[data-v-46a825e6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-46a825e6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-46a825e6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-46a825e6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-46a825e6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-46a825e6]{margin-left:52%}.col-no-margin-xxl-6[data-v-46a825e6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-46a825e6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-46a825e6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-46a825e6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-46a825e6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-46a825e6]{margin-left:78%}.col-no-margin-xxl-9[data-v-46a825e6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-46a825e6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-46a825e6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-46a825e6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-46a825e6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-46a825e6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-46a825e6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-46a825e6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-46a825e6]{display:none!important}.xxl-visible[data-v-46a825e6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-46a825e6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-46a825e6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-46a825e6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-46a825e6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-46a825e6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-46a825e6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-46a825e6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-46a825e6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-46a825e6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-46a825e6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-46a825e6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-46a825e6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-46a825e6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-46a825e6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-46a825e6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-46a825e6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-46a825e6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-46a825e6]{display:none!important}}.vertical-center[data-v-46a825e6]{display:flex;align-items:center}.horizontal-center[data-v-46a825e6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-46a825e6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-46a825e6]{display:none!important}.no-content[data-v-46a825e6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-46a825e6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-46a825e6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-46a825e6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-46a825e6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-46a825e6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-46a825e6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-46a825e6],.btn[data-v-46a825e6],button[data-v-46a825e6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-46a825e6],.btn-default[type=submit][data-v-46a825e6],.btn.btn-primary[data-v-46a825e6],.btn[type=submit][data-v-46a825e6],button.btn-primary[data-v-46a825e6],button[type=submit][data-v-46a825e6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-46a825e6]:hover,.btn[data-v-46a825e6]:hover,button[data-v-46a825e6]:hover{color:#35b870}.btn .icon[data-v-46a825e6],.btn-default .icon[data-v-46a825e6],button .icon[data-v-46a825e6]{margin-right:.5em}.btn-default[data-v-46a825e6]:disabled,.btn-default[disabled][data-v-46a825e6],.btn[data-v-46a825e6]:disabled,.btn[disabled][data-v-46a825e6],button[data-v-46a825e6]:disabled,button[disabled][data-v-46a825e6]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-46a825e6]{cursor:grab!important}.dragged[data-v-46a825e6]{opacity:.5!important}input[type=password][data-v-46a825e6],input[type=text][data-v-46a825e6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-46a825e6]:focus,input[type=text][data-v-46a825e6]:focus{border:1px solid #35b870}button[data-v-46a825e6],input[data-v-46a825e6]{outline:none}input[type=text][data-v-46a825e6]:hover,textarea[data-v-46a825e6]:hover{border:1px solid #9cdfb0}ul[data-v-46a825e6]{margin:0;padding:0;list-style:none}a[data-v-46a825e6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-46a825e6]:hover{color:#35b870}[data-v-46a825e6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-46a825e6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-46a825e6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-46a825e6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-46a825e6]{color:#ad1717}body[data-v-46a825e6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-46a825e6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-46a825e6] .nav .path{cursor:pointer}.browser[data-v-46a825e6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-46a825e6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-46a825e6]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-46a825e6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-46a825e6],input[type=number][data-v-46a825e6],input[type=password][data-v-46a825e6],input[type=search][data-v-46a825e6],input[type=text][data-v-46a825e6],input[type=time][data-v-46a825e6]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-46a825e6]:hover,input[type=number][data-v-46a825e6]:hover,input[type=password][data-v-46a825e6]:hover,input[type=search][data-v-46a825e6]:hover,input[type=text][data-v-46a825e6]:hover,input[type=time][data-v-46a825e6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-46a825e6]:focus,input[type=number][data-v-46a825e6]:focus,input[type=password][data-v-46a825e6]:focus,input[type=search][data-v-46a825e6]:focus,input[type=text][data-v-46a825e6]:focus,input[type=time][data-v-46a825e6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-46a825e6],input[type=number].with-icon[data-v-46a825e6],input[type=password].with-icon[data-v-46a825e6],input[type=search].with-icon[data-v-46a825e6],input[type=text].with-icon[data-v-46a825e6],input[type=time].with-icon[data-v-46a825e6]{padding-left:.3em}input[type=search][data-v-46a825e6],input[type=text][data-v-46a825e6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-46a825e6]{animation-fill-mode:both;animation-name:fadeIn-46a825e6;-webkit-animation-name:fadeIn-46a825e6}.fade-in[data-v-46a825e6],.fade-out[data-v-46a825e6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-46a825e6]{animation-fill-mode:both;animation-name:fadeOut-46a825e6;-webkit-animation-name:fadeOut-46a825e6}.expand[data-v-46a825e6]{animation-fill-mode:both;animation-name:expand-46a825e6;-webkit-animation-name:expand-46a825e6}.expand[data-v-46a825e6],.shrink[data-v-46a825e6]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-46a825e6]{animation-fill-mode:both;animation-name:shrink-46a825e6;-webkit-animation-name:shrink-46a825e6}.fold[data-v-46a825e6]{animation-fill-mode:both;animation-name:fold-46a825e6;-webkit-animation-name:fold-46a825e6}.fold[data-v-46a825e6],.unfold[data-v-46a825e6]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-46a825e6]{animation-fill-mode:both;animation-name:unfold-46a825e6;-webkit-animation-name:unfold-46a825e6}.dim[data-v-46a825e6],.index .item[data-v-46a825e6]:hover{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:dim-46a825e6;-webkit-animation-name:dim-46a825e6}.brighten[data-v-46a825e6]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-46a825e6;-webkit-animation-name:brighten-46a825e6}@keyframes fadeIn-46a825e6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-46a825e6{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-46a825e6{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-46a825e6{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-46a825e6{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-46a825e6{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-46a825e6{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-46a825e6{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-46a825e6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-46a825e6;-webkit-animation-name:glow-46a825e6}.loop[data-v-46a825e6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-46a825e6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-46a825e6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-46a825e6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-46a825e6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-46a825e6] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-46a825e6] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-46a825e6] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-46a825e6] .item .icon i{font-size:40px}.grid[data-v-46a825e6] .item .icon img{width:40px;height:40px}[data-v-46a825e6] .nav{height:2.5em}.index[data-v-46a825e6]{height:100%;margin:2px 0 -2px 0}.index .items[data-v-46a825e6]{height:100%;display:grid;gap:1em;grid-template-columns:repeat(auto-fill,minmax(20em,1fr));overflow-y:auto;padding:1em}.index .item[data-v-46a825e6]{width:100%;height:15em;flex:1;position:relative;cursor:pointer}.index .item .image[data-v-46a825e6]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;overflow:hidden}.index .item .image img[data-v-46a825e6]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;margin:0}.index .item .image i[data-v-46a825e6]{font-size:5em}.index .item .name[data-v-46a825e6]{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;text-align:center;background-color:rgba(0,0,0,.75);color:#fff;font-size:1.75em;font-weight:700;padding:.5em}.index[data-v-46a825e6]{position:relative}.index[data-v-46a825e6] .items-wrapper{height:100%;position:relative;overflow:auto}.index[data-v-46a825e6] .items-wrapper .index{height:-moz-fit-content;height:fit-content}.index[data-v-46a825e6] .items-wrapper .items{overflow:hidden}.index .music-wrapper[data-v-46a825e6]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8498.194ed9cc.css b/platypush/backend/http/webapp/dist/static/css/8498.381007b7.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/8498.194ed9cc.css rename to platypush/backend/http/webapp/dist/static/css/8498.381007b7.css index c5999122af..4aaa256636 100644 --- a/platypush/backend/http/webapp/dist/static/css/8498.194ed9cc.css +++ b/platypush/backend/http/webapp/dist/static/css/8498.381007b7.css @@ -1 +1 @@ -.col-1[data-v-4b506716],.entity .head .icon[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4b506716]:first-child,.entity .head .icon[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4b506716]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4b506716]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4b506716]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4b506716]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4b506716],.entity .head .value-and-toggler[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4b506716]:first-child,.entity .head .value-and-toggler[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4b506716]:first-child{margin-left:26%!important}.col-offset-3[data-v-4b506716]:not(first-child){margin-left:30%!important}.col-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4b506716]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4b506716]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4b506716]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4b506716]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4b506716]:first-child{margin-left:52%!important}.col-offset-6[data-v-4b506716]:not(first-child){margin-left:56%!important}.col-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4b506716]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4b506716]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4b506716]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4b506716]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4b506716]:first-child{margin-left:78%!important}.col-offset-9[data-v-4b506716]:not(first-child){margin-left:82%!important}.col-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4b506716]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4b506716]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4b506716]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4b506716]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4b506716],.entity .head .value-container[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4b506716]:first-child,.entity .head .value-container[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-3[data-v-4b506716]{margin-left:26%}.col-no-margin-s-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-6[data-v-4b506716]{margin-left:52%}.col-no-margin-s-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4b506716],.entity .head .label[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4b506716]:first-child,.entity .head .label[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-9[data-v-4b506716]{margin-left:78%}.col-no-margin-s-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-4b506716],.attributes .child .value[data-v-4b506716],.col-s-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-4b506716]:first-child,.attributes .child .value[data-v-4b506716]:first-child,.col-s-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4b506716]{display:none!important}.s-visible[data-v-4b506716]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4b506716],.entity .head .value-container[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4b506716]:first-child,.entity .head .value-container[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-3[data-v-4b506716]{margin-left:26%}.col-no-margin-m-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-4b506716],.attributes .child .value[data-v-4b506716],.col-m-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-4b506716]:first-child,.attributes .child .value[data-v-4b506716]:first-child,.col-m-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-6[data-v-4b506716]{margin-left:52%}.col-no-margin-m-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4b506716],.entity .head .label[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4b506716]:first-child,.entity .head .label[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-9[data-v-4b506716]{margin-left:78%}.col-no-margin-m-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4b506716]{display:none!important}.m-visible[data-v-4b506716]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-3[data-v-4b506716]{margin-left:26%}.col-no-margin-l-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-6[data-v-4b506716]{margin-left:52%}.col-no-margin-l-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-9[data-v-4b506716]{margin-left:78%}.col-no-margin-l-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4b506716]{display:none!important}.l-visible[data-v-4b506716]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-3[data-v-4b506716]{margin-left:26%}.col-no-margin-xl-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-6[data-v-4b506716]{margin-left:52%}.col-no-margin-xl-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-9[data-v-4b506716]{margin-left:78%}.col-no-margin-xl-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4b506716]{display:none!important}.xl-visible[data-v-4b506716]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4b506716]{margin-left:26%}.col-no-margin-xxl-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4b506716]{margin-left:52%}.col-no-margin-xxl-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4b506716]{margin-left:78%}.col-no-margin-xxl-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4b506716]{display:none!important}.xxl-visible[data-v-4b506716]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4b506716]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4b506716]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4b506716]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4b506716]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4b506716]{display:none!important}}.vertical-center[data-v-4b506716]{display:flex;align-items:center}.horizontal-center[data-v-4b506716]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-4b506716],.pull-right[data-v-4b506716]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4b506716]{display:none!important}.no-content[data-v-4b506716]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4b506716]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4b506716]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4b506716]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4b506716]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4b506716]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4b506716]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4b506716],.btn[data-v-4b506716],button[data-v-4b506716]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4b506716],.btn-default[type=submit][data-v-4b506716],.btn.btn-primary[data-v-4b506716],.btn[type=submit][data-v-4b506716],button.btn-primary[data-v-4b506716],button[type=submit][data-v-4b506716]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4b506716],.btn-default .icon[data-v-4b506716],button .icon[data-v-4b506716]{margin-right:.5em}input[type=password][data-v-4b506716],input[type=text][data-v-4b506716]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4b506716]:focus,input[type=text][data-v-4b506716]:focus{border:1px solid #35b870}button[data-v-4b506716],input[data-v-4b506716]{outline:none}input[type=text][data-v-4b506716]:hover,textarea[data-v-4b506716]:hover{border:1px solid #9cdfb0}ul[data-v-4b506716]{margin:0;padding:0;list-style:none}a[data-v-4b506716]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4b506716]:hover{color:#35b870}[data-v-4b506716]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4b506716]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4b506716]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4b506716]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4b506716]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4b506716] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4b506716] .nav .path{cursor:pointer}.browser[data-v-4b506716] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4b506716] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4b506716]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4b506716],input[type=number][data-v-4b506716],input[type=password][data-v-4b506716],input[type=search][data-v-4b506716],input[type=text][data-v-4b506716],input[type=time][data-v-4b506716]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4b506716]:hover,input[type=number][data-v-4b506716]:hover,input[type=password][data-v-4b506716]:hover,input[type=search][data-v-4b506716]:hover,input[type=text][data-v-4b506716]:hover,input[type=time][data-v-4b506716]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4b506716]:focus,input[type=number][data-v-4b506716]:focus,input[type=password][data-v-4b506716]:focus,input[type=search][data-v-4b506716]:focus,input[type=text][data-v-4b506716]:focus,input[type=time][data-v-4b506716]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4b506716],input[type=number].with-icon[data-v-4b506716],input[type=password].with-icon[data-v-4b506716],input[type=search].with-icon[data-v-4b506716],input[type=text].with-icon[data-v-4b506716],input[type=time].with-icon[data-v-4b506716]{padding-left:.3em}input[type=search][data-v-4b506716],input[type=text][data-v-4b506716]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-4b506716],.fade-in[data-v-4b506716]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-4b506716;-webkit-animation-name:fadeIn-4b506716}.fade-out[data-v-4b506716]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-4b506716;-webkit-animation-name:fadeOut-4b506716}@keyframes fadeIn-4b506716{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4b506716{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-4b506716]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4b506716;-webkit-animation-name:glow-4b506716}.loop[data-v-4b506716]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4b506716{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4b506716]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4b506716]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4b506716]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-4b506716]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-4b506716]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-4b506716]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-4b506716]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-4b506716]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-4b506716]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-4b506716]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-4b506716]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-4b506716]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-4b506716]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-4b506716]{margin-right:.5em}.entity .head .icon[data-v-4b506716]:hover{color:#35b870}.entity .head .label[data-v-4b506716]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-4b506716]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-4b506716]:hover{color:#35b870}.entity .head .value[data-v-4b506716]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-4b506716]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-4b506716]{margin-right:2.5em}.entity .head .value-container[data-v-4b506716]{min-width:7em}.entity .head .unit[data-v-4b506716]{margin-left:.2em}.entity .head .pull-right[data-v-4b506716],.entity .head .value-container[data-v-4b506716]{padding-right:.5em}.entity .head .pull-right[data-v-4b506716] .power-switch,.entity .head .value-container[data-v-4b506716] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-4b506716]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-4b506716]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-4b506716]:hover{color:#35b870}.collapse-toggler[data-v-4b506716]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-4b506716]:hover{color:#35b870}.attributes .child[data-v-4b506716]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-4b506716]{flex-direction:column}}.attributes .child[data-v-4b506716]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-4b506716]:hover{cursor:auto}.attributes .child.head[data-v-4b506716]{cursor:pointer}.attributes .child.head[data-v-4b506716]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-4b506716]{font-weight:700}.attributes .child .value[data-v-4b506716]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-4b506716]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-4b506716]:last-child,.entity-container-wrapper.with-children[data-v-4b506716]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-4b506716]{animation:blink-animation-4b506716 1s steps(20,start)}@keyframes blink-animation-4b506716{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.weather-forecast-container .body[data-v-4b506716]{padding-top:0;max-height:35em;overflow-y:auto}.weather-forecast-container .body .child[data-v-4b506716]{padding:0;margin:0 -.5em}.weather-forecast-container .body .child[data-v-4b506716]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important;cursor:pointer}.weather-forecast-container .summary-container[data-v-4b506716]{display:flex;align-items:center;font-size:1.25em}.weather-forecast-container .summary-container .summary[data-v-4b506716]{display:flex;align-items:center;justify-content:flex-end;flex-grow:1;margin-right:.5em}.weather-forecast-container .summary-container .temperature[data-v-4b506716]{margin-left:.5em} \ No newline at end of file +.col-1[data-v-4b506716],.entity .head .icon[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4b506716]:first-child,.entity .head .icon[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4b506716]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4b506716]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4b506716]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4b506716]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4b506716],.entity .head .value-and-toggler[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4b506716]:first-child,.entity .head .value-and-toggler[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4b506716]:first-child{margin-left:26%!important}.col-offset-3[data-v-4b506716]:not(first-child){margin-left:30%!important}.col-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4b506716]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4b506716]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4b506716]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4b506716]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4b506716]:first-child{margin-left:52%!important}.col-offset-6[data-v-4b506716]:not(first-child){margin-left:56%!important}.col-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4b506716]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4b506716]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4b506716]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4b506716]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4b506716]:first-child{margin-left:78%!important}.col-offset-9[data-v-4b506716]:not(first-child){margin-left:82%!important}.col-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4b506716]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4b506716]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4b506716]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4b506716]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4b506716],.entity .head .value-container[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4b506716]:first-child,.entity .head .value-container[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-3[data-v-4b506716]{margin-left:26%}.col-no-margin-s-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-6[data-v-4b506716]{margin-left:52%}.col-no-margin-s-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4b506716],.entity .head .label[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4b506716]:first-child,.entity .head .label[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-9[data-v-4b506716]{margin-left:78%}.col-no-margin-s-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-s-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-4b506716],.attributes .child .value[data-v-4b506716],.col-s-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-4b506716]:first-child,.attributes .child .value[data-v-4b506716]:first-child,.col-s-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4b506716]{display:none!important}.s-visible[data-v-4b506716]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4b506716],.entity .head .value-container[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4b506716]:first-child,.entity .head .value-container[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-3[data-v-4b506716]{margin-left:26%}.col-no-margin-m-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-4b506716],.attributes .child .value[data-v-4b506716],.col-m-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-4b506716]:first-child,.attributes .child .value[data-v-4b506716]:first-child,.col-m-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-6[data-v-4b506716]{margin-left:52%}.col-no-margin-m-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4b506716],.entity .head .label[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4b506716]:first-child,.entity .head .label[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-9[data-v-4b506716]{margin-left:78%}.col-no-margin-m-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-m-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4b506716]{display:none!important}.m-visible[data-v-4b506716]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-3[data-v-4b506716]{margin-left:26%}.col-no-margin-l-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-6[data-v-4b506716]{margin-left:52%}.col-no-margin-l-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-9[data-v-4b506716]{margin-left:78%}.col-no-margin-l-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-l-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4b506716]{display:none!important}.l-visible[data-v-4b506716]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-3[data-v-4b506716]{margin-left:26%}.col-no-margin-xl-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-6[data-v-4b506716]{margin-left:52%}.col-no-margin-xl-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-9[data-v-4b506716]{margin-left:78%}.col-no-margin-xl-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-xl-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4b506716]{display:none!important}.xl-visible[data-v-4b506716]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4b506716]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4b506716]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4b506716]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4b506716]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4b506716]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4b506716]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4b506716]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4b506716]{margin-left:26%}.col-no-margin-xxl-3[data-v-4b506716]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4b506716]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4b506716]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4b506716]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4b506716]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4b506716]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4b506716]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4b506716]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4b506716]{margin-left:52%}.col-no-margin-xxl-6[data-v-4b506716]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4b506716]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4b506716]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4b506716]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4b506716]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4b506716]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4b506716]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4b506716]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4b506716]{margin-left:78%}.col-no-margin-xxl-9[data-v-4b506716]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4b506716]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4b506716]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4b506716]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4b506716]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4b506716]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4b506716]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4b506716]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4b506716]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4b506716]{display:none!important}.xxl-visible[data-v-4b506716]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4b506716]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4b506716]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4b506716]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4b506716]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4b506716]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4b506716]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4b506716]{display:none!important}}.vertical-center[data-v-4b506716]{display:flex;align-items:center}.horizontal-center[data-v-4b506716]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-4b506716],.pull-right[data-v-4b506716]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4b506716]{display:none!important}.no-content[data-v-4b506716]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4b506716]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4b506716]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4b506716]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4b506716]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4b506716]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4b506716]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4b506716],.btn[data-v-4b506716],button[data-v-4b506716]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4b506716],.btn-default[type=submit][data-v-4b506716],.btn.btn-primary[data-v-4b506716],.btn[type=submit][data-v-4b506716],button.btn-primary[data-v-4b506716],button[type=submit][data-v-4b506716]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-4b506716]:hover,.btn[data-v-4b506716]:hover,button[data-v-4b506716]:hover{color:#35b870}.btn .icon[data-v-4b506716],.btn-default .icon[data-v-4b506716],button .icon[data-v-4b506716]{margin-right:.5em}.btn-default[data-v-4b506716]:disabled,.btn-default[disabled][data-v-4b506716],.btn[data-v-4b506716]:disabled,.btn[disabled][data-v-4b506716],button[data-v-4b506716]:disabled,button[disabled][data-v-4b506716]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-4b506716]{cursor:grab!important}.dragged[data-v-4b506716]{opacity:.5!important}input[type=password][data-v-4b506716],input[type=text][data-v-4b506716]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4b506716]:focus,input[type=text][data-v-4b506716]:focus{border:1px solid #35b870}button[data-v-4b506716],input[data-v-4b506716]{outline:none}input[type=text][data-v-4b506716]:hover,textarea[data-v-4b506716]:hover{border:1px solid #9cdfb0}ul[data-v-4b506716]{margin:0;padding:0;list-style:none}a[data-v-4b506716]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4b506716]:hover{color:#35b870}[data-v-4b506716]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4b506716]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4b506716]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4b506716]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-4b506716]{color:#ad1717}body[data-v-4b506716]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4b506716] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4b506716] .nav .path{cursor:pointer}.browser[data-v-4b506716] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4b506716] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-4b506716]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-4b506716]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4b506716],input[type=number][data-v-4b506716],input[type=password][data-v-4b506716],input[type=search][data-v-4b506716],input[type=text][data-v-4b506716],input[type=time][data-v-4b506716]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-4b506716]:hover,input[type=number][data-v-4b506716]:hover,input[type=password][data-v-4b506716]:hover,input[type=search][data-v-4b506716]:hover,input[type=text][data-v-4b506716]:hover,input[type=time][data-v-4b506716]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4b506716]:focus,input[type=number][data-v-4b506716]:focus,input[type=password][data-v-4b506716]:focus,input[type=search][data-v-4b506716]:focus,input[type=text][data-v-4b506716]:focus,input[type=time][data-v-4b506716]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4b506716],input[type=number].with-icon[data-v-4b506716],input[type=password].with-icon[data-v-4b506716],input[type=search].with-icon[data-v-4b506716],input[type=text].with-icon[data-v-4b506716],input[type=time].with-icon[data-v-4b506716]{padding-left:.3em}input[type=search][data-v-4b506716],input[type=text][data-v-4b506716]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-4b506716],.fade-in[data-v-4b506716]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-4b506716;-webkit-animation-name:fadeIn-4b506716}.fade-out[data-v-4b506716]{animation-fill-mode:both;animation-name:fadeOut-4b506716;-webkit-animation-name:fadeOut-4b506716}.expand[data-v-4b506716],.fade-out[data-v-4b506716]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-4b506716]{animation-fill-mode:both;animation-name:expand-4b506716;-webkit-animation-name:expand-4b506716}.shrink[data-v-4b506716]{animation-fill-mode:both;animation-name:shrink-4b506716;-webkit-animation-name:shrink-4b506716}.fold[data-v-4b506716],.shrink[data-v-4b506716]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-4b506716]{animation-fill-mode:both;animation-name:fold-4b506716;-webkit-animation-name:fold-4b506716}.unfold[data-v-4b506716]{animation-fill-mode:both;animation-name:unfold-4b506716;-webkit-animation-name:unfold-4b506716}.dim[data-v-4b506716],.unfold[data-v-4b506716]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-4b506716]{animation-fill-mode:both;animation-name:dim-4b506716;-webkit-animation-name:dim-4b506716}.brighten[data-v-4b506716]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-4b506716;-webkit-animation-name:brighten-4b506716}@keyframes fadeIn-4b506716{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4b506716{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-4b506716{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-4b506716{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-4b506716{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-4b506716{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-4b506716{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-4b506716{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-4b506716]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4b506716;-webkit-animation-name:glow-4b506716}.loop[data-v-4b506716]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4b506716{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4b506716]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4b506716]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4b506716]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-4b506716]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-4b506716]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-4b506716]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-4b506716]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-4b506716]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-4b506716]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-4b506716]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-4b506716]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-4b506716]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-4b506716]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-4b506716]{margin-right:.5em}.entity .head .icon[data-v-4b506716]:hover{color:#35b870}.entity .head .label[data-v-4b506716]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-4b506716]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-4b506716]:hover{color:#35b870}.entity .head .value[data-v-4b506716]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-4b506716]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-4b506716]{margin-right:2.5em}.entity .head .value-container[data-v-4b506716]{min-width:7em}.entity .head .unit[data-v-4b506716]{margin-left:.2em}.entity .head .pull-right[data-v-4b506716],.entity .head .value-container[data-v-4b506716]{padding-right:.5em}.entity .head .pull-right[data-v-4b506716] .power-switch,.entity .head .value-container[data-v-4b506716] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-4b506716]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-4b506716]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-4b506716]:hover{color:#35b870}.collapse-toggler[data-v-4b506716]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-4b506716]:hover{color:#35b870}.attributes .child[data-v-4b506716]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-4b506716]{flex-direction:column}}.attributes .child[data-v-4b506716]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-4b506716]:hover{cursor:auto}.attributes .child.head[data-v-4b506716]{cursor:pointer}.attributes .child.head[data-v-4b506716]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-4b506716]{font-weight:700}.attributes .child .value[data-v-4b506716]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-4b506716]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-4b506716]:last-child,.entity-container-wrapper.with-children[data-v-4b506716]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-4b506716]{animation:blink-animation-4b506716 1s steps(20,start)}@keyframes blink-animation-4b506716{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.weather-forecast-container .body[data-v-4b506716]{padding-top:0;max-height:35em;overflow-y:auto}.weather-forecast-container .body .child[data-v-4b506716]{padding:0;margin:0 -.5em}.weather-forecast-container .body .child[data-v-4b506716]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important;cursor:pointer}.weather-forecast-container .summary-container[data-v-4b506716]{display:flex;align-items:center;font-size:1.25em}.weather-forecast-container .summary-container .summary[data-v-4b506716]{display:flex;align-items:center;justify-content:flex-end;flex-grow:1;margin-right:.5em}.weather-forecast-container .summary-container .temperature[data-v-4b506716]{margin-left:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8590.88d3487c.css b/platypush/backend/http/webapp/dist/static/css/8590.88d3487c.css deleted file mode 100644 index 0e89901940..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/8590.88d3487c.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-af0b14d0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-af0b14d0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-af0b14d0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-af0b14d0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-af0b14d0]:first-child{margin-left:26%!important}.col-offset-3[data-v-af0b14d0]:not(first-child){margin-left:30%!important}.col-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-af0b14d0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-af0b14d0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-af0b14d0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-af0b14d0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-af0b14d0]:first-child{margin-left:52%!important}.col-offset-6[data-v-af0b14d0]:not(first-child){margin-left:56%!important}.col-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-af0b14d0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-af0b14d0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-af0b14d0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-af0b14d0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-af0b14d0]:first-child{margin-left:78%!important}.col-offset-9[data-v-af0b14d0]:not(first-child){margin-left:82%!important}.col-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-af0b14d0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-af0b14d0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-af0b14d0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-af0b14d0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-1[data-v-af0b14d0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-2[data-v-af0b14d0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-3[data-v-af0b14d0]{margin-left:26%}.col-no-margin-s-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-4[data-v-af0b14d0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-5[data-v-af0b14d0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-6[data-v-af0b14d0]{margin-left:52%}.col-no-margin-s-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-7[data-v-af0b14d0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-8[data-v-af0b14d0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-9[data-v-af0b14d0]{margin-left:78%}.col-no-margin-s-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-10[data-v-af0b14d0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-s-11[data-v-af0b14d0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-af0b14d0]{display:none!important}.s-visible[data-v-af0b14d0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-1[data-v-af0b14d0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-2[data-v-af0b14d0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-3[data-v-af0b14d0]{margin-left:26%}.col-no-margin-m-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-4[data-v-af0b14d0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-5[data-v-af0b14d0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-6[data-v-af0b14d0]{margin-left:52%}.col-no-margin-m-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-7[data-v-af0b14d0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-8[data-v-af0b14d0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-9[data-v-af0b14d0]{margin-left:78%}.col-no-margin-m-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-10[data-v-af0b14d0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-m-11[data-v-af0b14d0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-af0b14d0]{display:none!important}.m-visible[data-v-af0b14d0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-1[data-v-af0b14d0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-2[data-v-af0b14d0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-3[data-v-af0b14d0]{margin-left:26%}.col-no-margin-l-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-4[data-v-af0b14d0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-5[data-v-af0b14d0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-6[data-v-af0b14d0]{margin-left:52%}.col-no-margin-l-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-7[data-v-af0b14d0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-8[data-v-af0b14d0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-9[data-v-af0b14d0]{margin-left:78%}.col-no-margin-l-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-10[data-v-af0b14d0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-l-11[data-v-af0b14d0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-af0b14d0]{display:none!important}.l-visible[data-v-af0b14d0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-1[data-v-af0b14d0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-2[data-v-af0b14d0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-3[data-v-af0b14d0]{margin-left:26%}.col-no-margin-xl-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-4[data-v-af0b14d0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-5[data-v-af0b14d0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-6[data-v-af0b14d0]{margin-left:52%}.col-no-margin-xl-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-7[data-v-af0b14d0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-8[data-v-af0b14d0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-9[data-v-af0b14d0]{margin-left:78%}.col-no-margin-xl-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-10[data-v-af0b14d0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xl-11[data-v-af0b14d0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-af0b14d0]{display:none!important}.xl-visible[data-v-af0b14d0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-af0b14d0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-af0b14d0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-af0b14d0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-af0b14d0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-af0b14d0]{margin-left:26%}.col-no-margin-xxl-3[data-v-af0b14d0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-af0b14d0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-af0b14d0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-af0b14d0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-af0b14d0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-af0b14d0]{margin-left:52%}.col-no-margin-xxl-6[data-v-af0b14d0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-af0b14d0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-af0b14d0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-af0b14d0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-af0b14d0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-af0b14d0]{margin-left:78%}.col-no-margin-xxl-9[data-v-af0b14d0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-af0b14d0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-af0b14d0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-af0b14d0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-af0b14d0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-af0b14d0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-af0b14d0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-af0b14d0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-af0b14d0]{display:none!important}.xxl-visible[data-v-af0b14d0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-af0b14d0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-af0b14d0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-af0b14d0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-af0b14d0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-af0b14d0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-af0b14d0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-af0b14d0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-af0b14d0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-af0b14d0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-af0b14d0]{display:none!important}}.vertical-center[data-v-af0b14d0]{display:flex;align-items:center}.horizontal-center[data-v-af0b14d0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-af0b14d0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-af0b14d0]{display:none!important}.no-content[data-v-af0b14d0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-af0b14d0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-af0b14d0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-af0b14d0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-af0b14d0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-af0b14d0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-af0b14d0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-af0b14d0],.btn[data-v-af0b14d0],button[data-v-af0b14d0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-af0b14d0],.btn-default[type=submit][data-v-af0b14d0],.btn.btn-primary[data-v-af0b14d0],.btn[type=submit][data-v-af0b14d0],button.btn-primary[data-v-af0b14d0],button[type=submit][data-v-af0b14d0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-af0b14d0],.btn-default .icon[data-v-af0b14d0],button .icon[data-v-af0b14d0]{margin-right:.5em}input[type=password][data-v-af0b14d0],input[type=text][data-v-af0b14d0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-af0b14d0]:focus,input[type=text][data-v-af0b14d0]:focus{border:1px solid #35b870}button[data-v-af0b14d0],input[data-v-af0b14d0]{outline:none}input[type=text][data-v-af0b14d0]:hover,textarea[data-v-af0b14d0]:hover{border:1px solid #9cdfb0}ul[data-v-af0b14d0]{margin:0;padding:0;list-style:none}a[data-v-af0b14d0]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-af0b14d0]:hover{color:#35b870}[data-v-af0b14d0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-af0b14d0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-af0b14d0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-af0b14d0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-af0b14d0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-af0b14d0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-af0b14d0] .nav .path{cursor:pointer}.browser[data-v-af0b14d0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-af0b14d0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-af0b14d0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-af0b14d0],input[type=number][data-v-af0b14d0],input[type=password][data-v-af0b14d0],input[type=search][data-v-af0b14d0],input[type=text][data-v-af0b14d0],input[type=time][data-v-af0b14d0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-af0b14d0]:hover,input[type=number][data-v-af0b14d0]:hover,input[type=password][data-v-af0b14d0]:hover,input[type=search][data-v-af0b14d0]:hover,input[type=text][data-v-af0b14d0]:hover,input[type=time][data-v-af0b14d0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-af0b14d0]:focus,input[type=number][data-v-af0b14d0]:focus,input[type=password][data-v-af0b14d0]:focus,input[type=search][data-v-af0b14d0]:focus,input[type=text][data-v-af0b14d0]:focus,input[type=time][data-v-af0b14d0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-af0b14d0],input[type=number].with-icon[data-v-af0b14d0],input[type=password].with-icon[data-v-af0b14d0],input[type=search].with-icon[data-v-af0b14d0],input[type=text].with-icon[data-v-af0b14d0],input[type=time].with-icon[data-v-af0b14d0]{padding-left:.3em}input[type=search][data-v-af0b14d0],input[type=text][data-v-af0b14d0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-af0b14d0]{animation-fill-mode:both;animation-name:fadeIn-af0b14d0;-webkit-animation-name:fadeIn-af0b14d0}.fade-in[data-v-af0b14d0],.fade-out[data-v-af0b14d0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-af0b14d0]{animation-fill-mode:both;animation-name:fadeOut-af0b14d0;-webkit-animation-name:fadeOut-af0b14d0}@keyframes fadeIn-af0b14d0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-af0b14d0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-af0b14d0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-af0b14d0;-webkit-animation-name:glow-af0b14d0}.loop[data-v-af0b14d0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-af0b14d0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-af0b14d0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-af0b14d0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-af0b14d0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}body[data-v-af0b14d0]{width:100vw;height:100vh;margin:0}.login-container[data-v-af0b14d0]{height:100%;display:flex;align-items:center;justify-content:center;background:#e4eae8}.header[data-v-af0b14d0]{font-size:1.2em;margin-bottom:2em;display:flex;justify-content:center;align-items:center}.header .logo[data-v-af0b14d0]{width:3em;height:3em;display:inline-flex;background-size:cover}.header .text[data-v-af0b14d0]{font-family:Poppins,sans-serif;margin-left:.5em}form[data-v-af0b14d0]{display:flex;flex-direction:column;padding:4em;border:1px solid #ccc;border-radius:3em;box-shadow:2px 2px 3px 3px #ddd;background:#fff}form .row[data-v-af0b14d0]{margin:.5em 0}form input[type=password][data-v-af0b14d0],form input[type=text][data-v-af0b14d0]{width:100%}form input[type=password][data-v-af0b14d0],form input[type=submit][data-v-af0b14d0]{border-radius:1em}form input[type=password][data-v-af0b14d0]{padding:.25em .5em}form .checkbox[data-v-af0b14d0]{display:flex;font-size:.8em}form .buttons[data-v-af0b14d0]{text-align:center}form .buttons input[type=submit][data-v-af0b14d0]{padding:.5em .75em}a[data-v-af0b14d0]{color:#5f7869} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8605.92b02564.css b/platypush/backend/http/webapp/dist/static/css/8605.92b02564.css deleted file mode 100644 index 38e2add10f..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/8605.92b02564.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-114e8ce6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-114e8ce6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-114e8ce6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-114e8ce6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-114e8ce6],[data-v-114e8ce6] .modal-body .row .attr{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-114e8ce6]:first-child,[data-v-114e8ce6] .modal-body .row .attr:first-child{margin-left:0}.col-no-margin-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-114e8ce6]:first-child{margin-left:26%!important}.col-offset-3[data-v-114e8ce6]:not(first-child){margin-left:30%!important}.col-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-114e8ce6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-114e8ce6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-114e8ce6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-114e8ce6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-114e8ce6]:first-child{margin-left:52%!important}.col-offset-6[data-v-114e8ce6]:not(first-child){margin-left:56%!important}.col-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-114e8ce6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-114e8ce6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-114e8ce6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-114e8ce6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-114e8ce6],[data-v-114e8ce6] .modal-body .row .value{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-114e8ce6]:first-child,[data-v-114e8ce6] .modal-body .row .value:first-child{margin-left:0}.col-no-margin-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-114e8ce6]:first-child{margin-left:78%!important}.col-offset-9[data-v-114e8ce6]:not(first-child){margin-left:82%!important}.col-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-114e8ce6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-114e8ce6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-114e8ce6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-114e8ce6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-1[data-v-114e8ce6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-2[data-v-114e8ce6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-3[data-v-114e8ce6]{margin-left:26%}.col-no-margin-s-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-4[data-v-114e8ce6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-5[data-v-114e8ce6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-6[data-v-114e8ce6]{margin-left:52%}.col-no-margin-s-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-7[data-v-114e8ce6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-8[data-v-114e8ce6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-9[data-v-114e8ce6]{margin-left:78%}.col-no-margin-s-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-10[data-v-114e8ce6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-s-11[data-v-114e8ce6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-114e8ce6]{display:none!important}.s-visible[data-v-114e8ce6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-1[data-v-114e8ce6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-2[data-v-114e8ce6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-3[data-v-114e8ce6]{margin-left:26%}.col-no-margin-m-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-4[data-v-114e8ce6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-5[data-v-114e8ce6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-6[data-v-114e8ce6]{margin-left:52%}.col-no-margin-m-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-7[data-v-114e8ce6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-8[data-v-114e8ce6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-9[data-v-114e8ce6]{margin-left:78%}.col-no-margin-m-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-10[data-v-114e8ce6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-m-11[data-v-114e8ce6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-114e8ce6]{display:none!important}.m-visible[data-v-114e8ce6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-1[data-v-114e8ce6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-2[data-v-114e8ce6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-3[data-v-114e8ce6]{margin-left:26%}.col-no-margin-l-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-4[data-v-114e8ce6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-5[data-v-114e8ce6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-6[data-v-114e8ce6]{margin-left:52%}.col-no-margin-l-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-7[data-v-114e8ce6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-8[data-v-114e8ce6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-9[data-v-114e8ce6]{margin-left:78%}.col-no-margin-l-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-10[data-v-114e8ce6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-l-11[data-v-114e8ce6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-114e8ce6]{display:none!important}.l-visible[data-v-114e8ce6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-1[data-v-114e8ce6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-2[data-v-114e8ce6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-3[data-v-114e8ce6]{margin-left:26%}.col-no-margin-xl-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-4[data-v-114e8ce6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-5[data-v-114e8ce6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-6[data-v-114e8ce6]{margin-left:52%}.col-no-margin-xl-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-7[data-v-114e8ce6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-8[data-v-114e8ce6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-9[data-v-114e8ce6]{margin-left:78%}.col-no-margin-xl-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-10[data-v-114e8ce6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xl-11[data-v-114e8ce6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-114e8ce6]{display:none!important}.xl-visible[data-v-114e8ce6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-114e8ce6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-114e8ce6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-114e8ce6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-114e8ce6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-114e8ce6]{margin-left:26%}.col-no-margin-xxl-3[data-v-114e8ce6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-114e8ce6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-114e8ce6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-114e8ce6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-114e8ce6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-114e8ce6]{margin-left:52%}.col-no-margin-xxl-6[data-v-114e8ce6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-114e8ce6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-114e8ce6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-114e8ce6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-114e8ce6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-114e8ce6]{margin-left:78%}.col-no-margin-xxl-9[data-v-114e8ce6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-114e8ce6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-114e8ce6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-114e8ce6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-114e8ce6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-114e8ce6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-114e8ce6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-114e8ce6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-114e8ce6]{display:none!important}.xxl-visible[data-v-114e8ce6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-114e8ce6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-114e8ce6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-114e8ce6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-114e8ce6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-114e8ce6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-114e8ce6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-114e8ce6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-114e8ce6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-114e8ce6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-114e8ce6]{display:none!important}}.vertical-center[data-v-114e8ce6]{display:flex;align-items:center}.horizontal-center[data-v-114e8ce6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-114e8ce6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-114e8ce6]{display:none!important}.no-content[data-v-114e8ce6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-114e8ce6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-114e8ce6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-114e8ce6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-114e8ce6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-114e8ce6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-114e8ce6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-114e8ce6],.btn[data-v-114e8ce6],button[data-v-114e8ce6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-114e8ce6],.btn-default[type=submit][data-v-114e8ce6],.btn.btn-primary[data-v-114e8ce6],.btn[type=submit][data-v-114e8ce6],button.btn-primary[data-v-114e8ce6],button[type=submit][data-v-114e8ce6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-114e8ce6],.btn-default .icon[data-v-114e8ce6],button .icon[data-v-114e8ce6]{margin-right:.5em}input[type=password][data-v-114e8ce6],input[type=text][data-v-114e8ce6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-114e8ce6]:focus,input[type=text][data-v-114e8ce6]:focus{border:1px solid #35b870}button[data-v-114e8ce6],input[data-v-114e8ce6]{outline:none}input[type=text][data-v-114e8ce6]:hover,textarea[data-v-114e8ce6]:hover{border:1px solid #9cdfb0}ul[data-v-114e8ce6]{margin:0;padding:0;list-style:none}a[data-v-114e8ce6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-114e8ce6]:hover{color:#35b870}[data-v-114e8ce6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-114e8ce6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-114e8ce6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-114e8ce6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-114e8ce6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-114e8ce6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-114e8ce6] .nav .path{cursor:pointer}.browser[data-v-114e8ce6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-114e8ce6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-114e8ce6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-114e8ce6],input[type=number][data-v-114e8ce6],input[type=password][data-v-114e8ce6],input[type=search][data-v-114e8ce6],input[type=text][data-v-114e8ce6],input[type=time][data-v-114e8ce6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-114e8ce6]:hover,input[type=number][data-v-114e8ce6]:hover,input[type=password][data-v-114e8ce6]:hover,input[type=search][data-v-114e8ce6]:hover,input[type=text][data-v-114e8ce6]:hover,input[type=time][data-v-114e8ce6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-114e8ce6]:focus,input[type=number][data-v-114e8ce6]:focus,input[type=password][data-v-114e8ce6]:focus,input[type=search][data-v-114e8ce6]:focus,input[type=text][data-v-114e8ce6]:focus,input[type=time][data-v-114e8ce6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-114e8ce6],input[type=number].with-icon[data-v-114e8ce6],input[type=password].with-icon[data-v-114e8ce6],input[type=search].with-icon[data-v-114e8ce6],input[type=text].with-icon[data-v-114e8ce6],input[type=time].with-icon[data-v-114e8ce6]{padding-left:.3em}input[type=search][data-v-114e8ce6],input[type=text][data-v-114e8ce6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-114e8ce6]{animation-fill-mode:both;animation-name:fadeIn-114e8ce6;-webkit-animation-name:fadeIn-114e8ce6}.fade-in[data-v-114e8ce6],.fade-out[data-v-114e8ce6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-114e8ce6]{animation-fill-mode:both;animation-name:fadeOut-114e8ce6;-webkit-animation-name:fadeOut-114e8ce6}@keyframes fadeIn-114e8ce6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-114e8ce6{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-114e8ce6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-114e8ce6;-webkit-animation-name:glow-114e8ce6}.loop[data-v-114e8ce6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-114e8ce6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-114e8ce6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-114e8ce6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-114e8ce6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-114e8ce6]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-114e8ce6]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-114e8ce6]{background:#8fefb7}.item.selected[data-v-114e8ce6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-114e8ce6]{border-top:2px solid #35b870}.item[data-v-114e8ce6]::-moz-selection{background:transparent!important}.item[data-v-114e8ce6]::selection{background:transparent!important}.item .title[data-v-114e8ce6]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-114e8ce6]{display:inline-flex;align-items:center}.item .side.right[data-v-114e8ce6]{display:inline-flex;justify-content:right}.item .actions[data-v-114e8ce6],.item .duration[data-v-114e8ce6]{display:inline-flex;align-items:center}.item .duration[data-v-114e8ce6]{font-size:.85em;opacity:.7}.item .actions[data-v-114e8ce6] button{opacity:.65}.item .icon[data-v-114e8ce6]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-114e8ce6] .dropdown-container .item{box-shadow:none}.item[data-v-114e8ce6] .dropdown-container button{background:none;border:none}.item[data-v-114e8ce6] .dropdown-container button:hover{color:#35b870}[data-v-114e8ce6] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-114e8ce6] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-114e8ce6] .table-row{flex-direction:row;align-items:center}}[data-v-114e8ce6] .table-row .title,[data-v-114e8ce6] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-114e8ce6] .table-row .title,[data-v-114e8ce6] .table-row .value{display:inline-flex}}[data-v-114e8ce6] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-114e8ce6] .table-row .title{width:30%}[data-v-114e8ce6] .table-row .value{justify-content:right}}.torrent-transfers[data-v-114e8ce6]{height:100%;background:#fff}.torrent-transfers .no-content[data-v-114e8ce6]{height:100%}[data-v-114e8ce6] .modal-body .row{display:flex;border-bottom:1px solid #e1e4e8;padding:.5em .25em;border-radius:.5em}[data-v-114e8ce6] .modal-body .row:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-114e8ce6] .modal-body .row .attr{display:inline-flex}[data-v-114e8ce6] .modal-body .row .value{display:inline-flex;justify-content:right}[data-v-114e8ce6] .modal-body .row .value.nowrap{overflow:hidden;white-space:nowrap;text-overflow:clip}[data-v-114e8ce6] .modal-body .files-container{flex-direction:column}[data-v-114e8ce6] .modal-body .file{margin-bottom:.5em;padding-bottom:.5em;border:#ccc}[data-v-114e8ce6] .modal-body .dropdown-container .row{box-shadow:none;border:none}[data-v-114e8ce6] .modal-body .dropdown-container button{border:none;background:none}[data-v-114e8ce6] .modal-body .dropdown-container button:hover{color:#35b870} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8621.dd386ad4.css b/platypush/backend/http/webapp/dist/static/css/8621.dc5673af.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/8621.dd386ad4.css rename to platypush/backend/http/webapp/dist/static/css/8621.dc5673af.css index 853af5fbce..45ad755589 100644 --- a/platypush/backend/http/webapp/dist/static/css/8621.dd386ad4.css +++ b/platypush/backend/http/webapp/dist/static/css/8621.dc5673af.css @@ -1 +1 @@ -.col-1[data-v-8baaebb4],.entity .head .icon[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-8baaebb4]:first-child,.entity .head .icon[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-8baaebb4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-8baaebb4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-8baaebb4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-8baaebb4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-8baaebb4],.entity .head .value-and-toggler[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-8baaebb4]:first-child,.entity .head .value-and-toggler[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-8baaebb4]:first-child{margin-left:26%!important}.col-offset-3[data-v-8baaebb4]:not(first-child){margin-left:30%!important}.col-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-8baaebb4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-8baaebb4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-8baaebb4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-8baaebb4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-8baaebb4]:first-child{margin-left:52%!important}.col-offset-6[data-v-8baaebb4]:not(first-child){margin-left:56%!important}.col-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-8baaebb4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-8baaebb4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-8baaebb4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-8baaebb4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-8baaebb4]:first-child{margin-left:78%!important}.col-offset-9[data-v-8baaebb4]:not(first-child){margin-left:82%!important}.col-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-8baaebb4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-8baaebb4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-8baaebb4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-8baaebb4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-8baaebb4],.entity .head .value-container[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-8baaebb4]:first-child,.entity .head .value-container[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-s-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-s-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-8baaebb4],.entity .head .label[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-8baaebb4]:first-child,.entity .head .label[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-s-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-8baaebb4],.attributes .child .value[data-v-8baaebb4],.col-s-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-8baaebb4]:first-child,.attributes .child .value[data-v-8baaebb4]:first-child,.col-s-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-8baaebb4]{display:none!important}.s-visible[data-v-8baaebb4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-8baaebb4],.entity .head .value-container[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-8baaebb4]:first-child,.entity .head .value-container[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-m-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-8baaebb4],.attributes .child .value[data-v-8baaebb4],.col-m-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-8baaebb4]:first-child,.attributes .child .value[data-v-8baaebb4]:first-child,.col-m-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-m-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-8baaebb4],.entity .head .label[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-8baaebb4]:first-child,.entity .head .label[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-m-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-8baaebb4]{display:none!important}.m-visible[data-v-8baaebb4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-l-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-l-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-l-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-8baaebb4]{display:none!important}.l-visible[data-v-8baaebb4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-xl-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-xl-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-xl-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-8baaebb4]{display:none!important}.xl-visible[data-v-8baaebb4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-xxl-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-xxl-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-xxl-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-8baaebb4]{display:none!important}.xxl-visible[data-v-8baaebb4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-8baaebb4]{display:none!important}}.vertical-center[data-v-8baaebb4]{display:flex;align-items:center}.horizontal-center[data-v-8baaebb4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-8baaebb4],.pull-right[data-v-8baaebb4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-8baaebb4]{display:none!important}.no-content[data-v-8baaebb4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-8baaebb4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-8baaebb4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-8baaebb4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-8baaebb4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-8baaebb4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-8baaebb4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-8baaebb4],.btn[data-v-8baaebb4],button[data-v-8baaebb4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-8baaebb4],.btn-default[type=submit][data-v-8baaebb4],.btn.btn-primary[data-v-8baaebb4],.btn[type=submit][data-v-8baaebb4],button.btn-primary[data-v-8baaebb4],button[type=submit][data-v-8baaebb4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-8baaebb4],.btn-default .icon[data-v-8baaebb4],button .icon[data-v-8baaebb4]{margin-right:.5em}input[type=password][data-v-8baaebb4],input[type=text][data-v-8baaebb4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-8baaebb4]:focus,input[type=text][data-v-8baaebb4]:focus{border:1px solid #35b870}button[data-v-8baaebb4],input[data-v-8baaebb4]{outline:none}input[type=text][data-v-8baaebb4]:hover,textarea[data-v-8baaebb4]:hover{border:1px solid #9cdfb0}ul[data-v-8baaebb4]{margin:0;padding:0;list-style:none}a[data-v-8baaebb4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-8baaebb4]:hover{color:#35b870}[data-v-8baaebb4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-8baaebb4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-8baaebb4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-8baaebb4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-8baaebb4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-8baaebb4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-8baaebb4] .nav .path{cursor:pointer}.browser[data-v-8baaebb4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-8baaebb4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-8baaebb4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-8baaebb4],input[type=number][data-v-8baaebb4],input[type=password][data-v-8baaebb4],input[type=search][data-v-8baaebb4],input[type=text][data-v-8baaebb4],input[type=time][data-v-8baaebb4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-8baaebb4]:hover,input[type=number][data-v-8baaebb4]:hover,input[type=password][data-v-8baaebb4]:hover,input[type=search][data-v-8baaebb4]:hover,input[type=text][data-v-8baaebb4]:hover,input[type=time][data-v-8baaebb4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-8baaebb4]:focus,input[type=number][data-v-8baaebb4]:focus,input[type=password][data-v-8baaebb4]:focus,input[type=search][data-v-8baaebb4]:focus,input[type=text][data-v-8baaebb4]:focus,input[type=time][data-v-8baaebb4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-8baaebb4],input[type=number].with-icon[data-v-8baaebb4],input[type=password].with-icon[data-v-8baaebb4],input[type=search].with-icon[data-v-8baaebb4],input[type=text].with-icon[data-v-8baaebb4],input[type=time].with-icon[data-v-8baaebb4]{padding-left:.3em}input[type=search][data-v-8baaebb4],input[type=text][data-v-8baaebb4]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-8baaebb4],.fade-in[data-v-8baaebb4]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-8baaebb4;-webkit-animation-name:fadeIn-8baaebb4}.fade-out[data-v-8baaebb4]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-8baaebb4;-webkit-animation-name:fadeOut-8baaebb4}@keyframes fadeIn-8baaebb4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-8baaebb4{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-8baaebb4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-8baaebb4;-webkit-animation-name:glow-8baaebb4}.loop[data-v-8baaebb4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-8baaebb4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-8baaebb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-8baaebb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-8baaebb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-8baaebb4]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-8baaebb4]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-8baaebb4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-8baaebb4]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-8baaebb4]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-8baaebb4]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-8baaebb4]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-8baaebb4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-8baaebb4]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-8baaebb4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-8baaebb4]{margin-right:.5em}.entity .head .icon[data-v-8baaebb4]:hover{color:#35b870}.entity .head .label[data-v-8baaebb4]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-8baaebb4]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-8baaebb4]:hover{color:#35b870}.entity .head .value[data-v-8baaebb4]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-8baaebb4]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-8baaebb4]{margin-right:2.5em}.entity .head .value-container[data-v-8baaebb4]{min-width:7em}.entity .head .unit[data-v-8baaebb4]{margin-left:.2em}.entity .head .pull-right[data-v-8baaebb4],.entity .head .value-container[data-v-8baaebb4]{padding-right:.5em}.entity .head .pull-right[data-v-8baaebb4] .power-switch,.entity .head .value-container[data-v-8baaebb4] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-8baaebb4]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-8baaebb4]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-8baaebb4]:hover{color:#35b870}.collapse-toggler[data-v-8baaebb4]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-8baaebb4]:hover{color:#35b870}.attributes .child[data-v-8baaebb4]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-8baaebb4]{flex-direction:column}}.attributes .child[data-v-8baaebb4]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-8baaebb4]:hover{cursor:auto}.attributes .child.head[data-v-8baaebb4]{cursor:pointer}.attributes .child.head[data-v-8baaebb4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-8baaebb4]{font-weight:700}.attributes .child .value[data-v-8baaebb4]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-8baaebb4]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-8baaebb4]:last-child,.entity-container-wrapper.with-children[data-v-8baaebb4]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-8baaebb4]{animation:blink-animation-8baaebb4 1s steps(20,start)}@keyframes blink-animation-8baaebb4{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-8baaebb4],.entity .head .icon[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-8baaebb4]:first-child,.entity .head .icon[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-8baaebb4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-8baaebb4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-8baaebb4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-8baaebb4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-8baaebb4],.entity .head .value-and-toggler[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-8baaebb4]:first-child,.entity .head .value-and-toggler[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-8baaebb4]:first-child{margin-left:26%!important}.col-offset-3[data-v-8baaebb4]:not(first-child){margin-left:30%!important}.col-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-8baaebb4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-8baaebb4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-8baaebb4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-8baaebb4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-8baaebb4]:first-child{margin-left:52%!important}.col-offset-6[data-v-8baaebb4]:not(first-child){margin-left:56%!important}.col-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-8baaebb4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-8baaebb4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-8baaebb4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-8baaebb4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-8baaebb4]:first-child{margin-left:78%!important}.col-offset-9[data-v-8baaebb4]:not(first-child){margin-left:82%!important}.col-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-8baaebb4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-8baaebb4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-8baaebb4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-8baaebb4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-8baaebb4],.entity .head .value-container[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-8baaebb4]:first-child,.entity .head .value-container[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-s-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-s-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-8baaebb4],.entity .head .label[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-8baaebb4]:first-child,.entity .head .label[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-s-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-s-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-8baaebb4],.attributes .child .value[data-v-8baaebb4],.col-s-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-8baaebb4]:first-child,.attributes .child .value[data-v-8baaebb4]:first-child,.col-s-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-8baaebb4]{display:none!important}.s-visible[data-v-8baaebb4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-8baaebb4],.entity .head .value-container[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-8baaebb4]:first-child,.entity .head .value-container[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-m-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-8baaebb4],.attributes .child .value[data-v-8baaebb4],.col-m-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-8baaebb4]:first-child,.attributes .child .value[data-v-8baaebb4]:first-child,.col-m-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-m-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-8baaebb4],.entity .head .label[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-8baaebb4]:first-child,.entity .head .label[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-m-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-m-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-8baaebb4]{display:none!important}.m-visible[data-v-8baaebb4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-l-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-l-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-l-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-l-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-8baaebb4]{display:none!important}.l-visible[data-v-8baaebb4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-xl-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-xl-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-xl-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xl-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-8baaebb4]{display:none!important}.xl-visible[data-v-8baaebb4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-8baaebb4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-8baaebb4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-8baaebb4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-8baaebb4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-8baaebb4]{margin-left:26%}.col-no-margin-xxl-3[data-v-8baaebb4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-8baaebb4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-8baaebb4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-8baaebb4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-8baaebb4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-8baaebb4]{margin-left:52%}.col-no-margin-xxl-6[data-v-8baaebb4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-8baaebb4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-8baaebb4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-8baaebb4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-8baaebb4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-8baaebb4]{margin-left:78%}.col-no-margin-xxl-9[data-v-8baaebb4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-8baaebb4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-8baaebb4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-8baaebb4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-8baaebb4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-8baaebb4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-8baaebb4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-8baaebb4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-8baaebb4]{display:none!important}.xxl-visible[data-v-8baaebb4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-8baaebb4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-8baaebb4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-8baaebb4]{display:none!important}}.vertical-center[data-v-8baaebb4]{display:flex;align-items:center}.horizontal-center[data-v-8baaebb4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-8baaebb4],.pull-right[data-v-8baaebb4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-8baaebb4]{display:none!important}.no-content[data-v-8baaebb4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-8baaebb4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-8baaebb4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-8baaebb4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-8baaebb4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-8baaebb4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-8baaebb4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-8baaebb4],.btn[data-v-8baaebb4],button[data-v-8baaebb4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-8baaebb4],.btn-default[type=submit][data-v-8baaebb4],.btn.btn-primary[data-v-8baaebb4],.btn[type=submit][data-v-8baaebb4],button.btn-primary[data-v-8baaebb4],button[type=submit][data-v-8baaebb4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-8baaebb4]:hover,.btn[data-v-8baaebb4]:hover,button[data-v-8baaebb4]:hover{color:#35b870}.btn .icon[data-v-8baaebb4],.btn-default .icon[data-v-8baaebb4],button .icon[data-v-8baaebb4]{margin-right:.5em}.btn-default[data-v-8baaebb4]:disabled,.btn-default[disabled][data-v-8baaebb4],.btn[data-v-8baaebb4]:disabled,.btn[disabled][data-v-8baaebb4],button[data-v-8baaebb4]:disabled,button[disabled][data-v-8baaebb4]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-8baaebb4]{cursor:grab!important}.dragged[data-v-8baaebb4]{opacity:.5!important}input[type=password][data-v-8baaebb4],input[type=text][data-v-8baaebb4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-8baaebb4]:focus,input[type=text][data-v-8baaebb4]:focus{border:1px solid #35b870}button[data-v-8baaebb4],input[data-v-8baaebb4]{outline:none}input[type=text][data-v-8baaebb4]:hover,textarea[data-v-8baaebb4]:hover{border:1px solid #9cdfb0}ul[data-v-8baaebb4]{margin:0;padding:0;list-style:none}a[data-v-8baaebb4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-8baaebb4]:hover{color:#35b870}[data-v-8baaebb4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-8baaebb4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-8baaebb4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-8baaebb4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-8baaebb4]{color:#ad1717}body[data-v-8baaebb4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-8baaebb4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-8baaebb4] .nav .path{cursor:pointer}.browser[data-v-8baaebb4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-8baaebb4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-8baaebb4]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-8baaebb4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-8baaebb4],input[type=number][data-v-8baaebb4],input[type=password][data-v-8baaebb4],input[type=search][data-v-8baaebb4],input[type=text][data-v-8baaebb4],input[type=time][data-v-8baaebb4]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-8baaebb4]:hover,input[type=number][data-v-8baaebb4]:hover,input[type=password][data-v-8baaebb4]:hover,input[type=search][data-v-8baaebb4]:hover,input[type=text][data-v-8baaebb4]:hover,input[type=time][data-v-8baaebb4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-8baaebb4]:focus,input[type=number][data-v-8baaebb4]:focus,input[type=password][data-v-8baaebb4]:focus,input[type=search][data-v-8baaebb4]:focus,input[type=text][data-v-8baaebb4]:focus,input[type=time][data-v-8baaebb4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-8baaebb4],input[type=number].with-icon[data-v-8baaebb4],input[type=password].with-icon[data-v-8baaebb4],input[type=search].with-icon[data-v-8baaebb4],input[type=text].with-icon[data-v-8baaebb4],input[type=time].with-icon[data-v-8baaebb4]{padding-left:.3em}input[type=search][data-v-8baaebb4],input[type=text][data-v-8baaebb4]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-8baaebb4],.fade-in[data-v-8baaebb4]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-8baaebb4;-webkit-animation-name:fadeIn-8baaebb4}.fade-out[data-v-8baaebb4]{animation-fill-mode:both;animation-name:fadeOut-8baaebb4;-webkit-animation-name:fadeOut-8baaebb4}.expand[data-v-8baaebb4],.fade-out[data-v-8baaebb4]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-8baaebb4]{animation-fill-mode:both;animation-name:expand-8baaebb4;-webkit-animation-name:expand-8baaebb4}.shrink[data-v-8baaebb4]{animation-fill-mode:both;animation-name:shrink-8baaebb4;-webkit-animation-name:shrink-8baaebb4}.fold[data-v-8baaebb4],.shrink[data-v-8baaebb4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-8baaebb4]{animation-fill-mode:both;animation-name:fold-8baaebb4;-webkit-animation-name:fold-8baaebb4}.unfold[data-v-8baaebb4]{animation-fill-mode:both;animation-name:unfold-8baaebb4;-webkit-animation-name:unfold-8baaebb4}.dim[data-v-8baaebb4],.unfold[data-v-8baaebb4]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-8baaebb4]{animation-fill-mode:both;animation-name:dim-8baaebb4;-webkit-animation-name:dim-8baaebb4}.brighten[data-v-8baaebb4]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-8baaebb4;-webkit-animation-name:brighten-8baaebb4}@keyframes fadeIn-8baaebb4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-8baaebb4{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-8baaebb4{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-8baaebb4{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-8baaebb4{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-8baaebb4{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-8baaebb4{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-8baaebb4{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-8baaebb4]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-8baaebb4;-webkit-animation-name:glow-8baaebb4}.loop[data-v-8baaebb4]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-8baaebb4{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-8baaebb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-8baaebb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-8baaebb4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-8baaebb4]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-8baaebb4]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-8baaebb4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-8baaebb4]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-8baaebb4]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-8baaebb4]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-8baaebb4]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-8baaebb4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-8baaebb4]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-8baaebb4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-8baaebb4]{margin-right:.5em}.entity .head .icon[data-v-8baaebb4]:hover{color:#35b870}.entity .head .label[data-v-8baaebb4]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-8baaebb4]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-8baaebb4]:hover{color:#35b870}.entity .head .value[data-v-8baaebb4]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-8baaebb4]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-8baaebb4]{margin-right:2.5em}.entity .head .value-container[data-v-8baaebb4]{min-width:7em}.entity .head .unit[data-v-8baaebb4]{margin-left:.2em}.entity .head .pull-right[data-v-8baaebb4],.entity .head .value-container[data-v-8baaebb4]{padding-right:.5em}.entity .head .pull-right[data-v-8baaebb4] .power-switch,.entity .head .value-container[data-v-8baaebb4] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-8baaebb4]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-8baaebb4]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-8baaebb4]:hover{color:#35b870}.collapse-toggler[data-v-8baaebb4]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-8baaebb4]:hover{color:#35b870}.attributes .child[data-v-8baaebb4]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-8baaebb4]{flex-direction:column}}.attributes .child[data-v-8baaebb4]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-8baaebb4]:hover{cursor:auto}.attributes .child.head[data-v-8baaebb4]{cursor:pointer}.attributes .child.head[data-v-8baaebb4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-8baaebb4]{font-weight:700}.attributes .child .value[data-v-8baaebb4]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-8baaebb4]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-8baaebb4]:last-child,.entity-container-wrapper.with-children[data-v-8baaebb4]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-8baaebb4]{animation:blink-animation-8baaebb4 1s steps(20,start)}@keyframes blink-animation-8baaebb4{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/864.b7e8560d.css b/platypush/backend/http/webapp/dist/static/css/864.b7e8560d.css new file mode 100644 index 0000000000..3d1169aef6 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/864.b7e8560d.css @@ -0,0 +1 @@ +.col-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d41c8404]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d41c8404]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d41c8404]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d41c8404]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d41c8404]:first-child{margin-left:26%!important}.col-offset-3[data-v-d41c8404]:not(first-child){margin-left:30%!important}.col-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d41c8404]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d41c8404]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d41c8404]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d41c8404]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d41c8404]:first-child{margin-left:52%!important}.col-offset-6[data-v-d41c8404]:not(first-child){margin-left:56%!important}.col-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d41c8404]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d41c8404]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d41c8404]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d41c8404]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d41c8404]:first-child{margin-left:78%!important}.col-offset-9[data-v-d41c8404]:not(first-child){margin-left:82%!important}.col-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d41c8404]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d41c8404]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d41c8404]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d41c8404]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-1[data-v-d41c8404]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-2[data-v-d41c8404]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-3[data-v-d41c8404]{margin-left:26%}.col-no-margin-s-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-4[data-v-d41c8404]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-5[data-v-d41c8404]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-6[data-v-d41c8404]{margin-left:52%}.col-no-margin-s-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-7[data-v-d41c8404]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-8[data-v-d41c8404]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-9[data-v-d41c8404]{margin-left:78%}.col-no-margin-s-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-10[data-v-d41c8404]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d41c8404]:first-child{margin-left:0}.col-offset-s-11[data-v-d41c8404]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d41c8404]{display:none!important}.s-visible[data-v-d41c8404]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-1[data-v-d41c8404]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-2[data-v-d41c8404]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-3[data-v-d41c8404]{margin-left:26%}.col-no-margin-m-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-4[data-v-d41c8404]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-5[data-v-d41c8404]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-6[data-v-d41c8404]{margin-left:52%}.col-no-margin-m-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-7[data-v-d41c8404]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-8[data-v-d41c8404]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-9[data-v-d41c8404]{margin-left:78%}.col-no-margin-m-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-10[data-v-d41c8404]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d41c8404]:first-child{margin-left:0}.col-offset-m-11[data-v-d41c8404]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d41c8404]{display:none!important}.m-visible[data-v-d41c8404]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-1[data-v-d41c8404]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-2[data-v-d41c8404]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-3[data-v-d41c8404]{margin-left:26%}.col-no-margin-l-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-4[data-v-d41c8404]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-5[data-v-d41c8404]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-6[data-v-d41c8404]{margin-left:52%}.col-no-margin-l-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-7[data-v-d41c8404]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-8[data-v-d41c8404]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-9[data-v-d41c8404]{margin-left:78%}.col-no-margin-l-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-10[data-v-d41c8404]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d41c8404]:first-child{margin-left:0}.col-offset-l-11[data-v-d41c8404]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d41c8404]{display:none!important}.l-visible[data-v-d41c8404]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-1[data-v-d41c8404]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-2[data-v-d41c8404]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-3[data-v-d41c8404]{margin-left:26%}.col-no-margin-xl-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-4[data-v-d41c8404]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-5[data-v-d41c8404]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-6[data-v-d41c8404]{margin-left:52%}.col-no-margin-xl-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-7[data-v-d41c8404]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-8[data-v-d41c8404]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-9[data-v-d41c8404]{margin-left:78%}.col-no-margin-xl-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-10[data-v-d41c8404]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xl-11[data-v-d41c8404]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d41c8404]{display:none!important}.xl-visible[data-v-d41c8404]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d41c8404]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d41c8404]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d41c8404]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d41c8404]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d41c8404]{margin-left:26%}.col-no-margin-xxl-3[data-v-d41c8404]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d41c8404]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d41c8404]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d41c8404]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d41c8404]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d41c8404]{margin-left:52%}.col-no-margin-xxl-6[data-v-d41c8404]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d41c8404]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d41c8404]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d41c8404]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d41c8404]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d41c8404]{margin-left:78%}.col-no-margin-xxl-9[data-v-d41c8404]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d41c8404]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d41c8404]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d41c8404]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d41c8404]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d41c8404]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d41c8404]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d41c8404]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d41c8404]{display:none!important}.xxl-visible[data-v-d41c8404]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d41c8404]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d41c8404]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d41c8404]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d41c8404]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d41c8404]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d41c8404]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d41c8404]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d41c8404]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d41c8404]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d41c8404]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d41c8404]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d41c8404]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d41c8404]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d41c8404]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d41c8404]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d41c8404]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d41c8404]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d41c8404]{display:none!important}}.vertical-center[data-v-d41c8404]{display:flex;align-items:center}.horizontal-center[data-v-d41c8404]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-d41c8404]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d41c8404]{display:none!important}.no-content[data-v-d41c8404]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d41c8404]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d41c8404]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d41c8404]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d41c8404]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d41c8404]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d41c8404]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d41c8404],.btn[data-v-d41c8404],button[data-v-d41c8404]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d41c8404],.btn-default[type=submit][data-v-d41c8404],.btn.btn-primary[data-v-d41c8404],.btn[type=submit][data-v-d41c8404],button.btn-primary[data-v-d41c8404],button[type=submit][data-v-d41c8404]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-d41c8404]:hover,.btn[data-v-d41c8404]:hover,button[data-v-d41c8404]:hover{color:#35b870}.btn .icon[data-v-d41c8404],.btn-default .icon[data-v-d41c8404],button .icon[data-v-d41c8404]{margin-right:.5em}.btn-default[data-v-d41c8404]:disabled,.btn-default[disabled][data-v-d41c8404],.btn[data-v-d41c8404]:disabled,.btn[disabled][data-v-d41c8404],button[data-v-d41c8404]:disabled,button[disabled][data-v-d41c8404]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-d41c8404]{cursor:grab!important}.dragged[data-v-d41c8404]{opacity:.5!important}input[type=password][data-v-d41c8404],input[type=text][data-v-d41c8404]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d41c8404]:focus,input[type=text][data-v-d41c8404]:focus{border:1px solid #35b870}button[data-v-d41c8404],input[data-v-d41c8404]{outline:none}input[type=text][data-v-d41c8404]:hover,textarea[data-v-d41c8404]:hover{border:1px solid #9cdfb0}ul[data-v-d41c8404]{margin:0;padding:0;list-style:none}a[data-v-d41c8404]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d41c8404]:hover{color:#35b870}[data-v-d41c8404]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d41c8404]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d41c8404]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d41c8404]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-d41c8404]{color:#ad1717}body[data-v-d41c8404]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d41c8404] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d41c8404] .nav .path{cursor:pointer}.browser[data-v-d41c8404] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d41c8404] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-d41c8404]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-d41c8404]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d41c8404],input[type=number][data-v-d41c8404],input[type=password][data-v-d41c8404],input[type=search][data-v-d41c8404],input[type=text][data-v-d41c8404],input[type=time][data-v-d41c8404]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-d41c8404]:hover,input[type=number][data-v-d41c8404]:hover,input[type=password][data-v-d41c8404]:hover,input[type=search][data-v-d41c8404]:hover,input[type=text][data-v-d41c8404]:hover,input[type=time][data-v-d41c8404]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d41c8404]:focus,input[type=number][data-v-d41c8404]:focus,input[type=password][data-v-d41c8404]:focus,input[type=search][data-v-d41c8404]:focus,input[type=text][data-v-d41c8404]:focus,input[type=time][data-v-d41c8404]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d41c8404],input[type=number].with-icon[data-v-d41c8404],input[type=password].with-icon[data-v-d41c8404],input[type=search].with-icon[data-v-d41c8404],input[type=text].with-icon[data-v-d41c8404],input[type=time].with-icon[data-v-d41c8404]{padding-left:.3em}input[type=search][data-v-d41c8404],input[type=text][data-v-d41c8404]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-d41c8404]{animation-fill-mode:both;animation-name:fadeIn-d41c8404;-webkit-animation-name:fadeIn-d41c8404}.fade-in[data-v-d41c8404],.fade-out[data-v-d41c8404]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-d41c8404]{animation-fill-mode:both;animation-name:fadeOut-d41c8404;-webkit-animation-name:fadeOut-d41c8404}.expand[data-v-d41c8404]{animation-fill-mode:both;animation-name:expand-d41c8404;-webkit-animation-name:expand-d41c8404}.expand[data-v-d41c8404],.shrink[data-v-d41c8404]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-d41c8404]{animation-fill-mode:both;animation-name:shrink-d41c8404;-webkit-animation-name:shrink-d41c8404}.fold[data-v-d41c8404]{animation-fill-mode:both;animation-name:fold-d41c8404;-webkit-animation-name:fold-d41c8404}.fold[data-v-d41c8404],.unfold[data-v-d41c8404]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-d41c8404]{animation-fill-mode:both;animation-name:unfold-d41c8404;-webkit-animation-name:unfold-d41c8404}.dim[data-v-d41c8404]{animation-fill-mode:both;animation-name:dim-d41c8404;-webkit-animation-name:dim-d41c8404}.brighten[data-v-d41c8404],.dim[data-v-d41c8404]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-d41c8404]{animation-fill-mode:both;animation-name:brighten-d41c8404;-webkit-animation-name:brighten-d41c8404}@keyframes fadeIn-d41c8404{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d41c8404{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-d41c8404{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-d41c8404{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-d41c8404{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-d41c8404{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-d41c8404{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-d41c8404{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-d41c8404]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d41c8404;-webkit-animation-name:glow-d41c8404}.loop[data-v-d41c8404]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d41c8404{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d41c8404]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d41c8404]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d41c8404]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entities-selectors-container[data-v-d41c8404]{width:100%;display:flex;align-items:center}.entities-selectors-container .selector[data-v-d41c8404]{height:100%;display:inline-flex}@media(max-width:330px){.entities-selectors-container .search-bar[data-v-d41c8404]{display:none}}.entities-selectors-container .search-bar[data-v-d41c8404]{margin:.25em 0}@media screen and (max-width:calc(768px - 1px)){.entities-selectors-container .search-bar[data-v-d41c8404]{width:100%;margin-right:2em}}@media screen and (min-width:769px){.entities-selectors-container .search-bar[data-v-d41c8404]{min-width:400px;margin-left:.5em}}.entities-selectors-container[data-v-d41c8404] .dropdown-container{height:100%;display:flex}.entities-selectors-container[data-v-d41c8404] .dropdown-container .dropdown{min-width:11em}.entities-selectors-container[data-v-d41c8404] .dropdown-container .icon.active{color:#32b646}.entities-selectors-container[data-v-d41c8404] .dropdown-container button{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8756.53bc55b1.css b/platypush/backend/http/webapp/dist/static/css/8756.53bc55b1.css new file mode 100644 index 0000000000..707303fda3 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/8756.53bc55b1.css @@ -0,0 +1 @@ +pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#000;background:#fff}.hljs-subst,.hljs-title{font-weight:400;color:#000}.hljs-title.function_{color:#7a7a43}.hljs-code,.hljs-comment,.hljs-quote{color:#8c8c8c;font-style:italic}.hljs-meta{color:#9e880d}.hljs-section{color:#871094}.hljs-built_in,.hljs-keyword,.hljs-literal,.hljs-meta .hljs-keyword,.hljs-name,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-selector-tag,.hljs-symbol,.hljs-template-tag,.hljs-type,.hljs-variable.language_{color:#0033b3}.hljs-attr,.hljs-property{color:#871094}.hljs-attribute{color:#174ad4}.hljs-number{color:#1750eb}.hljs-regexp{color:#264eff}.hljs-link{text-decoration:underline;color:#006dcc}.hljs-meta .hljs-string,.hljs-string{color:#067d17}.hljs-char.escape_{color:#0037a6}.hljs-doctag{text-decoration:underline}.hljs-template-variable{color:#248f8f}.hljs-addition{background:#bee6be}.hljs-deletion{background:#d6d6d6}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.col-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-19a576dd]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-19a576dd]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-19a576dd]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-19a576dd]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-19a576dd]:first-child{margin-left:26%!important}.col-offset-3[data-v-19a576dd]:not(first-child){margin-left:30%!important}.col-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-19a576dd]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-19a576dd]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-19a576dd]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-19a576dd]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-19a576dd]:first-child{margin-left:52%!important}.col-offset-6[data-v-19a576dd]:not(first-child){margin-left:56%!important}.col-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-19a576dd]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-19a576dd]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-19a576dd]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-19a576dd]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-19a576dd]:first-child{margin-left:78%!important}.col-offset-9[data-v-19a576dd]:not(first-child){margin-left:82%!important}.col-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-19a576dd]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-19a576dd]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-19a576dd]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-19a576dd]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-1[data-v-19a576dd]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-2[data-v-19a576dd]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-3[data-v-19a576dd]{margin-left:26%}.col-no-margin-s-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-4[data-v-19a576dd]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-5[data-v-19a576dd]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-6[data-v-19a576dd]{margin-left:52%}.col-no-margin-s-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-7[data-v-19a576dd]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-8[data-v-19a576dd]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-9[data-v-19a576dd]{margin-left:78%}.col-no-margin-s-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-10[data-v-19a576dd]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-19a576dd]:first-child{margin-left:0}.col-offset-s-11[data-v-19a576dd]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-s-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-19a576dd]{display:none!important}.s-visible[data-v-19a576dd]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-1[data-v-19a576dd]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-2[data-v-19a576dd]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-3[data-v-19a576dd]{margin-left:26%}.col-no-margin-m-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-4[data-v-19a576dd]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-5[data-v-19a576dd]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-6[data-v-19a576dd]{margin-left:52%}.col-no-margin-m-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-7[data-v-19a576dd]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-8[data-v-19a576dd]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-9[data-v-19a576dd]{margin-left:78%}.col-no-margin-m-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-10[data-v-19a576dd]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-19a576dd]:first-child{margin-left:0}.col-offset-m-11[data-v-19a576dd]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-m-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-19a576dd]{display:none!important}.m-visible[data-v-19a576dd]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-1[data-v-19a576dd]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-2[data-v-19a576dd]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-3[data-v-19a576dd]{margin-left:26%}.col-no-margin-l-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-4[data-v-19a576dd]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-5[data-v-19a576dd]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-6[data-v-19a576dd]{margin-left:52%}.col-no-margin-l-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-7[data-v-19a576dd]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-8[data-v-19a576dd]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-9[data-v-19a576dd]{margin-left:78%}.col-no-margin-l-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-10[data-v-19a576dd]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-19a576dd]:first-child{margin-left:0}.col-offset-l-11[data-v-19a576dd]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-l-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-19a576dd]{display:none!important}.l-visible[data-v-19a576dd]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-1[data-v-19a576dd]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-2[data-v-19a576dd]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-3[data-v-19a576dd]{margin-left:26%}.col-no-margin-xl-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-4[data-v-19a576dd]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-5[data-v-19a576dd]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-6[data-v-19a576dd]{margin-left:52%}.col-no-margin-xl-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-7[data-v-19a576dd]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-8[data-v-19a576dd]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-9[data-v-19a576dd]{margin-left:78%}.col-no-margin-xl-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-10[data-v-19a576dd]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xl-11[data-v-19a576dd]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-19a576dd]{display:none!important}.xl-visible[data-v-19a576dd]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-1[data-v-19a576dd]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-19a576dd]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-2[data-v-19a576dd]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-19a576dd]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-3[data-v-19a576dd]{margin-left:26%}.col-no-margin-xxl-3[data-v-19a576dd]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-4[data-v-19a576dd]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-19a576dd]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-5[data-v-19a576dd]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-19a576dd]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-6[data-v-19a576dd]{margin-left:52%}.col-no-margin-xxl-6[data-v-19a576dd]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-7[data-v-19a576dd]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-19a576dd]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-8[data-v-19a576dd]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-19a576dd]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-9[data-v-19a576dd]{margin-left:78%}.col-no-margin-xxl-9[data-v-19a576dd]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-10[data-v-19a576dd]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-19a576dd]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-19a576dd]:first-child{margin-left:0}.col-offset-xxl-11[data-v-19a576dd]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-19a576dd]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-19a576dd]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-19a576dd]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-19a576dd]{display:none!important}.xxl-visible[data-v-19a576dd]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-19a576dd]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-19a576dd]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-19a576dd]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-19a576dd]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-19a576dd]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-19a576dd]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-19a576dd]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-19a576dd]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-19a576dd]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-19a576dd]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-19a576dd]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-19a576dd]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-19a576dd]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-19a576dd]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-19a576dd]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-19a576dd]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-19a576dd]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-19a576dd]{display:none!important}}.vertical-center[data-v-19a576dd]{display:flex;align-items:center}.horizontal-center[data-v-19a576dd]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-19a576dd]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-19a576dd]{display:none!important}.no-content[data-v-19a576dd]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-19a576dd]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-19a576dd]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-19a576dd]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-19a576dd]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-19a576dd]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-19a576dd]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-19a576dd],.btn[data-v-19a576dd],button[data-v-19a576dd]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-19a576dd],.btn-default[type=submit][data-v-19a576dd],.btn.btn-primary[data-v-19a576dd],.btn[type=submit][data-v-19a576dd],button.btn-primary[data-v-19a576dd],button[type=submit][data-v-19a576dd]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-19a576dd]:hover,.btn[data-v-19a576dd]:hover,button[data-v-19a576dd]:hover{color:#35b870}.btn .icon[data-v-19a576dd],.btn-default .icon[data-v-19a576dd],button .icon[data-v-19a576dd]{margin-right:.5em}.btn-default[data-v-19a576dd]:disabled,.btn-default[disabled][data-v-19a576dd],.btn[data-v-19a576dd]:disabled,.btn[disabled][data-v-19a576dd],button[data-v-19a576dd]:disabled,button[disabled][data-v-19a576dd]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-19a576dd]{cursor:grab!important}.dragged[data-v-19a576dd]{opacity:.5!important}input[type=password][data-v-19a576dd],input[type=text][data-v-19a576dd]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-19a576dd]:focus,input[type=text][data-v-19a576dd]:focus{border:1px solid #35b870}button[data-v-19a576dd],input[data-v-19a576dd]{outline:none}input[type=text][data-v-19a576dd]:hover,textarea[data-v-19a576dd]:hover{border:1px solid #9cdfb0}ul[data-v-19a576dd]{margin:0;padding:0;list-style:none}a[data-v-19a576dd]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-19a576dd]:hover{color:#35b870}[data-v-19a576dd]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-19a576dd]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-19a576dd]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-19a576dd]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-19a576dd]{color:#ad1717}body[data-v-19a576dd]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-19a576dd] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-19a576dd] .nav .path{cursor:pointer}.browser[data-v-19a576dd] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-19a576dd] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-19a576dd]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-19a576dd]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-19a576dd],input[type=number][data-v-19a576dd],input[type=password][data-v-19a576dd],input[type=search][data-v-19a576dd],input[type=text][data-v-19a576dd],input[type=time][data-v-19a576dd]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-19a576dd]:hover,input[type=number][data-v-19a576dd]:hover,input[type=password][data-v-19a576dd]:hover,input[type=search][data-v-19a576dd]:hover,input[type=text][data-v-19a576dd]:hover,input[type=time][data-v-19a576dd]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-19a576dd]:focus,input[type=number][data-v-19a576dd]:focus,input[type=password][data-v-19a576dd]:focus,input[type=search][data-v-19a576dd]:focus,input[type=text][data-v-19a576dd]:focus,input[type=time][data-v-19a576dd]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-19a576dd],input[type=number].with-icon[data-v-19a576dd],input[type=password].with-icon[data-v-19a576dd],input[type=search].with-icon[data-v-19a576dd],input[type=text].with-icon[data-v-19a576dd],input[type=time].with-icon[data-v-19a576dd]{padding-left:.3em}input[type=search][data-v-19a576dd],input[type=text][data-v-19a576dd]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-19a576dd]{animation-fill-mode:both;animation-name:fadeIn-19a576dd;-webkit-animation-name:fadeIn-19a576dd}.fade-in[data-v-19a576dd],.fade-out[data-v-19a576dd]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-19a576dd]{animation-fill-mode:both;animation-name:fadeOut-19a576dd;-webkit-animation-name:fadeOut-19a576dd}.expand[data-v-19a576dd]{animation-fill-mode:both;animation-name:expand-19a576dd;-webkit-animation-name:expand-19a576dd}.expand[data-v-19a576dd],.shrink[data-v-19a576dd]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-19a576dd]{animation-fill-mode:both;animation-name:shrink-19a576dd;-webkit-animation-name:shrink-19a576dd}.fold[data-v-19a576dd]{animation-fill-mode:both;animation-name:fold-19a576dd;-webkit-animation-name:fold-19a576dd}.fold[data-v-19a576dd],.unfold[data-v-19a576dd]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-19a576dd]{animation-fill-mode:both;animation-name:unfold-19a576dd;-webkit-animation-name:unfold-19a576dd}.dim[data-v-19a576dd]{animation-fill-mode:both;animation-name:dim-19a576dd;-webkit-animation-name:dim-19a576dd}.brighten[data-v-19a576dd],.dim[data-v-19a576dd]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-19a576dd]{animation-fill-mode:both;animation-name:brighten-19a576dd;-webkit-animation-name:brighten-19a576dd}@keyframes fadeIn-19a576dd{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-19a576dd{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-19a576dd{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-19a576dd{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-19a576dd{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-19a576dd{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-19a576dd{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-19a576dd{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-19a576dd]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-19a576dd;-webkit-animation-name:glow-19a576dd}.loop[data-v-19a576dd]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-19a576dd{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-19a576dd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-19a576dd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-19a576dd]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-19a576dd]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-19a576dd]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-19a576dd]{background:#8fefb7}.item.selected[data-v-19a576dd]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-19a576dd]{border-top:2px solid #35b870}.item[data-v-19a576dd]::-moz-selection{background:transparent!important}.item[data-v-19a576dd]::selection{background:transparent!important}.item .title[data-v-19a576dd]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-19a576dd]{display:inline-flex;align-items:center}.item .side.right[data-v-19a576dd]{display:inline-flex;justify-content:right}.item .actions[data-v-19a576dd],.item .duration[data-v-19a576dd]{display:inline-flex;align-items:center}.item .duration[data-v-19a576dd]{font-size:.85em;opacity:.7}.item .actions[data-v-19a576dd] button{opacity:.65}.item .icon[data-v-19a576dd]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-19a576dd] .dropdown-container .item{box-shadow:none}.item[data-v-19a576dd] .dropdown-container button{background:none;border:none}.item[data-v-19a576dd] .dropdown-container button:hover{color:#35b870}[data-v-19a576dd] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-19a576dd] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-19a576dd] .table-row{flex-direction:row;align-items:center}}[data-v-19a576dd] .table-row .title,[data-v-19a576dd] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-19a576dd] .table-row .title,[data-v-19a576dd] .table-row .value{display:inline-flex}}[data-v-19a576dd] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-19a576dd] .table-row .title{width:30%}[data-v-19a576dd] .table-row .value{justify-content:right}}.file-editor[data-v-19a576dd]{width:100%;height:100%;display:flex;flex-direction:column}.file-editor .editor-body[data-v-19a576dd],.file-editor .editor-container[data-v-19a576dd]{width:100%;height:100%;position:relative;display:flex;flex-direction:column}.file-editor .editor-highlight-loading[data-v-19a576dd]{position:absolute;top:.5em;right:1em;width:10em;height:2em;font-size:.5em!important;display:flex;justify-content:center;align-items:center;opacity:.5;z-index:2}.file-editor .editor-highlight-loading[data-v-19a576dd] .loading{border-radius:.5em}.file-editor .editor-body[data-v-19a576dd]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.file-editor .editor-body .line-numbers[data-v-19a576dd],.file-editor .editor-body code[data-v-19a576dd],.file-editor .editor-body pre[data-v-19a576dd],.file-editor .editor-body textarea[data-v-19a576dd]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace;position:absolute;top:0;height:100%;margin:0;white-space:pre}.file-editor .editor-body code[data-v-19a576dd],.file-editor .editor-body pre[data-v-19a576dd],.file-editor .editor-body textarea[data-v-19a576dd]{background:transparent}.file-editor .editor-body .line-numbers[data-v-19a576dd]{width:2.5em;background:linear-gradient(0deg,#ececec,#f6f6f6);border-right:1px solid #e1e4e8;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;overflow:hidden;z-index:2}.file-editor .editor-body .line-numbers .line-number[data-v-19a576dd]{width:100%;text-align:right;padding-right:.25em;cursor:pointer}.file-editor .editor-body .line-numbers .line-number[data-v-19a576dd]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.file-editor .editor-body .line-numbers .line-number.selected[data-v-19a576dd]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.file-editor .editor-body pre[data-v-19a576dd],.file-editor .editor-body textarea[data-v-19a576dd]{width:calc(100% - 3.5em);left:3.5em}.file-editor .editor-body code[data-v-19a576dd]{width:100%}.file-editor .editor-body textarea[data-v-19a576dd]{background:transparent;overflow-wrap:normal;overflow-x:scroll;z-index:2;color:transparent;caret-color:#000;border:none;outline:none}.file-editor .editor-body .selected-line[data-v-19a576dd]{position:absolute;top:0;left:0;width:100%;height:1.5em;background:rgba(110,255,160,.25)}.file-editor[data-v-19a576dd] .floating-btn{z-index:5}.file-editor[data-v-19a576dd] code .hljs-subst{color:#32b646!important}.col-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0562b7d2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0562b7d2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0562b7d2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0562b7d2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0562b7d2]:first-child{margin-left:26%!important}.col-offset-3[data-v-0562b7d2]:not(first-child){margin-left:30%!important}.col-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0562b7d2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0562b7d2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0562b7d2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0562b7d2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0562b7d2]:first-child{margin-left:52%!important}.col-offset-6[data-v-0562b7d2]:not(first-child){margin-left:56%!important}.col-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0562b7d2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0562b7d2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0562b7d2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0562b7d2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0562b7d2]:first-child{margin-left:78%!important}.col-offset-9[data-v-0562b7d2]:not(first-child){margin-left:82%!important}.col-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0562b7d2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0562b7d2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0562b7d2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0562b7d2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-1[data-v-0562b7d2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-2[data-v-0562b7d2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-3[data-v-0562b7d2]{margin-left:26%}.col-no-margin-s-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-4[data-v-0562b7d2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-5[data-v-0562b7d2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-6[data-v-0562b7d2]{margin-left:52%}.col-no-margin-s-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-7[data-v-0562b7d2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-8[data-v-0562b7d2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-9[data-v-0562b7d2]{margin-left:78%}.col-no-margin-s-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-10[data-v-0562b7d2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-s-11[data-v-0562b7d2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0562b7d2]{display:none!important}.s-visible[data-v-0562b7d2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-1[data-v-0562b7d2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-2[data-v-0562b7d2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-3[data-v-0562b7d2]{margin-left:26%}.col-no-margin-m-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-4[data-v-0562b7d2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-5[data-v-0562b7d2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-6[data-v-0562b7d2]{margin-left:52%}.col-no-margin-m-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-7[data-v-0562b7d2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-8[data-v-0562b7d2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-9[data-v-0562b7d2]{margin-left:78%}.col-no-margin-m-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-10[data-v-0562b7d2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-m-11[data-v-0562b7d2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0562b7d2]{display:none!important}.m-visible[data-v-0562b7d2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-1[data-v-0562b7d2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-2[data-v-0562b7d2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-3[data-v-0562b7d2]{margin-left:26%}.col-no-margin-l-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-4[data-v-0562b7d2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-5[data-v-0562b7d2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-6[data-v-0562b7d2]{margin-left:52%}.col-no-margin-l-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-7[data-v-0562b7d2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-8[data-v-0562b7d2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-9[data-v-0562b7d2]{margin-left:78%}.col-no-margin-l-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-10[data-v-0562b7d2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-l-11[data-v-0562b7d2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0562b7d2]{display:none!important}.l-visible[data-v-0562b7d2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-1[data-v-0562b7d2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-2[data-v-0562b7d2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-3[data-v-0562b7d2]{margin-left:26%}.col-no-margin-xl-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-4[data-v-0562b7d2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-5[data-v-0562b7d2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-6[data-v-0562b7d2]{margin-left:52%}.col-no-margin-xl-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-7[data-v-0562b7d2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-8[data-v-0562b7d2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-9[data-v-0562b7d2]{margin-left:78%}.col-no-margin-xl-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-10[data-v-0562b7d2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xl-11[data-v-0562b7d2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0562b7d2]{display:none!important}.xl-visible[data-v-0562b7d2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0562b7d2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0562b7d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0562b7d2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0562b7d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0562b7d2]{margin-left:26%}.col-no-margin-xxl-3[data-v-0562b7d2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0562b7d2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0562b7d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0562b7d2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0562b7d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0562b7d2]{margin-left:52%}.col-no-margin-xxl-6[data-v-0562b7d2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0562b7d2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0562b7d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0562b7d2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0562b7d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0562b7d2]{margin-left:78%}.col-no-margin-xxl-9[data-v-0562b7d2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0562b7d2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0562b7d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0562b7d2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0562b7d2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0562b7d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0562b7d2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0562b7d2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0562b7d2]{display:none!important}.xxl-visible[data-v-0562b7d2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0562b7d2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0562b7d2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0562b7d2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0562b7d2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0562b7d2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0562b7d2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0562b7d2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0562b7d2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0562b7d2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0562b7d2]{display:none!important}}.vertical-center[data-v-0562b7d2]{display:flex;align-items:center}.horizontal-center[data-v-0562b7d2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0562b7d2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0562b7d2]{display:none!important}.no-content[data-v-0562b7d2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0562b7d2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0562b7d2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0562b7d2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0562b7d2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0562b7d2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0562b7d2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0562b7d2],.btn[data-v-0562b7d2],button[data-v-0562b7d2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0562b7d2],.btn-default[type=submit][data-v-0562b7d2],.btn.btn-primary[data-v-0562b7d2],.btn[type=submit][data-v-0562b7d2],button.btn-primary[data-v-0562b7d2],button[type=submit][data-v-0562b7d2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-0562b7d2]:hover,.btn[data-v-0562b7d2]:hover,button[data-v-0562b7d2]:hover{color:#35b870}.btn .icon[data-v-0562b7d2],.btn-default .icon[data-v-0562b7d2],button .icon[data-v-0562b7d2]{margin-right:.5em}.btn-default[data-v-0562b7d2]:disabled,.btn-default[disabled][data-v-0562b7d2],.btn[data-v-0562b7d2]:disabled,.btn[disabled][data-v-0562b7d2],button[data-v-0562b7d2]:disabled,button[disabled][data-v-0562b7d2]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-0562b7d2]{cursor:grab!important}.dragged[data-v-0562b7d2]{opacity:.5!important}input[type=password][data-v-0562b7d2],input[type=text][data-v-0562b7d2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0562b7d2]:focus,input[type=text][data-v-0562b7d2]:focus{border:1px solid #35b870}button[data-v-0562b7d2],input[data-v-0562b7d2]{outline:none}input[type=text][data-v-0562b7d2]:hover,textarea[data-v-0562b7d2]:hover{border:1px solid #9cdfb0}ul[data-v-0562b7d2]{margin:0;padding:0;list-style:none}a[data-v-0562b7d2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0562b7d2]:hover{color:#35b870}[data-v-0562b7d2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0562b7d2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0562b7d2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0562b7d2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-0562b7d2]{color:#ad1717}body[data-v-0562b7d2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0562b7d2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0562b7d2] .nav .path{cursor:pointer}.browser[data-v-0562b7d2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0562b7d2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-0562b7d2]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-0562b7d2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0562b7d2],input[type=number][data-v-0562b7d2],input[type=password][data-v-0562b7d2],input[type=search][data-v-0562b7d2],input[type=text][data-v-0562b7d2],input[type=time][data-v-0562b7d2]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-0562b7d2]:hover,input[type=number][data-v-0562b7d2]:hover,input[type=password][data-v-0562b7d2]:hover,input[type=search][data-v-0562b7d2]:hover,input[type=text][data-v-0562b7d2]:hover,input[type=time][data-v-0562b7d2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0562b7d2]:focus,input[type=number][data-v-0562b7d2]:focus,input[type=password][data-v-0562b7d2]:focus,input[type=search][data-v-0562b7d2]:focus,input[type=text][data-v-0562b7d2]:focus,input[type=time][data-v-0562b7d2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0562b7d2],input[type=number].with-icon[data-v-0562b7d2],input[type=password].with-icon[data-v-0562b7d2],input[type=search].with-icon[data-v-0562b7d2],input[type=text].with-icon[data-v-0562b7d2],input[type=time].with-icon[data-v-0562b7d2]{padding-left:.3em}input[type=search][data-v-0562b7d2],input[type=text][data-v-0562b7d2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0562b7d2]{animation-fill-mode:both;animation-name:fadeIn-0562b7d2;-webkit-animation-name:fadeIn-0562b7d2}.fade-in[data-v-0562b7d2],.fade-out[data-v-0562b7d2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0562b7d2]{animation-fill-mode:both;animation-name:fadeOut-0562b7d2;-webkit-animation-name:fadeOut-0562b7d2}.expand[data-v-0562b7d2],.file-editor-root .file-editor-modal[data-v-0562b7d2] .modal .content{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:expand-0562b7d2;-webkit-animation-name:expand-0562b7d2}.shrink[data-v-0562b7d2]{animation-fill-mode:both;animation-name:shrink-0562b7d2;-webkit-animation-name:shrink-0562b7d2}.fold[data-v-0562b7d2],.shrink[data-v-0562b7d2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-0562b7d2]{animation-fill-mode:both;animation-name:fold-0562b7d2;-webkit-animation-name:fold-0562b7d2}.unfold[data-v-0562b7d2]{animation-fill-mode:both;animation-name:unfold-0562b7d2;-webkit-animation-name:unfold-0562b7d2}.dim[data-v-0562b7d2],.unfold[data-v-0562b7d2]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-0562b7d2]{animation-fill-mode:both;animation-name:dim-0562b7d2;-webkit-animation-name:dim-0562b7d2}.brighten[data-v-0562b7d2]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-0562b7d2;-webkit-animation-name:brighten-0562b7d2}@keyframes fadeIn-0562b7d2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0562b7d2{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-0562b7d2{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-0562b7d2{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-0562b7d2{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-0562b7d2{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-0562b7d2{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-0562b7d2{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-0562b7d2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0562b7d2;-webkit-animation-name:glow-0562b7d2}.loop[data-v-0562b7d2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0562b7d2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0562b7d2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0562b7d2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0562b7d2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-0562b7d2]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-0562b7d2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-0562b7d2]{background:#8fefb7}.item.selected[data-v-0562b7d2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-0562b7d2]{border-top:2px solid #35b870}.item[data-v-0562b7d2]::-moz-selection{background:transparent!important}.item[data-v-0562b7d2]::selection{background:transparent!important}.item .title[data-v-0562b7d2]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-0562b7d2]{display:inline-flex;align-items:center}.item .side.right[data-v-0562b7d2]{display:inline-flex;justify-content:right}.item .actions[data-v-0562b7d2],.item .duration[data-v-0562b7d2]{display:inline-flex;align-items:center}.item .duration[data-v-0562b7d2]{font-size:.85em;opacity:.7}.item .actions[data-v-0562b7d2] button{opacity:.65}.item .icon[data-v-0562b7d2]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-0562b7d2] .dropdown-container .item{box-shadow:none}.item[data-v-0562b7d2] .dropdown-container button{background:none;border:none}.item[data-v-0562b7d2] .dropdown-container button:hover{color:#35b870}[data-v-0562b7d2] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-0562b7d2] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-0562b7d2] .table-row{flex-direction:row;align-items:center}}[data-v-0562b7d2] .table-row .title,[data-v-0562b7d2] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-0562b7d2] .table-row .title,[data-v-0562b7d2] .table-row .value{display:inline-flex}}[data-v-0562b7d2] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-0562b7d2] .table-row .title{width:30%}[data-v-0562b7d2] .table-row .value{justify-content:right}}.file-editor-root .file-editor-modal[data-v-0562b7d2] .modal .body{display:flex;flex-direction:column;padding:0}.file-editor-root .file-editor-modal[data-v-0562b7d2] .modal .modal-body{width:100%;min-width:30em;max-height:calc(100vh - 2em)}@media screen and (max-width:calc(769px - 1px)){.file-editor-root .file-editor-modal[data-v-0562b7d2]:not(.maximized) .modal .body{width:calc(100vw - 2em)}}@media screen and (min-width:769px){.file-editor-root .file-editor-modal[data-v-0562b7d2]:not(.maximized) .modal .body{width:40em;max-width:100%}}@media screen and (min-width:1024px){.file-editor-root .file-editor-modal[data-v-0562b7d2]:not(.maximized) .modal .body{width:100%;min-width:50em}}.file-editor-root .file-editor-modal[data-v-0562b7d2]:not(.maximized) .modal .body .modal-body{height:50em}.file-editor-root .file-editor-modal.maximized[data-v-0562b7d2] .modal{width:calc(100vw - 2em);height:calc(100vh - 2em)}.file-editor-root .file-editor-modal.maximized[data-v-0562b7d2] .modal .content,.file-editor-root .file-editor-modal.maximized[data-v-0562b7d2] .modal .modal-body{width:100%;height:100%;max-height:100%}.file-editor-root .file-editor-modal.maximized[data-v-0562b7d2] .modal .header{height:2.75em}.file-editor-root .file-editor-modal.maximized[data-v-0562b7d2] .modal .body{height:calc(100% - 2.75em);max-height:100%}.file-editor-root .confirm-dialog-container[data-v-0562b7d2] .modal{width:35em!important;height:9em!important;max-width:100%;max-height:100%}.file-editor-root .confirm-dialog-container[data-v-0562b7d2] .modal .body{width:100%!important;height:100%!important;justify-content:center} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8769.212a4f94.css b/platypush/backend/http/webapp/dist/static/css/8769.3c09554f.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/8769.212a4f94.css rename to platypush/backend/http/webapp/dist/static/css/8769.3c09554f.css index c3733a6bab..724d972437 100644 --- a/platypush/backend/http/webapp/dist/static/css/8769.212a4f94.css +++ b/platypush/backend/http/webapp/dist/static/css/8769.3c09554f.css @@ -1 +1 @@ -.col-1[data-v-07323f6c],.entity .head .icon[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-07323f6c]:first-child,.entity .head .icon[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-07323f6c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-07323f6c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-07323f6c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-07323f6c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-07323f6c],.entity .head .value-and-toggler[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-07323f6c]:first-child,.entity .head .value-and-toggler[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-07323f6c]:first-child{margin-left:26%!important}.col-offset-3[data-v-07323f6c]:not(first-child){margin-left:30%!important}.col-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-07323f6c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-07323f6c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-07323f6c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-07323f6c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-07323f6c]:first-child{margin-left:52%!important}.col-offset-6[data-v-07323f6c]:not(first-child){margin-left:56%!important}.col-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-07323f6c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-07323f6c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-07323f6c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-07323f6c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-07323f6c]:first-child{margin-left:78%!important}.col-offset-9[data-v-07323f6c]:not(first-child){margin-left:82%!important}.col-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-07323f6c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-07323f6c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-07323f6c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-07323f6c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-07323f6c],.entity .head .value-container[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-07323f6c]:first-child,.entity .head .value-container[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-s-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-s-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-07323f6c],.entity .head .label[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-07323f6c]:first-child,.entity .head .label[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-s-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-07323f6c],.attributes .child .value[data-v-07323f6c],.col-s-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-07323f6c]:first-child,.attributes .child .value[data-v-07323f6c]:first-child,.col-s-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-07323f6c]{display:none!important}.s-visible[data-v-07323f6c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-07323f6c],.entity .head .value-container[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-07323f6c]:first-child,.entity .head .value-container[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-m-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-07323f6c],.attributes .child .value[data-v-07323f6c],.col-m-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-07323f6c]:first-child,.attributes .child .value[data-v-07323f6c]:first-child,.col-m-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-m-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-07323f6c],.entity .head .label[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-07323f6c]:first-child,.entity .head .label[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-m-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-07323f6c]{display:none!important}.m-visible[data-v-07323f6c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-l-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-l-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-l-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-07323f6c]{display:none!important}.l-visible[data-v-07323f6c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-xl-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-xl-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-xl-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-07323f6c]{display:none!important}.xl-visible[data-v-07323f6c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-xxl-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-xxl-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-xxl-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-07323f6c]{display:none!important}.xxl-visible[data-v-07323f6c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-07323f6c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-07323f6c]{display:none!important}}.vertical-center[data-v-07323f6c]{display:flex;align-items:center}.horizontal-center[data-v-07323f6c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-07323f6c],.pull-right[data-v-07323f6c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-07323f6c]{display:none!important}.no-content[data-v-07323f6c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-07323f6c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-07323f6c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-07323f6c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-07323f6c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-07323f6c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-07323f6c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-07323f6c],.btn[data-v-07323f6c],button[data-v-07323f6c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-07323f6c],.btn-default[type=submit][data-v-07323f6c],.btn.btn-primary[data-v-07323f6c],.btn[type=submit][data-v-07323f6c],button.btn-primary[data-v-07323f6c],button[type=submit][data-v-07323f6c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-07323f6c],.btn-default .icon[data-v-07323f6c],button .icon[data-v-07323f6c]{margin-right:.5em}input[type=password][data-v-07323f6c],input[type=text][data-v-07323f6c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-07323f6c]:focus,input[type=text][data-v-07323f6c]:focus{border:1px solid #35b870}button[data-v-07323f6c],input[data-v-07323f6c]{outline:none}input[type=text][data-v-07323f6c]:hover,textarea[data-v-07323f6c]:hover{border:1px solid #9cdfb0}ul[data-v-07323f6c]{margin:0;padding:0;list-style:none}a[data-v-07323f6c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-07323f6c]:hover{color:#35b870}[data-v-07323f6c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-07323f6c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-07323f6c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-07323f6c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-07323f6c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-07323f6c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-07323f6c] .nav .path{cursor:pointer}.browser[data-v-07323f6c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-07323f6c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-07323f6c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-07323f6c],input[type=number][data-v-07323f6c],input[type=password][data-v-07323f6c],input[type=search][data-v-07323f6c],input[type=text][data-v-07323f6c],input[type=time][data-v-07323f6c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-07323f6c]:hover,input[type=number][data-v-07323f6c]:hover,input[type=password][data-v-07323f6c]:hover,input[type=search][data-v-07323f6c]:hover,input[type=text][data-v-07323f6c]:hover,input[type=time][data-v-07323f6c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-07323f6c]:focus,input[type=number][data-v-07323f6c]:focus,input[type=password][data-v-07323f6c]:focus,input[type=search][data-v-07323f6c]:focus,input[type=text][data-v-07323f6c]:focus,input[type=time][data-v-07323f6c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-07323f6c],input[type=number].with-icon[data-v-07323f6c],input[type=password].with-icon[data-v-07323f6c],input[type=search].with-icon[data-v-07323f6c],input[type=text].with-icon[data-v-07323f6c],input[type=time].with-icon[data-v-07323f6c]{padding-left:.3em}input[type=search][data-v-07323f6c],input[type=text][data-v-07323f6c]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-07323f6c],.fade-in[data-v-07323f6c]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-07323f6c;-webkit-animation-name:fadeIn-07323f6c}.fade-out[data-v-07323f6c]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-07323f6c;-webkit-animation-name:fadeOut-07323f6c}@keyframes fadeIn-07323f6c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-07323f6c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-07323f6c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-07323f6c;-webkit-animation-name:glow-07323f6c}.loop[data-v-07323f6c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-07323f6c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-07323f6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-07323f6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-07323f6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-07323f6c]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-07323f6c]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-07323f6c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-07323f6c]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-07323f6c]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-07323f6c]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-07323f6c]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-07323f6c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-07323f6c]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-07323f6c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-07323f6c]{margin-right:.5em}.entity .head .icon[data-v-07323f6c]:hover{color:#35b870}.entity .head .label[data-v-07323f6c]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-07323f6c]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-07323f6c]:hover{color:#35b870}.entity .head .value[data-v-07323f6c]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-07323f6c]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-07323f6c]{margin-right:2.5em}.entity .head .value-container[data-v-07323f6c]{min-width:7em}.entity .head .unit[data-v-07323f6c]{margin-left:.2em}.entity .head .pull-right[data-v-07323f6c],.entity .head .value-container[data-v-07323f6c]{padding-right:.5em}.entity .head .pull-right[data-v-07323f6c] .power-switch,.entity .head .value-container[data-v-07323f6c] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-07323f6c]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-07323f6c]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-07323f6c]:hover{color:#35b870}.collapse-toggler[data-v-07323f6c]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-07323f6c]:hover{color:#35b870}.attributes .child[data-v-07323f6c]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-07323f6c]{flex-direction:column}}.attributes .child[data-v-07323f6c]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-07323f6c]:hover{cursor:auto}.attributes .child.head[data-v-07323f6c]{cursor:pointer}.attributes .child.head[data-v-07323f6c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-07323f6c]{font-weight:700}.attributes .child .value[data-v-07323f6c]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-07323f6c]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-07323f6c]:last-child,.entity-container-wrapper.with-children[data-v-07323f6c]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-07323f6c]{animation:blink-animation-07323f6c 1s steps(20,start)}@keyframes blink-animation-07323f6c{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-07323f6c],.entity .head .icon[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-07323f6c]:first-child,.entity .head .icon[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-07323f6c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-07323f6c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-07323f6c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-07323f6c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-07323f6c],.entity .head .value-and-toggler[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-07323f6c]:first-child,.entity .head .value-and-toggler[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-07323f6c]:first-child{margin-left:26%!important}.col-offset-3[data-v-07323f6c]:not(first-child){margin-left:30%!important}.col-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-07323f6c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-07323f6c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-07323f6c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-07323f6c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-07323f6c]:first-child{margin-left:52%!important}.col-offset-6[data-v-07323f6c]:not(first-child){margin-left:56%!important}.col-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-07323f6c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-07323f6c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-07323f6c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-07323f6c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-07323f6c]:first-child{margin-left:78%!important}.col-offset-9[data-v-07323f6c]:not(first-child){margin-left:82%!important}.col-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-07323f6c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-07323f6c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-07323f6c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-07323f6c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-07323f6c],.entity .head .value-container[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-07323f6c]:first-child,.entity .head .value-container[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-s-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-s-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-07323f6c],.entity .head .label[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-07323f6c]:first-child,.entity .head .label[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-s-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-s-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-07323f6c],.attributes .child .value[data-v-07323f6c],.col-s-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-07323f6c]:first-child,.attributes .child .value[data-v-07323f6c]:first-child,.col-s-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-07323f6c]{display:none!important}.s-visible[data-v-07323f6c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-07323f6c],.entity .head .value-container[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-07323f6c]:first-child,.entity .head .value-container[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-m-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-07323f6c],.attributes .child .value[data-v-07323f6c],.col-m-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-07323f6c]:first-child,.attributes .child .value[data-v-07323f6c]:first-child,.col-m-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-m-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-07323f6c],.entity .head .label[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-07323f6c]:first-child,.entity .head .label[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-m-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-m-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-07323f6c]{display:none!important}.m-visible[data-v-07323f6c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-l-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-l-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-l-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-l-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-07323f6c]{display:none!important}.l-visible[data-v-07323f6c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-xl-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-xl-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-xl-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xl-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-07323f6c]{display:none!important}.xl-visible[data-v-07323f6c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-07323f6c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-07323f6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-07323f6c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-07323f6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-07323f6c]{margin-left:26%}.col-no-margin-xxl-3[data-v-07323f6c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-07323f6c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-07323f6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-07323f6c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-07323f6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-07323f6c]{margin-left:52%}.col-no-margin-xxl-6[data-v-07323f6c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-07323f6c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-07323f6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-07323f6c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-07323f6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-07323f6c]{margin-left:78%}.col-no-margin-xxl-9[data-v-07323f6c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-07323f6c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-07323f6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-07323f6c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-07323f6c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-07323f6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-07323f6c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-07323f6c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-07323f6c]{display:none!important}.xxl-visible[data-v-07323f6c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-07323f6c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-07323f6c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-07323f6c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-07323f6c]{display:none!important}}.vertical-center[data-v-07323f6c]{display:flex;align-items:center}.horizontal-center[data-v-07323f6c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-07323f6c],.pull-right[data-v-07323f6c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-07323f6c]{display:none!important}.no-content[data-v-07323f6c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-07323f6c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-07323f6c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-07323f6c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-07323f6c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-07323f6c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-07323f6c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-07323f6c],.btn[data-v-07323f6c],button[data-v-07323f6c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-07323f6c],.btn-default[type=submit][data-v-07323f6c],.btn.btn-primary[data-v-07323f6c],.btn[type=submit][data-v-07323f6c],button.btn-primary[data-v-07323f6c],button[type=submit][data-v-07323f6c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-07323f6c]:hover,.btn[data-v-07323f6c]:hover,button[data-v-07323f6c]:hover{color:#35b870}.btn .icon[data-v-07323f6c],.btn-default .icon[data-v-07323f6c],button .icon[data-v-07323f6c]{margin-right:.5em}.btn-default[data-v-07323f6c]:disabled,.btn-default[disabled][data-v-07323f6c],.btn[data-v-07323f6c]:disabled,.btn[disabled][data-v-07323f6c],button[data-v-07323f6c]:disabled,button[disabled][data-v-07323f6c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-07323f6c]{cursor:grab!important}.dragged[data-v-07323f6c]{opacity:.5!important}input[type=password][data-v-07323f6c],input[type=text][data-v-07323f6c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-07323f6c]:focus,input[type=text][data-v-07323f6c]:focus{border:1px solid #35b870}button[data-v-07323f6c],input[data-v-07323f6c]{outline:none}input[type=text][data-v-07323f6c]:hover,textarea[data-v-07323f6c]:hover{border:1px solid #9cdfb0}ul[data-v-07323f6c]{margin:0;padding:0;list-style:none}a[data-v-07323f6c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-07323f6c]:hover{color:#35b870}[data-v-07323f6c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-07323f6c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-07323f6c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-07323f6c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-07323f6c]{color:#ad1717}body[data-v-07323f6c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-07323f6c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-07323f6c] .nav .path{cursor:pointer}.browser[data-v-07323f6c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-07323f6c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-07323f6c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-07323f6c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-07323f6c],input[type=number][data-v-07323f6c],input[type=password][data-v-07323f6c],input[type=search][data-v-07323f6c],input[type=text][data-v-07323f6c],input[type=time][data-v-07323f6c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-07323f6c]:hover,input[type=number][data-v-07323f6c]:hover,input[type=password][data-v-07323f6c]:hover,input[type=search][data-v-07323f6c]:hover,input[type=text][data-v-07323f6c]:hover,input[type=time][data-v-07323f6c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-07323f6c]:focus,input[type=number][data-v-07323f6c]:focus,input[type=password][data-v-07323f6c]:focus,input[type=search][data-v-07323f6c]:focus,input[type=text][data-v-07323f6c]:focus,input[type=time][data-v-07323f6c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-07323f6c],input[type=number].with-icon[data-v-07323f6c],input[type=password].with-icon[data-v-07323f6c],input[type=search].with-icon[data-v-07323f6c],input[type=text].with-icon[data-v-07323f6c],input[type=time].with-icon[data-v-07323f6c]{padding-left:.3em}input[type=search][data-v-07323f6c],input[type=text][data-v-07323f6c]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-07323f6c],.fade-in[data-v-07323f6c]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-07323f6c;-webkit-animation-name:fadeIn-07323f6c}.fade-out[data-v-07323f6c]{animation-fill-mode:both;animation-name:fadeOut-07323f6c;-webkit-animation-name:fadeOut-07323f6c}.expand[data-v-07323f6c],.fade-out[data-v-07323f6c]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-07323f6c]{animation-fill-mode:both;animation-name:expand-07323f6c;-webkit-animation-name:expand-07323f6c}.shrink[data-v-07323f6c]{animation-fill-mode:both;animation-name:shrink-07323f6c;-webkit-animation-name:shrink-07323f6c}.fold[data-v-07323f6c],.shrink[data-v-07323f6c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-07323f6c]{animation-fill-mode:both;animation-name:fold-07323f6c;-webkit-animation-name:fold-07323f6c}.unfold[data-v-07323f6c]{animation-fill-mode:both;animation-name:unfold-07323f6c;-webkit-animation-name:unfold-07323f6c}.dim[data-v-07323f6c],.unfold[data-v-07323f6c]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-07323f6c]{animation-fill-mode:both;animation-name:dim-07323f6c;-webkit-animation-name:dim-07323f6c}.brighten[data-v-07323f6c]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-07323f6c;-webkit-animation-name:brighten-07323f6c}@keyframes fadeIn-07323f6c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-07323f6c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-07323f6c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-07323f6c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-07323f6c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-07323f6c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-07323f6c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-07323f6c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-07323f6c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-07323f6c;-webkit-animation-name:glow-07323f6c}.loop[data-v-07323f6c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-07323f6c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-07323f6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-07323f6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-07323f6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-07323f6c]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-07323f6c]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-07323f6c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-07323f6c]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-07323f6c]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-07323f6c]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-07323f6c]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-07323f6c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-07323f6c]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-07323f6c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-07323f6c]{margin-right:.5em}.entity .head .icon[data-v-07323f6c]:hover{color:#35b870}.entity .head .label[data-v-07323f6c]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-07323f6c]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-07323f6c]:hover{color:#35b870}.entity .head .value[data-v-07323f6c]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-07323f6c]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-07323f6c]{margin-right:2.5em}.entity .head .value-container[data-v-07323f6c]{min-width:7em}.entity .head .unit[data-v-07323f6c]{margin-left:.2em}.entity .head .pull-right[data-v-07323f6c],.entity .head .value-container[data-v-07323f6c]{padding-right:.5em}.entity .head .pull-right[data-v-07323f6c] .power-switch,.entity .head .value-container[data-v-07323f6c] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-07323f6c]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-07323f6c]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-07323f6c]:hover{color:#35b870}.collapse-toggler[data-v-07323f6c]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-07323f6c]:hover{color:#35b870}.attributes .child[data-v-07323f6c]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-07323f6c]{flex-direction:column}}.attributes .child[data-v-07323f6c]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-07323f6c]:hover{cursor:auto}.attributes .child.head[data-v-07323f6c]{cursor:pointer}.attributes .child.head[data-v-07323f6c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-07323f6c]{font-weight:700}.attributes .child .value[data-v-07323f6c]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-07323f6c]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-07323f6c]:last-child,.entity-container-wrapper.with-children[data-v-07323f6c]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-07323f6c]{animation:blink-animation-07323f6c 1s steps(20,start)}@keyframes blink-animation-07323f6c{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8825.596c01e1.css b/platypush/backend/http/webapp/dist/static/css/8825.64638d91.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/8825.596c01e1.css rename to platypush/backend/http/webapp/dist/static/css/8825.64638d91.css index 762232c53a..d51e19de5a 100644 --- a/platypush/backend/http/webapp/dist/static/css/8825.596c01e1.css +++ b/platypush/backend/http/webapp/dist/static/css/8825.64638d91.css @@ -1 +1 @@ -.col-1[data-v-fb021b6a],.entity .head .icon[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-fb021b6a]:first-child,.entity .head .icon[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-fb021b6a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-fb021b6a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-fb021b6a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-fb021b6a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-fb021b6a],.entity .head .value-and-toggler[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-fb021b6a]:first-child,.entity .head .value-and-toggler[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-fb021b6a]:first-child{margin-left:26%!important}.col-offset-3[data-v-fb021b6a]:not(first-child){margin-left:30%!important}.col-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-fb021b6a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-fb021b6a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-fb021b6a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-fb021b6a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-fb021b6a]:first-child{margin-left:52%!important}.col-offset-6[data-v-fb021b6a]:not(first-child){margin-left:56%!important}.col-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-fb021b6a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-fb021b6a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-fb021b6a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-fb021b6a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-fb021b6a]:first-child{margin-left:78%!important}.col-offset-9[data-v-fb021b6a]:not(first-child){margin-left:82%!important}.col-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-fb021b6a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-fb021b6a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-fb021b6a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-fb021b6a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-fb021b6a],.entity .head .value-container[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-fb021b6a]:first-child,.entity .head .value-container[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-s-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-s-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-fb021b6a],.entity .head .label[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-fb021b6a]:first-child,.entity .head .label[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-s-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-fb021b6a],.attributes .child .value[data-v-fb021b6a],.col-s-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-fb021b6a]:first-child,.attributes .child .value[data-v-fb021b6a]:first-child,.col-s-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-fb021b6a]{display:none!important}.s-visible[data-v-fb021b6a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-fb021b6a],.entity .head .value-container[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-fb021b6a]:first-child,.entity .head .value-container[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-m-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-fb021b6a],.attributes .child .value[data-v-fb021b6a],.col-m-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-fb021b6a]:first-child,.attributes .child .value[data-v-fb021b6a]:first-child,.col-m-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-m-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-fb021b6a],.entity .head .label[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-fb021b6a]:first-child,.entity .head .label[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-m-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-fb021b6a]{display:none!important}.m-visible[data-v-fb021b6a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-l-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-l-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-l-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-fb021b6a]{display:none!important}.l-visible[data-v-fb021b6a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-xl-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-xl-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-xl-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-fb021b6a]{display:none!important}.xl-visible[data-v-fb021b6a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-xxl-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-xxl-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-xxl-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-fb021b6a]{display:none!important}.xxl-visible[data-v-fb021b6a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-fb021b6a]{display:none!important}}.vertical-center[data-v-fb021b6a]{display:flex;align-items:center}.horizontal-center[data-v-fb021b6a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-fb021b6a],.pull-right[data-v-fb021b6a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-fb021b6a]{display:none!important}.no-content[data-v-fb021b6a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-fb021b6a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-fb021b6a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-fb021b6a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-fb021b6a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-fb021b6a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-fb021b6a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-fb021b6a],.btn[data-v-fb021b6a],button[data-v-fb021b6a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-fb021b6a],.btn-default[type=submit][data-v-fb021b6a],.btn.btn-primary[data-v-fb021b6a],.btn[type=submit][data-v-fb021b6a],button.btn-primary[data-v-fb021b6a],button[type=submit][data-v-fb021b6a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-fb021b6a],.btn-default .icon[data-v-fb021b6a],button .icon[data-v-fb021b6a]{margin-right:.5em}input[type=password][data-v-fb021b6a],input[type=text][data-v-fb021b6a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-fb021b6a]:focus,input[type=text][data-v-fb021b6a]:focus{border:1px solid #35b870}button[data-v-fb021b6a],input[data-v-fb021b6a]{outline:none}input[type=text][data-v-fb021b6a]:hover,textarea[data-v-fb021b6a]:hover{border:1px solid #9cdfb0}ul[data-v-fb021b6a]{margin:0;padding:0;list-style:none}a[data-v-fb021b6a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-fb021b6a]:hover{color:#35b870}[data-v-fb021b6a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-fb021b6a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-fb021b6a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-fb021b6a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-fb021b6a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-fb021b6a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-fb021b6a] .nav .path{cursor:pointer}.browser[data-v-fb021b6a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-fb021b6a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-fb021b6a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-fb021b6a],input[type=number][data-v-fb021b6a],input[type=password][data-v-fb021b6a],input[type=search][data-v-fb021b6a],input[type=text][data-v-fb021b6a],input[type=time][data-v-fb021b6a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-fb021b6a]:hover,input[type=number][data-v-fb021b6a]:hover,input[type=password][data-v-fb021b6a]:hover,input[type=search][data-v-fb021b6a]:hover,input[type=text][data-v-fb021b6a]:hover,input[type=time][data-v-fb021b6a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-fb021b6a]:focus,input[type=number][data-v-fb021b6a]:focus,input[type=password][data-v-fb021b6a]:focus,input[type=search][data-v-fb021b6a]:focus,input[type=text][data-v-fb021b6a]:focus,input[type=time][data-v-fb021b6a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-fb021b6a],input[type=number].with-icon[data-v-fb021b6a],input[type=password].with-icon[data-v-fb021b6a],input[type=search].with-icon[data-v-fb021b6a],input[type=text].with-icon[data-v-fb021b6a],input[type=time].with-icon[data-v-fb021b6a]{padding-left:.3em}input[type=search][data-v-fb021b6a],input[type=text][data-v-fb021b6a]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-fb021b6a],.fade-in[data-v-fb021b6a]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-fb021b6a;-webkit-animation-name:fadeIn-fb021b6a}.fade-out[data-v-fb021b6a]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-fb021b6a;-webkit-animation-name:fadeOut-fb021b6a}@keyframes fadeIn-fb021b6a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-fb021b6a{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-fb021b6a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-fb021b6a;-webkit-animation-name:glow-fb021b6a}.loop[data-v-fb021b6a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-fb021b6a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-fb021b6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-fb021b6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-fb021b6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-fb021b6a]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-fb021b6a]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-fb021b6a]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-fb021b6a]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-fb021b6a]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-fb021b6a]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-fb021b6a]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-fb021b6a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-fb021b6a]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-fb021b6a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-fb021b6a]{margin-right:.5em}.entity .head .icon[data-v-fb021b6a]:hover{color:#35b870}.entity .head .label[data-v-fb021b6a]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-fb021b6a]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-fb021b6a]:hover{color:#35b870}.entity .head .value[data-v-fb021b6a]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-fb021b6a]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-fb021b6a]{margin-right:2.5em}.entity .head .value-container[data-v-fb021b6a]{min-width:7em}.entity .head .unit[data-v-fb021b6a]{margin-left:.2em}.entity .head .pull-right[data-v-fb021b6a],.entity .head .value-container[data-v-fb021b6a]{padding-right:.5em}.entity .head .pull-right[data-v-fb021b6a] .power-switch,.entity .head .value-container[data-v-fb021b6a] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-fb021b6a]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-fb021b6a]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-fb021b6a]:hover{color:#35b870}.collapse-toggler[data-v-fb021b6a]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-fb021b6a]:hover{color:#35b870}.attributes .child[data-v-fb021b6a]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-fb021b6a]{flex-direction:column}}.attributes .child[data-v-fb021b6a]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-fb021b6a]:hover{cursor:auto}.attributes .child.head[data-v-fb021b6a]{cursor:pointer}.attributes .child.head[data-v-fb021b6a]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-fb021b6a]{font-weight:700}.attributes .child .value[data-v-fb021b6a]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-fb021b6a]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-fb021b6a]:last-child,.entity-container-wrapper.with-children[data-v-fb021b6a]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-fb021b6a]{animation:blink-animation-fb021b6a 1s steps(20,start)}@keyframes blink-animation-fb021b6a{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file +.col-1[data-v-fb021b6a],.entity .head .icon[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-fb021b6a]:first-child,.entity .head .icon[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-fb021b6a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-fb021b6a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-fb021b6a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-fb021b6a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-fb021b6a],.entity .head .value-and-toggler[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-fb021b6a]:first-child,.entity .head .value-and-toggler[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-fb021b6a]:first-child{margin-left:26%!important}.col-offset-3[data-v-fb021b6a]:not(first-child){margin-left:30%!important}.col-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-fb021b6a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-fb021b6a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-fb021b6a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-fb021b6a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-fb021b6a]:first-child{margin-left:52%!important}.col-offset-6[data-v-fb021b6a]:not(first-child){margin-left:56%!important}.col-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-fb021b6a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-fb021b6a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-fb021b6a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-fb021b6a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-fb021b6a]:first-child{margin-left:78%!important}.col-offset-9[data-v-fb021b6a]:not(first-child){margin-left:82%!important}.col-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-fb021b6a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-fb021b6a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-fb021b6a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-fb021b6a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-fb021b6a],.entity .head .value-container[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-fb021b6a]:first-child,.entity .head .value-container[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-s-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-s-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-fb021b6a],.entity .head .label[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-fb021b6a]:first-child,.entity .head .label[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-s-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-s-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-fb021b6a],.attributes .child .value[data-v-fb021b6a],.col-s-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-fb021b6a]:first-child,.attributes .child .value[data-v-fb021b6a]:first-child,.col-s-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-fb021b6a]{display:none!important}.s-visible[data-v-fb021b6a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-fb021b6a],.entity .head .value-container[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-fb021b6a]:first-child,.entity .head .value-container[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-m-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-fb021b6a],.attributes .child .value[data-v-fb021b6a],.col-m-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-fb021b6a]:first-child,.attributes .child .value[data-v-fb021b6a]:first-child,.col-m-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-m-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-fb021b6a],.entity .head .label[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-fb021b6a]:first-child,.entity .head .label[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-m-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-m-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-fb021b6a]{display:none!important}.m-visible[data-v-fb021b6a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-l-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-l-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-l-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-l-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-fb021b6a]{display:none!important}.l-visible[data-v-fb021b6a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-xl-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-xl-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-xl-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xl-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-fb021b6a]{display:none!important}.xl-visible[data-v-fb021b6a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-fb021b6a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-fb021b6a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-fb021b6a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-fb021b6a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-fb021b6a]{margin-left:26%}.col-no-margin-xxl-3[data-v-fb021b6a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-fb021b6a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-fb021b6a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-fb021b6a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-fb021b6a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-fb021b6a]{margin-left:52%}.col-no-margin-xxl-6[data-v-fb021b6a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-fb021b6a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-fb021b6a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-fb021b6a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-fb021b6a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-fb021b6a]{margin-left:78%}.col-no-margin-xxl-9[data-v-fb021b6a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-fb021b6a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-fb021b6a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-fb021b6a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-fb021b6a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-fb021b6a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-fb021b6a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-fb021b6a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-fb021b6a]{display:none!important}.xxl-visible[data-v-fb021b6a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-fb021b6a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-fb021b6a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-fb021b6a]{display:none!important}}.vertical-center[data-v-fb021b6a]{display:flex;align-items:center}.horizontal-center[data-v-fb021b6a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-fb021b6a],.pull-right[data-v-fb021b6a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-fb021b6a]{display:none!important}.no-content[data-v-fb021b6a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-fb021b6a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-fb021b6a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-fb021b6a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-fb021b6a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-fb021b6a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-fb021b6a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-fb021b6a],.btn[data-v-fb021b6a],button[data-v-fb021b6a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-fb021b6a],.btn-default[type=submit][data-v-fb021b6a],.btn.btn-primary[data-v-fb021b6a],.btn[type=submit][data-v-fb021b6a],button.btn-primary[data-v-fb021b6a],button[type=submit][data-v-fb021b6a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-fb021b6a]:hover,.btn[data-v-fb021b6a]:hover,button[data-v-fb021b6a]:hover{color:#35b870}.btn .icon[data-v-fb021b6a],.btn-default .icon[data-v-fb021b6a],button .icon[data-v-fb021b6a]{margin-right:.5em}.btn-default[data-v-fb021b6a]:disabled,.btn-default[disabled][data-v-fb021b6a],.btn[data-v-fb021b6a]:disabled,.btn[disabled][data-v-fb021b6a],button[data-v-fb021b6a]:disabled,button[disabled][data-v-fb021b6a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-fb021b6a]{cursor:grab!important}.dragged[data-v-fb021b6a]{opacity:.5!important}input[type=password][data-v-fb021b6a],input[type=text][data-v-fb021b6a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-fb021b6a]:focus,input[type=text][data-v-fb021b6a]:focus{border:1px solid #35b870}button[data-v-fb021b6a],input[data-v-fb021b6a]{outline:none}input[type=text][data-v-fb021b6a]:hover,textarea[data-v-fb021b6a]:hover{border:1px solid #9cdfb0}ul[data-v-fb021b6a]{margin:0;padding:0;list-style:none}a[data-v-fb021b6a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-fb021b6a]:hover{color:#35b870}[data-v-fb021b6a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-fb021b6a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-fb021b6a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-fb021b6a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-fb021b6a]{color:#ad1717}body[data-v-fb021b6a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-fb021b6a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-fb021b6a] .nav .path{cursor:pointer}.browser[data-v-fb021b6a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-fb021b6a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-fb021b6a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-fb021b6a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-fb021b6a],input[type=number][data-v-fb021b6a],input[type=password][data-v-fb021b6a],input[type=search][data-v-fb021b6a],input[type=text][data-v-fb021b6a],input[type=time][data-v-fb021b6a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-fb021b6a]:hover,input[type=number][data-v-fb021b6a]:hover,input[type=password][data-v-fb021b6a]:hover,input[type=search][data-v-fb021b6a]:hover,input[type=text][data-v-fb021b6a]:hover,input[type=time][data-v-fb021b6a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-fb021b6a]:focus,input[type=number][data-v-fb021b6a]:focus,input[type=password][data-v-fb021b6a]:focus,input[type=search][data-v-fb021b6a]:focus,input[type=text][data-v-fb021b6a]:focus,input[type=time][data-v-fb021b6a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-fb021b6a],input[type=number].with-icon[data-v-fb021b6a],input[type=password].with-icon[data-v-fb021b6a],input[type=search].with-icon[data-v-fb021b6a],input[type=text].with-icon[data-v-fb021b6a],input[type=time].with-icon[data-v-fb021b6a]{padding-left:.3em}input[type=search][data-v-fb021b6a],input[type=text][data-v-fb021b6a]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-fb021b6a],.fade-in[data-v-fb021b6a]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-fb021b6a;-webkit-animation-name:fadeIn-fb021b6a}.fade-out[data-v-fb021b6a]{animation-fill-mode:both;animation-name:fadeOut-fb021b6a;-webkit-animation-name:fadeOut-fb021b6a}.expand[data-v-fb021b6a],.fade-out[data-v-fb021b6a]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-fb021b6a]{animation-fill-mode:both;animation-name:expand-fb021b6a;-webkit-animation-name:expand-fb021b6a}.shrink[data-v-fb021b6a]{animation-fill-mode:both;animation-name:shrink-fb021b6a;-webkit-animation-name:shrink-fb021b6a}.fold[data-v-fb021b6a],.shrink[data-v-fb021b6a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-fb021b6a]{animation-fill-mode:both;animation-name:fold-fb021b6a;-webkit-animation-name:fold-fb021b6a}.unfold[data-v-fb021b6a]{animation-fill-mode:both;animation-name:unfold-fb021b6a;-webkit-animation-name:unfold-fb021b6a}.dim[data-v-fb021b6a],.unfold[data-v-fb021b6a]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-fb021b6a]{animation-fill-mode:both;animation-name:dim-fb021b6a;-webkit-animation-name:dim-fb021b6a}.brighten[data-v-fb021b6a]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-fb021b6a;-webkit-animation-name:brighten-fb021b6a}@keyframes fadeIn-fb021b6a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-fb021b6a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-fb021b6a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-fb021b6a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-fb021b6a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-fb021b6a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-fb021b6a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-fb021b6a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-fb021b6a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-fb021b6a;-webkit-animation-name:glow-fb021b6a}.loop[data-v-fb021b6a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-fb021b6a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-fb021b6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-fb021b6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-fb021b6a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-fb021b6a]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-fb021b6a]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-fb021b6a]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-fb021b6a]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-fb021b6a]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-fb021b6a]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-fb021b6a]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-fb021b6a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-fb021b6a]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-fb021b6a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-fb021b6a]{margin-right:.5em}.entity .head .icon[data-v-fb021b6a]:hover{color:#35b870}.entity .head .label[data-v-fb021b6a]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-fb021b6a]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-fb021b6a]:hover{color:#35b870}.entity .head .value[data-v-fb021b6a]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-fb021b6a]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-fb021b6a]{margin-right:2.5em}.entity .head .value-container[data-v-fb021b6a]{min-width:7em}.entity .head .unit[data-v-fb021b6a]{margin-left:.2em}.entity .head .pull-right[data-v-fb021b6a],.entity .head .value-container[data-v-fb021b6a]{padding-right:.5em}.entity .head .pull-right[data-v-fb021b6a] .power-switch,.entity .head .value-container[data-v-fb021b6a] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-fb021b6a]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-fb021b6a]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-fb021b6a]:hover{color:#35b870}.collapse-toggler[data-v-fb021b6a]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-fb021b6a]:hover{color:#35b870}.attributes .child[data-v-fb021b6a]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-fb021b6a]{flex-direction:column}}.attributes .child[data-v-fb021b6a]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-fb021b6a]:hover{cursor:auto}.attributes .child.head[data-v-fb021b6a]{cursor:pointer}.attributes .child.head[data-v-fb021b6a]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-fb021b6a]{font-weight:700}.attributes .child .value[data-v-fb021b6a]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-fb021b6a]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-fb021b6a]:last-child,.entity-container-wrapper.with-children[data-v-fb021b6a]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-fb021b6a]{animation:blink-animation-fb021b6a 1s steps(20,start)}@keyframes blink-animation-fb021b6a{0%{background:initial}50%{background:#8fefb7}to{background:initial}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8989.fd366c78.css b/platypush/backend/http/webapp/dist/static/css/8989.b08bd0bb.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/8989.fd366c78.css rename to platypush/backend/http/webapp/dist/static/css/8989.b08bd0bb.css index 24afc9fdc9..26d2dfccc2 100644 --- a/platypush/backend/http/webapp/dist/static/css/8989.fd366c78.css +++ b/platypush/backend/http/webapp/dist/static/css/8989.b08bd0bb.css @@ -1 +1 @@ -.col-1[data-v-3dae9da0],.entity .head .icon[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3dae9da0]:first-child,.entity .head .icon[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3dae9da0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3dae9da0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3dae9da0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3dae9da0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3dae9da0],.entity .head .value-and-toggler[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3dae9da0]:first-child,.entity .head .value-and-toggler[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3dae9da0]:first-child{margin-left:26%!important}.col-offset-3[data-v-3dae9da0]:not(first-child){margin-left:30%!important}.col-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3dae9da0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3dae9da0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3dae9da0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3dae9da0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3dae9da0]:first-child{margin-left:52%!important}.col-offset-6[data-v-3dae9da0]:not(first-child){margin-left:56%!important}.col-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3dae9da0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3dae9da0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3dae9da0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3dae9da0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3dae9da0]:first-child{margin-left:78%!important}.col-offset-9[data-v-3dae9da0]:not(first-child){margin-left:82%!important}.col-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3dae9da0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3dae9da0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3dae9da0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3dae9da0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3dae9da0],.entity .head .value-container[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3dae9da0]:first-child,.entity .head .value-container[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-s-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-s-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3dae9da0],.entity .head .label[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3dae9da0]:first-child,.entity .head .label[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-s-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-3dae9da0],.attributes .child .value[data-v-3dae9da0],.col-s-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-3dae9da0]:first-child,.attributes .child .value[data-v-3dae9da0]:first-child,.col-s-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3dae9da0]{display:none!important}.s-visible[data-v-3dae9da0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3dae9da0],.entity .head .value-container[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3dae9da0]:first-child,.entity .head .value-container[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-m-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-3dae9da0],.attributes .child .value[data-v-3dae9da0],.col-m-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-3dae9da0]:first-child,.attributes .child .value[data-v-3dae9da0]:first-child,.col-m-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-m-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3dae9da0],.entity .head .label[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3dae9da0]:first-child,.entity .head .label[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-m-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3dae9da0]{display:none!important}.m-visible[data-v-3dae9da0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-l-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-l-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-l-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3dae9da0]{display:none!important}.l-visible[data-v-3dae9da0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-xl-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-xl-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-xl-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3dae9da0]{display:none!important}.xl-visible[data-v-3dae9da0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-xxl-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-xxl-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-xxl-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3dae9da0]{display:none!important}.xxl-visible[data-v-3dae9da0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3dae9da0]{display:none!important}}.vertical-center[data-v-3dae9da0]{display:flex;align-items:center}.horizontal-center[data-v-3dae9da0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-3dae9da0],.pull-right[data-v-3dae9da0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3dae9da0]{display:none!important}.no-content[data-v-3dae9da0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3dae9da0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3dae9da0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3dae9da0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3dae9da0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3dae9da0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3dae9da0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3dae9da0],.btn[data-v-3dae9da0],button[data-v-3dae9da0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3dae9da0],.btn-default[type=submit][data-v-3dae9da0],.btn.btn-primary[data-v-3dae9da0],.btn[type=submit][data-v-3dae9da0],button.btn-primary[data-v-3dae9da0],button[type=submit][data-v-3dae9da0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3dae9da0],.btn-default .icon[data-v-3dae9da0],button .icon[data-v-3dae9da0]{margin-right:.5em}input[type=password][data-v-3dae9da0],input[type=text][data-v-3dae9da0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3dae9da0]:focus,input[type=text][data-v-3dae9da0]:focus{border:1px solid #35b870}button[data-v-3dae9da0],input[data-v-3dae9da0]{outline:none}input[type=text][data-v-3dae9da0]:hover,textarea[data-v-3dae9da0]:hover{border:1px solid #9cdfb0}ul[data-v-3dae9da0]{margin:0;padding:0;list-style:none}a[data-v-3dae9da0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3dae9da0]:hover{color:#35b870}[data-v-3dae9da0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3dae9da0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3dae9da0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3dae9da0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3dae9da0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3dae9da0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3dae9da0] .nav .path{cursor:pointer}.browser[data-v-3dae9da0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3dae9da0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3dae9da0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3dae9da0],input[type=number][data-v-3dae9da0],input[type=password][data-v-3dae9da0],input[type=search][data-v-3dae9da0],input[type=text][data-v-3dae9da0],input[type=time][data-v-3dae9da0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3dae9da0]:hover,input[type=number][data-v-3dae9da0]:hover,input[type=password][data-v-3dae9da0]:hover,input[type=search][data-v-3dae9da0]:hover,input[type=text][data-v-3dae9da0]:hover,input[type=time][data-v-3dae9da0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3dae9da0]:focus,input[type=number][data-v-3dae9da0]:focus,input[type=password][data-v-3dae9da0]:focus,input[type=search][data-v-3dae9da0]:focus,input[type=text][data-v-3dae9da0]:focus,input[type=time][data-v-3dae9da0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3dae9da0],input[type=number].with-icon[data-v-3dae9da0],input[type=password].with-icon[data-v-3dae9da0],input[type=search].with-icon[data-v-3dae9da0],input[type=text].with-icon[data-v-3dae9da0],input[type=time].with-icon[data-v-3dae9da0]{padding-left:.3em}input[type=search][data-v-3dae9da0],input[type=text][data-v-3dae9da0]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-3dae9da0],.fade-in[data-v-3dae9da0]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-3dae9da0;-webkit-animation-name:fadeIn-3dae9da0}.fade-out[data-v-3dae9da0]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-3dae9da0;-webkit-animation-name:fadeOut-3dae9da0}@keyframes fadeIn-3dae9da0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3dae9da0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3dae9da0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3dae9da0;-webkit-animation-name:glow-3dae9da0}.loop[data-v-3dae9da0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3dae9da0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3dae9da0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3dae9da0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3dae9da0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-3dae9da0]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-3dae9da0]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-3dae9da0]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-3dae9da0]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-3dae9da0]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-3dae9da0]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-3dae9da0]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-3dae9da0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-3dae9da0]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-3dae9da0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-3dae9da0]{margin-right:.5em}.entity .head .icon[data-v-3dae9da0]:hover{color:#35b870}.entity .head .label[data-v-3dae9da0]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-3dae9da0]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-3dae9da0]:hover{color:#35b870}.entity .head .value[data-v-3dae9da0]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-3dae9da0]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-3dae9da0]{margin-right:2.5em}.entity .head .value-container[data-v-3dae9da0]{min-width:7em}.entity .head .unit[data-v-3dae9da0]{margin-left:.2em}.entity .head .pull-right[data-v-3dae9da0],.entity .head .value-container[data-v-3dae9da0]{padding-right:.5em}.entity .head .pull-right[data-v-3dae9da0] .power-switch,.entity .head .value-container[data-v-3dae9da0] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-3dae9da0]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-3dae9da0]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-3dae9da0]:hover{color:#35b870}.collapse-toggler[data-v-3dae9da0]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-3dae9da0]:hover{color:#35b870}.attributes .child[data-v-3dae9da0]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-3dae9da0]{flex-direction:column}}.attributes .child[data-v-3dae9da0]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-3dae9da0]:hover{cursor:auto}.attributes .child.head[data-v-3dae9da0]{cursor:pointer}.attributes .child.head[data-v-3dae9da0]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-3dae9da0]{font-weight:700}.attributes .child .value[data-v-3dae9da0]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-3dae9da0]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-3dae9da0]:last-child,.entity-container-wrapper.with-children[data-v-3dae9da0]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-3dae9da0]{animation:blink-animation-3dae9da0 1s steps(20,start)}@keyframes blink-animation-3dae9da0{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.weather-container .current-weather[data-v-3dae9da0]{display:flex;align-items:center;font-size:1.25em}.weather-container .current-weather .weather-summary[data-v-3dae9da0]{display:flex;align-items:center;justify-content:flex-end;flex-grow:1;margin-right:.5em}.weather-container .current-weather .temperature[data-v-3dae9da0]{margin-left:.5em} \ No newline at end of file +.col-1[data-v-3dae9da0],.entity .head .icon[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3dae9da0]:first-child,.entity .head .icon[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3dae9da0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3dae9da0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3dae9da0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3dae9da0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3dae9da0],.entity .head .value-and-toggler[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3dae9da0]:first-child,.entity .head .value-and-toggler[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3dae9da0]:first-child{margin-left:26%!important}.col-offset-3[data-v-3dae9da0]:not(first-child){margin-left:30%!important}.col-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3dae9da0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3dae9da0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3dae9da0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3dae9da0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3dae9da0]:first-child{margin-left:52%!important}.col-offset-6[data-v-3dae9da0]:not(first-child){margin-left:56%!important}.col-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3dae9da0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3dae9da0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3dae9da0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3dae9da0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3dae9da0]:first-child{margin-left:78%!important}.col-offset-9[data-v-3dae9da0]:not(first-child){margin-left:82%!important}.col-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3dae9da0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3dae9da0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3dae9da0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3dae9da0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3dae9da0],.entity .head .value-container[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3dae9da0]:first-child,.entity .head .value-container[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-s-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-s-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3dae9da0],.entity .head .label[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3dae9da0]:first-child,.entity .head .label[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-s-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-s-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-3dae9da0],.attributes .child .value[data-v-3dae9da0],.col-s-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-3dae9da0]:first-child,.attributes .child .value[data-v-3dae9da0]:first-child,.col-s-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3dae9da0]{display:none!important}.s-visible[data-v-3dae9da0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3dae9da0],.entity .head .value-container[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3dae9da0]:first-child,.entity .head .value-container[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-m-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-3dae9da0],.attributes .child .value[data-v-3dae9da0],.col-m-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-3dae9da0]:first-child,.attributes .child .value[data-v-3dae9da0]:first-child,.col-m-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-m-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3dae9da0],.entity .head .label[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3dae9da0]:first-child,.entity .head .label[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-m-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-m-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3dae9da0]{display:none!important}.m-visible[data-v-3dae9da0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-l-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-l-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-l-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-l-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3dae9da0]{display:none!important}.l-visible[data-v-3dae9da0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-xl-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-xl-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-xl-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xl-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3dae9da0]{display:none!important}.xl-visible[data-v-3dae9da0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3dae9da0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3dae9da0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3dae9da0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3dae9da0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3dae9da0]{margin-left:26%}.col-no-margin-xxl-3[data-v-3dae9da0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3dae9da0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3dae9da0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3dae9da0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3dae9da0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3dae9da0]{margin-left:52%}.col-no-margin-xxl-6[data-v-3dae9da0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3dae9da0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3dae9da0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3dae9da0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3dae9da0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3dae9da0]{margin-left:78%}.col-no-margin-xxl-9[data-v-3dae9da0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3dae9da0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3dae9da0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3dae9da0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3dae9da0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3dae9da0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3dae9da0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3dae9da0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3dae9da0]{display:none!important}.xxl-visible[data-v-3dae9da0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3dae9da0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3dae9da0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3dae9da0]{display:none!important}}.vertical-center[data-v-3dae9da0]{display:flex;align-items:center}.horizontal-center[data-v-3dae9da0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-3dae9da0],.pull-right[data-v-3dae9da0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3dae9da0]{display:none!important}.no-content[data-v-3dae9da0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3dae9da0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3dae9da0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3dae9da0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3dae9da0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3dae9da0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3dae9da0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3dae9da0],.btn[data-v-3dae9da0],button[data-v-3dae9da0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3dae9da0],.btn-default[type=submit][data-v-3dae9da0],.btn.btn-primary[data-v-3dae9da0],.btn[type=submit][data-v-3dae9da0],button.btn-primary[data-v-3dae9da0],button[type=submit][data-v-3dae9da0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3dae9da0]:hover,.btn[data-v-3dae9da0]:hover,button[data-v-3dae9da0]:hover{color:#35b870}.btn .icon[data-v-3dae9da0],.btn-default .icon[data-v-3dae9da0],button .icon[data-v-3dae9da0]{margin-right:.5em}.btn-default[data-v-3dae9da0]:disabled,.btn-default[disabled][data-v-3dae9da0],.btn[data-v-3dae9da0]:disabled,.btn[disabled][data-v-3dae9da0],button[data-v-3dae9da0]:disabled,button[disabled][data-v-3dae9da0]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3dae9da0]{cursor:grab!important}.dragged[data-v-3dae9da0]{opacity:.5!important}input[type=password][data-v-3dae9da0],input[type=text][data-v-3dae9da0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3dae9da0]:focus,input[type=text][data-v-3dae9da0]:focus{border:1px solid #35b870}button[data-v-3dae9da0],input[data-v-3dae9da0]{outline:none}input[type=text][data-v-3dae9da0]:hover,textarea[data-v-3dae9da0]:hover{border:1px solid #9cdfb0}ul[data-v-3dae9da0]{margin:0;padding:0;list-style:none}a[data-v-3dae9da0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3dae9da0]:hover{color:#35b870}[data-v-3dae9da0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3dae9da0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3dae9da0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3dae9da0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3dae9da0]{color:#ad1717}body[data-v-3dae9da0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3dae9da0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3dae9da0] .nav .path{cursor:pointer}.browser[data-v-3dae9da0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3dae9da0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3dae9da0]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3dae9da0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3dae9da0],input[type=number][data-v-3dae9da0],input[type=password][data-v-3dae9da0],input[type=search][data-v-3dae9da0],input[type=text][data-v-3dae9da0],input[type=time][data-v-3dae9da0]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3dae9da0]:hover,input[type=number][data-v-3dae9da0]:hover,input[type=password][data-v-3dae9da0]:hover,input[type=search][data-v-3dae9da0]:hover,input[type=text][data-v-3dae9da0]:hover,input[type=time][data-v-3dae9da0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3dae9da0]:focus,input[type=number][data-v-3dae9da0]:focus,input[type=password][data-v-3dae9da0]:focus,input[type=search][data-v-3dae9da0]:focus,input[type=text][data-v-3dae9da0]:focus,input[type=time][data-v-3dae9da0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3dae9da0],input[type=number].with-icon[data-v-3dae9da0],input[type=password].with-icon[data-v-3dae9da0],input[type=search].with-icon[data-v-3dae9da0],input[type=text].with-icon[data-v-3dae9da0],input[type=time].with-icon[data-v-3dae9da0]{padding-left:.3em}input[type=search][data-v-3dae9da0],input[type=text][data-v-3dae9da0]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-3dae9da0],.fade-in[data-v-3dae9da0]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-3dae9da0;-webkit-animation-name:fadeIn-3dae9da0}.fade-out[data-v-3dae9da0]{animation-fill-mode:both;animation-name:fadeOut-3dae9da0;-webkit-animation-name:fadeOut-3dae9da0}.expand[data-v-3dae9da0],.fade-out[data-v-3dae9da0]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-3dae9da0]{animation-fill-mode:both;animation-name:expand-3dae9da0;-webkit-animation-name:expand-3dae9da0}.shrink[data-v-3dae9da0]{animation-fill-mode:both;animation-name:shrink-3dae9da0;-webkit-animation-name:shrink-3dae9da0}.fold[data-v-3dae9da0],.shrink[data-v-3dae9da0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-3dae9da0]{animation-fill-mode:both;animation-name:fold-3dae9da0;-webkit-animation-name:fold-3dae9da0}.unfold[data-v-3dae9da0]{animation-fill-mode:both;animation-name:unfold-3dae9da0;-webkit-animation-name:unfold-3dae9da0}.dim[data-v-3dae9da0],.unfold[data-v-3dae9da0]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-3dae9da0]{animation-fill-mode:both;animation-name:dim-3dae9da0;-webkit-animation-name:dim-3dae9da0}.brighten[data-v-3dae9da0]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-3dae9da0;-webkit-animation-name:brighten-3dae9da0}@keyframes fadeIn-3dae9da0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3dae9da0{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3dae9da0{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3dae9da0{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3dae9da0{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3dae9da0{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3dae9da0{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3dae9da0{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3dae9da0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3dae9da0;-webkit-animation-name:glow-3dae9da0}.loop[data-v-3dae9da0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3dae9da0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3dae9da0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3dae9da0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3dae9da0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-3dae9da0]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-3dae9da0]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-3dae9da0]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-3dae9da0]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-3dae9da0]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-3dae9da0]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-3dae9da0]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-3dae9da0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-3dae9da0]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-3dae9da0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-3dae9da0]{margin-right:.5em}.entity .head .icon[data-v-3dae9da0]:hover{color:#35b870}.entity .head .label[data-v-3dae9da0]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-3dae9da0]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-3dae9da0]:hover{color:#35b870}.entity .head .value[data-v-3dae9da0]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-3dae9da0]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-3dae9da0]{margin-right:2.5em}.entity .head .value-container[data-v-3dae9da0]{min-width:7em}.entity .head .unit[data-v-3dae9da0]{margin-left:.2em}.entity .head .pull-right[data-v-3dae9da0],.entity .head .value-container[data-v-3dae9da0]{padding-right:.5em}.entity .head .pull-right[data-v-3dae9da0] .power-switch,.entity .head .value-container[data-v-3dae9da0] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-3dae9da0]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-3dae9da0]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-3dae9da0]:hover{color:#35b870}.collapse-toggler[data-v-3dae9da0]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-3dae9da0]:hover{color:#35b870}.attributes .child[data-v-3dae9da0]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-3dae9da0]{flex-direction:column}}.attributes .child[data-v-3dae9da0]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-3dae9da0]:hover{cursor:auto}.attributes .child.head[data-v-3dae9da0]{cursor:pointer}.attributes .child.head[data-v-3dae9da0]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-3dae9da0]{font-weight:700}.attributes .child .value[data-v-3dae9da0]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-3dae9da0]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-3dae9da0]:last-child,.entity-container-wrapper.with-children[data-v-3dae9da0]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-3dae9da0]{animation:blink-animation-3dae9da0 1s steps(20,start)}@keyframes blink-animation-3dae9da0{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.weather-container .current-weather[data-v-3dae9da0]{display:flex;align-items:center;font-size:1.25em}.weather-container .current-weather .weather-summary[data-v-3dae9da0]{display:flex;align-items:center;justify-content:flex-end;flex-grow:1;margin-right:.5em}.weather-container .current-weather .temperature[data-v-3dae9da0]{margin-left:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9025.80353e6d.css b/platypush/backend/http/webapp/dist/static/css/9025.80353e6d.css new file mode 100644 index 0000000000..1938519184 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9025.80353e6d.css @@ -0,0 +1 @@ +.col-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2e3f2ab5]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2e3f2ab5]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2e3f2ab5]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2e3f2ab5]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2e3f2ab5]:first-child{margin-left:26%!important}.col-offset-3[data-v-2e3f2ab5]:not(first-child){margin-left:30%!important}.col-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2e3f2ab5]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2e3f2ab5]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2e3f2ab5]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2e3f2ab5]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2e3f2ab5]:first-child{margin-left:52%!important}.col-offset-6[data-v-2e3f2ab5]:not(first-child){margin-left:56%!important}.col-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2e3f2ab5]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2e3f2ab5]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2e3f2ab5]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2e3f2ab5]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2e3f2ab5]:first-child{margin-left:78%!important}.col-offset-9[data-v-2e3f2ab5]:not(first-child){margin-left:82%!important}.col-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2e3f2ab5]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2e3f2ab5]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2e3f2ab5]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2e3f2ab5]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-1[data-v-2e3f2ab5]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-2[data-v-2e3f2ab5]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-3[data-v-2e3f2ab5]{margin-left:26%}.col-no-margin-s-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-4[data-v-2e3f2ab5]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-5[data-v-2e3f2ab5]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-6[data-v-2e3f2ab5]{margin-left:52%}.col-no-margin-s-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-7[data-v-2e3f2ab5]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-8[data-v-2e3f2ab5]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-9[data-v-2e3f2ab5]{margin-left:78%}.col-no-margin-s-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-10[data-v-2e3f2ab5]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-s-11[data-v-2e3f2ab5]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2e3f2ab5]{display:none!important}.s-visible[data-v-2e3f2ab5]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-1[data-v-2e3f2ab5]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-2[data-v-2e3f2ab5]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-3[data-v-2e3f2ab5]{margin-left:26%}.col-no-margin-m-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-4[data-v-2e3f2ab5]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-5[data-v-2e3f2ab5]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-6[data-v-2e3f2ab5]{margin-left:52%}.col-no-margin-m-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-7[data-v-2e3f2ab5]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-8[data-v-2e3f2ab5]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-9[data-v-2e3f2ab5]{margin-left:78%}.col-no-margin-m-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-10[data-v-2e3f2ab5]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-m-11[data-v-2e3f2ab5]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2e3f2ab5]{display:none!important}.m-visible[data-v-2e3f2ab5]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-1[data-v-2e3f2ab5]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-2[data-v-2e3f2ab5]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-3[data-v-2e3f2ab5]{margin-left:26%}.col-no-margin-l-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-4[data-v-2e3f2ab5]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-5[data-v-2e3f2ab5]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-6[data-v-2e3f2ab5]{margin-left:52%}.col-no-margin-l-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-7[data-v-2e3f2ab5]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-8[data-v-2e3f2ab5]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-9[data-v-2e3f2ab5]{margin-left:78%}.col-no-margin-l-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-10[data-v-2e3f2ab5]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-l-11[data-v-2e3f2ab5]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2e3f2ab5]{display:none!important}.l-visible[data-v-2e3f2ab5]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-1[data-v-2e3f2ab5]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-2[data-v-2e3f2ab5]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-3[data-v-2e3f2ab5]{margin-left:26%}.col-no-margin-xl-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-4[data-v-2e3f2ab5]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-5[data-v-2e3f2ab5]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-6[data-v-2e3f2ab5]{margin-left:52%}.col-no-margin-xl-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-7[data-v-2e3f2ab5]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-8[data-v-2e3f2ab5]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-9[data-v-2e3f2ab5]{margin-left:78%}.col-no-margin-xl-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-10[data-v-2e3f2ab5]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xl-11[data-v-2e3f2ab5]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2e3f2ab5]{display:none!important}.xl-visible[data-v-2e3f2ab5]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2e3f2ab5]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2e3f2ab5]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2e3f2ab5]{margin-left:26%}.col-no-margin-xxl-3[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2e3f2ab5]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2e3f2ab5]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2e3f2ab5]{margin-left:52%}.col-no-margin-xxl-6[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2e3f2ab5]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2e3f2ab5]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2e3f2ab5]{margin-left:78%}.col-no-margin-xxl-9[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2e3f2ab5]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2e3f2ab5]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2e3f2ab5]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2e3f2ab5]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2e3f2ab5]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2e3f2ab5]{display:none!important}.xxl-visible[data-v-2e3f2ab5]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2e3f2ab5]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2e3f2ab5]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2e3f2ab5]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2e3f2ab5]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2e3f2ab5]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2e3f2ab5]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2e3f2ab5]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2e3f2ab5]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2e3f2ab5]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2e3f2ab5]{display:none!important}}.vertical-center[data-v-2e3f2ab5]{display:flex;align-items:center}.horizontal-center[data-v-2e3f2ab5]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2e3f2ab5]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2e3f2ab5]{display:none!important}.no-content[data-v-2e3f2ab5]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2e3f2ab5]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2e3f2ab5]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2e3f2ab5]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2e3f2ab5]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2e3f2ab5]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2e3f2ab5]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2e3f2ab5],.btn[data-v-2e3f2ab5],button[data-v-2e3f2ab5]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2e3f2ab5],.btn-default[type=submit][data-v-2e3f2ab5],.btn.btn-primary[data-v-2e3f2ab5],.btn[type=submit][data-v-2e3f2ab5],button.btn-primary[data-v-2e3f2ab5],button[type=submit][data-v-2e3f2ab5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-2e3f2ab5]:hover,.btn[data-v-2e3f2ab5]:hover,button[data-v-2e3f2ab5]:hover{color:#35b870}.btn .icon[data-v-2e3f2ab5],.btn-default .icon[data-v-2e3f2ab5],button .icon[data-v-2e3f2ab5]{margin-right:.5em}.btn-default[data-v-2e3f2ab5]:disabled,.btn-default[disabled][data-v-2e3f2ab5],.btn[data-v-2e3f2ab5]:disabled,.btn[disabled][data-v-2e3f2ab5],button[data-v-2e3f2ab5]:disabled,button[disabled][data-v-2e3f2ab5]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-2e3f2ab5]{cursor:grab!important}.dragged[data-v-2e3f2ab5]{opacity:.5!important}input[type=password][data-v-2e3f2ab5],input[type=text][data-v-2e3f2ab5]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2e3f2ab5]:focus,input[type=text][data-v-2e3f2ab5]:focus{border:1px solid #35b870}button[data-v-2e3f2ab5],input[data-v-2e3f2ab5]{outline:none}input[type=text][data-v-2e3f2ab5]:hover,textarea[data-v-2e3f2ab5]:hover{border:1px solid #9cdfb0}ul[data-v-2e3f2ab5]{margin:0;padding:0;list-style:none}a[data-v-2e3f2ab5]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2e3f2ab5]:hover{color:#35b870}[data-v-2e3f2ab5]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2e3f2ab5]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2e3f2ab5]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2e3f2ab5]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-2e3f2ab5]{color:#ad1717}body[data-v-2e3f2ab5]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2e3f2ab5] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2e3f2ab5] .nav .path{cursor:pointer}.browser[data-v-2e3f2ab5] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2e3f2ab5] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-2e3f2ab5]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-2e3f2ab5]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2e3f2ab5],input[type=number][data-v-2e3f2ab5],input[type=password][data-v-2e3f2ab5],input[type=search][data-v-2e3f2ab5],input[type=text][data-v-2e3f2ab5],input[type=time][data-v-2e3f2ab5]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-2e3f2ab5]:hover,input[type=number][data-v-2e3f2ab5]:hover,input[type=password][data-v-2e3f2ab5]:hover,input[type=search][data-v-2e3f2ab5]:hover,input[type=text][data-v-2e3f2ab5]:hover,input[type=time][data-v-2e3f2ab5]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2e3f2ab5]:focus,input[type=number][data-v-2e3f2ab5]:focus,input[type=password][data-v-2e3f2ab5]:focus,input[type=search][data-v-2e3f2ab5]:focus,input[type=text][data-v-2e3f2ab5]:focus,input[type=time][data-v-2e3f2ab5]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2e3f2ab5],input[type=number].with-icon[data-v-2e3f2ab5],input[type=password].with-icon[data-v-2e3f2ab5],input[type=search].with-icon[data-v-2e3f2ab5],input[type=text].with-icon[data-v-2e3f2ab5],input[type=time].with-icon[data-v-2e3f2ab5]{padding-left:.3em}input[type=search][data-v-2e3f2ab5],input[type=text][data-v-2e3f2ab5]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2e3f2ab5]{animation-fill-mode:both;animation-name:fadeIn-2e3f2ab5;-webkit-animation-name:fadeIn-2e3f2ab5}.fade-in[data-v-2e3f2ab5],.fade-out[data-v-2e3f2ab5]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2e3f2ab5]{animation-fill-mode:both;animation-name:fadeOut-2e3f2ab5;-webkit-animation-name:fadeOut-2e3f2ab5}.expand[data-v-2e3f2ab5]{animation-fill-mode:both;animation-name:expand-2e3f2ab5;-webkit-animation-name:expand-2e3f2ab5}.expand[data-v-2e3f2ab5],.shrink[data-v-2e3f2ab5]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-2e3f2ab5]{animation-fill-mode:both;animation-name:shrink-2e3f2ab5;-webkit-animation-name:shrink-2e3f2ab5}.fold[data-v-2e3f2ab5]{animation-fill-mode:both;animation-name:fold-2e3f2ab5;-webkit-animation-name:fold-2e3f2ab5}.fold[data-v-2e3f2ab5],.unfold[data-v-2e3f2ab5]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-2e3f2ab5]{animation-fill-mode:both;animation-name:unfold-2e3f2ab5;-webkit-animation-name:unfold-2e3f2ab5}.dim[data-v-2e3f2ab5]{animation-fill-mode:both;animation-name:dim-2e3f2ab5;-webkit-animation-name:dim-2e3f2ab5}.brighten[data-v-2e3f2ab5],.dim[data-v-2e3f2ab5]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-2e3f2ab5]{animation-fill-mode:both;animation-name:brighten-2e3f2ab5;-webkit-animation-name:brighten-2e3f2ab5}@keyframes fadeIn-2e3f2ab5{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2e3f2ab5{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-2e3f2ab5{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-2e3f2ab5{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-2e3f2ab5{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-2e3f2ab5{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-2e3f2ab5{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-2e3f2ab5{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-2e3f2ab5]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-2e3f2ab5;-webkit-animation-name:glow-2e3f2ab5}.loop[data-v-2e3f2ab5]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-2e3f2ab5{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-2e3f2ab5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2e3f2ab5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2e3f2ab5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.floating-dropdown-container .body-container[data-v-2e3f2ab5]{position:relative;display:inline-flex;flex-direction:column}.floating-dropdown-container .body-container button[data-v-2e3f2ab5]{background:none;border:0;padding:.5em}.floating-dropdown-container .body-container button[data-v-2e3f2ab5]:hover{color:#35b870}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.sort-buttons .floating-btn{z-index:100}.sort-buttons-dropdown-body .title{font-weight:700;text-align:center;box-shadow:0 3px 2px -1px silver;border-top:1px solid #ddd}.sort-buttons-dropdown-body .item.active{color:#32b646} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/906.0c794836.css b/platypush/backend/http/webapp/dist/static/css/906.2d11adc8.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/906.0c794836.css rename to platypush/backend/http/webapp/dist/static/css/906.2d11adc8.css index 27b92fd4d5..e2aff97a06 100644 --- a/platypush/backend/http/webapp/dist/static/css/906.0c794836.css +++ b/platypush/backend/http/webapp/dist/static/css/906.2d11adc8.css @@ -1 +1 @@ -.col-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3894ad4d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3894ad4d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3894ad4d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3894ad4d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3894ad4d]:first-child{margin-left:26%!important}.col-offset-3[data-v-3894ad4d]:not(first-child){margin-left:30%!important}.col-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3894ad4d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3894ad4d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3894ad4d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3894ad4d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3894ad4d]:first-child{margin-left:52%!important}.col-offset-6[data-v-3894ad4d]:not(first-child){margin-left:56%!important}.col-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3894ad4d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3894ad4d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3894ad4d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3894ad4d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3894ad4d]:first-child{margin-left:78%!important}.col-offset-9[data-v-3894ad4d]:not(first-child){margin-left:82%!important}.col-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3894ad4d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3894ad4d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3894ad4d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3894ad4d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-s-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-s-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-s-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3894ad4d]{display:none!important}.s-visible[data-v-3894ad4d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-m-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-m-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-m-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3894ad4d]{display:none!important}.m-visible[data-v-3894ad4d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-l-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-l-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-l-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3894ad4d]{display:none!important}.l-visible[data-v-3894ad4d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-xl-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-xl-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-xl-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3894ad4d]{display:none!important}.xl-visible[data-v-3894ad4d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-xxl-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-xxl-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-xxl-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3894ad4d]{display:none!important}.xxl-visible[data-v-3894ad4d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3894ad4d]{display:none!important}}.vertical-center[data-v-3894ad4d]{display:flex;align-items:center}.horizontal-center[data-v-3894ad4d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3894ad4d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3894ad4d]{display:none!important}.no-content[data-v-3894ad4d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3894ad4d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3894ad4d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3894ad4d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3894ad4d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3894ad4d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3894ad4d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3894ad4d],.btn[data-v-3894ad4d],button[data-v-3894ad4d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3894ad4d],.btn-default[type=submit][data-v-3894ad4d],.btn.btn-primary[data-v-3894ad4d],.btn[type=submit][data-v-3894ad4d],button.btn-primary[data-v-3894ad4d],button[type=submit][data-v-3894ad4d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3894ad4d],.btn-default .icon[data-v-3894ad4d],button .icon[data-v-3894ad4d]{margin-right:.5em}input[type=password][data-v-3894ad4d],input[type=text][data-v-3894ad4d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3894ad4d]:focus,input[type=text][data-v-3894ad4d]:focus{border:1px solid #35b870}button[data-v-3894ad4d],input[data-v-3894ad4d]{outline:none}input[type=text][data-v-3894ad4d]:hover,textarea[data-v-3894ad4d]:hover{border:1px solid #9cdfb0}ul[data-v-3894ad4d]{margin:0;padding:0;list-style:none}a[data-v-3894ad4d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3894ad4d]:hover{color:#35b870}[data-v-3894ad4d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3894ad4d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3894ad4d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3894ad4d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3894ad4d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3894ad4d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3894ad4d] .nav .path{cursor:pointer}.browser[data-v-3894ad4d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3894ad4d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3894ad4d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3894ad4d],input[type=number][data-v-3894ad4d],input[type=password][data-v-3894ad4d],input[type=search][data-v-3894ad4d],input[type=text][data-v-3894ad4d],input[type=time][data-v-3894ad4d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3894ad4d]:hover,input[type=number][data-v-3894ad4d]:hover,input[type=password][data-v-3894ad4d]:hover,input[type=search][data-v-3894ad4d]:hover,input[type=text][data-v-3894ad4d]:hover,input[type=time][data-v-3894ad4d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3894ad4d]:focus,input[type=number][data-v-3894ad4d]:focus,input[type=password][data-v-3894ad4d]:focus,input[type=search][data-v-3894ad4d]:focus,input[type=text][data-v-3894ad4d]:focus,input[type=time][data-v-3894ad4d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3894ad4d],input[type=number].with-icon[data-v-3894ad4d],input[type=password].with-icon[data-v-3894ad4d],input[type=search].with-icon[data-v-3894ad4d],input[type=text].with-icon[data-v-3894ad4d],input[type=time].with-icon[data-v-3894ad4d]{padding-left:.3em}input[type=search][data-v-3894ad4d],input[type=text][data-v-3894ad4d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3894ad4d]{animation-fill-mode:both;animation-name:fadeIn-3894ad4d;-webkit-animation-name:fadeIn-3894ad4d}.fade-in[data-v-3894ad4d],.fade-out[data-v-3894ad4d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3894ad4d]{animation-fill-mode:both;animation-name:fadeOut-3894ad4d;-webkit-animation-name:fadeOut-3894ad4d}@keyframes fadeIn-3894ad4d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3894ad4d{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3894ad4d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3894ad4d;-webkit-animation-name:glow-3894ad4d}.loop[data-v-3894ad4d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3894ad4d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3894ad4d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3894ad4d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3894ad4d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.progress-bar-container[data-v-3894ad4d]{width:100%;display:flex;align-items:center}.progress-bar-container .time[data-v-3894ad4d]{width:2.5em;font-size:.7em;position:relative;margin-left:0}.progress-bar-container .elapsed-time[data-v-3894ad4d]{text-align:right;float:right}.progress-bar-container .time-bar[data-v-3894ad4d]{width:calc(100% - 7em);flex-grow:1;margin:0 .5em} \ No newline at end of file +.col-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3894ad4d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3894ad4d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3894ad4d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3894ad4d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3894ad4d]:first-child{margin-left:26%!important}.col-offset-3[data-v-3894ad4d]:not(first-child){margin-left:30%!important}.col-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3894ad4d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3894ad4d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3894ad4d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3894ad4d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3894ad4d]:first-child{margin-left:52%!important}.col-offset-6[data-v-3894ad4d]:not(first-child){margin-left:56%!important}.col-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3894ad4d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3894ad4d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3894ad4d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3894ad4d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3894ad4d]:first-child{margin-left:78%!important}.col-offset-9[data-v-3894ad4d]:not(first-child){margin-left:82%!important}.col-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3894ad4d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3894ad4d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3894ad4d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3894ad4d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-s-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-s-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-s-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-s-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3894ad4d]{display:none!important}.s-visible[data-v-3894ad4d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-m-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-m-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-m-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-m-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3894ad4d]{display:none!important}.m-visible[data-v-3894ad4d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-l-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-l-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-l-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-l-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3894ad4d]{display:none!important}.l-visible[data-v-3894ad4d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-xl-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-xl-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-xl-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xl-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3894ad4d]{display:none!important}.xl-visible[data-v-3894ad4d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3894ad4d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3894ad4d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3894ad4d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3894ad4d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3894ad4d]{margin-left:26%}.col-no-margin-xxl-3[data-v-3894ad4d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3894ad4d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3894ad4d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3894ad4d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3894ad4d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3894ad4d]{margin-left:52%}.col-no-margin-xxl-6[data-v-3894ad4d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3894ad4d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3894ad4d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3894ad4d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3894ad4d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3894ad4d]{margin-left:78%}.col-no-margin-xxl-9[data-v-3894ad4d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3894ad4d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3894ad4d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3894ad4d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3894ad4d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3894ad4d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3894ad4d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3894ad4d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3894ad4d]{display:none!important}.xxl-visible[data-v-3894ad4d]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3894ad4d]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3894ad4d]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3894ad4d]{display:none!important}}.vertical-center[data-v-3894ad4d]{display:flex;align-items:center}.horizontal-center[data-v-3894ad4d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3894ad4d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3894ad4d]{display:none!important}.no-content[data-v-3894ad4d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3894ad4d]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3894ad4d]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3894ad4d]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3894ad4d]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3894ad4d]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3894ad4d]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3894ad4d],.btn[data-v-3894ad4d],button[data-v-3894ad4d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3894ad4d],.btn-default[type=submit][data-v-3894ad4d],.btn.btn-primary[data-v-3894ad4d],.btn[type=submit][data-v-3894ad4d],button.btn-primary[data-v-3894ad4d],button[type=submit][data-v-3894ad4d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-3894ad4d]:hover,.btn[data-v-3894ad4d]:hover,button[data-v-3894ad4d]:hover{color:#35b870}.btn .icon[data-v-3894ad4d],.btn-default .icon[data-v-3894ad4d],button .icon[data-v-3894ad4d]{margin-right:.5em}.btn-default[data-v-3894ad4d]:disabled,.btn-default[disabled][data-v-3894ad4d],.btn[data-v-3894ad4d]:disabled,.btn[disabled][data-v-3894ad4d],button[data-v-3894ad4d]:disabled,button[disabled][data-v-3894ad4d]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-3894ad4d]{cursor:grab!important}.dragged[data-v-3894ad4d]{opacity:.5!important}input[type=password][data-v-3894ad4d],input[type=text][data-v-3894ad4d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3894ad4d]:focus,input[type=text][data-v-3894ad4d]:focus{border:1px solid #35b870}button[data-v-3894ad4d],input[data-v-3894ad4d]{outline:none}input[type=text][data-v-3894ad4d]:hover,textarea[data-v-3894ad4d]:hover{border:1px solid #9cdfb0}ul[data-v-3894ad4d]{margin:0;padding:0;list-style:none}a[data-v-3894ad4d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3894ad4d]:hover{color:#35b870}[data-v-3894ad4d]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3894ad4d]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3894ad4d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3894ad4d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-3894ad4d]{color:#ad1717}body[data-v-3894ad4d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3894ad4d] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3894ad4d] .nav .path{cursor:pointer}.browser[data-v-3894ad4d] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3894ad4d] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-3894ad4d]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-3894ad4d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3894ad4d],input[type=number][data-v-3894ad4d],input[type=password][data-v-3894ad4d],input[type=search][data-v-3894ad4d],input[type=text][data-v-3894ad4d],input[type=time][data-v-3894ad4d]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-3894ad4d]:hover,input[type=number][data-v-3894ad4d]:hover,input[type=password][data-v-3894ad4d]:hover,input[type=search][data-v-3894ad4d]:hover,input[type=text][data-v-3894ad4d]:hover,input[type=time][data-v-3894ad4d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3894ad4d]:focus,input[type=number][data-v-3894ad4d]:focus,input[type=password][data-v-3894ad4d]:focus,input[type=search][data-v-3894ad4d]:focus,input[type=text][data-v-3894ad4d]:focus,input[type=time][data-v-3894ad4d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3894ad4d],input[type=number].with-icon[data-v-3894ad4d],input[type=password].with-icon[data-v-3894ad4d],input[type=search].with-icon[data-v-3894ad4d],input[type=text].with-icon[data-v-3894ad4d],input[type=time].with-icon[data-v-3894ad4d]{padding-left:.3em}input[type=search][data-v-3894ad4d],input[type=text][data-v-3894ad4d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3894ad4d]{animation-fill-mode:both;animation-name:fadeIn-3894ad4d;-webkit-animation-name:fadeIn-3894ad4d}.fade-in[data-v-3894ad4d],.fade-out[data-v-3894ad4d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3894ad4d]{animation-fill-mode:both;animation-name:fadeOut-3894ad4d;-webkit-animation-name:fadeOut-3894ad4d}.expand[data-v-3894ad4d]{animation-fill-mode:both;animation-name:expand-3894ad4d;-webkit-animation-name:expand-3894ad4d}.expand[data-v-3894ad4d],.shrink[data-v-3894ad4d]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-3894ad4d]{animation-fill-mode:both;animation-name:shrink-3894ad4d;-webkit-animation-name:shrink-3894ad4d}.fold[data-v-3894ad4d]{animation-fill-mode:both;animation-name:fold-3894ad4d;-webkit-animation-name:fold-3894ad4d}.fold[data-v-3894ad4d],.unfold[data-v-3894ad4d]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-3894ad4d]{animation-fill-mode:both;animation-name:unfold-3894ad4d;-webkit-animation-name:unfold-3894ad4d}.dim[data-v-3894ad4d]{animation-fill-mode:both;animation-name:dim-3894ad4d;-webkit-animation-name:dim-3894ad4d}.brighten[data-v-3894ad4d],.dim[data-v-3894ad4d]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-3894ad4d]{animation-fill-mode:both;animation-name:brighten-3894ad4d;-webkit-animation-name:brighten-3894ad4d}@keyframes fadeIn-3894ad4d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3894ad4d{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-3894ad4d{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-3894ad4d{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-3894ad4d{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-3894ad4d{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-3894ad4d{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-3894ad4d{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-3894ad4d]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3894ad4d;-webkit-animation-name:glow-3894ad4d}.loop[data-v-3894ad4d]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3894ad4d{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3894ad4d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3894ad4d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3894ad4d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.progress-bar-container[data-v-3894ad4d]{width:100%;display:flex;align-items:center}.progress-bar-container .time[data-v-3894ad4d]{width:2.5em;font-size:.7em;position:relative;margin-left:0}.progress-bar-container .elapsed-time[data-v-3894ad4d]{text-align:right;float:right}.progress-bar-container .time-bar[data-v-3894ad4d]{width:calc(100% - 7em);flex-grow:1;margin:0 .5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9092.5de40234.css b/platypush/backend/http/webapp/dist/static/css/9092.5953fa24.css similarity index 74% rename from platypush/backend/http/webapp/dist/static/css/9092.5de40234.css rename to platypush/backend/http/webapp/dist/static/css/9092.5953fa24.css index ebf30d9062..1265a7c658 100644 --- a/platypush/backend/http/webapp/dist/static/css/9092.5de40234.css +++ b/platypush/backend/http/webapp/dist/static/css/9092.5953fa24.css @@ -1 +1 @@ -.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.channel,.playlist-container{--banner-height:5em}}@media screen and (min-width:769px){.channel,.playlist-container{--banner-height:100px}}.header{border-bottom:1px solid #ddd;margin-bottom:.5em;position:relative;overflow-y:auto}.header .banner{height:var(--banner-height);display:flex;background-color:#000;justify-content:center}.header .banner img{max-width:800px;max-height:100%;flex:1}.header .image{height:100px;margin:-2.5em 2em .5em .5em}.header .image img{height:100%;border-radius:50%}.header .row{display:flex}@media screen and (min-width:1024px){.header .row{flex-direction:row}}.header .row .info{display:flex;flex-direction:column;align-items:center;height:100%;background-color:rgba(0,0,0,.5)}.header .row .info .row{width:100%;display:flex;align-items:center;justify-content:center;flex:1;padding:0 .5em}.header .info-container{position:absolute;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);color:hsla(0,0%,100%,.9);display:flex;flex-direction:column}.header .info-container a{color:hsla(0,0%,100%,.9)!important}.header .info-container a:hover{color:#35b870!important}.header .info-container .title{letter-spacing:.1em;color:hsla(0,0%,100%,.9)!important}.header .info-container .n-items{margin-left:auto;padding:0 .5em}.header .title-container{max-height:var(--banner-height);overflow-y:hidden}.header .title{height:100%;align-content:center;color:#23513a;font-size:1.7em;font-weight:700;margin:.5em 0;-webkit-text-decoration:dotted;text-decoration:dotted}.header .title:hover{color:#35b870}.header .description{font-size:.9em;margin-right:.5em}.media-results{height:calc(100% - var(--banner-height) - 1em)} \ No newline at end of file +.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@media screen and (max-width:calc(769px - 1px)){.channel,.playlist-container{--banner-height:5em}}@media screen and (min-width:769px){.channel,.playlist-container{--banner-height:100px}}.header{border-bottom:1px solid #ddd;margin-bottom:.5em;position:relative;overflow-y:auto}.header .banner{height:var(--banner-height);display:flex;background-color:#000;justify-content:center}.header .banner img{max-width:800px;max-height:100%;flex:1}.header .image{height:100px;margin:-2.5em 2em .5em .5em}.header .image img{height:100%;border-radius:50%}.header .row{display:flex}@media screen and (min-width:1024px){.header .row{flex-direction:row}}.header .row .info{display:flex;flex-direction:column;align-items:center;height:100%;background-color:rgba(0,0,0,.5)}.header .row .info .row{width:100%;display:flex;align-items:center;justify-content:center;flex:1;padding:0 .5em}.header .info-container{position:absolute;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);color:hsla(0,0%,100%,.9);display:flex;flex-direction:column}.header .info-container a{color:hsla(0,0%,100%,.9)!important}.header .info-container a:hover{color:#35b870!important}.header .info-container .title{letter-spacing:.1em;color:hsla(0,0%,100%,.9)!important}.header .info-container .n-items{margin-left:auto;padding:0 .5em}.header .title-container{max-height:var(--banner-height);overflow-y:hidden}.header .title{height:100%;align-content:center;color:#23513a;font-size:1.7em;font-weight:700;margin:.5em 0;-webkit-text-decoration:dotted;text-decoration:dotted}.header .title:hover{color:#35b870}.header .description{font-size:.9em;margin-right:.5em}.media-results{height:calc(100% - var(--banner-height) - 1em)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9122.ae7ee25d.css b/platypush/backend/http/webapp/dist/static/css/9122.ae7ee25d.css new file mode 100644 index 0000000000..b85054d916 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9122.ae7ee25d.css @@ -0,0 +1 @@ +.col-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1b764fc6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1b764fc6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1b764fc6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1b764fc6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1b764fc6]:first-child{margin-left:26%!important}.col-offset-3[data-v-1b764fc6]:not(first-child){margin-left:30%!important}.col-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1b764fc6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1b764fc6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1b764fc6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1b764fc6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1b764fc6]:first-child{margin-left:52%!important}.col-offset-6[data-v-1b764fc6]:not(first-child){margin-left:56%!important}.col-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1b764fc6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1b764fc6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1b764fc6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1b764fc6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1b764fc6]:first-child{margin-left:78%!important}.col-offset-9[data-v-1b764fc6]:not(first-child){margin-left:82%!important}.col-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1b764fc6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1b764fc6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1b764fc6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1b764fc6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-1[data-v-1b764fc6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-2[data-v-1b764fc6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-3[data-v-1b764fc6]{margin-left:26%}.col-no-margin-s-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-4[data-v-1b764fc6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-5[data-v-1b764fc6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-6[data-v-1b764fc6]{margin-left:52%}.col-no-margin-s-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-7[data-v-1b764fc6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-8[data-v-1b764fc6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-9[data-v-1b764fc6]{margin-left:78%}.col-no-margin-s-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-10[data-v-1b764fc6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-s-11[data-v-1b764fc6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1b764fc6]{display:none!important}.s-visible[data-v-1b764fc6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-1[data-v-1b764fc6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-2[data-v-1b764fc6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-3[data-v-1b764fc6]{margin-left:26%}.col-no-margin-m-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-4[data-v-1b764fc6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-5[data-v-1b764fc6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-6[data-v-1b764fc6]{margin-left:52%}.col-no-margin-m-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-7[data-v-1b764fc6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-8[data-v-1b764fc6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-9[data-v-1b764fc6]{margin-left:78%}.col-no-margin-m-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-10[data-v-1b764fc6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-m-11[data-v-1b764fc6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1b764fc6]{display:none!important}.m-visible[data-v-1b764fc6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-1[data-v-1b764fc6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-2[data-v-1b764fc6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-3[data-v-1b764fc6]{margin-left:26%}.col-no-margin-l-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-4[data-v-1b764fc6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-5[data-v-1b764fc6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-6[data-v-1b764fc6]{margin-left:52%}.col-no-margin-l-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-7[data-v-1b764fc6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-8[data-v-1b764fc6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-9[data-v-1b764fc6]{margin-left:78%}.col-no-margin-l-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-10[data-v-1b764fc6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-l-11[data-v-1b764fc6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1b764fc6]{display:none!important}.l-visible[data-v-1b764fc6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-1[data-v-1b764fc6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-2[data-v-1b764fc6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-3[data-v-1b764fc6]{margin-left:26%}.col-no-margin-xl-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-4[data-v-1b764fc6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-5[data-v-1b764fc6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-6[data-v-1b764fc6]{margin-left:52%}.col-no-margin-xl-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-7[data-v-1b764fc6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-8[data-v-1b764fc6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-9[data-v-1b764fc6]{margin-left:78%}.col-no-margin-xl-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-10[data-v-1b764fc6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xl-11[data-v-1b764fc6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1b764fc6]{display:none!important}.xl-visible[data-v-1b764fc6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1b764fc6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1b764fc6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1b764fc6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1b764fc6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1b764fc6]{margin-left:26%}.col-no-margin-xxl-3[data-v-1b764fc6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1b764fc6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1b764fc6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1b764fc6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1b764fc6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1b764fc6]{margin-left:52%}.col-no-margin-xxl-6[data-v-1b764fc6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1b764fc6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1b764fc6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1b764fc6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1b764fc6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1b764fc6]{margin-left:78%}.col-no-margin-xxl-9[data-v-1b764fc6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1b764fc6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1b764fc6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1b764fc6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1b764fc6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1b764fc6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1b764fc6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1b764fc6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1b764fc6]{display:none!important}.xxl-visible[data-v-1b764fc6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1b764fc6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1b764fc6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1b764fc6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1b764fc6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1b764fc6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1b764fc6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b764fc6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b764fc6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1b764fc6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b764fc6]{display:none!important}}.vertical-center[data-v-1b764fc6]{display:flex;align-items:center}.horizontal-center[data-v-1b764fc6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1b764fc6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1b764fc6]{display:none!important}.no-content[data-v-1b764fc6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1b764fc6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1b764fc6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1b764fc6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1b764fc6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1b764fc6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1b764fc6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1b764fc6],.btn[data-v-1b764fc6],button[data-v-1b764fc6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1b764fc6],.btn-default[type=submit][data-v-1b764fc6],.btn.btn-primary[data-v-1b764fc6],.btn[type=submit][data-v-1b764fc6],button.btn-primary[data-v-1b764fc6],button[type=submit][data-v-1b764fc6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1b764fc6]:hover,.btn[data-v-1b764fc6]:hover,button[data-v-1b764fc6]:hover{color:#35b870}.btn .icon[data-v-1b764fc6],.btn-default .icon[data-v-1b764fc6],button .icon[data-v-1b764fc6]{margin-right:.5em}.btn-default[data-v-1b764fc6]:disabled,.btn-default[disabled][data-v-1b764fc6],.btn[data-v-1b764fc6]:disabled,.btn[disabled][data-v-1b764fc6],button[data-v-1b764fc6]:disabled,button[disabled][data-v-1b764fc6]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1b764fc6]{cursor:grab!important}.dragged[data-v-1b764fc6]{opacity:.5!important}input[type=password][data-v-1b764fc6],input[type=text][data-v-1b764fc6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1b764fc6]:focus,input[type=text][data-v-1b764fc6]:focus{border:1px solid #35b870}button[data-v-1b764fc6],input[data-v-1b764fc6]{outline:none}input[type=text][data-v-1b764fc6]:hover,textarea[data-v-1b764fc6]:hover{border:1px solid #9cdfb0}ul[data-v-1b764fc6]{margin:0;padding:0;list-style:none}a[data-v-1b764fc6]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1b764fc6]:hover{color:#35b870}[data-v-1b764fc6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1b764fc6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1b764fc6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1b764fc6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1b764fc6]{color:#ad1717}body[data-v-1b764fc6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1b764fc6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1b764fc6] .nav .path{cursor:pointer}.browser[data-v-1b764fc6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1b764fc6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1b764fc6]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1b764fc6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1b764fc6],input[type=number][data-v-1b764fc6],input[type=password][data-v-1b764fc6],input[type=search][data-v-1b764fc6],input[type=text][data-v-1b764fc6],input[type=time][data-v-1b764fc6]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1b764fc6]:hover,input[type=number][data-v-1b764fc6]:hover,input[type=password][data-v-1b764fc6]:hover,input[type=search][data-v-1b764fc6]:hover,input[type=text][data-v-1b764fc6]:hover,input[type=time][data-v-1b764fc6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1b764fc6]:focus,input[type=number][data-v-1b764fc6]:focus,input[type=password][data-v-1b764fc6]:focus,input[type=search][data-v-1b764fc6]:focus,input[type=text][data-v-1b764fc6]:focus,input[type=time][data-v-1b764fc6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1b764fc6],input[type=number].with-icon[data-v-1b764fc6],input[type=password].with-icon[data-v-1b764fc6],input[type=search].with-icon[data-v-1b764fc6],input[type=text].with-icon[data-v-1b764fc6],input[type=time].with-icon[data-v-1b764fc6]{padding-left:.3em}input[type=search][data-v-1b764fc6],input[type=text][data-v-1b764fc6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1b764fc6]{animation-fill-mode:both;animation-name:fadeIn-1b764fc6;-webkit-animation-name:fadeIn-1b764fc6}.fade-in[data-v-1b764fc6],.fade-out[data-v-1b764fc6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1b764fc6]{animation-fill-mode:both;animation-name:fadeOut-1b764fc6;-webkit-animation-name:fadeOut-1b764fc6}.expand[data-v-1b764fc6]{animation-fill-mode:both;animation-name:expand-1b764fc6;-webkit-animation-name:expand-1b764fc6}.expand[data-v-1b764fc6],.shrink[data-v-1b764fc6]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1b764fc6]{animation-fill-mode:both;animation-name:shrink-1b764fc6;-webkit-animation-name:shrink-1b764fc6}.fold[data-v-1b764fc6]{animation-fill-mode:both;animation-name:fold-1b764fc6;-webkit-animation-name:fold-1b764fc6}.fold[data-v-1b764fc6],.unfold[data-v-1b764fc6]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1b764fc6]{animation-fill-mode:both;animation-name:unfold-1b764fc6;-webkit-animation-name:unfold-1b764fc6}.dim[data-v-1b764fc6]{animation-fill-mode:both;animation-name:dim-1b764fc6;-webkit-animation-name:dim-1b764fc6}.brighten[data-v-1b764fc6],.dim[data-v-1b764fc6]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1b764fc6]{animation-fill-mode:both;animation-name:brighten-1b764fc6;-webkit-animation-name:brighten-1b764fc6}@keyframes fadeIn-1b764fc6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1b764fc6{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1b764fc6{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1b764fc6{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1b764fc6{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1b764fc6{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1b764fc6{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1b764fc6{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1b764fc6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1b764fc6;-webkit-animation-name:glow-1b764fc6}.loop[data-v-1b764fc6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1b764fc6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1b764fc6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1b764fc6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1b764fc6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}body[data-v-1b764fc6]{width:100vw;height:100vh;margin:0}.login-container[data-v-1b764fc6]{height:100%;display:flex;align-items:center;justify-content:center;background:#e4eae8}.header[data-v-1b764fc6]{font-size:1.2em;margin-bottom:2em;display:flex;justify-content:center;align-items:center}.header .logo[data-v-1b764fc6]{width:3em;height:3em;display:inline-flex;background-size:cover}.header .text[data-v-1b764fc6]{font-family:Poppins,sans-serif;margin-left:.5em}form[data-v-1b764fc6]{display:flex;flex-direction:column;padding:4em;border:1px solid #ccc;border-radius:3em;box-shadow:2px 2px 3px 3px #ddd;background:#fff}form .row[data-v-1b764fc6]{margin:.5em 0}form input[type=password][data-v-1b764fc6],form input[type=text][data-v-1b764fc6]{width:100%}form [type=submit][data-v-1b764fc6],form input[type=password][data-v-1b764fc6]{border-radius:1em}form input[type=password][data-v-1b764fc6]{padding:.25em .5em}form .checkbox[data-v-1b764fc6]{display:flex;font-size:.8em}form .buttons[data-v-1b764fc6]{text-align:center}form .buttons [type=submit][data-v-1b764fc6]{position:relative;width:6em;height:2.5em;padding:.5em .75em;display:inline-flex;align-items:center;justify-content:center}form .buttons [type=submit].loading[data-v-1b764fc6]{background:none;border:none;cursor:not-allowed}form .auth-error[data-v-1b764fc6]{background:#ffaaa2;display:flex;margin:1em 0 -2em 0;padding:.5em;align-items:center;justify-content:center;border:1px solid hsla(0,49%,62%,.62);border-radius:1em}a[data-v-1b764fc6]{color:#5f7869} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9211.c21e860e.css b/platypush/backend/http/webapp/dist/static/css/9211.c14c28e9.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/9211.c21e860e.css rename to platypush/backend/http/webapp/dist/static/css/9211.c14c28e9.css index 017914f7b4..e4ad4a29ee 100644 --- a/platypush/backend/http/webapp/dist/static/css/9211.c21e860e.css +++ b/platypush/backend/http/webapp/dist/static/css/9211.c14c28e9.css @@ -1 +1 @@ -.col-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e45afcf6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e45afcf6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e45afcf6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e45afcf6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e45afcf6]:first-child{margin-left:26%!important}.col-offset-3[data-v-e45afcf6]:not(first-child){margin-left:30%!important}.col-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e45afcf6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e45afcf6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e45afcf6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e45afcf6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e45afcf6]:first-child{margin-left:52%!important}.col-offset-6[data-v-e45afcf6]:not(first-child){margin-left:56%!important}.col-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e45afcf6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e45afcf6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e45afcf6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e45afcf6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e45afcf6]:first-child{margin-left:78%!important}.col-offset-9[data-v-e45afcf6]:not(first-child){margin-left:82%!important}.col-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e45afcf6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e45afcf6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e45afcf6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e45afcf6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-s-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-s-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-s-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e45afcf6]{display:none!important}.s-visible[data-v-e45afcf6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-m-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-m-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-m-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e45afcf6]{display:none!important}.m-visible[data-v-e45afcf6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-l-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-l-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-l-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e45afcf6]{display:none!important}.l-visible[data-v-e45afcf6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-xl-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-xl-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-xl-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e45afcf6]{display:none!important}.xl-visible[data-v-e45afcf6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-xxl-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-xxl-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-xxl-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e45afcf6]{display:none!important}.xxl-visible[data-v-e45afcf6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e45afcf6]{display:none!important}}.vertical-center[data-v-e45afcf6]{display:flex;align-items:center}.horizontal-center[data-v-e45afcf6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e45afcf6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e45afcf6]{display:none!important}.no-content[data-v-e45afcf6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e45afcf6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e45afcf6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e45afcf6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e45afcf6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e45afcf6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e45afcf6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e45afcf6],.btn[data-v-e45afcf6],button[data-v-e45afcf6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e45afcf6],.btn-default[type=submit][data-v-e45afcf6],.btn.btn-primary[data-v-e45afcf6],.btn[type=submit][data-v-e45afcf6],button.btn-primary[data-v-e45afcf6],button[type=submit][data-v-e45afcf6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-e45afcf6],.btn-default .icon[data-v-e45afcf6],button .icon[data-v-e45afcf6]{margin-right:.5em}input[type=password][data-v-e45afcf6],input[type=text][data-v-e45afcf6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e45afcf6]:focus,input[type=text][data-v-e45afcf6]:focus{border:1px solid #35b870}button[data-v-e45afcf6],input[data-v-e45afcf6]{outline:none}input[type=text][data-v-e45afcf6]:hover,textarea[data-v-e45afcf6]:hover{border:1px solid #9cdfb0}ul[data-v-e45afcf6]{margin:0;padding:0;list-style:none}a[data-v-e45afcf6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e45afcf6]:hover{color:#35b870}[data-v-e45afcf6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e45afcf6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e45afcf6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e45afcf6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-e45afcf6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e45afcf6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e45afcf6] .nav .path{cursor:pointer}.browser[data-v-e45afcf6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e45afcf6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-e45afcf6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e45afcf6],input[type=number][data-v-e45afcf6],input[type=password][data-v-e45afcf6],input[type=search][data-v-e45afcf6],input[type=text][data-v-e45afcf6],input[type=time][data-v-e45afcf6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-e45afcf6]:hover,input[type=number][data-v-e45afcf6]:hover,input[type=password][data-v-e45afcf6]:hover,input[type=search][data-v-e45afcf6]:hover,input[type=text][data-v-e45afcf6]:hover,input[type=time][data-v-e45afcf6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e45afcf6]:focus,input[type=number][data-v-e45afcf6]:focus,input[type=password][data-v-e45afcf6]:focus,input[type=search][data-v-e45afcf6]:focus,input[type=text][data-v-e45afcf6]:focus,input[type=time][data-v-e45afcf6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e45afcf6],input[type=number].with-icon[data-v-e45afcf6],input[type=password].with-icon[data-v-e45afcf6],input[type=search].with-icon[data-v-e45afcf6],input[type=text].with-icon[data-v-e45afcf6],input[type=time].with-icon[data-v-e45afcf6]{padding-left:.3em}input[type=search][data-v-e45afcf6],input[type=text][data-v-e45afcf6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e45afcf6]{animation-fill-mode:both;animation-name:fadeIn-e45afcf6;-webkit-animation-name:fadeIn-e45afcf6}.fade-in[data-v-e45afcf6],.fade-out[data-v-e45afcf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e45afcf6]{animation-fill-mode:both;animation-name:fadeOut-e45afcf6;-webkit-animation-name:fadeOut-e45afcf6}@keyframes fadeIn-e45afcf6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e45afcf6{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-e45afcf6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-e45afcf6;-webkit-animation-name:glow-e45afcf6}.loop[data-v-e45afcf6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-e45afcf6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-e45afcf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e45afcf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e45afcf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.weather[data-v-e45afcf6]{display:flex;flex-direction:column}.weather h1[data-v-e45afcf6]{display:flex;justify-content:center;align-items:center}.weather .temperature[data-v-e45afcf6]{font-size:2em;margin-left:.4em}.weather .summary[data-v-e45afcf6]{font-size:1.1em;margin-top:.75em}.weather .owm-icon[data-v-e45afcf6]{margin-right:-.5em} \ No newline at end of file +.col-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e45afcf6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e45afcf6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e45afcf6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e45afcf6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e45afcf6]:first-child{margin-left:26%!important}.col-offset-3[data-v-e45afcf6]:not(first-child){margin-left:30%!important}.col-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e45afcf6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e45afcf6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e45afcf6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e45afcf6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e45afcf6]:first-child{margin-left:52%!important}.col-offset-6[data-v-e45afcf6]:not(first-child){margin-left:56%!important}.col-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e45afcf6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e45afcf6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e45afcf6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e45afcf6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e45afcf6]:first-child{margin-left:78%!important}.col-offset-9[data-v-e45afcf6]:not(first-child){margin-left:82%!important}.col-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e45afcf6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e45afcf6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e45afcf6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e45afcf6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-s-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-s-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-s-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-s-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e45afcf6]{display:none!important}.s-visible[data-v-e45afcf6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-m-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-m-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-m-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-m-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e45afcf6]{display:none!important}.m-visible[data-v-e45afcf6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-l-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-l-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-l-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-l-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e45afcf6]{display:none!important}.l-visible[data-v-e45afcf6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-xl-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-xl-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-xl-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xl-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e45afcf6]{display:none!important}.xl-visible[data-v-e45afcf6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e45afcf6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e45afcf6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e45afcf6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e45afcf6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e45afcf6]{margin-left:26%}.col-no-margin-xxl-3[data-v-e45afcf6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e45afcf6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e45afcf6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e45afcf6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e45afcf6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e45afcf6]{margin-left:52%}.col-no-margin-xxl-6[data-v-e45afcf6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e45afcf6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e45afcf6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e45afcf6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e45afcf6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e45afcf6]{margin-left:78%}.col-no-margin-xxl-9[data-v-e45afcf6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e45afcf6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e45afcf6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e45afcf6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e45afcf6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e45afcf6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e45afcf6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e45afcf6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e45afcf6]{display:none!important}.xxl-visible[data-v-e45afcf6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e45afcf6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e45afcf6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e45afcf6]{display:none!important}}.vertical-center[data-v-e45afcf6]{display:flex;align-items:center}.horizontal-center[data-v-e45afcf6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e45afcf6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e45afcf6]{display:none!important}.no-content[data-v-e45afcf6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e45afcf6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e45afcf6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e45afcf6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e45afcf6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e45afcf6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e45afcf6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e45afcf6],.btn[data-v-e45afcf6],button[data-v-e45afcf6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e45afcf6],.btn-default[type=submit][data-v-e45afcf6],.btn.btn-primary[data-v-e45afcf6],.btn[type=submit][data-v-e45afcf6],button.btn-primary[data-v-e45afcf6],button[type=submit][data-v-e45afcf6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-e45afcf6]:hover,.btn[data-v-e45afcf6]:hover,button[data-v-e45afcf6]:hover{color:#35b870}.btn .icon[data-v-e45afcf6],.btn-default .icon[data-v-e45afcf6],button .icon[data-v-e45afcf6]{margin-right:.5em}.btn-default[data-v-e45afcf6]:disabled,.btn-default[disabled][data-v-e45afcf6],.btn[data-v-e45afcf6]:disabled,.btn[disabled][data-v-e45afcf6],button[data-v-e45afcf6]:disabled,button[disabled][data-v-e45afcf6]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-e45afcf6]{cursor:grab!important}.dragged[data-v-e45afcf6]{opacity:.5!important}input[type=password][data-v-e45afcf6],input[type=text][data-v-e45afcf6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e45afcf6]:focus,input[type=text][data-v-e45afcf6]:focus{border:1px solid #35b870}button[data-v-e45afcf6],input[data-v-e45afcf6]{outline:none}input[type=text][data-v-e45afcf6]:hover,textarea[data-v-e45afcf6]:hover{border:1px solid #9cdfb0}ul[data-v-e45afcf6]{margin:0;padding:0;list-style:none}a[data-v-e45afcf6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e45afcf6]:hover{color:#35b870}[data-v-e45afcf6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e45afcf6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e45afcf6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e45afcf6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-e45afcf6]{color:#ad1717}body[data-v-e45afcf6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e45afcf6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e45afcf6] .nav .path{cursor:pointer}.browser[data-v-e45afcf6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e45afcf6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-e45afcf6]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-e45afcf6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e45afcf6],input[type=number][data-v-e45afcf6],input[type=password][data-v-e45afcf6],input[type=search][data-v-e45afcf6],input[type=text][data-v-e45afcf6],input[type=time][data-v-e45afcf6]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-e45afcf6]:hover,input[type=number][data-v-e45afcf6]:hover,input[type=password][data-v-e45afcf6]:hover,input[type=search][data-v-e45afcf6]:hover,input[type=text][data-v-e45afcf6]:hover,input[type=time][data-v-e45afcf6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e45afcf6]:focus,input[type=number][data-v-e45afcf6]:focus,input[type=password][data-v-e45afcf6]:focus,input[type=search][data-v-e45afcf6]:focus,input[type=text][data-v-e45afcf6]:focus,input[type=time][data-v-e45afcf6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e45afcf6],input[type=number].with-icon[data-v-e45afcf6],input[type=password].with-icon[data-v-e45afcf6],input[type=search].with-icon[data-v-e45afcf6],input[type=text].with-icon[data-v-e45afcf6],input[type=time].with-icon[data-v-e45afcf6]{padding-left:.3em}input[type=search][data-v-e45afcf6],input[type=text][data-v-e45afcf6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e45afcf6]{animation-fill-mode:both;animation-name:fadeIn-e45afcf6;-webkit-animation-name:fadeIn-e45afcf6}.fade-in[data-v-e45afcf6],.fade-out[data-v-e45afcf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e45afcf6]{animation-fill-mode:both;animation-name:fadeOut-e45afcf6;-webkit-animation-name:fadeOut-e45afcf6}.expand[data-v-e45afcf6]{animation-fill-mode:both;animation-name:expand-e45afcf6;-webkit-animation-name:expand-e45afcf6}.expand[data-v-e45afcf6],.shrink[data-v-e45afcf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-e45afcf6]{animation-fill-mode:both;animation-name:shrink-e45afcf6;-webkit-animation-name:shrink-e45afcf6}.fold[data-v-e45afcf6]{animation-fill-mode:both;animation-name:fold-e45afcf6;-webkit-animation-name:fold-e45afcf6}.fold[data-v-e45afcf6],.unfold[data-v-e45afcf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-e45afcf6]{animation-fill-mode:both;animation-name:unfold-e45afcf6;-webkit-animation-name:unfold-e45afcf6}.dim[data-v-e45afcf6]{animation-fill-mode:both;animation-name:dim-e45afcf6;-webkit-animation-name:dim-e45afcf6}.brighten[data-v-e45afcf6],.dim[data-v-e45afcf6]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-e45afcf6]{animation-fill-mode:both;animation-name:brighten-e45afcf6;-webkit-animation-name:brighten-e45afcf6}@keyframes fadeIn-e45afcf6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e45afcf6{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-e45afcf6{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-e45afcf6{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-e45afcf6{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-e45afcf6{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-e45afcf6{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-e45afcf6{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-e45afcf6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-e45afcf6;-webkit-animation-name:glow-e45afcf6}.loop[data-v-e45afcf6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-e45afcf6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-e45afcf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e45afcf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e45afcf6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.weather[data-v-e45afcf6]{display:flex;flex-direction:column}.weather h1[data-v-e45afcf6]{display:flex;justify-content:center;align-items:center}.weather .temperature[data-v-e45afcf6]{font-size:2em;margin-left:.4em}.weather .summary[data-v-e45afcf6]{font-size:1.1em;margin-top:.75em}.weather .owm-icon[data-v-e45afcf6]{margin-right:-.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9381.b88ad779.css b/platypush/backend/http/webapp/dist/static/css/9381.b88ad779.css deleted file mode 100644 index aa4f0d88d4..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/9381.b88ad779.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0bf520a2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0bf520a2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0bf520a2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0bf520a2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0bf520a2]:first-child{margin-left:26%!important}.col-offset-3[data-v-0bf520a2]:not(first-child){margin-left:30%!important}.col-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0bf520a2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0bf520a2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0bf520a2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0bf520a2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0bf520a2]:first-child{margin-left:52%!important}.col-offset-6[data-v-0bf520a2]:not(first-child){margin-left:56%!important}.col-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0bf520a2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0bf520a2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0bf520a2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0bf520a2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0bf520a2]:first-child{margin-left:78%!important}.col-offset-9[data-v-0bf520a2]:not(first-child){margin-left:82%!important}.col-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0bf520a2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0bf520a2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0bf520a2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0bf520a2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-1[data-v-0bf520a2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-2[data-v-0bf520a2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-3[data-v-0bf520a2]{margin-left:26%}.col-no-margin-s-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-4[data-v-0bf520a2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-5[data-v-0bf520a2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-6[data-v-0bf520a2]{margin-left:52%}.col-no-margin-s-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-7[data-v-0bf520a2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-8[data-v-0bf520a2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-9[data-v-0bf520a2]{margin-left:78%}.col-no-margin-s-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-10[data-v-0bf520a2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-s-11[data-v-0bf520a2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0bf520a2]{display:none!important}.s-visible[data-v-0bf520a2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-1[data-v-0bf520a2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-2[data-v-0bf520a2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-3[data-v-0bf520a2]{margin-left:26%}.col-no-margin-m-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-4[data-v-0bf520a2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-5[data-v-0bf520a2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-6[data-v-0bf520a2]{margin-left:52%}.col-no-margin-m-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-7[data-v-0bf520a2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-8[data-v-0bf520a2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-9[data-v-0bf520a2]{margin-left:78%}.col-no-margin-m-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-10[data-v-0bf520a2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-m-11[data-v-0bf520a2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0bf520a2]{display:none!important}.m-visible[data-v-0bf520a2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-1[data-v-0bf520a2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-2[data-v-0bf520a2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-3[data-v-0bf520a2]{margin-left:26%}.col-no-margin-l-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-4[data-v-0bf520a2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-5[data-v-0bf520a2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-6[data-v-0bf520a2]{margin-left:52%}.col-no-margin-l-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-7[data-v-0bf520a2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-8[data-v-0bf520a2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-9[data-v-0bf520a2]{margin-left:78%}.col-no-margin-l-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-10[data-v-0bf520a2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-l-11[data-v-0bf520a2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0bf520a2]{display:none!important}.l-visible[data-v-0bf520a2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-1[data-v-0bf520a2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-2[data-v-0bf520a2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-3[data-v-0bf520a2]{margin-left:26%}.col-no-margin-xl-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-4[data-v-0bf520a2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-5[data-v-0bf520a2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-6[data-v-0bf520a2]{margin-left:52%}.col-no-margin-xl-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-7[data-v-0bf520a2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-8[data-v-0bf520a2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-9[data-v-0bf520a2]{margin-left:78%}.col-no-margin-xl-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-10[data-v-0bf520a2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xl-11[data-v-0bf520a2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0bf520a2]{display:none!important}.xl-visible[data-v-0bf520a2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0bf520a2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0bf520a2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0bf520a2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0bf520a2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0bf520a2]{margin-left:26%}.col-no-margin-xxl-3[data-v-0bf520a2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0bf520a2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0bf520a2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0bf520a2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0bf520a2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0bf520a2]{margin-left:52%}.col-no-margin-xxl-6[data-v-0bf520a2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0bf520a2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0bf520a2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0bf520a2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0bf520a2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0bf520a2]{margin-left:78%}.col-no-margin-xxl-9[data-v-0bf520a2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0bf520a2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0bf520a2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0bf520a2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0bf520a2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0bf520a2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0bf520a2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0bf520a2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0bf520a2]{display:none!important}.xxl-visible[data-v-0bf520a2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0bf520a2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0bf520a2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0bf520a2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0bf520a2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0bf520a2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0bf520a2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0bf520a2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0bf520a2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0bf520a2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0bf520a2]{display:none!important}}.vertical-center[data-v-0bf520a2]{display:flex;align-items:center}.horizontal-center[data-v-0bf520a2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0bf520a2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0bf520a2]{display:none!important}.no-content[data-v-0bf520a2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0bf520a2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0bf520a2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0bf520a2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0bf520a2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0bf520a2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0bf520a2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0bf520a2],.btn[data-v-0bf520a2],button[data-v-0bf520a2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0bf520a2],.btn-default[type=submit][data-v-0bf520a2],.btn.btn-primary[data-v-0bf520a2],.btn[type=submit][data-v-0bf520a2],button.btn-primary[data-v-0bf520a2],button[type=submit][data-v-0bf520a2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0bf520a2],.btn-default .icon[data-v-0bf520a2],button .icon[data-v-0bf520a2]{margin-right:.5em}input[type=password][data-v-0bf520a2],input[type=text][data-v-0bf520a2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0bf520a2]:focus,input[type=text][data-v-0bf520a2]:focus{border:1px solid #35b870}button[data-v-0bf520a2],input[data-v-0bf520a2]{outline:none}input[type=text][data-v-0bf520a2]:hover,textarea[data-v-0bf520a2]:hover{border:1px solid #9cdfb0}ul[data-v-0bf520a2]{margin:0;padding:0;list-style:none}a[data-v-0bf520a2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0bf520a2]:hover{color:#35b870}[data-v-0bf520a2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0bf520a2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0bf520a2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0bf520a2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0bf520a2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0bf520a2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0bf520a2] .nav .path{cursor:pointer}.browser[data-v-0bf520a2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0bf520a2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0bf520a2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0bf520a2],input[type=number][data-v-0bf520a2],input[type=password][data-v-0bf520a2],input[type=search][data-v-0bf520a2],input[type=text][data-v-0bf520a2],input[type=time][data-v-0bf520a2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0bf520a2]:hover,input[type=number][data-v-0bf520a2]:hover,input[type=password][data-v-0bf520a2]:hover,input[type=search][data-v-0bf520a2]:hover,input[type=text][data-v-0bf520a2]:hover,input[type=time][data-v-0bf520a2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0bf520a2]:focus,input[type=number][data-v-0bf520a2]:focus,input[type=password][data-v-0bf520a2]:focus,input[type=search][data-v-0bf520a2]:focus,input[type=text][data-v-0bf520a2]:focus,input[type=time][data-v-0bf520a2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0bf520a2],input[type=number].with-icon[data-v-0bf520a2],input[type=password].with-icon[data-v-0bf520a2],input[type=search].with-icon[data-v-0bf520a2],input[type=text].with-icon[data-v-0bf520a2],input[type=time].with-icon[data-v-0bf520a2]{padding-left:.3em}input[type=search][data-v-0bf520a2],input[type=text][data-v-0bf520a2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0bf520a2]{animation-fill-mode:both;animation-name:fadeIn-0bf520a2;-webkit-animation-name:fadeIn-0bf520a2}.fade-in[data-v-0bf520a2],.fade-out[data-v-0bf520a2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0bf520a2]{animation-fill-mode:both;animation-name:fadeOut-0bf520a2;-webkit-animation-name:fadeOut-0bf520a2}@keyframes fadeIn-0bf520a2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0bf520a2{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0bf520a2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0bf520a2;-webkit-animation-name:glow-0bf520a2}.loop[data-v-0bf520a2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0bf520a2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0bf520a2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0bf520a2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0bf520a2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-0bf520a2]{min-height:calc(100vh - 2em)}button[data-v-0bf520a2]{background:none;border:none;box-shadow:none}button[data-v-0bf520a2]:hover{color:#35b870}hgroup[data-v-0bf520a2]{flex-grow:1}h1[data-v-0bf520a2]{background:linear-gradient(0deg,#c0e8e4,#e4f8f4);padding:.75em .5em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-size:1.1em;margin:0}@media screen and (min-width:1024px){h1[data-v-0bf520a2]{border-radius:.5em .5em 0 0}}h2[data-v-0bf520a2]{width:100%;display:flex;background:linear-gradient(90deg,#f3f3f3,#fff);align-items:center;padding:.5em;margin-bottom:.1em;border:1px solid #ddd;border-radius:1em;box-shadow:0 3px 3px 0 hsla(0,0%,73%,.75);font-weight:400;font-size:1em}section[data-v-0bf520a2]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-0bf520a2]{margin-top:.5em;padding-top:.5em}section.response[data-v-0bf520a2]{flex-grow:1;max-height:40em}section.response .output[data-v-0bf520a2]{overflow:auto}.buttons[data-v-0bf520a2]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-0bf520a2]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-0bf520a2]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-0bf520a2]{background:#fff}header .buttons[data-v-0bf520a2]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-0bf520a2]{height:100%;background:linear-gradient(#effbe3,#e0ecdb);padding:1em;border-radius:1em;overflow:auto;margin-top:.1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9}[data-v-0bf520a2] .doc blockquote{margin-left:0}textarea[data-v-0bf520a2]{width:100%;height:10em;margin-bottom:.5em;padding:.5em;border:1px solid #ddd;border-radius:1em;box-shadow:2.5px 2.5px 3px 0 silver;outline:none}textarea[data-v-0bf520a2]:hover{border:1px solid #38cf80}textarea[data-v-0bf520a2]:focus{border:1px solid #32b646}form[data-v-0bf520a2]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-0bf520a2]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-0bf520a2]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-0bf520a2]{width:80%;max-width:60em}}.raw .first-row button[data-v-0bf520a2]{margin-left:0}.args-list[data-v-0bf520a2]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-0bf520a2]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-0bf520a2]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-0bf520a2]{width:30em}}.args-list .arg[data-v-0bf520a2]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-0bf520a2]{width:100%}}.args-list .arg .required-flag[data-v-0bf520a2]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-0bf520a2]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-0bf520a2]{width:100%}.args-body[data-v-0bf520a2]{max-height:calc(50vh - 4.5em);display:flex;margin-top:.15em;margin-bottom:1.5em}@media screen and (max-width:calc(769px - 1px)){.args-body[data-v-0bf520a2]{flex-direction:column}}.add-arg[data-v-0bf520a2]{width:100%}.add-arg button[data-v-0bf520a2]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-0bf520a2]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-0bf520a2]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-0bf520a2]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-0bf520a2]{width:100%}.doc-container[data-v-0bf520a2],.response[data-v-0bf520a2]{flex-grow:1}.doc-container h2[data-v-0bf520a2],.response h2[data-v-0bf520a2]{display:inline-flex}.doc-container h2 .title[data-v-0bf520a2],.response h2 .title[data-v-0bf520a2]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-0bf520a2],.response h2 .buttons[data-v-0bf520a2]{width:2em}.doc-container h2 .buttons button[data-v-0bf520a2],.response h2 .buttons button[data-v-0bf520a2]{padding:0}.output[data-v-0bf520a2]{background:#151515;padding:0 .75em;overflow:auto;margin-top:.1em;border-radius:1em;box-shadow:0 1px 3px 1px #d7d3c0,inset 0 1px 1px 0 #d7d3c9;color:#fff}.output.error[data-v-0bf520a2]{color:red}textarea.curl-snippet[data-v-0bf520a2]{width:calc(100vw - 5em);height:100vh;max-width:40em;max-height:25em;font-family:monospace;line-break:anywhere;overflow:auto;padding:.5em}.action-tile[data-v-0bf520a2]{min-width:20em;background:linear-gradient(90deg,#09ae80,#47e2b3 120%);color:#fff;display:flex;flex-direction:column;padding:.5em 1em;overflow:hidden;text-overflow:ellipsis;content:"";position:relative;border-radius:1em;cursor:pointer}.action-tile[data-v-0bf520a2]:hover{background:linear-gradient(90deg,#29d89f,#09bc8a 70%)}.action-tile.drag[data-v-0bf520a2]{opacity:.5}.action-tile .action-delete[data-v-0bf520a2]{width:1.5em;height:1.5em;font-size:1.25em;position:absolute;top:.25em;right:0;opacity:.7;transition:opacity .25s ease-in-out}.action-tile .action-delete[data-v-0bf520a2]:hover{opacity:1}.action-tile .action-name[data-v-0bf520a2]{font-size:1.1em;font-weight:700;font-family:monospace}.action-tile .new-action[data-v-0bf520a2]{font-style:italic}.action-tile .action-args[data-v-0bf520a2]{display:flex;flex-direction:column;margin-top:.5em}.action-tile .action-args .arg[data-v-0bf520a2]{display:flex;flex-direction:row;align-items:center;margin-bottom:.5em}.action-tile .action-args .arg .arg-name[data-v-0bf520a2]{font-weight:700;margin-right:.5em}.action-tile .action-args .arg .arg-value[data-v-0bf520a2]{font-family:monospace;font-size:.9em;flex:1}@media screen and (max-width:calc(769px - 1px)){.action-editor-container[data-v-0bf520a2] .modal-container .modal{width:calc(100vw - 1em)}.action-editor-container[data-v-0bf520a2] .modal-container .modal .content,.action-editor-container[data-v-0bf520a2] .modal-container .modal .content .body{width:100%}}.action-editor-container[data-v-0bf520a2] .modal-container .content .body{width:80vw;height:80vh;max-width:800px;padding:0}.action-editor-container[data-v-0bf520a2] .modal-container .tabs{margin-top:0}.action-editor-container[data-v-0bf520a2] .modal-container .action-editor{height:100%}.action-editor-container[data-v-0bf520a2] .modal-container form{height:calc(100% - 3.5em);overflow:auto}.col-1[data-v-818098dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-1[data-v-818098dc]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-818098dc]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-818098dc]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-818098dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-2[data-v-818098dc]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-818098dc]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-818098dc]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-818098dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-3[data-v-818098dc]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-818098dc]:first-child{margin-left:26%!important}.col-offset-3[data-v-818098dc]:not(first-child){margin-left:30%!important}.col-4[data-v-818098dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-4[data-v-818098dc]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-818098dc]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-818098dc]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-818098dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-5[data-v-818098dc]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-818098dc]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-818098dc]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-818098dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-6[data-v-818098dc]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-818098dc]:first-child{margin-left:52%!important}.col-offset-6[data-v-818098dc]:not(first-child){margin-left:56%!important}.col-7[data-v-818098dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-7[data-v-818098dc]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-818098dc]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-818098dc]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-818098dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-8[data-v-818098dc]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-818098dc]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-818098dc]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-818098dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-9[data-v-818098dc]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-818098dc]:first-child{margin-left:78%!important}.col-offset-9[data-v-818098dc]:not(first-child){margin-left:82%!important}.col-10[data-v-818098dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-10[data-v-818098dc]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-818098dc]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-818098dc]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-818098dc]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-818098dc]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-818098dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-1[data-v-818098dc]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-818098dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-818098dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-2[data-v-818098dc]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-818098dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-818098dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-3[data-v-818098dc]{margin-left:26%}.col-no-margin-s-3[data-v-818098dc]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-818098dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-4[data-v-818098dc]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-818098dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-818098dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-5[data-v-818098dc]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-818098dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-818098dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-6[data-v-818098dc]{margin-left:52%}.col-no-margin-s-6[data-v-818098dc]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-818098dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-7[data-v-818098dc]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-818098dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-818098dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-8[data-v-818098dc]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-818098dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-818098dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-9[data-v-818098dc]{margin-left:78%}.col-no-margin-s-9[data-v-818098dc]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-818098dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-10[data-v-818098dc]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-818098dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-818098dc]:first-child{margin-left:0}.col-offset-s-11[data-v-818098dc]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-s-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-818098dc]{display:none!important}.s-visible[data-v-818098dc]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-818098dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-1[data-v-818098dc]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-818098dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-818098dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-2[data-v-818098dc]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-818098dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-818098dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-3[data-v-818098dc]{margin-left:26%}.col-no-margin-m-3[data-v-818098dc]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-818098dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-4[data-v-818098dc]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-818098dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-818098dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-5[data-v-818098dc]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-818098dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-818098dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-6[data-v-818098dc]{margin-left:52%}.col-no-margin-m-6[data-v-818098dc]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-818098dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-7[data-v-818098dc]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-818098dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-818098dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-8[data-v-818098dc]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-818098dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-818098dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-9[data-v-818098dc]{margin-left:78%}.col-no-margin-m-9[data-v-818098dc]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-818098dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-10[data-v-818098dc]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-818098dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-818098dc]:first-child{margin-left:0}.col-offset-m-11[data-v-818098dc]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-m-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-818098dc]{display:none!important}.m-visible[data-v-818098dc]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-818098dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-1[data-v-818098dc]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-818098dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-818098dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-2[data-v-818098dc]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-818098dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-818098dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-3[data-v-818098dc]{margin-left:26%}.col-no-margin-l-3[data-v-818098dc]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-818098dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-4[data-v-818098dc]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-818098dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-818098dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-5[data-v-818098dc]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-818098dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-818098dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-6[data-v-818098dc]{margin-left:52%}.col-no-margin-l-6[data-v-818098dc]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-818098dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-7[data-v-818098dc]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-818098dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-818098dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-8[data-v-818098dc]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-818098dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-818098dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-9[data-v-818098dc]{margin-left:78%}.col-no-margin-l-9[data-v-818098dc]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-818098dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-10[data-v-818098dc]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-818098dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-818098dc]:first-child{margin-left:0}.col-offset-l-11[data-v-818098dc]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-l-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-818098dc]{display:none!important}.l-visible[data-v-818098dc]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-818098dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-1[data-v-818098dc]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-818098dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-818098dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-2[data-v-818098dc]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-818098dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-818098dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-3[data-v-818098dc]{margin-left:26%}.col-no-margin-xl-3[data-v-818098dc]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-818098dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-4[data-v-818098dc]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-818098dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-818098dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-5[data-v-818098dc]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-818098dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-818098dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-6[data-v-818098dc]{margin-left:52%}.col-no-margin-xl-6[data-v-818098dc]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-818098dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-7[data-v-818098dc]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-818098dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-818098dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-8[data-v-818098dc]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-818098dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-818098dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-9[data-v-818098dc]{margin-left:78%}.col-no-margin-xl-9[data-v-818098dc]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-818098dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-10[data-v-818098dc]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-818098dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-818098dc]:first-child{margin-left:0}.col-offset-xl-11[data-v-818098dc]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-818098dc]{display:none!important}.xl-visible[data-v-818098dc]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-818098dc]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-1[data-v-818098dc]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-818098dc]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-818098dc]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-2[data-v-818098dc]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-818098dc]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-818098dc]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-3[data-v-818098dc]{margin-left:26%}.col-no-margin-xxl-3[data-v-818098dc]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-818098dc]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-4[data-v-818098dc]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-818098dc]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-818098dc]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-5[data-v-818098dc]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-818098dc]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-818098dc]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-6[data-v-818098dc]{margin-left:52%}.col-no-margin-xxl-6[data-v-818098dc]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-818098dc]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-7[data-v-818098dc]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-818098dc]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-818098dc]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-8[data-v-818098dc]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-818098dc]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-818098dc]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-9[data-v-818098dc]{margin-left:78%}.col-no-margin-xxl-9[data-v-818098dc]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-818098dc]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-10[data-v-818098dc]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-818098dc]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-818098dc]:first-child{margin-left:0}.col-offset-xxl-11[data-v-818098dc]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-818098dc]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-818098dc]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-818098dc]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-818098dc]{display:none!important}.xxl-visible[data-v-818098dc]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-818098dc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-818098dc]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-818098dc]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-818098dc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-818098dc]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-818098dc]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-818098dc]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-818098dc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-818098dc]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-818098dc]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-818098dc]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-818098dc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-818098dc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-818098dc]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-818098dc]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-818098dc]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-818098dc]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-818098dc]{display:none!important}}.vertical-center[data-v-818098dc]{display:flex;align-items:center}.horizontal-center[data-v-818098dc]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-818098dc]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-818098dc]{display:none!important}.no-content[data-v-818098dc]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-818098dc]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-818098dc]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-818098dc]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-818098dc]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-818098dc]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-818098dc]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-818098dc],.btn[data-v-818098dc],button[data-v-818098dc]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-818098dc],.btn-default[type=submit][data-v-818098dc],.btn.btn-primary[data-v-818098dc],.btn[type=submit][data-v-818098dc],button.btn-primary[data-v-818098dc],button[type=submit][data-v-818098dc]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-818098dc],.btn-default .icon[data-v-818098dc],button .icon[data-v-818098dc]{margin-right:.5em}input[type=password][data-v-818098dc],input[type=text][data-v-818098dc]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-818098dc]:focus,input[type=text][data-v-818098dc]:focus{border:1px solid #35b870}button[data-v-818098dc],input[data-v-818098dc]{outline:none}input[type=text][data-v-818098dc]:hover,textarea[data-v-818098dc]:hover{border:1px solid #9cdfb0}ul[data-v-818098dc]{margin:0;padding:0;list-style:none}a[data-v-818098dc]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-818098dc]:hover{color:#35b870}[data-v-818098dc]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-818098dc]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-818098dc]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-818098dc]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-818098dc]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-818098dc] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-818098dc] .nav .path{cursor:pointer}.browser[data-v-818098dc] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-818098dc] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-818098dc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-818098dc],input[type=number][data-v-818098dc],input[type=password][data-v-818098dc],input[type=search][data-v-818098dc],input[type=text][data-v-818098dc],input[type=time][data-v-818098dc]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-818098dc]:hover,input[type=number][data-v-818098dc]:hover,input[type=password][data-v-818098dc]:hover,input[type=search][data-v-818098dc]:hover,input[type=text][data-v-818098dc]:hover,input[type=time][data-v-818098dc]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-818098dc]:focus,input[type=number][data-v-818098dc]:focus,input[type=password][data-v-818098dc]:focus,input[type=search][data-v-818098dc]:focus,input[type=text][data-v-818098dc]:focus,input[type=time][data-v-818098dc]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-818098dc],input[type=number].with-icon[data-v-818098dc],input[type=password].with-icon[data-v-818098dc],input[type=search].with-icon[data-v-818098dc],input[type=text].with-icon[data-v-818098dc],input[type=time].with-icon[data-v-818098dc]{padding-left:.3em}input[type=search][data-v-818098dc],input[type=text][data-v-818098dc]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-818098dc]{animation-fill-mode:both;animation-name:fadeIn-818098dc;-webkit-animation-name:fadeIn-818098dc}.fade-in[data-v-818098dc],.fade-out[data-v-818098dc]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-818098dc]{animation-fill-mode:both;animation-name:fadeOut-818098dc;-webkit-animation-name:fadeOut-818098dc}@keyframes fadeIn-818098dc{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-818098dc{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-818098dc]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-818098dc;-webkit-animation-name:glow-818098dc}.loop[data-v-818098dc]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-818098dc{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-818098dc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-818098dc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-818098dc]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.procedure-editor-container[data-v-818098dc]{display:flex;flex-direction:column;padding-top:.75em}.procedure-editor-container .procedure-editor[data-v-818098dc]{width:100%}.procedure-editor-container .actions .item[data-v-818098dc]{margin-bottom:.75em}.procedure-editor-container .actions .drop-target-container[data-v-818098dc]{width:100%;height:.75em;display:flex;align-items:center}.procedure-editor-container .actions .drop-target-container.active .drop-target[data-v-818098dc]{height:.5em;background:linear-gradient(90deg,#09ae80,#47e2b3 120%);border:none;opacity:.75}.procedure-editor-container .actions .drop-target-container .drop-target[data-v-818098dc]{width:100%;height:2px;border:1px solid #23513a;border-radius:.25em;padding:0 .5em}.procedure-editor-container.dragging[data-v-818098dc]{padding-top:0}.procedure-editor-container.dragging .actions .item[data-v-818098dc]{margin-bottom:0}.procedure-editor-container.dragging .actions .separator[data-v-818098dc]{height:.75em}.col-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c55ac602]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c55ac602]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c55ac602]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c55ac602]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c55ac602]:first-child{margin-left:26%!important}.col-offset-3[data-v-c55ac602]:not(first-child){margin-left:30%!important}.col-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c55ac602]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c55ac602]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c55ac602]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c55ac602]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c55ac602]:first-child{margin-left:52%!important}.col-offset-6[data-v-c55ac602]:not(first-child){margin-left:56%!important}.col-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c55ac602]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c55ac602]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c55ac602]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c55ac602]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c55ac602]:first-child{margin-left:78%!important}.col-offset-9[data-v-c55ac602]:not(first-child){margin-left:82%!important}.col-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c55ac602]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c55ac602]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c55ac602]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c55ac602]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-s-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-s-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-s-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-s-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c55ac602]{display:none!important}.s-visible[data-v-c55ac602]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-m-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-m-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-m-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-m-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c55ac602]{display:none!important}.m-visible[data-v-c55ac602]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-l-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-l-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-l-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-l-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c55ac602]{display:none!important}.l-visible[data-v-c55ac602]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-xl-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-xl-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-xl-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xl-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c55ac602]{display:none!important}.xl-visible[data-v-c55ac602]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c55ac602]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c55ac602]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c55ac602]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c55ac602]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c55ac602]{margin-left:26%}.col-no-margin-xxl-3[data-v-c55ac602]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c55ac602]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c55ac602]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c55ac602]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c55ac602]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c55ac602]{margin-left:52%}.col-no-margin-xxl-6[data-v-c55ac602]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c55ac602]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c55ac602]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c55ac602]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c55ac602]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c55ac602]{margin-left:78%}.col-no-margin-xxl-9[data-v-c55ac602]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c55ac602]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c55ac602]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c55ac602]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c55ac602]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c55ac602]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c55ac602]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c55ac602]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c55ac602]{display:none!important}.xxl-visible[data-v-c55ac602]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-c55ac602]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-c55ac602]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-c55ac602]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c55ac602]{display:none!important}}.vertical-center[data-v-c55ac602]{display:flex;align-items:center}.horizontal-center[data-v-c55ac602]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c55ac602]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c55ac602]{display:none!important}.no-content[data-v-c55ac602]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-c55ac602]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-c55ac602]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-c55ac602]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-c55ac602]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-c55ac602]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-c55ac602]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-c55ac602],.btn[data-v-c55ac602],button[data-v-c55ac602]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c55ac602],.btn-default[type=submit][data-v-c55ac602],.btn.btn-primary[data-v-c55ac602],.btn[type=submit][data-v-c55ac602],button.btn-primary[data-v-c55ac602],button[type=submit][data-v-c55ac602]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-c55ac602],.btn-default .icon[data-v-c55ac602],button .icon[data-v-c55ac602]{margin-right:.5em}input[type=password][data-v-c55ac602],input[type=text][data-v-c55ac602]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c55ac602]:focus,input[type=text][data-v-c55ac602]:focus{border:1px solid #35b870}button[data-v-c55ac602],input[data-v-c55ac602]{outline:none}input[type=text][data-v-c55ac602]:hover,textarea[data-v-c55ac602]:hover{border:1px solid #9cdfb0}ul[data-v-c55ac602]{margin:0;padding:0;list-style:none}a[data-v-c55ac602]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c55ac602]:hover{color:#35b870}[data-v-c55ac602]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-c55ac602]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-c55ac602]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c55ac602]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-c55ac602]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-c55ac602] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-c55ac602] .nav .path{cursor:pointer}.browser[data-v-c55ac602] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-c55ac602] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-c55ac602]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-c55ac602],input[type=number][data-v-c55ac602],input[type=password][data-v-c55ac602],input[type=search][data-v-c55ac602],input[type=text][data-v-c55ac602],input[type=time][data-v-c55ac602]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-c55ac602]:hover,input[type=number][data-v-c55ac602]:hover,input[type=password][data-v-c55ac602]:hover,input[type=search][data-v-c55ac602]:hover,input[type=text][data-v-c55ac602]:hover,input[type=time][data-v-c55ac602]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-c55ac602]:focus,input[type=number][data-v-c55ac602]:focus,input[type=password][data-v-c55ac602]:focus,input[type=search][data-v-c55ac602]:focus,input[type=text][data-v-c55ac602]:focus,input[type=time][data-v-c55ac602]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-c55ac602],input[type=number].with-icon[data-v-c55ac602],input[type=password].with-icon[data-v-c55ac602],input[type=search].with-icon[data-v-c55ac602],input[type=text].with-icon[data-v-c55ac602],input[type=time].with-icon[data-v-c55ac602]{padding-left:.3em}input[type=search][data-v-c55ac602],input[type=text][data-v-c55ac602]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c55ac602]{animation-fill-mode:both;animation-name:fadeIn-c55ac602;-webkit-animation-name:fadeIn-c55ac602}.fade-in[data-v-c55ac602],.fade-out[data-v-c55ac602]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c55ac602]{animation-fill-mode:both;animation-name:fadeOut-c55ac602;-webkit-animation-name:fadeOut-c55ac602}@keyframes fadeIn-c55ac602{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c55ac602{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-c55ac602]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-c55ac602;-webkit-animation-name:glow-c55ac602}.loop[data-v-c55ac602]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-c55ac602{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-c55ac602]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c55ac602]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c55ac602]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.cron-editor-container[data-v-c55ac602]{display:flex;flex-direction:column}.cron-editor-container .input-grid label[data-v-c55ac602]{display:flex;align-items:center;font-weight:700;border:1px solid transparent;border-radius:1em;padding:.25em}.cron-editor-container .input-grid label.selected[data-v-c55ac602]{border:1px solid #32b646}.cron-editor-container .input-grid input[type=text][data-v-c55ac602]{width:100%}.cron-editor-container .error[data-v-c55ac602]{color:#ad1717}.cron-editor-container .error label input[type=text][data-v-c55ac602]{border-color:#ad1717}.cron-editor-container .cron-description-container[data-v-c55ac602]{margin-top:.5em;padding:.5em;font-size:.9em;font-weight:700;background:#0b0b0d;color:#f3f3fa;border-radius:1em;border:1px solid #ccc}.cron-editor-container .cron-description-container .cron-description[data-v-c55ac602]{display:flex;flex-direction:column;justify-content:center;position:relative}.cron-editor-container .cron-description-container .cron-string[data-v-c55ac602]{font-family:monospace;font-size:1.1em}.cron-editor-container .cron-description-container .cron-text[data-v-c55ac602]{font-weight:400;font-style:italic}.col-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3daea642]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3daea642]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3daea642]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3daea642]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3daea642]:first-child{margin-left:26%!important}.col-offset-3[data-v-3daea642]:not(first-child){margin-left:30%!important}.col-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3daea642]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3daea642]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3daea642]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3daea642]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3daea642]:first-child{margin-left:52%!important}.col-offset-6[data-v-3daea642]:not(first-child){margin-left:56%!important}.col-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3daea642]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3daea642]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3daea642]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3daea642]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3daea642]:first-child{margin-left:78%!important}.col-offset-9[data-v-3daea642]:not(first-child){margin-left:82%!important}.col-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3daea642]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3daea642]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3daea642]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3daea642]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-3[data-v-3daea642]{margin-left:26%}.col-no-margin-s-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-6[data-v-3daea642]{margin-left:52%}.col-no-margin-s-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-9[data-v-3daea642]{margin-left:78%}.col-no-margin-s-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-s-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3daea642]{display:none!important}.s-visible[data-v-3daea642]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-3[data-v-3daea642]{margin-left:26%}.col-no-margin-m-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-6[data-v-3daea642]{margin-left:52%}.col-no-margin-m-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-9[data-v-3daea642]{margin-left:78%}.col-no-margin-m-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-m-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3daea642]{display:none!important}.m-visible[data-v-3daea642]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-3[data-v-3daea642]{margin-left:26%}.col-no-margin-l-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-6[data-v-3daea642]{margin-left:52%}.col-no-margin-l-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-9[data-v-3daea642]{margin-left:78%}.col-no-margin-l-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-l-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3daea642]{display:none!important}.l-visible[data-v-3daea642]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-3[data-v-3daea642]{margin-left:26%}.col-no-margin-xl-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-6[data-v-3daea642]{margin-left:52%}.col-no-margin-xl-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-9[data-v-3daea642]{margin-left:78%}.col-no-margin-xl-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-xl-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3daea642]{display:none!important}.xl-visible[data-v-3daea642]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3daea642]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3daea642]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3daea642]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3daea642]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3daea642]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3daea642]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3daea642]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3daea642]{margin-left:26%}.col-no-margin-xxl-3[data-v-3daea642]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3daea642]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3daea642]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3daea642]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3daea642]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3daea642]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3daea642]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3daea642]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3daea642]{margin-left:52%}.col-no-margin-xxl-6[data-v-3daea642]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3daea642]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3daea642]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3daea642]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3daea642]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3daea642]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3daea642]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3daea642]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3daea642]{margin-left:78%}.col-no-margin-xxl-9[data-v-3daea642]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3daea642]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3daea642]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3daea642]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3daea642]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3daea642]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3daea642]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3daea642]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3daea642]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3daea642]{display:none!important}.xxl-visible[data-v-3daea642]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3daea642]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3daea642]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3daea642]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3daea642]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3daea642]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3daea642]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3daea642]{display:none!important}}.vertical-center[data-v-3daea642]{display:flex;align-items:center}.horizontal-center[data-v-3daea642]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3daea642]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3daea642]{display:none!important}.no-content[data-v-3daea642]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3daea642]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3daea642]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3daea642]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3daea642]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3daea642]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3daea642]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3daea642],.btn[data-v-3daea642],button[data-v-3daea642]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3daea642],.btn-default[type=submit][data-v-3daea642],.btn.btn-primary[data-v-3daea642],.btn[type=submit][data-v-3daea642],button.btn-primary[data-v-3daea642],button[type=submit][data-v-3daea642]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3daea642],.btn-default .icon[data-v-3daea642],button .icon[data-v-3daea642]{margin-right:.5em}input[type=password][data-v-3daea642],input[type=text][data-v-3daea642]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3daea642]:focus,input[type=text][data-v-3daea642]:focus{border:1px solid #35b870}button[data-v-3daea642],input[data-v-3daea642]{outline:none}input[type=text][data-v-3daea642]:hover,textarea[data-v-3daea642]:hover{border:1px solid #9cdfb0}ul[data-v-3daea642]{margin:0;padding:0;list-style:none}a[data-v-3daea642]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3daea642]:hover{color:#35b870}[data-v-3daea642]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3daea642]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3daea642]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3daea642]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3daea642]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3daea642] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3daea642] .nav .path{cursor:pointer}.browser[data-v-3daea642] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3daea642] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3daea642]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3daea642],input[type=number][data-v-3daea642],input[type=password][data-v-3daea642],input[type=search][data-v-3daea642],input[type=text][data-v-3daea642],input[type=time][data-v-3daea642]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3daea642]:hover,input[type=number][data-v-3daea642]:hover,input[type=password][data-v-3daea642]:hover,input[type=search][data-v-3daea642]:hover,input[type=text][data-v-3daea642]:hover,input[type=time][data-v-3daea642]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3daea642]:focus,input[type=number][data-v-3daea642]:focus,input[type=password][data-v-3daea642]:focus,input[type=search][data-v-3daea642]:focus,input[type=text][data-v-3daea642]:focus,input[type=time][data-v-3daea642]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3daea642],input[type=number].with-icon[data-v-3daea642],input[type=password].with-icon[data-v-3daea642],input[type=search].with-icon[data-v-3daea642],input[type=text].with-icon[data-v-3daea642],input[type=time].with-icon[data-v-3daea642]{padding-left:.3em}input[type=search][data-v-3daea642],input[type=text][data-v-3daea642]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3daea642]{animation-fill-mode:both;animation-name:fadeIn-3daea642;-webkit-animation-name:fadeIn-3daea642}.fade-in[data-v-3daea642],.fade-out[data-v-3daea642]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3daea642]{animation-fill-mode:both;animation-name:fadeOut-3daea642;-webkit-animation-name:fadeOut-3daea642}@keyframes fadeIn-3daea642{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3daea642{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3daea642]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3daea642;-webkit-animation-name:glow-3daea642}.loop[data-v-3daea642]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3daea642{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3daea642]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3daea642]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3daea642]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.file-selector-container[data-v-3daea642]{display:flex;flex-direction:column}.file-selector-container .input[data-v-3daea642]{display:flex;flex-direction:row;align-items:stretch}.file-selector-container .input input[data-v-3daea642]{flex-grow:1;border-radius:1em 0 0 1em;border-right:none}.file-selector-container .input button[data-v-3daea642]{border-radius:0 1em 1em 0;border-left:none}.file-selector-container[data-v-3daea642] .modal .body{width:80vw;height:80vh;max-width:800px;padding:0}.file-selector-container[data-v-3daea642] .modal .body .items .item{padding:1em .5em}.col-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d1cb0878]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d1cb0878]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d1cb0878]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d1cb0878]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d1cb0878]:first-child{margin-left:26%!important}.col-offset-3[data-v-d1cb0878]:not(first-child){margin-left:30%!important}.col-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d1cb0878]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d1cb0878]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d1cb0878]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d1cb0878]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d1cb0878]:first-child{margin-left:52%!important}.col-offset-6[data-v-d1cb0878]:not(first-child){margin-left:56%!important}.col-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d1cb0878]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d1cb0878]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d1cb0878]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d1cb0878]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d1cb0878]:first-child{margin-left:78%!important}.col-offset-9[data-v-d1cb0878]:not(first-child){margin-left:82%!important}.col-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d1cb0878]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d1cb0878]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d1cb0878]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d1cb0878]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-s-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-s-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-s-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-s-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d1cb0878]{display:none!important}.s-visible[data-v-d1cb0878]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-m-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-m-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-m-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-m-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d1cb0878]{display:none!important}.m-visible[data-v-d1cb0878]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-l-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-l-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-l-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-l-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d1cb0878]{display:none!important}.l-visible[data-v-d1cb0878]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-xl-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-xl-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-xl-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xl-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d1cb0878]{display:none!important}.xl-visible[data-v-d1cb0878]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d1cb0878]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d1cb0878]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d1cb0878]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d1cb0878]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d1cb0878]{margin-left:26%}.col-no-margin-xxl-3[data-v-d1cb0878]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d1cb0878]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d1cb0878]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d1cb0878]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d1cb0878]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d1cb0878]{margin-left:52%}.col-no-margin-xxl-6[data-v-d1cb0878]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d1cb0878]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d1cb0878]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d1cb0878]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d1cb0878]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d1cb0878]{margin-left:78%}.col-no-margin-xxl-9[data-v-d1cb0878]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d1cb0878]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d1cb0878]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d1cb0878]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d1cb0878]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d1cb0878]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d1cb0878]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d1cb0878]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d1cb0878]{display:none!important}.xxl-visible[data-v-d1cb0878]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-d1cb0878]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-d1cb0878]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d1cb0878]{display:none!important}}.vertical-center[data-v-d1cb0878]{display:flex;align-items:center}.horizontal-center[data-v-d1cb0878]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-d1cb0878]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d1cb0878]{display:none!important}.no-content[data-v-d1cb0878]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-d1cb0878]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-d1cb0878]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-d1cb0878]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-d1cb0878]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-d1cb0878]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-d1cb0878]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-d1cb0878],.btn[data-v-d1cb0878],button[data-v-d1cb0878]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d1cb0878],.btn-default[type=submit][data-v-d1cb0878],.btn.btn-primary[data-v-d1cb0878],.btn[type=submit][data-v-d1cb0878],button.btn-primary[data-v-d1cb0878],button[type=submit][data-v-d1cb0878]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-d1cb0878],.btn-default .icon[data-v-d1cb0878],button .icon[data-v-d1cb0878]{margin-right:.5em}input[type=password][data-v-d1cb0878],input[type=text][data-v-d1cb0878]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d1cb0878]:focus,input[type=text][data-v-d1cb0878]:focus{border:1px solid #35b870}button[data-v-d1cb0878],input[data-v-d1cb0878]{outline:none}input[type=text][data-v-d1cb0878]:hover,textarea[data-v-d1cb0878]:hover{border:1px solid #9cdfb0}ul[data-v-d1cb0878]{margin:0;padding:0;list-style:none}a[data-v-d1cb0878]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-d1cb0878]:hover{color:#35b870}[data-v-d1cb0878]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-d1cb0878]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-d1cb0878]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d1cb0878]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-d1cb0878]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-d1cb0878] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-d1cb0878] .nav .path{cursor:pointer}.browser[data-v-d1cb0878] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-d1cb0878] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-d1cb0878]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-d1cb0878],input[type=number][data-v-d1cb0878],input[type=password][data-v-d1cb0878],input[type=search][data-v-d1cb0878],input[type=text][data-v-d1cb0878],input[type=time][data-v-d1cb0878]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-d1cb0878]:hover,input[type=number][data-v-d1cb0878]:hover,input[type=password][data-v-d1cb0878]:hover,input[type=search][data-v-d1cb0878]:hover,input[type=text][data-v-d1cb0878]:hover,input[type=time][data-v-d1cb0878]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-d1cb0878]:focus,input[type=number][data-v-d1cb0878]:focus,input[type=password][data-v-d1cb0878]:focus,input[type=search][data-v-d1cb0878]:focus,input[type=text][data-v-d1cb0878]:focus,input[type=time][data-v-d1cb0878]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-d1cb0878],input[type=number].with-icon[data-v-d1cb0878],input[type=password].with-icon[data-v-d1cb0878],input[type=search].with-icon[data-v-d1cb0878],input[type=text].with-icon[data-v-d1cb0878],input[type=time].with-icon[data-v-d1cb0878]{padding-left:.3em}input[type=search][data-v-d1cb0878],input[type=text][data-v-d1cb0878]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-d1cb0878]{animation-fill-mode:both;animation-name:fadeIn-d1cb0878;-webkit-animation-name:fadeIn-d1cb0878}.fade-in[data-v-d1cb0878],.fade-out[data-v-d1cb0878]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-d1cb0878]{animation-fill-mode:both;animation-name:fadeOut-d1cb0878;-webkit-animation-name:fadeOut-d1cb0878}@keyframes fadeIn-d1cb0878{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d1cb0878{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-d1cb0878]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-d1cb0878;-webkit-animation-name:glow-d1cb0878}.loop[data-v-d1cb0878]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-d1cb0878{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-d1cb0878]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d1cb0878]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d1cb0878]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.time-interval-container[data-v-d1cb0878]{display:flex;flex-direction:column}.time-interval-container .row[data-v-d1cb0878]{display:flex;flex-direction:row;align-items:center}.time-interval-container .value-container input[data-v-d1cb0878]{width:7.5em}.time-interval-container .unit-container[data-v-d1cb0878]{margin-left:.5em}.col-1[data-v-0154da62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-1[data-v-0154da62]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0154da62]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0154da62]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0154da62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-2[data-v-0154da62]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0154da62]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0154da62]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0154da62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-3[data-v-0154da62]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0154da62]:first-child{margin-left:26%!important}.col-offset-3[data-v-0154da62]:not(first-child){margin-left:30%!important}.col-4[data-v-0154da62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-4[data-v-0154da62]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0154da62]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0154da62]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0154da62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-5[data-v-0154da62]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0154da62]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0154da62]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0154da62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-6[data-v-0154da62]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0154da62]:first-child{margin-left:52%!important}.col-offset-6[data-v-0154da62]:not(first-child){margin-left:56%!important}.col-7[data-v-0154da62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-7[data-v-0154da62]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0154da62]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0154da62]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0154da62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-8[data-v-0154da62]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0154da62]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0154da62]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0154da62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-9[data-v-0154da62]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0154da62]:first-child{margin-left:78%!important}.col-offset-9[data-v-0154da62]:not(first-child){margin-left:82%!important}.col-10[data-v-0154da62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-10[data-v-0154da62]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0154da62]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0154da62]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0154da62]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0154da62]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0154da62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-1[data-v-0154da62]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0154da62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0154da62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-2[data-v-0154da62]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0154da62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0154da62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-3[data-v-0154da62]{margin-left:26%}.col-no-margin-s-3[data-v-0154da62]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0154da62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-4[data-v-0154da62]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0154da62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0154da62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-5[data-v-0154da62]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0154da62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0154da62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-6[data-v-0154da62]{margin-left:52%}.col-no-margin-s-6[data-v-0154da62]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0154da62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-7[data-v-0154da62]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0154da62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0154da62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-8[data-v-0154da62]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0154da62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0154da62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-9[data-v-0154da62]{margin-left:78%}.col-no-margin-s-9[data-v-0154da62]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0154da62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-10[data-v-0154da62]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0154da62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0154da62]:first-child{margin-left:0}.col-offset-s-11[data-v-0154da62]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0154da62]{display:none!important}.s-visible[data-v-0154da62]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0154da62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-1[data-v-0154da62]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0154da62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0154da62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-2[data-v-0154da62]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0154da62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0154da62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-3[data-v-0154da62]{margin-left:26%}.col-no-margin-m-3[data-v-0154da62]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0154da62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-4[data-v-0154da62]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0154da62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0154da62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-5[data-v-0154da62]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0154da62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0154da62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-6[data-v-0154da62]{margin-left:52%}.col-no-margin-m-6[data-v-0154da62]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0154da62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-7[data-v-0154da62]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0154da62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0154da62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-8[data-v-0154da62]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0154da62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0154da62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-9[data-v-0154da62]{margin-left:78%}.col-no-margin-m-9[data-v-0154da62]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0154da62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-10[data-v-0154da62]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0154da62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0154da62]:first-child{margin-left:0}.col-offset-m-11[data-v-0154da62]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0154da62]{display:none!important}.m-visible[data-v-0154da62]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0154da62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-1[data-v-0154da62]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0154da62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0154da62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-2[data-v-0154da62]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0154da62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0154da62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-3[data-v-0154da62]{margin-left:26%}.col-no-margin-l-3[data-v-0154da62]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0154da62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-4[data-v-0154da62]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0154da62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0154da62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-5[data-v-0154da62]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0154da62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0154da62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-6[data-v-0154da62]{margin-left:52%}.col-no-margin-l-6[data-v-0154da62]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0154da62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-7[data-v-0154da62]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0154da62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0154da62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-8[data-v-0154da62]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0154da62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0154da62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-9[data-v-0154da62]{margin-left:78%}.col-no-margin-l-9[data-v-0154da62]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0154da62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-10[data-v-0154da62]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0154da62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0154da62]:first-child{margin-left:0}.col-offset-l-11[data-v-0154da62]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0154da62]{display:none!important}.l-visible[data-v-0154da62]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0154da62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-1[data-v-0154da62]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0154da62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0154da62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-2[data-v-0154da62]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0154da62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0154da62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-3[data-v-0154da62]{margin-left:26%}.col-no-margin-xl-3[data-v-0154da62]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0154da62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-4[data-v-0154da62]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0154da62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0154da62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-5[data-v-0154da62]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0154da62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0154da62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-6[data-v-0154da62]{margin-left:52%}.col-no-margin-xl-6[data-v-0154da62]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0154da62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-7[data-v-0154da62]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0154da62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0154da62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-8[data-v-0154da62]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0154da62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0154da62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-9[data-v-0154da62]{margin-left:78%}.col-no-margin-xl-9[data-v-0154da62]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0154da62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-10[data-v-0154da62]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0154da62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0154da62]:first-child{margin-left:0}.col-offset-xl-11[data-v-0154da62]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0154da62]{display:none!important}.xl-visible[data-v-0154da62]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0154da62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0154da62]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0154da62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0154da62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0154da62]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0154da62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0154da62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0154da62]{margin-left:26%}.col-no-margin-xxl-3[data-v-0154da62]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0154da62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0154da62]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0154da62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0154da62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0154da62]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0154da62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0154da62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0154da62]{margin-left:52%}.col-no-margin-xxl-6[data-v-0154da62]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0154da62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0154da62]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0154da62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0154da62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0154da62]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0154da62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0154da62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0154da62]{margin-left:78%}.col-no-margin-xxl-9[data-v-0154da62]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0154da62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0154da62]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0154da62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0154da62]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0154da62]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0154da62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0154da62]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0154da62]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0154da62]{display:none!important}.xxl-visible[data-v-0154da62]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0154da62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0154da62]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0154da62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0154da62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0154da62]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0154da62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0154da62]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0154da62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0154da62]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0154da62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0154da62]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0154da62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0154da62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0154da62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0154da62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0154da62]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0154da62]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0154da62]{display:none!important}}.vertical-center[data-v-0154da62]{display:flex;align-items:center}.horizontal-center[data-v-0154da62]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0154da62]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0154da62]{display:none!important}.no-content[data-v-0154da62]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0154da62]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0154da62]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0154da62]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0154da62]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0154da62]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0154da62]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0154da62],.btn[data-v-0154da62],button[data-v-0154da62]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0154da62],.btn-default[type=submit][data-v-0154da62],.btn.btn-primary[data-v-0154da62],.btn[type=submit][data-v-0154da62],button.btn-primary[data-v-0154da62],button[type=submit][data-v-0154da62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0154da62],.btn-default .icon[data-v-0154da62],button .icon[data-v-0154da62]{margin-right:.5em}input[type=password][data-v-0154da62],input[type=text][data-v-0154da62]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0154da62]:focus,input[type=text][data-v-0154da62]:focus{border:1px solid #35b870}button[data-v-0154da62],input[data-v-0154da62]{outline:none}input[type=text][data-v-0154da62]:hover,textarea[data-v-0154da62]:hover{border:1px solid #9cdfb0}ul[data-v-0154da62]{margin:0;padding:0;list-style:none}a[data-v-0154da62]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0154da62]:hover{color:#35b870}[data-v-0154da62]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0154da62]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0154da62]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0154da62]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0154da62]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0154da62] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0154da62] .nav .path{cursor:pointer}.browser[data-v-0154da62] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0154da62] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0154da62]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0154da62],input[type=number][data-v-0154da62],input[type=password][data-v-0154da62],input[type=search][data-v-0154da62],input[type=text][data-v-0154da62],input[type=time][data-v-0154da62]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0154da62]:hover,input[type=number][data-v-0154da62]:hover,input[type=password][data-v-0154da62]:hover,input[type=search][data-v-0154da62]:hover,input[type=text][data-v-0154da62]:hover,input[type=time][data-v-0154da62]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0154da62]:focus,input[type=number][data-v-0154da62]:focus,input[type=password][data-v-0154da62]:focus,input[type=search][data-v-0154da62]:focus,input[type=text][data-v-0154da62]:focus,input[type=time][data-v-0154da62]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0154da62],input[type=number].with-icon[data-v-0154da62],input[type=password].with-icon[data-v-0154da62],input[type=search].with-icon[data-v-0154da62],input[type=text].with-icon[data-v-0154da62],input[type=time].with-icon[data-v-0154da62]{padding-left:.3em}input[type=search][data-v-0154da62],input[type=text][data-v-0154da62]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0154da62]{animation-fill-mode:both;animation-name:fadeIn-0154da62;-webkit-animation-name:fadeIn-0154da62}.fade-in[data-v-0154da62],.fade-out[data-v-0154da62]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0154da62]{animation-fill-mode:both;animation-name:fadeOut-0154da62;-webkit-animation-name:fadeOut-0154da62}@keyframes fadeIn-0154da62{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0154da62{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-0154da62]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-0154da62;-webkit-animation-name:glow-0154da62}.loop[data-v-0154da62]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-0154da62{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-0154da62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0154da62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0154da62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.alarm-editor-container[data-v-0154da62]{width:100%;height:50em;max-height:65vh;background:#f8f8f8;cursor:default}.alarm-editor-container .head[data-v-0154da62]{width:100%;height:3.5em}.alarm-editor-container .head .row[data-v-0154da62]{width:100%;height:100%;box-shadow:0 3px 2px -1px silver;display:flex;align-items:center}.alarm-editor-container .head input[type=text][data-v-0154da62]{width:100%;max-width:30em}.alarm-editor-container .head .buttons[data-v-0154da62]{height:100%;display:flex;justify-content:right;align-items:center;padding:0}.alarm-editor-container .head .buttons button[data-v-0154da62]{margin:.25em 0 .25em .5em}.alarm-editor-container .head .buttons button.save-btn[data-v-0154da62]:hover{background:#fff}.alarm-editor-container .body[data-v-0154da62]{height:calc(100% - 3.5em);overflow:auto}.alarm-editor-container .alarm-editor[data-v-0154da62]{width:100%;height:100%;padding:0}.alarm-editor-container .alarm-editor .item[data-v-0154da62]{padding:.5em 1em;border-bottom:1px solid #ddd}.alarm-editor-container .alarm-editor .item .name label[data-v-0154da62]{margin:0;font-weight:700}.alarm-editor-container .alarm-editor .item .name label .icon[data-v-0154da62]{opacity:.75;margin-right:.5em}.alarm-editor-container .alarm-editor .item .name .condition-type[data-v-0154da62]{margin:.25em 0}.alarm-editor-container .alarm-editor .item .name .condition-type label.selected[data-v-0154da62]{font-weight:700}.alarm-editor-container .alarm-editor .item .name .condition-type label[data-v-0154da62]:not(.selected){font-weight:400}.alarm-editor-container .alarm-editor .item .value input[data-v-0154da62]{width:100%}.alarm-editor-container .subtext[data-v-0154da62]{display:block;font-size:.9em;opacity:.8;margin-bottom:.5em}.alarm-editor-container input[type=text][data-v-0154da62]{min-height:2em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9461.e2d5774b.css b/platypush/backend/http/webapp/dist/static/css/9461.ae92bb88.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/9461.e2d5774b.css rename to platypush/backend/http/webapp/dist/static/css/9461.ae92bb88.css index fd2b706235..1d4b1be9f7 100644 --- a/platypush/backend/http/webapp/dist/static/css/9461.e2d5774b.css +++ b/platypush/backend/http/webapp/dist/static/css/9461.ae92bb88.css @@ -1 +1 @@ -.col-1[data-v-05503f62],.entity .head .icon[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-05503f62]:first-child,.entity .head .icon[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-05503f62]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-05503f62]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-05503f62]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-05503f62]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-05503f62],.entity .head .value-and-toggler[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-05503f62]:first-child,.entity .head .value-and-toggler[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-05503f62]:first-child{margin-left:26%!important}.col-offset-3[data-v-05503f62]:not(first-child){margin-left:30%!important}.col-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-05503f62]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-05503f62]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-05503f62]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-05503f62]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-05503f62]:first-child{margin-left:52%!important}.col-offset-6[data-v-05503f62]:not(first-child){margin-left:56%!important}.col-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-05503f62]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-05503f62]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-05503f62]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-05503f62]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-05503f62]:first-child{margin-left:78%!important}.col-offset-9[data-v-05503f62]:not(first-child){margin-left:82%!important}.col-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-05503f62]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-05503f62]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-05503f62]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-05503f62]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-05503f62],.entity .head .value-container[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-05503f62]:first-child,.entity .head .value-container[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-3[data-v-05503f62]{margin-left:26%}.col-no-margin-s-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-6[data-v-05503f62]{margin-left:52%}.col-no-margin-s-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-05503f62],.entity .head .label[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-05503f62]:first-child,.entity .head .label[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-9[data-v-05503f62]{margin-left:78%}.col-no-margin-s-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-05503f62],.attributes .child .value[data-v-05503f62],.col-s-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-05503f62]:first-child,.attributes .child .value[data-v-05503f62]:first-child,.col-s-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-s-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-05503f62]{display:none!important}.s-visible[data-v-05503f62]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-05503f62],.entity .head .value-container[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-05503f62]:first-child,.entity .head .value-container[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-3[data-v-05503f62]{margin-left:26%}.col-no-margin-m-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-05503f62],.attributes .child .value[data-v-05503f62],.col-m-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-05503f62]:first-child,.attributes .child .value[data-v-05503f62]:first-child,.col-m-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-6[data-v-05503f62]{margin-left:52%}.col-no-margin-m-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-05503f62],.entity .head .label[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-05503f62]:first-child,.entity .head .label[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-9[data-v-05503f62]{margin-left:78%}.col-no-margin-m-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-m-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-05503f62]{display:none!important}.m-visible[data-v-05503f62]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-3[data-v-05503f62]{margin-left:26%}.col-no-margin-l-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-6[data-v-05503f62]{margin-left:52%}.col-no-margin-l-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-9[data-v-05503f62]{margin-left:78%}.col-no-margin-l-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-l-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-05503f62]{display:none!important}.l-visible[data-v-05503f62]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-3[data-v-05503f62]{margin-left:26%}.col-no-margin-xl-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-6[data-v-05503f62]{margin-left:52%}.col-no-margin-xl-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-9[data-v-05503f62]{margin-left:78%}.col-no-margin-xl-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-05503f62]{display:none!important}.xl-visible[data-v-05503f62]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-3[data-v-05503f62]{margin-left:26%}.col-no-margin-xxl-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-6[data-v-05503f62]{margin-left:52%}.col-no-margin-xxl-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-9[data-v-05503f62]{margin-left:78%}.col-no-margin-xxl-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-05503f62]{display:none!important}.xxl-visible[data-v-05503f62]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-05503f62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-05503f62]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-05503f62]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-05503f62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-05503f62]{display:none!important}}.vertical-center[data-v-05503f62]{display:flex;align-items:center}.horizontal-center[data-v-05503f62]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-05503f62],.pull-right[data-v-05503f62]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-05503f62]{display:none!important}.no-content[data-v-05503f62]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-05503f62]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-05503f62]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-05503f62]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-05503f62]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-05503f62]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-05503f62]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-05503f62],.btn[data-v-05503f62],button[data-v-05503f62]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-05503f62],.btn-default[type=submit][data-v-05503f62],.btn.btn-primary[data-v-05503f62],.btn[type=submit][data-v-05503f62],button.btn-primary[data-v-05503f62],button[type=submit][data-v-05503f62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-05503f62],.btn-default .icon[data-v-05503f62],button .icon[data-v-05503f62]{margin-right:.5em}input[type=password][data-v-05503f62],input[type=text][data-v-05503f62]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-05503f62]:focus,input[type=text][data-v-05503f62]:focus{border:1px solid #35b870}button[data-v-05503f62],input[data-v-05503f62]{outline:none}input[type=text][data-v-05503f62]:hover,textarea[data-v-05503f62]:hover{border:1px solid #9cdfb0}ul[data-v-05503f62]{margin:0;padding:0;list-style:none}a[data-v-05503f62]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-05503f62]:hover{color:#35b870}[data-v-05503f62]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-05503f62]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-05503f62]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-05503f62]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-05503f62]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-05503f62] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-05503f62] .nav .path{cursor:pointer}.browser[data-v-05503f62] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-05503f62] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-05503f62]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-05503f62],input[type=number][data-v-05503f62],input[type=password][data-v-05503f62],input[type=search][data-v-05503f62],input[type=text][data-v-05503f62],input[type=time][data-v-05503f62]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-05503f62]:hover,input[type=number][data-v-05503f62]:hover,input[type=password][data-v-05503f62]:hover,input[type=search][data-v-05503f62]:hover,input[type=text][data-v-05503f62]:hover,input[type=time][data-v-05503f62]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-05503f62]:focus,input[type=number][data-v-05503f62]:focus,input[type=password][data-v-05503f62]:focus,input[type=search][data-v-05503f62]:focus,input[type=text][data-v-05503f62]:focus,input[type=time][data-v-05503f62]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-05503f62],input[type=number].with-icon[data-v-05503f62],input[type=password].with-icon[data-v-05503f62],input[type=search].with-icon[data-v-05503f62],input[type=text].with-icon[data-v-05503f62],input[type=time].with-icon[data-v-05503f62]{padding-left:.3em}input[type=search][data-v-05503f62],input[type=text][data-v-05503f62]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-05503f62],.fade-in[data-v-05503f62]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-05503f62;-webkit-animation-name:fadeIn-05503f62}.fade-out[data-v-05503f62]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-05503f62;-webkit-animation-name:fadeOut-05503f62}@keyframes fadeIn-05503f62{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-05503f62{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-05503f62]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-05503f62;-webkit-animation-name:glow-05503f62}.loop[data-v-05503f62]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-05503f62{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-05503f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-05503f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-05503f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-05503f62]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-05503f62]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-05503f62]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-05503f62]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-05503f62]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-05503f62]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-05503f62]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-05503f62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-05503f62]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-05503f62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-05503f62]{margin-right:.5em}.entity .head .icon[data-v-05503f62]:hover{color:#35b870}.entity .head .label[data-v-05503f62]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-05503f62]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-05503f62]:hover{color:#35b870}.entity .head .value[data-v-05503f62]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-05503f62]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-05503f62]{margin-right:2.5em}.entity .head .value-container[data-v-05503f62]{min-width:7em}.entity .head .unit[data-v-05503f62]{margin-left:.2em}.entity .head .pull-right[data-v-05503f62],.entity .head .value-container[data-v-05503f62]{padding-right:.5em}.entity .head .pull-right[data-v-05503f62] .power-switch,.entity .head .value-container[data-v-05503f62] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-05503f62]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-05503f62]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-05503f62]:hover{color:#35b870}.collapse-toggler[data-v-05503f62]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-05503f62]:hover{color:#35b870}.attributes .child[data-v-05503f62]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-05503f62]{flex-direction:column}}.attributes .child[data-v-05503f62]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-05503f62]:hover{cursor:auto}.attributes .child.head[data-v-05503f62]{cursor:pointer}.attributes .child.head[data-v-05503f62]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-05503f62]{font-weight:700}.attributes .child .value[data-v-05503f62]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-05503f62]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-05503f62]:last-child,.entity-container-wrapper.with-children[data-v-05503f62]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-05503f62]{animation:blink-animation-05503f62 1s steps(20,start)}@keyframes blink-animation-05503f62{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.dimmer-container .head .value-container button[data-v-05503f62]{margin-right:.5em}.dimmer-container .body .row[data-v-05503f62]{display:flex;align-items:center;padding:.5em}.dimmer-container .body .row .icon[data-v-05503f62]{width:2em;text-align:center}.dimmer-container .body .row .input[data-v-05503f62]{width:calc(100% - 1em);display:flex;align-items:center}.dimmer-container .body .row .input[data-v-05503f62] .slider{margin-top:.5em}.dimmer-container .body .row .input .value input[data-v-05503f62]{width:100%} \ No newline at end of file +.col-1[data-v-05503f62],.entity .head .icon[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-05503f62]:first-child,.entity .head .icon[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-05503f62]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-05503f62]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-05503f62]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-05503f62]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-05503f62],.entity .head .value-and-toggler[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-05503f62]:first-child,.entity .head .value-and-toggler[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-05503f62]:first-child{margin-left:26%!important}.col-offset-3[data-v-05503f62]:not(first-child){margin-left:30%!important}.col-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-05503f62]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-05503f62]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-05503f62]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-05503f62]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-05503f62]:first-child{margin-left:52%!important}.col-offset-6[data-v-05503f62]:not(first-child){margin-left:56%!important}.col-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-05503f62]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-05503f62]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-05503f62]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-05503f62]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-05503f62]:first-child{margin-left:78%!important}.col-offset-9[data-v-05503f62]:not(first-child){margin-left:82%!important}.col-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-05503f62]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-05503f62]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-05503f62]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-05503f62]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-05503f62],.entity .head .value-container[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-05503f62]:first-child,.entity .head .value-container[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-3[data-v-05503f62]{margin-left:26%}.col-no-margin-s-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-6[data-v-05503f62]{margin-left:52%}.col-no-margin-s-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-05503f62],.entity .head .label[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-05503f62]:first-child,.entity .head .label[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-9[data-v-05503f62]{margin-left:78%}.col-no-margin-s-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-s-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-05503f62],.attributes .child .value[data-v-05503f62],.col-s-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-05503f62]:first-child,.attributes .child .value[data-v-05503f62]:first-child,.col-s-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-s-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-05503f62]{display:none!important}.s-visible[data-v-05503f62]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-05503f62],.entity .head .value-container[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-05503f62]:first-child,.entity .head .value-container[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-3[data-v-05503f62]{margin-left:26%}.col-no-margin-m-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-05503f62],.attributes .child .value[data-v-05503f62],.col-m-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-05503f62]:first-child,.attributes .child .value[data-v-05503f62]:first-child,.col-m-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-6[data-v-05503f62]{margin-left:52%}.col-no-margin-m-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-05503f62],.entity .head .label[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-05503f62]:first-child,.entity .head .label[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-9[data-v-05503f62]{margin-left:78%}.col-no-margin-m-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-m-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-m-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-05503f62]{display:none!important}.m-visible[data-v-05503f62]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-3[data-v-05503f62]{margin-left:26%}.col-no-margin-l-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-6[data-v-05503f62]{margin-left:52%}.col-no-margin-l-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-9[data-v-05503f62]{margin-left:78%}.col-no-margin-l-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-l-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-l-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-05503f62]{display:none!important}.l-visible[data-v-05503f62]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-3[data-v-05503f62]{margin-left:26%}.col-no-margin-xl-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-6[data-v-05503f62]{margin-left:52%}.col-no-margin-xl-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-9[data-v-05503f62]{margin-left:78%}.col-no-margin-xl-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-xl-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-05503f62]{display:none!important}.xl-visible[data-v-05503f62]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-05503f62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-1[data-v-05503f62]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-05503f62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-05503f62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-2[data-v-05503f62]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-05503f62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-05503f62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-3[data-v-05503f62]{margin-left:26%}.col-no-margin-xxl-3[data-v-05503f62]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-05503f62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-4[data-v-05503f62]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-05503f62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-05503f62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-5[data-v-05503f62]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-05503f62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-05503f62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-6[data-v-05503f62]{margin-left:52%}.col-no-margin-xxl-6[data-v-05503f62]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-05503f62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-7[data-v-05503f62]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-05503f62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-05503f62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-8[data-v-05503f62]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-05503f62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-05503f62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-9[data-v-05503f62]{margin-left:78%}.col-no-margin-xxl-9[data-v-05503f62]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-05503f62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-10[data-v-05503f62]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-05503f62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-05503f62]:first-child{margin-left:0}.col-offset-xxl-11[data-v-05503f62]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-05503f62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-05503f62]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-05503f62]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-05503f62]{display:none!important}.xxl-visible[data-v-05503f62]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-05503f62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-05503f62]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-05503f62]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-05503f62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-05503f62]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-05503f62]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-05503f62]{display:none!important}}.vertical-center[data-v-05503f62]{display:flex;align-items:center}.horizontal-center[data-v-05503f62]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-05503f62],.pull-right[data-v-05503f62]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-05503f62]{display:none!important}.no-content[data-v-05503f62]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-05503f62]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-05503f62]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-05503f62]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-05503f62]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-05503f62]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-05503f62]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-05503f62],.btn[data-v-05503f62],button[data-v-05503f62]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-05503f62],.btn-default[type=submit][data-v-05503f62],.btn.btn-primary[data-v-05503f62],.btn[type=submit][data-v-05503f62],button.btn-primary[data-v-05503f62],button[type=submit][data-v-05503f62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-05503f62]:hover,.btn[data-v-05503f62]:hover,button[data-v-05503f62]:hover{color:#35b870}.btn .icon[data-v-05503f62],.btn-default .icon[data-v-05503f62],button .icon[data-v-05503f62]{margin-right:.5em}.btn-default[data-v-05503f62]:disabled,.btn-default[disabled][data-v-05503f62],.btn[data-v-05503f62]:disabled,.btn[disabled][data-v-05503f62],button[data-v-05503f62]:disabled,button[disabled][data-v-05503f62]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-05503f62]{cursor:grab!important}.dragged[data-v-05503f62]{opacity:.5!important}input[type=password][data-v-05503f62],input[type=text][data-v-05503f62]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-05503f62]:focus,input[type=text][data-v-05503f62]:focus{border:1px solid #35b870}button[data-v-05503f62],input[data-v-05503f62]{outline:none}input[type=text][data-v-05503f62]:hover,textarea[data-v-05503f62]:hover{border:1px solid #9cdfb0}ul[data-v-05503f62]{margin:0;padding:0;list-style:none}a[data-v-05503f62]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-05503f62]:hover{color:#35b870}[data-v-05503f62]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-05503f62]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-05503f62]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-05503f62]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-05503f62]{color:#ad1717}body[data-v-05503f62]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-05503f62] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-05503f62] .nav .path{cursor:pointer}.browser[data-v-05503f62] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-05503f62] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-05503f62]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-05503f62]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-05503f62],input[type=number][data-v-05503f62],input[type=password][data-v-05503f62],input[type=search][data-v-05503f62],input[type=text][data-v-05503f62],input[type=time][data-v-05503f62]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-05503f62]:hover,input[type=number][data-v-05503f62]:hover,input[type=password][data-v-05503f62]:hover,input[type=search][data-v-05503f62]:hover,input[type=text][data-v-05503f62]:hover,input[type=time][data-v-05503f62]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-05503f62]:focus,input[type=number][data-v-05503f62]:focus,input[type=password][data-v-05503f62]:focus,input[type=search][data-v-05503f62]:focus,input[type=text][data-v-05503f62]:focus,input[type=time][data-v-05503f62]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-05503f62],input[type=number].with-icon[data-v-05503f62],input[type=password].with-icon[data-v-05503f62],input[type=search].with-icon[data-v-05503f62],input[type=text].with-icon[data-v-05503f62],input[type=time].with-icon[data-v-05503f62]{padding-left:.3em}input[type=search][data-v-05503f62],input[type=text][data-v-05503f62]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-05503f62],.fade-in[data-v-05503f62]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-05503f62;-webkit-animation-name:fadeIn-05503f62}.fade-out[data-v-05503f62]{animation-fill-mode:both;animation-name:fadeOut-05503f62;-webkit-animation-name:fadeOut-05503f62}.expand[data-v-05503f62],.fade-out[data-v-05503f62]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-05503f62]{animation-fill-mode:both;animation-name:expand-05503f62;-webkit-animation-name:expand-05503f62}.shrink[data-v-05503f62]{animation-fill-mode:both;animation-name:shrink-05503f62;-webkit-animation-name:shrink-05503f62}.fold[data-v-05503f62],.shrink[data-v-05503f62]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-05503f62]{animation-fill-mode:both;animation-name:fold-05503f62;-webkit-animation-name:fold-05503f62}.unfold[data-v-05503f62]{animation-fill-mode:both;animation-name:unfold-05503f62;-webkit-animation-name:unfold-05503f62}.dim[data-v-05503f62],.unfold[data-v-05503f62]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-05503f62]{animation-fill-mode:both;animation-name:dim-05503f62;-webkit-animation-name:dim-05503f62}.brighten[data-v-05503f62]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-05503f62;-webkit-animation-name:brighten-05503f62}@keyframes fadeIn-05503f62{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-05503f62{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-05503f62{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-05503f62{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-05503f62{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-05503f62{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-05503f62{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-05503f62{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-05503f62]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-05503f62;-webkit-animation-name:glow-05503f62}.loop[data-v-05503f62]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-05503f62{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-05503f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-05503f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-05503f62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-05503f62]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-05503f62]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-05503f62]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-05503f62]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-05503f62]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-05503f62]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-05503f62]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-05503f62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-05503f62]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-05503f62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-05503f62]{margin-right:.5em}.entity .head .icon[data-v-05503f62]:hover{color:#35b870}.entity .head .label[data-v-05503f62]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-05503f62]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-05503f62]:hover{color:#35b870}.entity .head .value[data-v-05503f62]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-05503f62]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-05503f62]{margin-right:2.5em}.entity .head .value-container[data-v-05503f62]{min-width:7em}.entity .head .unit[data-v-05503f62]{margin-left:.2em}.entity .head .pull-right[data-v-05503f62],.entity .head .value-container[data-v-05503f62]{padding-right:.5em}.entity .head .pull-right[data-v-05503f62] .power-switch,.entity .head .value-container[data-v-05503f62] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-05503f62]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-05503f62]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-05503f62]:hover{color:#35b870}.collapse-toggler[data-v-05503f62]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-05503f62]:hover{color:#35b870}.attributes .child[data-v-05503f62]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-05503f62]{flex-direction:column}}.attributes .child[data-v-05503f62]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-05503f62]:hover{cursor:auto}.attributes .child.head[data-v-05503f62]{cursor:pointer}.attributes .child.head[data-v-05503f62]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-05503f62]{font-weight:700}.attributes .child .value[data-v-05503f62]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-05503f62]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-05503f62]:last-child,.entity-container-wrapper.with-children[data-v-05503f62]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-05503f62]{animation:blink-animation-05503f62 1s steps(20,start)}@keyframes blink-animation-05503f62{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.dimmer-container .head .value-container button[data-v-05503f62]{margin-right:.5em}.dimmer-container .body .row[data-v-05503f62]{display:flex;align-items:center;padding:.5em}.dimmer-container .body .row .icon[data-v-05503f62]{width:2em;text-align:center}.dimmer-container .body .row .input[data-v-05503f62]{width:calc(100% - 1em);display:flex;align-items:center}.dimmer-container .body .row .input[data-v-05503f62] .slider{margin-top:.5em}.dimmer-container .body .row .input .value input[data-v-05503f62]{width:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9480.9a19b0d1.css b/platypush/backend/http/webapp/dist/static/css/9480.9a19b0d1.css new file mode 100644 index 0000000000..617b598866 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9480.9a19b0d1.css @@ -0,0 +1 @@ +.col-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-77ea2884]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-77ea2884]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-77ea2884]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-77ea2884]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-77ea2884]:first-child{margin-left:26%!important}.col-offset-3[data-v-77ea2884]:not(first-child){margin-left:30%!important}.col-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-77ea2884]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-77ea2884]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-77ea2884]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-77ea2884]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-77ea2884]:first-child{margin-left:52%!important}.col-offset-6[data-v-77ea2884]:not(first-child){margin-left:56%!important}.col-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-77ea2884]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-77ea2884]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-77ea2884]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-77ea2884]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-77ea2884]:first-child{margin-left:78%!important}.col-offset-9[data-v-77ea2884]:not(first-child){margin-left:82%!important}.col-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-77ea2884]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-77ea2884]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-77ea2884]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-77ea2884]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-1[data-v-77ea2884]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-2[data-v-77ea2884]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-3[data-v-77ea2884]{margin-left:26%}.col-no-margin-s-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-4[data-v-77ea2884]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-5[data-v-77ea2884]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-6[data-v-77ea2884]{margin-left:52%}.col-no-margin-s-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-7[data-v-77ea2884]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-8[data-v-77ea2884]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-9[data-v-77ea2884]{margin-left:78%}.col-no-margin-s-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-10[data-v-77ea2884]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-77ea2884]:first-child{margin-left:0}.col-offset-s-11[data-v-77ea2884]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-s-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-77ea2884]{display:none!important}.s-visible[data-v-77ea2884]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-1[data-v-77ea2884]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-2[data-v-77ea2884]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-3[data-v-77ea2884]{margin-left:26%}.col-no-margin-m-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-4[data-v-77ea2884]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-5[data-v-77ea2884]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-6[data-v-77ea2884]{margin-left:52%}.col-no-margin-m-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-7[data-v-77ea2884]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-8[data-v-77ea2884]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-9[data-v-77ea2884]{margin-left:78%}.col-no-margin-m-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-10[data-v-77ea2884]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-77ea2884]:first-child{margin-left:0}.col-offset-m-11[data-v-77ea2884]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-m-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-77ea2884]{display:none!important}.m-visible[data-v-77ea2884]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-1[data-v-77ea2884]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-2[data-v-77ea2884]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-3[data-v-77ea2884]{margin-left:26%}.col-no-margin-l-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-4[data-v-77ea2884]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-5[data-v-77ea2884]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-6[data-v-77ea2884]{margin-left:52%}.col-no-margin-l-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-7[data-v-77ea2884]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-8[data-v-77ea2884]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-9[data-v-77ea2884]{margin-left:78%}.col-no-margin-l-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-10[data-v-77ea2884]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-77ea2884]:first-child{margin-left:0}.col-offset-l-11[data-v-77ea2884]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-l-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-77ea2884]{display:none!important}.l-visible[data-v-77ea2884]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-1[data-v-77ea2884]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-2[data-v-77ea2884]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-3[data-v-77ea2884]{margin-left:26%}.col-no-margin-xl-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-4[data-v-77ea2884]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-5[data-v-77ea2884]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-6[data-v-77ea2884]{margin-left:52%}.col-no-margin-xl-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-7[data-v-77ea2884]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-8[data-v-77ea2884]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-9[data-v-77ea2884]{margin-left:78%}.col-no-margin-xl-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-10[data-v-77ea2884]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xl-11[data-v-77ea2884]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-77ea2884]{display:none!important}.xl-visible[data-v-77ea2884]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-1[data-v-77ea2884]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-77ea2884]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-2[data-v-77ea2884]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-77ea2884]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-3[data-v-77ea2884]{margin-left:26%}.col-no-margin-xxl-3[data-v-77ea2884]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-4[data-v-77ea2884]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-77ea2884]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-5[data-v-77ea2884]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-77ea2884]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-6[data-v-77ea2884]{margin-left:52%}.col-no-margin-xxl-6[data-v-77ea2884]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-7[data-v-77ea2884]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-77ea2884]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-8[data-v-77ea2884]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-77ea2884]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-9[data-v-77ea2884]{margin-left:78%}.col-no-margin-xxl-9[data-v-77ea2884]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-10[data-v-77ea2884]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-77ea2884]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-77ea2884]:first-child{margin-left:0}.col-offset-xxl-11[data-v-77ea2884]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-77ea2884]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-77ea2884]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-77ea2884]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-77ea2884]{display:none!important}.xxl-visible[data-v-77ea2884]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-77ea2884]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-77ea2884]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-77ea2884]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-77ea2884]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-77ea2884]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-77ea2884]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-77ea2884]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-77ea2884]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-77ea2884]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-77ea2884]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-77ea2884]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-77ea2884]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-77ea2884]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-77ea2884]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-77ea2884]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-77ea2884]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-77ea2884]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-77ea2884]{display:none!important}}.vertical-center[data-v-77ea2884]{display:flex;align-items:center}.horizontal-center[data-v-77ea2884]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-77ea2884]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-77ea2884]{display:none!important}.no-content[data-v-77ea2884]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-77ea2884]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-77ea2884]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-77ea2884]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-77ea2884]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-77ea2884]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-77ea2884]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-77ea2884],.btn[data-v-77ea2884],button[data-v-77ea2884]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-77ea2884],.btn-default[type=submit][data-v-77ea2884],.btn.btn-primary[data-v-77ea2884],.btn[type=submit][data-v-77ea2884],button.btn-primary[data-v-77ea2884],button[type=submit][data-v-77ea2884]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-77ea2884]:hover,.btn[data-v-77ea2884]:hover,button[data-v-77ea2884]:hover{color:#35b870}.btn .icon[data-v-77ea2884],.btn-default .icon[data-v-77ea2884],button .icon[data-v-77ea2884]{margin-right:.5em}.btn-default[data-v-77ea2884]:disabled,.btn-default[disabled][data-v-77ea2884],.btn[data-v-77ea2884]:disabled,.btn[disabled][data-v-77ea2884],button[data-v-77ea2884]:disabled,button[disabled][data-v-77ea2884]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-77ea2884]{cursor:grab!important}.dragged[data-v-77ea2884]{opacity:.5!important}input[type=password][data-v-77ea2884],input[type=text][data-v-77ea2884]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-77ea2884]:focus,input[type=text][data-v-77ea2884]:focus{border:1px solid #35b870}button[data-v-77ea2884],input[data-v-77ea2884]{outline:none}input[type=text][data-v-77ea2884]:hover,textarea[data-v-77ea2884]:hover{border:1px solid #9cdfb0}ul[data-v-77ea2884]{margin:0;padding:0;list-style:none}a[data-v-77ea2884]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-77ea2884]:hover{color:#35b870}[data-v-77ea2884]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-77ea2884]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-77ea2884]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-77ea2884]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-77ea2884]{color:#ad1717}body[data-v-77ea2884]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-77ea2884] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-77ea2884] .nav .path{cursor:pointer}.browser[data-v-77ea2884] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-77ea2884] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-77ea2884]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-77ea2884]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-77ea2884],input[type=number][data-v-77ea2884],input[type=password][data-v-77ea2884],input[type=search][data-v-77ea2884],input[type=text][data-v-77ea2884],input[type=time][data-v-77ea2884]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-77ea2884]:hover,input[type=number][data-v-77ea2884]:hover,input[type=password][data-v-77ea2884]:hover,input[type=search][data-v-77ea2884]:hover,input[type=text][data-v-77ea2884]:hover,input[type=time][data-v-77ea2884]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-77ea2884]:focus,input[type=number][data-v-77ea2884]:focus,input[type=password][data-v-77ea2884]:focus,input[type=search][data-v-77ea2884]:focus,input[type=text][data-v-77ea2884]:focus,input[type=time][data-v-77ea2884]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-77ea2884],input[type=number].with-icon[data-v-77ea2884],input[type=password].with-icon[data-v-77ea2884],input[type=search].with-icon[data-v-77ea2884],input[type=text].with-icon[data-v-77ea2884],input[type=time].with-icon[data-v-77ea2884]{padding-left:.3em}input[type=search][data-v-77ea2884],input[type=text][data-v-77ea2884]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-77ea2884]{animation-fill-mode:both;animation-name:fadeIn-77ea2884;-webkit-animation-name:fadeIn-77ea2884}.fade-in[data-v-77ea2884],.fade-out[data-v-77ea2884]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-77ea2884]{animation-fill-mode:both;animation-name:fadeOut-77ea2884;-webkit-animation-name:fadeOut-77ea2884}.expand[data-v-77ea2884]{animation-fill-mode:both;animation-name:expand-77ea2884;-webkit-animation-name:expand-77ea2884}.expand[data-v-77ea2884],.shrink[data-v-77ea2884]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-77ea2884]{animation-fill-mode:both;animation-name:shrink-77ea2884;-webkit-animation-name:shrink-77ea2884}.fold[data-v-77ea2884]{animation-fill-mode:both;animation-name:fold-77ea2884;-webkit-animation-name:fold-77ea2884}.fold[data-v-77ea2884],.unfold[data-v-77ea2884]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-77ea2884]{animation-fill-mode:both;animation-name:unfold-77ea2884;-webkit-animation-name:unfold-77ea2884}.dim[data-v-77ea2884]{animation-fill-mode:both;animation-name:dim-77ea2884;-webkit-animation-name:dim-77ea2884}.brighten[data-v-77ea2884],.dim[data-v-77ea2884]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-77ea2884]{animation-fill-mode:both;animation-name:brighten-77ea2884;-webkit-animation-name:brighten-77ea2884}@keyframes fadeIn-77ea2884{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-77ea2884{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-77ea2884{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-77ea2884{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-77ea2884{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-77ea2884{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-77ea2884{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-77ea2884{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-77ea2884]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-77ea2884;-webkit-animation-name:glow-77ea2884}.loop[data-v-77ea2884]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-77ea2884{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-77ea2884]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-77ea2884]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-77ea2884]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-77ea2884] .modal .dialog-content{display:flex;flex-direction:column;padding:1em}[data-v-77ea2884] .modal .body{padding:1.5em}[data-v-77ea2884] .modal .buttons{display:flex;flex-direction:row;justify-content:right;margin-bottom:1em;border:0;border-radius:0}[data-v-77ea2884] .modal .buttons button{margin-right:1em;padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-77ea2884] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}form[data-v-77ea2884]{display:flex;flex-direction:column!important}form .buttons[data-v-77ea2884]{flex-direction:row!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9549.c4059cb5.css b/platypush/backend/http/webapp/dist/static/css/9549.c4059cb5.css deleted file mode 100644 index bfdceb6a1f..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/9549.c4059cb5.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-14579c63]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-1[data-v-14579c63]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-14579c63]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-14579c63]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-14579c63]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-2[data-v-14579c63]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-14579c63]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-14579c63]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-14579c63]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-3[data-v-14579c63]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-14579c63]:first-child{margin-left:26%!important}.col-offset-3[data-v-14579c63]:not(first-child){margin-left:30%!important}.col-4[data-v-14579c63]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-4[data-v-14579c63]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-14579c63]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-14579c63]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-14579c63]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-5[data-v-14579c63]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-14579c63]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-14579c63]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-14579c63]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-6[data-v-14579c63]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-14579c63]:first-child{margin-left:52%!important}.col-offset-6[data-v-14579c63]:not(first-child){margin-left:56%!important}.col-7[data-v-14579c63]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-7[data-v-14579c63]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-14579c63]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-14579c63]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-14579c63]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-8[data-v-14579c63]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-14579c63]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-14579c63]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-14579c63]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-9[data-v-14579c63]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-14579c63]:first-child{margin-left:78%!important}.col-offset-9[data-v-14579c63]:not(first-child){margin-left:82%!important}.col-10[data-v-14579c63]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-10[data-v-14579c63]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-14579c63]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-14579c63]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-14579c63]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-14579c63]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-14579c63]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-1[data-v-14579c63]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-14579c63]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-14579c63]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-2[data-v-14579c63]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-14579c63]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-14579c63]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-3[data-v-14579c63]{margin-left:26%}.col-no-margin-s-3[data-v-14579c63]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-14579c63]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-4[data-v-14579c63]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-14579c63]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-14579c63]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-5[data-v-14579c63]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-14579c63]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-14579c63]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-6[data-v-14579c63]{margin-left:52%}.col-no-margin-s-6[data-v-14579c63]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-14579c63]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-7[data-v-14579c63]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-14579c63]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-14579c63]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-8[data-v-14579c63]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-14579c63]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-14579c63]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-9[data-v-14579c63]{margin-left:78%}.col-no-margin-s-9[data-v-14579c63]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-14579c63]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-10[data-v-14579c63]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-14579c63]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-14579c63]:first-child{margin-left:0}.col-offset-s-11[data-v-14579c63]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-s-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-14579c63]{display:none!important}.s-visible[data-v-14579c63]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-14579c63]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-1[data-v-14579c63]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-14579c63]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-14579c63]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-2[data-v-14579c63]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-14579c63]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-14579c63]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-3[data-v-14579c63]{margin-left:26%}.col-no-margin-m-3[data-v-14579c63]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-14579c63]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-4[data-v-14579c63]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-14579c63]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-14579c63]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-5[data-v-14579c63]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-14579c63]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-14579c63]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-6[data-v-14579c63]{margin-left:52%}.col-no-margin-m-6[data-v-14579c63]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-14579c63]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-7[data-v-14579c63]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-14579c63]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-14579c63]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-8[data-v-14579c63]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-14579c63]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-14579c63]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-9[data-v-14579c63]{margin-left:78%}.col-no-margin-m-9[data-v-14579c63]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-14579c63]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-10[data-v-14579c63]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-14579c63]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-14579c63]:first-child{margin-left:0}.col-offset-m-11[data-v-14579c63]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-m-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-14579c63]{display:none!important}.m-visible[data-v-14579c63]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-14579c63]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-1[data-v-14579c63]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-14579c63]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-14579c63]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-2[data-v-14579c63]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-14579c63]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-14579c63]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-3[data-v-14579c63]{margin-left:26%}.col-no-margin-l-3[data-v-14579c63]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-14579c63]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-4[data-v-14579c63]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-14579c63]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-14579c63]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-5[data-v-14579c63]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-14579c63]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-14579c63]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-6[data-v-14579c63]{margin-left:52%}.col-no-margin-l-6[data-v-14579c63]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-14579c63]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-7[data-v-14579c63]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-14579c63]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-14579c63]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-8[data-v-14579c63]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-14579c63]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-14579c63]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-9[data-v-14579c63]{margin-left:78%}.col-no-margin-l-9[data-v-14579c63]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-14579c63]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-10[data-v-14579c63]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-14579c63]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-14579c63]:first-child{margin-left:0}.col-offset-l-11[data-v-14579c63]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-l-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-14579c63]{display:none!important}.l-visible[data-v-14579c63]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-14579c63]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-1[data-v-14579c63]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-14579c63]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-14579c63]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-2[data-v-14579c63]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-14579c63]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-14579c63]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-3[data-v-14579c63]{margin-left:26%}.col-no-margin-xl-3[data-v-14579c63]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-14579c63]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-4[data-v-14579c63]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-14579c63]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-14579c63]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-5[data-v-14579c63]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-14579c63]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-14579c63]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-6[data-v-14579c63]{margin-left:52%}.col-no-margin-xl-6[data-v-14579c63]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-14579c63]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-7[data-v-14579c63]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-14579c63]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-14579c63]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-8[data-v-14579c63]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-14579c63]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-14579c63]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-9[data-v-14579c63]{margin-left:78%}.col-no-margin-xl-9[data-v-14579c63]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-14579c63]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-10[data-v-14579c63]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-14579c63]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-14579c63]:first-child{margin-left:0}.col-offset-xl-11[data-v-14579c63]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-14579c63]{display:none!important}.xl-visible[data-v-14579c63]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-14579c63]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-1[data-v-14579c63]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-14579c63]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-14579c63]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-2[data-v-14579c63]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-14579c63]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-14579c63]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-3[data-v-14579c63]{margin-left:26%}.col-no-margin-xxl-3[data-v-14579c63]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-14579c63]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-4[data-v-14579c63]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-14579c63]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-14579c63]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-5[data-v-14579c63]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-14579c63]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-14579c63]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-6[data-v-14579c63]{margin-left:52%}.col-no-margin-xxl-6[data-v-14579c63]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-14579c63]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-7[data-v-14579c63]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-14579c63]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-14579c63]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-8[data-v-14579c63]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-14579c63]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-14579c63]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-9[data-v-14579c63]{margin-left:78%}.col-no-margin-xxl-9[data-v-14579c63]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-14579c63]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-10[data-v-14579c63]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-14579c63]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-14579c63]:first-child{margin-left:0}.col-offset-xxl-11[data-v-14579c63]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-14579c63]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-14579c63]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-14579c63]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-14579c63]{display:none!important}.xxl-visible[data-v-14579c63]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-14579c63]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-14579c63]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-14579c63]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-14579c63]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-14579c63]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-14579c63]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-14579c63]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-14579c63]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-14579c63]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-14579c63]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-14579c63]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-14579c63]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-14579c63]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-14579c63]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-14579c63]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-14579c63]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-14579c63]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-14579c63]{display:none!important}}.vertical-center[data-v-14579c63]{display:flex;align-items:center}.horizontal-center[data-v-14579c63]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-14579c63]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-14579c63]{display:none!important}.no-content[data-v-14579c63]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-14579c63]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-14579c63]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-14579c63]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-14579c63]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-14579c63]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-14579c63]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-14579c63],.btn[data-v-14579c63],button[data-v-14579c63]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-14579c63],.btn-default[type=submit][data-v-14579c63],.btn.btn-primary[data-v-14579c63],.btn[type=submit][data-v-14579c63],button.btn-primary[data-v-14579c63],button[type=submit][data-v-14579c63]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-14579c63],.btn-default .icon[data-v-14579c63],button .icon[data-v-14579c63]{margin-right:.5em}input[type=password][data-v-14579c63],input[type=text][data-v-14579c63]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-14579c63]:focus,input[type=text][data-v-14579c63]:focus{border:1px solid #35b870}button[data-v-14579c63],input[data-v-14579c63]{outline:none}input[type=text][data-v-14579c63]:hover,textarea[data-v-14579c63]:hover{border:1px solid #9cdfb0}ul[data-v-14579c63]{margin:0;padding:0;list-style:none}a[data-v-14579c63]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-14579c63]:hover{color:#35b870}[data-v-14579c63]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-14579c63]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-14579c63]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-14579c63]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-14579c63]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-14579c63] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-14579c63] .nav .path{cursor:pointer}.browser[data-v-14579c63] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-14579c63] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-14579c63]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-14579c63],input[type=number][data-v-14579c63],input[type=password][data-v-14579c63],input[type=search][data-v-14579c63],input[type=text][data-v-14579c63],input[type=time][data-v-14579c63]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-14579c63]:hover,input[type=number][data-v-14579c63]:hover,input[type=password][data-v-14579c63]:hover,input[type=search][data-v-14579c63]:hover,input[type=text][data-v-14579c63]:hover,input[type=time][data-v-14579c63]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-14579c63]:focus,input[type=number][data-v-14579c63]:focus,input[type=password][data-v-14579c63]:focus,input[type=search][data-v-14579c63]:focus,input[type=text][data-v-14579c63]:focus,input[type=time][data-v-14579c63]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-14579c63],input[type=number].with-icon[data-v-14579c63],input[type=password].with-icon[data-v-14579c63],input[type=search].with-icon[data-v-14579c63],input[type=text].with-icon[data-v-14579c63],input[type=time].with-icon[data-v-14579c63]{padding-left:.3em}input[type=search][data-v-14579c63],input[type=text][data-v-14579c63]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-14579c63]{animation-fill-mode:both;animation-name:fadeIn-14579c63;-webkit-animation-name:fadeIn-14579c63}.fade-in[data-v-14579c63],.fade-out[data-v-14579c63]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-14579c63]{animation-fill-mode:both;animation-name:fadeOut-14579c63;-webkit-animation-name:fadeOut-14579c63}@keyframes fadeIn-14579c63{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-14579c63{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-14579c63]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-14579c63;-webkit-animation-name:glow-14579c63}.loop[data-v-14579c63]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-14579c63{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-14579c63]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-14579c63]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-14579c63]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.dropdown[data-v-14579c63]{position:absolute;width:-moz-max-content;width:max-content;background:#f1f3f2;border-radius:.25em;box-shadow:1px 1px 1px #bbb;display:flex;flex-direction:column;z-index:2}[data-v-14579c63] .dropdown-container button{width:100%;height:100%;color:#23513a;background:#f1f3f2;border:0;padding:.75em .5em;text-align:left;letter-spacing:.01em}[data-v-14579c63] .dropdown-container button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);color:#23513a}[data-v-14579c63] .dropdown-container button .text{padding-left:.25em}.col-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3220f58b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3220f58b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3220f58b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3220f58b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3220f58b]:first-child{margin-left:26%!important}.col-offset-3[data-v-3220f58b]:not(first-child){margin-left:30%!important}.col-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3220f58b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3220f58b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3220f58b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3220f58b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3220f58b]:first-child{margin-left:52%!important}.col-offset-6[data-v-3220f58b]:not(first-child){margin-left:56%!important}.col-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3220f58b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3220f58b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3220f58b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3220f58b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3220f58b]:first-child{margin-left:78%!important}.col-offset-9[data-v-3220f58b]:not(first-child){margin-left:82%!important}.col-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3220f58b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3220f58b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3220f58b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3220f58b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-1[data-v-3220f58b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-2[data-v-3220f58b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-3[data-v-3220f58b]{margin-left:26%}.col-no-margin-s-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-4[data-v-3220f58b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-5[data-v-3220f58b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-6[data-v-3220f58b]{margin-left:52%}.col-no-margin-s-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-7[data-v-3220f58b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-8[data-v-3220f58b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-9[data-v-3220f58b]{margin-left:78%}.col-no-margin-s-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-10[data-v-3220f58b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3220f58b]:first-child{margin-left:0}.col-offset-s-11[data-v-3220f58b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3220f58b]{display:none!important}.s-visible[data-v-3220f58b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-1[data-v-3220f58b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-2[data-v-3220f58b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-3[data-v-3220f58b]{margin-left:26%}.col-no-margin-m-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-4[data-v-3220f58b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-5[data-v-3220f58b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-6[data-v-3220f58b]{margin-left:52%}.col-no-margin-m-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-7[data-v-3220f58b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-8[data-v-3220f58b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-9[data-v-3220f58b]{margin-left:78%}.col-no-margin-m-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-10[data-v-3220f58b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3220f58b]:first-child{margin-left:0}.col-offset-m-11[data-v-3220f58b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3220f58b]{display:none!important}.m-visible[data-v-3220f58b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-1[data-v-3220f58b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-2[data-v-3220f58b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-3[data-v-3220f58b]{margin-left:26%}.col-no-margin-l-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-4[data-v-3220f58b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-5[data-v-3220f58b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-6[data-v-3220f58b]{margin-left:52%}.col-no-margin-l-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-7[data-v-3220f58b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-8[data-v-3220f58b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-9[data-v-3220f58b]{margin-left:78%}.col-no-margin-l-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-10[data-v-3220f58b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3220f58b]:first-child{margin-left:0}.col-offset-l-11[data-v-3220f58b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3220f58b]{display:none!important}.l-visible[data-v-3220f58b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-1[data-v-3220f58b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-2[data-v-3220f58b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-3[data-v-3220f58b]{margin-left:26%}.col-no-margin-xl-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-4[data-v-3220f58b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-5[data-v-3220f58b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-6[data-v-3220f58b]{margin-left:52%}.col-no-margin-xl-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-7[data-v-3220f58b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-8[data-v-3220f58b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-9[data-v-3220f58b]{margin-left:78%}.col-no-margin-xl-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-10[data-v-3220f58b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xl-11[data-v-3220f58b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3220f58b]{display:none!important}.xl-visible[data-v-3220f58b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3220f58b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3220f58b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3220f58b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3220f58b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3220f58b]{margin-left:26%}.col-no-margin-xxl-3[data-v-3220f58b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3220f58b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3220f58b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3220f58b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3220f58b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3220f58b]{margin-left:52%}.col-no-margin-xxl-6[data-v-3220f58b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3220f58b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3220f58b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3220f58b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3220f58b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3220f58b]{margin-left:78%}.col-no-margin-xxl-9[data-v-3220f58b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3220f58b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3220f58b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3220f58b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3220f58b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3220f58b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3220f58b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3220f58b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3220f58b]{display:none!important}.xxl-visible[data-v-3220f58b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3220f58b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3220f58b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3220f58b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3220f58b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3220f58b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3220f58b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3220f58b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3220f58b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3220f58b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3220f58b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3220f58b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3220f58b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3220f58b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3220f58b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3220f58b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3220f58b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3220f58b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3220f58b]{display:none!important}}.vertical-center[data-v-3220f58b]{display:flex;align-items:center}.horizontal-center[data-v-3220f58b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3220f58b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3220f58b]{display:none!important}.no-content[data-v-3220f58b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3220f58b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3220f58b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3220f58b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3220f58b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3220f58b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3220f58b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3220f58b],.btn[data-v-3220f58b],button[data-v-3220f58b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3220f58b],.btn-default[type=submit][data-v-3220f58b],.btn.btn-primary[data-v-3220f58b],.btn[type=submit][data-v-3220f58b],button.btn-primary[data-v-3220f58b],button[type=submit][data-v-3220f58b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3220f58b],.btn-default .icon[data-v-3220f58b],button .icon[data-v-3220f58b]{margin-right:.5em}input[type=password][data-v-3220f58b],input[type=text][data-v-3220f58b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3220f58b]:focus,input[type=text][data-v-3220f58b]:focus{border:1px solid #35b870}button[data-v-3220f58b],input[data-v-3220f58b]{outline:none}input[type=text][data-v-3220f58b]:hover,textarea[data-v-3220f58b]:hover{border:1px solid #9cdfb0}ul[data-v-3220f58b]{margin:0;padding:0;list-style:none}a[data-v-3220f58b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3220f58b]:hover{color:#35b870}[data-v-3220f58b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3220f58b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3220f58b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3220f58b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3220f58b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3220f58b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3220f58b] .nav .path{cursor:pointer}.browser[data-v-3220f58b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3220f58b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3220f58b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3220f58b],input[type=number][data-v-3220f58b],input[type=password][data-v-3220f58b],input[type=search][data-v-3220f58b],input[type=text][data-v-3220f58b],input[type=time][data-v-3220f58b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3220f58b]:hover,input[type=number][data-v-3220f58b]:hover,input[type=password][data-v-3220f58b]:hover,input[type=search][data-v-3220f58b]:hover,input[type=text][data-v-3220f58b]:hover,input[type=time][data-v-3220f58b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3220f58b]:focus,input[type=number][data-v-3220f58b]:focus,input[type=password][data-v-3220f58b]:focus,input[type=search][data-v-3220f58b]:focus,input[type=text][data-v-3220f58b]:focus,input[type=time][data-v-3220f58b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3220f58b],input[type=number].with-icon[data-v-3220f58b],input[type=password].with-icon[data-v-3220f58b],input[type=search].with-icon[data-v-3220f58b],input[type=text].with-icon[data-v-3220f58b],input[type=time].with-icon[data-v-3220f58b]{padding-left:.3em}input[type=search][data-v-3220f58b],input[type=text][data-v-3220f58b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3220f58b]{animation-fill-mode:both;animation-name:fadeIn-3220f58b;-webkit-animation-name:fadeIn-3220f58b}.fade-in[data-v-3220f58b],.fade-out[data-v-3220f58b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3220f58b]{animation-fill-mode:both;animation-name:fadeOut-3220f58b;-webkit-animation-name:fadeOut-3220f58b}@keyframes fadeIn-3220f58b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3220f58b{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-3220f58b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-3220f58b;-webkit-animation-name:glow-3220f58b}.loop[data-v-3220f58b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-3220f58b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-3220f58b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3220f58b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3220f58b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.dropdown-container[data-v-3220f58b]{position:relative;display:inline-flex;flex-direction:column}.dropdown-container button[data-v-3220f58b]{background:none;border:0;padding:.5em}.dropdown-container button[data-v-3220f58b]:hover{color:#35b870}.col-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1311e9ab]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1311e9ab]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1311e9ab]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1311e9ab]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1311e9ab]:first-child{margin-left:26%!important}.col-offset-3[data-v-1311e9ab]:not(first-child){margin-left:30%!important}.col-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1311e9ab]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1311e9ab]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1311e9ab]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1311e9ab]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1311e9ab]:first-child{margin-left:52%!important}.col-offset-6[data-v-1311e9ab]:not(first-child){margin-left:56%!important}.col-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1311e9ab]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1311e9ab]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1311e9ab]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1311e9ab]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1311e9ab]:first-child{margin-left:78%!important}.col-offset-9[data-v-1311e9ab]:not(first-child){margin-left:82%!important}.col-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1311e9ab]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1311e9ab]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1311e9ab]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1311e9ab]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-1[data-v-1311e9ab]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-2[data-v-1311e9ab]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-3[data-v-1311e9ab]{margin-left:26%}.col-no-margin-s-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-4[data-v-1311e9ab]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-5[data-v-1311e9ab]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-6[data-v-1311e9ab]{margin-left:52%}.col-no-margin-s-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-7[data-v-1311e9ab]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-8[data-v-1311e9ab]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-9[data-v-1311e9ab]{margin-left:78%}.col-no-margin-s-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-10[data-v-1311e9ab]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-s-11[data-v-1311e9ab]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1311e9ab]{display:none!important}.s-visible[data-v-1311e9ab]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-1[data-v-1311e9ab]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-2[data-v-1311e9ab]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-3[data-v-1311e9ab]{margin-left:26%}.col-no-margin-m-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-4[data-v-1311e9ab]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-5[data-v-1311e9ab]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-6[data-v-1311e9ab]{margin-left:52%}.col-no-margin-m-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-7[data-v-1311e9ab]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-8[data-v-1311e9ab]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-9[data-v-1311e9ab]{margin-left:78%}.col-no-margin-m-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-10[data-v-1311e9ab]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-m-11[data-v-1311e9ab]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1311e9ab]{display:none!important}.m-visible[data-v-1311e9ab]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-1[data-v-1311e9ab]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-2[data-v-1311e9ab]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-3[data-v-1311e9ab]{margin-left:26%}.col-no-margin-l-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-4[data-v-1311e9ab]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-5[data-v-1311e9ab]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-6[data-v-1311e9ab]{margin-left:52%}.col-no-margin-l-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-7[data-v-1311e9ab]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-8[data-v-1311e9ab]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-9[data-v-1311e9ab]{margin-left:78%}.col-no-margin-l-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-10[data-v-1311e9ab]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-l-11[data-v-1311e9ab]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1311e9ab]{display:none!important}.l-visible[data-v-1311e9ab]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-1[data-v-1311e9ab]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-2[data-v-1311e9ab]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-3[data-v-1311e9ab]{margin-left:26%}.col-no-margin-xl-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-4[data-v-1311e9ab]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-5[data-v-1311e9ab]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-6[data-v-1311e9ab]{margin-left:52%}.col-no-margin-xl-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-7[data-v-1311e9ab]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-8[data-v-1311e9ab]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-9[data-v-1311e9ab]{margin-left:78%}.col-no-margin-xl-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-10[data-v-1311e9ab]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xl-11[data-v-1311e9ab]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1311e9ab]{display:none!important}.xl-visible[data-v-1311e9ab]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1311e9ab]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1311e9ab]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1311e9ab]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1311e9ab]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1311e9ab]{margin-left:26%}.col-no-margin-xxl-3[data-v-1311e9ab]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1311e9ab]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1311e9ab]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1311e9ab]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1311e9ab]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1311e9ab]{margin-left:52%}.col-no-margin-xxl-6[data-v-1311e9ab]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1311e9ab]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1311e9ab]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1311e9ab]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1311e9ab]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1311e9ab]{margin-left:78%}.col-no-margin-xxl-9[data-v-1311e9ab]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1311e9ab]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1311e9ab]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1311e9ab]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1311e9ab]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1311e9ab]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1311e9ab]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1311e9ab]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1311e9ab]{display:none!important}.xxl-visible[data-v-1311e9ab]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1311e9ab]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1311e9ab]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1311e9ab]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1311e9ab]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1311e9ab]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1311e9ab]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1311e9ab]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1311e9ab]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1311e9ab]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1311e9ab]{display:none!important}}.vertical-center[data-v-1311e9ab]{display:flex;align-items:center}.horizontal-center[data-v-1311e9ab]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1311e9ab]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1311e9ab]{display:none!important}.no-content[data-v-1311e9ab]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1311e9ab]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1311e9ab]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1311e9ab]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1311e9ab]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1311e9ab]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1311e9ab]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1311e9ab],.btn[data-v-1311e9ab],button[data-v-1311e9ab]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1311e9ab],.btn-default[type=submit][data-v-1311e9ab],.btn.btn-primary[data-v-1311e9ab],.btn[type=submit][data-v-1311e9ab],button.btn-primary[data-v-1311e9ab],button[type=submit][data-v-1311e9ab]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1311e9ab],.btn-default .icon[data-v-1311e9ab],button .icon[data-v-1311e9ab]{margin-right:.5em}input[type=password][data-v-1311e9ab],input[type=text][data-v-1311e9ab]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1311e9ab]:focus,input[type=text][data-v-1311e9ab]:focus{border:1px solid #35b870}button[data-v-1311e9ab],input[data-v-1311e9ab]{outline:none}input[type=text][data-v-1311e9ab]:hover,textarea[data-v-1311e9ab]:hover{border:1px solid #9cdfb0}ul[data-v-1311e9ab]{margin:0;padding:0;list-style:none}a[data-v-1311e9ab]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1311e9ab]:hover{color:#35b870}[data-v-1311e9ab]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1311e9ab]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1311e9ab]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1311e9ab]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1311e9ab]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1311e9ab] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1311e9ab] .nav .path{cursor:pointer}.browser[data-v-1311e9ab] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1311e9ab] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1311e9ab]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1311e9ab],input[type=number][data-v-1311e9ab],input[type=password][data-v-1311e9ab],input[type=search][data-v-1311e9ab],input[type=text][data-v-1311e9ab],input[type=time][data-v-1311e9ab]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1311e9ab]:hover,input[type=number][data-v-1311e9ab]:hover,input[type=password][data-v-1311e9ab]:hover,input[type=search][data-v-1311e9ab]:hover,input[type=text][data-v-1311e9ab]:hover,input[type=time][data-v-1311e9ab]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1311e9ab]:focus,input[type=number][data-v-1311e9ab]:focus,input[type=password][data-v-1311e9ab]:focus,input[type=search][data-v-1311e9ab]:focus,input[type=text][data-v-1311e9ab]:focus,input[type=time][data-v-1311e9ab]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1311e9ab],input[type=number].with-icon[data-v-1311e9ab],input[type=password].with-icon[data-v-1311e9ab],input[type=search].with-icon[data-v-1311e9ab],input[type=text].with-icon[data-v-1311e9ab],input[type=time].with-icon[data-v-1311e9ab]{padding-left:.3em}input[type=search][data-v-1311e9ab],input[type=text][data-v-1311e9ab]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1311e9ab]{animation-fill-mode:both;animation-name:fadeIn-1311e9ab;-webkit-animation-name:fadeIn-1311e9ab}.fade-in[data-v-1311e9ab],.fade-out[data-v-1311e9ab]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1311e9ab]{animation-fill-mode:both;animation-name:fadeOut-1311e9ab;-webkit-animation-name:fadeOut-1311e9ab}@keyframes fadeIn-1311e9ab{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1311e9ab{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1311e9ab]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1311e9ab;-webkit-animation-name:glow-1311e9ab}.loop[data-v-1311e9ab]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1311e9ab{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1311e9ab]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1311e9ab]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1311e9ab]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-1311e9ab]{display:flex;flex-direction:row!important;min-width:7.5em;padding:.75em .5em;cursor:pointer;align-items:center;color:#23513a;border:0!important;cursor:pointer!important;box-shadow:none!important}.item[data-v-1311e9ab]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important}.item.selected[data-v-1311e9ab]{font-weight:700!important}.item.disabled[data-v-1311e9ab]{color:#999;cursor:auto}.item .text[data-v-1311e9ab]{text-align:left;margin-left:.5em}.item .icon[data-v-1311e9ab]{width:1.5em;display:inline-flex;align-items:center}.item[data-v-1311e9ab] .icon-container{width:2em;display:inline-flex;align-items:center}.item[data-v-1311e9ab] .icon-container .icon{margin:0 1.5em 0 .5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7528.258d2865.css b/platypush/backend/http/webapp/dist/static/css/9663.e136d856.css similarity index 75% rename from platypush/backend/http/webapp/dist/static/css/7528.258d2865.css rename to platypush/backend/http/webapp/dist/static/css/9663.e136d856.css index d764bf3309..10cba31db7 100644 --- a/platypush/backend/http/webapp/dist/static/css/7528.258d2865.css +++ b/platypush/backend/http/webapp/dist/static/css/9663.e136d856.css @@ -1 +1 @@ -.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.camera{width:100%;height:100%;background:#fff;overflow:auto;padding-top:3em;position:relative}.camera,.camera .camera-container{display:flex;flex-direction:column;align-items:center}.camera .camera-container{background:#101520}.camera .camera-container .frame-canvas{position:relative;display:flex;justify-content:center;align-items:center;background:#000}.camera .camera-container .frame-container{max-width:100%;max-height:100%;position:relative}.camera .camera-container.fullscreen{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1000}.camera .camera-container.fullscreen .frame-canvas{width:100%;height:calc(100% - 3.5em)}.camera .camera-container .frame,.camera .camera-container .no-frame{position:absolute;top:0;width:100%;height:100%}.camera .camera-container .frame{z-index:1}.camera .camera-container .no-frame{display:flex;color:#fff;align-items:center;justify-content:center;z-index:2;background:#000}.camera .camera-container .controls{width:100%;height:3.5em;display:flex;border-top:1px solid #202530;padding:.5em .25em}.camera .camera-container .controls .left,.camera .camera-container .controls .right{width:50%}.camera .camera-container .controls .right{text-align:right}.camera .camera-container .controls button{background:none;color:#fff;border:none}.camera .camera-container .controls button:hover{color:#38cf80}.camera .url{display:flex;margin:1em}@media screen and (max-width:calc(769px - 1px)){.camera .url{width:80%}}@media screen and (min-width:769px){.camera .url{width:640px}}.camera .url .row{width:100%;display:flex;align-items:center}.camera .url .name{width:140px}.camera .url input{width:500px;font-weight:400}.camera .params{display:flex;flex-direction:column;margin:-2em}@media screen and (min-width:769px){.camera .params{width:640px}}.camera .params label{font-weight:400}.camera .params .head{display:flex;justify-content:center}.camera .params .head label{width:100%;display:flex;justify-content:right}.camera .params .head label .name{margin-right:1em}.camera .params .row{width:100%;display:flex;align-items:center;padding:.5em 1em}.camera .params .row .name{width:30%}.camera .params .row input{width:70%}.camera .params .row:nth-child(2n){background:#f1f3f2}.camera .params .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.camera .modal-container{z-index:1000}@media screen and (max-width:calc(769px - 1px)){.camera .modal .content{width:90%!important}} \ No newline at end of file +.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim,.index .item:hover{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim,.index .item:hover{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid :deep(.item){height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid :deep(.item):hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid :deep(.item) .icon{height:60%;display:inline-flex;justify-content:center}.grid :deep(.item) .icon i{font-size:40px}.grid :deep(.item) .icon img{width:40px;height:40px}:deep(.nav){height:2.5em}.index{height:100%;margin:2px 0 -2px 0}.index .items{height:100%;display:grid;gap:1em;grid-template-columns:repeat(auto-fill,minmax(20em,1fr));overflow-y:auto;padding:1em}.index .item{width:100%;height:15em;flex:1;position:relative;cursor:pointer}.index .item .image{width:100%;height:100%;display:flex;justify-content:center;align-items:center;overflow:hidden}.index .item .image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;margin:0}.index .item .image i{font-size:5em}.index .item .name{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;text-align:center;background-color:rgba(0,0,0,.75);color:#fff;font-size:1.75em;font-weight:700;padding:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9751.f1de86a4.css b/platypush/backend/http/webapp/dist/static/css/9751.f1de86a4.css deleted file mode 100644 index 76d465f590..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/9751.f1de86a4.css +++ /dev/null @@ -1 +0,0 @@ -.menu-panel{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;background:#e0eae8;padding-top:2em}.menu-panel .content{background:#fff;border-radius:15px;box-shadow:0 0 2px 2px #ccc;border:0}.menu-panel .content .panel-row{display:flex;margin:0!important;padding:1em;box-shadow:1px 0 1px 1px #ddd;cursor:pointer;border:0;letter-spacing:.05em}.menu-panel .content .panel-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.menu-panel .content .panel-row:first-child{border-radius:15px 15px 0 0;box-shadow:2px 0 1px -2px #ddd}.menu-panel .content .panel-row:last-child{border-radius:0 0 15px 15px;box-shadow:-1px 0 1px 0 #ddd}.menu-panel .content .header{background:#dde5e1;font-weight:700;box-shadow:0 0 1px 1px silver}.menu-panel .content .header:hover{background:#dde5e1}@media screen and (max-width:1024px){.menu-panel{padding-top:0}.menu-panel .content{min-width:100%}.menu-panel .content .row:first-child,.menu-panel .content .row:last-child{border-radius:0}}@media screen and (min-width:1024px){.menu-panel .content{min-width:75%}}@media screen and (min-width:1216px){.menu-panel .content{min-width:50%}}@media screen and (min-width:1408px){.menu-panel .content{min-width:35%}}.col-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-42318a2b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-42318a2b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-42318a2b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-42318a2b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-42318a2b]:first-child{margin-left:26%!important}.col-offset-3[data-v-42318a2b]:not(first-child){margin-left:30%!important}.col-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-42318a2b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-42318a2b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-42318a2b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-42318a2b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-42318a2b]:first-child{margin-left:52%!important}.col-offset-6[data-v-42318a2b]:not(first-child){margin-left:56%!important}.col-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-42318a2b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-42318a2b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-42318a2b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-42318a2b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-42318a2b]:first-child{margin-left:78%!important}.col-offset-9[data-v-42318a2b]:not(first-child){margin-left:82%!important}.col-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-42318a2b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-42318a2b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-42318a2b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-42318a2b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-s-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-s-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-s-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-42318a2b]{display:none!important}.s-visible[data-v-42318a2b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-m-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-m-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-m-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-42318a2b]{display:none!important}.m-visible[data-v-42318a2b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-l-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-l-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-l-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-42318a2b]{display:none!important}.l-visible[data-v-42318a2b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-xl-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-xl-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-xl-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-42318a2b]{display:none!important}.xl-visible[data-v-42318a2b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-xxl-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-xxl-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-xxl-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-42318a2b]{display:none!important}.xxl-visible[data-v-42318a2b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-42318a2b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-42318a2b]{display:none!important}}.vertical-center[data-v-42318a2b]{display:flex;align-items:center}.horizontal-center[data-v-42318a2b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-42318a2b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-42318a2b]{display:none!important}.no-content[data-v-42318a2b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-42318a2b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-42318a2b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-42318a2b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-42318a2b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-42318a2b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-42318a2b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-42318a2b],.btn[data-v-42318a2b],button[data-v-42318a2b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-42318a2b],.btn-default[type=submit][data-v-42318a2b],.btn.btn-primary[data-v-42318a2b],.btn[type=submit][data-v-42318a2b],button.btn-primary[data-v-42318a2b],button[type=submit][data-v-42318a2b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-42318a2b],.btn-default .icon[data-v-42318a2b],button .icon[data-v-42318a2b]{margin-right:.5em}input[type=password][data-v-42318a2b],input[type=text][data-v-42318a2b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-42318a2b]:focus,input[type=text][data-v-42318a2b]:focus{border:1px solid #35b870}button[data-v-42318a2b],input[data-v-42318a2b]{outline:none}input[type=text][data-v-42318a2b]:hover,textarea[data-v-42318a2b]:hover{border:1px solid #9cdfb0}ul[data-v-42318a2b]{margin:0;padding:0;list-style:none}a[data-v-42318a2b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-42318a2b]:hover{color:#35b870}[data-v-42318a2b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-42318a2b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-42318a2b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-42318a2b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-42318a2b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-42318a2b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-42318a2b] .nav .path{cursor:pointer}.browser[data-v-42318a2b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-42318a2b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-42318a2b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-42318a2b],input[type=number][data-v-42318a2b],input[type=password][data-v-42318a2b],input[type=search][data-v-42318a2b],input[type=text][data-v-42318a2b],input[type=time][data-v-42318a2b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-42318a2b]:hover,input[type=number][data-v-42318a2b]:hover,input[type=password][data-v-42318a2b]:hover,input[type=search][data-v-42318a2b]:hover,input[type=text][data-v-42318a2b]:hover,input[type=time][data-v-42318a2b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-42318a2b]:focus,input[type=number][data-v-42318a2b]:focus,input[type=password][data-v-42318a2b]:focus,input[type=search][data-v-42318a2b]:focus,input[type=text][data-v-42318a2b]:focus,input[type=time][data-v-42318a2b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-42318a2b],input[type=number].with-icon[data-v-42318a2b],input[type=password].with-icon[data-v-42318a2b],input[type=search].with-icon[data-v-42318a2b],input[type=text].with-icon[data-v-42318a2b],input[type=time].with-icon[data-v-42318a2b]{padding-left:.3em}input[type=search][data-v-42318a2b],input[type=text][data-v-42318a2b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-42318a2b]{animation-fill-mode:both;animation-name:fadeIn-42318a2b;-webkit-animation-name:fadeIn-42318a2b}.fade-in[data-v-42318a2b],.fade-out[data-v-42318a2b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-42318a2b]{animation-fill-mode:both;animation-name:fadeOut-42318a2b;-webkit-animation-name:fadeOut-42318a2b}@keyframes fadeIn-42318a2b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-42318a2b{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-42318a2b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-42318a2b;-webkit-animation-name:glow-42318a2b}.loop[data-v-42318a2b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-42318a2b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-42318a2b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-42318a2b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-42318a2b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-42318a2b]{display:flex;align-items:center;padding-top:.75em!important;padding-bottom:.75em!important}.header .icon[data-v-42318a2b]{margin-left:.5em}.header .name[data-v-42318a2b]{text-align:center}.group[data-v-42318a2b]{display:flex;align-items:center}.col-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-9c012c62]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-9c012c62]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-9c012c62]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-9c012c62]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-9c012c62]:first-child{margin-left:26%!important}.col-offset-3[data-v-9c012c62]:not(first-child){margin-left:30%!important}.col-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-9c012c62]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-9c012c62]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-9c012c62]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-9c012c62]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-9c012c62]:first-child{margin-left:52%!important}.col-offset-6[data-v-9c012c62]:not(first-child){margin-left:56%!important}.col-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-9c012c62]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-9c012c62]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-9c012c62]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-9c012c62]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-9c012c62]:first-child{margin-left:78%!important}.col-offset-9[data-v-9c012c62]:not(first-child){margin-left:82%!important}.col-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-9c012c62]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-9c012c62]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-9c012c62]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-9c012c62]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-s-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-s-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-s-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-s-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-9c012c62]{display:none!important}.s-visible[data-v-9c012c62]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-m-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-m-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-m-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-m-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-9c012c62]{display:none!important}.m-visible[data-v-9c012c62]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-l-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-l-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-l-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-l-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-9c012c62]{display:none!important}.l-visible[data-v-9c012c62]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-xl-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-xl-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-xl-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-9c012c62]{display:none!important}.xl-visible[data-v-9c012c62]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-xxl-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-xxl-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-xxl-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-9c012c62]{display:none!important}.xxl-visible[data-v-9c012c62]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-9c012c62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-9c012c62]{display:none!important}}.vertical-center[data-v-9c012c62]{display:flex;align-items:center}.horizontal-center[data-v-9c012c62]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-9c012c62]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-9c012c62]{display:none!important}.no-content[data-v-9c012c62]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-9c012c62]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-9c012c62]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-9c012c62]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-9c012c62]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-9c012c62]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-9c012c62]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-9c012c62],.btn[data-v-9c012c62],button[data-v-9c012c62]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-9c012c62],.btn-default[type=submit][data-v-9c012c62],.btn.btn-primary[data-v-9c012c62],.btn[type=submit][data-v-9c012c62],button.btn-primary[data-v-9c012c62],button[type=submit][data-v-9c012c62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-9c012c62],.btn-default .icon[data-v-9c012c62],button .icon[data-v-9c012c62]{margin-right:.5em}input[type=password][data-v-9c012c62],input[type=text][data-v-9c012c62]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-9c012c62]:focus,input[type=text][data-v-9c012c62]:focus{border:1px solid #35b870}button[data-v-9c012c62],input[data-v-9c012c62]{outline:none}input[type=text][data-v-9c012c62]:hover,textarea[data-v-9c012c62]:hover{border:1px solid #9cdfb0}ul[data-v-9c012c62]{margin:0;padding:0;list-style:none}a[data-v-9c012c62]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-9c012c62]:hover{color:#35b870}[data-v-9c012c62]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-9c012c62]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-9c012c62]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-9c012c62]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-9c012c62]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-9c012c62] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-9c012c62] .nav .path{cursor:pointer}.browser[data-v-9c012c62] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-9c012c62] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-9c012c62]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-9c012c62],input[type=number][data-v-9c012c62],input[type=password][data-v-9c012c62],input[type=search][data-v-9c012c62],input[type=text][data-v-9c012c62],input[type=time][data-v-9c012c62]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-9c012c62]:hover,input[type=number][data-v-9c012c62]:hover,input[type=password][data-v-9c012c62]:hover,input[type=search][data-v-9c012c62]:hover,input[type=text][data-v-9c012c62]:hover,input[type=time][data-v-9c012c62]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-9c012c62]:focus,input[type=number][data-v-9c012c62]:focus,input[type=password][data-v-9c012c62]:focus,input[type=search][data-v-9c012c62]:focus,input[type=text][data-v-9c012c62]:focus,input[type=time][data-v-9c012c62]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-9c012c62],input[type=number].with-icon[data-v-9c012c62],input[type=password].with-icon[data-v-9c012c62],input[type=search].with-icon[data-v-9c012c62],input[type=text].with-icon[data-v-9c012c62],input[type=time].with-icon[data-v-9c012c62]{padding-left:.3em}input[type=search][data-v-9c012c62],input[type=text][data-v-9c012c62]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-9c012c62]{animation-fill-mode:both;animation-name:fadeIn-9c012c62;-webkit-animation-name:fadeIn-9c012c62}.fade-in[data-v-9c012c62],.fade-out[data-v-9c012c62]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-9c012c62]{animation-fill-mode:both;animation-name:fadeOut-9c012c62;-webkit-animation-name:fadeOut-9c012c62}@keyframes fadeIn-9c012c62{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-9c012c62{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-9c012c62]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-9c012c62;-webkit-animation-name:glow-9c012c62}.loop[data-v-9c012c62]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-9c012c62{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-9c012c62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-9c012c62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-9c012c62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.controls[data-v-9c012c62]{flex-direction:column;margin-top:2.25em;background:#fff;padding:.5em 1em;border-radius:1em;box-shadow:0 0 2px 2px #ccc}.controls .row[data-v-9c012c62],.controls[data-v-9c012c62]{width:100%;display:flex;align-items:center}.controls .control[data-v-9c012c62]{padding-top:.25em}.controls .icon[data-v-9c012c62]{opacity:.7}.controls input[type=color][data-v-9c012c62]{width:100%;border:0}.light-controls .row .slider{margin-top:.4em}.col-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-52168252]:first-child{margin-left:0}.col-no-margin-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-52168252]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-52168252]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-52168252]:first-child{margin-left:0}.col-no-margin-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-52168252]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-52168252]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-52168252]:first-child{margin-left:0}.col-no-margin-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-52168252]:first-child{margin-left:26%!important}.col-offset-3[data-v-52168252]:not(first-child){margin-left:30%!important}.col-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-52168252]:first-child{margin-left:0}.col-no-margin-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-52168252]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-52168252]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-52168252]:first-child{margin-left:0}.col-no-margin-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-52168252]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-52168252]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-52168252]:first-child{margin-left:0}.col-no-margin-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-52168252]:first-child{margin-left:52%!important}.col-offset-6[data-v-52168252]:not(first-child){margin-left:56%!important}.col-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-52168252]:first-child{margin-left:0}.col-no-margin-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-52168252]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-52168252]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-52168252]:first-child{margin-left:0}.col-no-margin-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-52168252]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-52168252]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-52168252]:first-child{margin-left:0}.col-no-margin-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-52168252]:first-child{margin-left:78%!important}.col-offset-9[data-v-52168252]:not(first-child){margin-left:82%!important}.col-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-52168252]:first-child{margin-left:0}.col-no-margin-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-52168252]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-52168252]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-52168252]:first-child{margin-left:0}.col-no-margin-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-52168252]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-52168252]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-52168252]:first-child{margin-left:0}.col-offset-s-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-52168252]:first-child{margin-left:0}.col-offset-s-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-52168252]:first-child{margin-left:0}.col-offset-s-3[data-v-52168252]{margin-left:26%}.col-no-margin-s-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-52168252]:first-child{margin-left:0}.col-offset-s-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-52168252]:first-child{margin-left:0}.col-offset-s-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-52168252]:first-child{margin-left:0}.col-offset-s-6[data-v-52168252]{margin-left:52%}.col-no-margin-s-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-52168252]:first-child{margin-left:0}.col-offset-s-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-52168252]:first-child{margin-left:0}.col-offset-s-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-52168252]:first-child{margin-left:0}.col-offset-s-9[data-v-52168252]{margin-left:78%}.col-no-margin-s-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-52168252]:first-child{margin-left:0}.col-offset-s-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-52168252]:first-child{margin-left:0}.col-offset-s-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-s-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-52168252]{display:none!important}.s-visible[data-v-52168252]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-52168252]:first-child{margin-left:0}.col-offset-m-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-52168252]:first-child{margin-left:0}.col-offset-m-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-52168252]:first-child{margin-left:0}.col-offset-m-3[data-v-52168252]{margin-left:26%}.col-no-margin-m-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-52168252]:first-child{margin-left:0}.col-offset-m-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-52168252]:first-child{margin-left:0}.col-offset-m-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-52168252]:first-child{margin-left:0}.col-offset-m-6[data-v-52168252]{margin-left:52%}.col-no-margin-m-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-52168252]:first-child{margin-left:0}.col-offset-m-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-52168252]:first-child{margin-left:0}.col-offset-m-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-52168252]:first-child{margin-left:0}.col-offset-m-9[data-v-52168252]{margin-left:78%}.col-no-margin-m-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-52168252]:first-child{margin-left:0}.col-offset-m-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-52168252]:first-child{margin-left:0}.col-offset-m-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-m-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-52168252]{display:none!important}.m-visible[data-v-52168252]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-52168252]:first-child{margin-left:0}.col-offset-l-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-52168252]:first-child{margin-left:0}.col-offset-l-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-52168252]:first-child{margin-left:0}.col-offset-l-3[data-v-52168252]{margin-left:26%}.col-no-margin-l-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-52168252]:first-child{margin-left:0}.col-offset-l-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-52168252]:first-child{margin-left:0}.col-offset-l-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-52168252]:first-child{margin-left:0}.col-offset-l-6[data-v-52168252]{margin-left:52%}.col-no-margin-l-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-52168252]:first-child{margin-left:0}.col-offset-l-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-52168252]:first-child{margin-left:0}.col-offset-l-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-52168252]:first-child{margin-left:0}.col-offset-l-9[data-v-52168252]{margin-left:78%}.col-no-margin-l-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-52168252]:first-child{margin-left:0}.col-offset-l-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-52168252]:first-child{margin-left:0}.col-offset-l-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-l-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-52168252]{display:none!important}.l-visible[data-v-52168252]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-3[data-v-52168252]{margin-left:26%}.col-no-margin-xl-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-6[data-v-52168252]{margin-left:52%}.col-no-margin-xl-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-9[data-v-52168252]{margin-left:78%}.col-no-margin-xl-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-52168252]{display:none!important}.xl-visible[data-v-52168252]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-3[data-v-52168252]{margin-left:26%}.col-no-margin-xxl-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-6[data-v-52168252]{margin-left:52%}.col-no-margin-xxl-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-9[data-v-52168252]{margin-left:78%}.col-no-margin-xxl-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-52168252]{display:none!important}.xxl-visible[data-v-52168252]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-52168252]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-52168252]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-52168252]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-52168252]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-52168252]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-52168252]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-52168252]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-52168252]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-52168252]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-52168252]{display:none!important}}.vertical-center[data-v-52168252]{display:flex;align-items:center}.horizontal-center[data-v-52168252]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-52168252]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-52168252]{display:none!important}.no-content[data-v-52168252]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-52168252]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-52168252]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-52168252]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-52168252]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-52168252]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-52168252]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-52168252],.btn[data-v-52168252],button[data-v-52168252]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-52168252],.btn-default[type=submit][data-v-52168252],.btn.btn-primary[data-v-52168252],.btn[type=submit][data-v-52168252],button.btn-primary[data-v-52168252],button[type=submit][data-v-52168252]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-52168252],.btn-default .icon[data-v-52168252],button .icon[data-v-52168252]{margin-right:.5em}input[type=password][data-v-52168252],input[type=text][data-v-52168252]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-52168252]:focus,input[type=text][data-v-52168252]:focus{border:1px solid #35b870}button[data-v-52168252],input[data-v-52168252]{outline:none}input[type=text][data-v-52168252]:hover,textarea[data-v-52168252]:hover{border:1px solid #9cdfb0}ul[data-v-52168252]{margin:0;padding:0;list-style:none}a[data-v-52168252]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-52168252]:hover{color:#35b870}[data-v-52168252]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-52168252]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-52168252]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-52168252]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-52168252]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-52168252] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-52168252] .nav .path{cursor:pointer}.browser[data-v-52168252] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-52168252] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-52168252]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-52168252],input[type=number][data-v-52168252],input[type=password][data-v-52168252],input[type=search][data-v-52168252],input[type=text][data-v-52168252],input[type=time][data-v-52168252]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-52168252]:hover,input[type=number][data-v-52168252]:hover,input[type=password][data-v-52168252]:hover,input[type=search][data-v-52168252]:hover,input[type=text][data-v-52168252]:hover,input[type=time][data-v-52168252]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-52168252]:focus,input[type=number][data-v-52168252]:focus,input[type=password][data-v-52168252]:focus,input[type=search][data-v-52168252]:focus,input[type=text][data-v-52168252]:focus,input[type=time][data-v-52168252]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-52168252],input[type=number].with-icon[data-v-52168252],input[type=password].with-icon[data-v-52168252],input[type=search].with-icon[data-v-52168252],input[type=text].with-icon[data-v-52168252],input[type=time].with-icon[data-v-52168252]{padding-left:.3em}input[type=search][data-v-52168252],input[type=text][data-v-52168252]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-52168252]{animation-fill-mode:both;animation-name:fadeIn-52168252;-webkit-animation-name:fadeIn-52168252}.fade-in[data-v-52168252],.fade-out[data-v-52168252]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-52168252]{animation-fill-mode:both;animation-name:fadeOut-52168252;-webkit-animation-name:fadeOut-52168252}@keyframes fadeIn-52168252{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-52168252{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-52168252]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-52168252;-webkit-animation-name:glow-52168252}.loop[data-v-52168252]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-52168252{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-52168252]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-52168252]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-52168252]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.expanded .name[data-v-52168252]{font-size:1.25em}.col-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-981c5de0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-981c5de0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-981c5de0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-981c5de0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-981c5de0]:first-child{margin-left:26%!important}.col-offset-3[data-v-981c5de0]:not(first-child){margin-left:30%!important}.col-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-981c5de0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-981c5de0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-981c5de0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-981c5de0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-981c5de0]:first-child{margin-left:52%!important}.col-offset-6[data-v-981c5de0]:not(first-child){margin-left:56%!important}.col-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-981c5de0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-981c5de0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-981c5de0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-981c5de0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-981c5de0]:first-child{margin-left:78%!important}.col-offset-9[data-v-981c5de0]:not(first-child){margin-left:82%!important}.col-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-981c5de0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-981c5de0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-981c5de0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-981c5de0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-s-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-s-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-s-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-981c5de0]{display:none!important}.s-visible[data-v-981c5de0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-m-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-m-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-m-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-981c5de0]{display:none!important}.m-visible[data-v-981c5de0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-l-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-l-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-l-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-981c5de0]{display:none!important}.l-visible[data-v-981c5de0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-xl-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-xl-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-xl-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-981c5de0]{display:none!important}.xl-visible[data-v-981c5de0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-xxl-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-xxl-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-xxl-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-981c5de0]{display:none!important}.xxl-visible[data-v-981c5de0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-981c5de0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-981c5de0]{display:none!important}}.vertical-center[data-v-981c5de0]{display:flex;align-items:center}.horizontal-center[data-v-981c5de0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-981c5de0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-981c5de0]{display:none!important}.no-content[data-v-981c5de0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-981c5de0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-981c5de0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-981c5de0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-981c5de0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-981c5de0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-981c5de0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-981c5de0],.btn[data-v-981c5de0],button[data-v-981c5de0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-981c5de0],.btn-default[type=submit][data-v-981c5de0],.btn.btn-primary[data-v-981c5de0],.btn[type=submit][data-v-981c5de0],button.btn-primary[data-v-981c5de0],button[type=submit][data-v-981c5de0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-981c5de0],.btn-default .icon[data-v-981c5de0],button .icon[data-v-981c5de0]{margin-right:.5em}input[type=password][data-v-981c5de0],input[type=text][data-v-981c5de0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-981c5de0]:focus,input[type=text][data-v-981c5de0]:focus{border:1px solid #35b870}button[data-v-981c5de0],input[data-v-981c5de0]{outline:none}input[type=text][data-v-981c5de0]:hover,textarea[data-v-981c5de0]:hover{border:1px solid #9cdfb0}ul[data-v-981c5de0]{margin:0;padding:0;list-style:none}a[data-v-981c5de0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-981c5de0]:hover{color:#35b870}[data-v-981c5de0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-981c5de0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-981c5de0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-981c5de0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-981c5de0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-981c5de0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-981c5de0] .nav .path{cursor:pointer}.browser[data-v-981c5de0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-981c5de0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-981c5de0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-981c5de0],input[type=number][data-v-981c5de0],input[type=password][data-v-981c5de0],input[type=search][data-v-981c5de0],input[type=text][data-v-981c5de0],input[type=time][data-v-981c5de0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-981c5de0]:hover,input[type=number][data-v-981c5de0]:hover,input[type=password][data-v-981c5de0]:hover,input[type=search][data-v-981c5de0]:hover,input[type=text][data-v-981c5de0]:hover,input[type=time][data-v-981c5de0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-981c5de0]:focus,input[type=number][data-v-981c5de0]:focus,input[type=password][data-v-981c5de0]:focus,input[type=search][data-v-981c5de0]:focus,input[type=text][data-v-981c5de0]:focus,input[type=time][data-v-981c5de0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-981c5de0],input[type=number].with-icon[data-v-981c5de0],input[type=password].with-icon[data-v-981c5de0],input[type=search].with-icon[data-v-981c5de0],input[type=text].with-icon[data-v-981c5de0],input[type=time].with-icon[data-v-981c5de0]{padding-left:.3em}input[type=search][data-v-981c5de0],input[type=text][data-v-981c5de0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-981c5de0]{animation-fill-mode:both;animation-name:fadeIn-981c5de0;-webkit-animation-name:fadeIn-981c5de0}.fade-in[data-v-981c5de0],.fade-out[data-v-981c5de0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-981c5de0]{animation-fill-mode:both;animation-name:fadeOut-981c5de0;-webkit-animation-name:fadeOut-981c5de0}@keyframes fadeIn-981c5de0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-981c5de0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-981c5de0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-981c5de0;-webkit-animation-name:glow-981c5de0}.loop[data-v-981c5de0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-981c5de0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-981c5de0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-981c5de0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-981c5de0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.range-wrapper[data-v-981c5de0]{width:100%;position:relative}.range-wrapper input[type=range][data-v-981c5de0]{width:100%;position:absolute;left:0;bottom:0;outline:none;-webkit-appearance:none;-o-appearance:none;-moz-appearance:none;appearance:none}.range-wrapper input[type=range][data-v-981c5de0]:focus,.range-wrapper input[type=range][data-v-981c5de0]:hover{outline:none;border:0}.range-wrapper input[type=range][data-v-981c5de0]::-webkit-slider-runnable-track{width:100%;height:.75em;cursor:pointer;animate:.2s;background:#e4e4e4;border-radius:.5em;box-shadow:inset 1px 0 3px 0 #a5a2a2;border:0}.range-wrapper input[type=range][data-v-981c5de0]::-moz-range-track{width:100%;height:.75em;cursor:pointer;animate:.2s;background:#e4e4e4;border-radius:.5em;box-shadow:inset 1px 0 3px 0 #a5a2a2;border:0}.range-wrapper input[type=range][data-v-981c5de0]::-ms-track{width:100%;height:.75em;cursor:pointer;animate:.2s;background:transparent;border-color:transparent;color:transparent}.range-wrapper input[type=range][data-v-981c5de0]::-ms-fill-lower,.range-wrapper input[type=range][data-v-981c5de0]::-ms-fill-upper{background:#00d750;border-radius:1px;box-shadow:none;border:0}.range-wrapper input[type=range][data-v-981c5de0]::-webkit-slider-thumb{width:1.25em;height:1.25em;background:#37d560;position:relative;z-index:2;border-radius:50%;box-shadow:1px 0 2px 0 #475c40;cursor:pointer;-webkit-appearance:none;-o-appearance:none;appearance:none;margin-top:-.25em}.range-wrapper input[type=range][data-v-981c5de0]::-moz-range-thumb{width:1.25em;height:1.25em;background:#37d560;position:relative;z-index:2;border-radius:50%;box-shadow:1px 0 2px 0 #475c40;cursor:pointer}.range-wrapper input[type=range][data-v-981c5de0]::-ms-thumb{width:1.25em;height:1.25em;background:#37d560;position:relative;z-index:2;border-radius:50%;box-shadow:1px 0 2px 0 #475c40;cursor:pointer}.col-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-44c83513]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-44c83513]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-44c83513]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-44c83513]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-44c83513]:first-child{margin-left:26%!important}.col-offset-3[data-v-44c83513]:not(first-child){margin-left:30%!important}.col-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-44c83513]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-44c83513]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-44c83513]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-44c83513]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-44c83513]:first-child{margin-left:52%!important}.col-offset-6[data-v-44c83513]:not(first-child){margin-left:56%!important}.col-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-44c83513]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-44c83513]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-44c83513]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-44c83513]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-44c83513]:first-child{margin-left:78%!important}.col-offset-9[data-v-44c83513]:not(first-child){margin-left:82%!important}.col-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-44c83513]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-44c83513]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-44c83513]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-44c83513]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-3[data-v-44c83513]{margin-left:26%}.col-no-margin-s-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-6[data-v-44c83513]{margin-left:52%}.col-no-margin-s-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-9[data-v-44c83513]{margin-left:78%}.col-no-margin-s-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-s-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-44c83513]{display:none!important}.s-visible[data-v-44c83513]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-3[data-v-44c83513]{margin-left:26%}.col-no-margin-m-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-6[data-v-44c83513]{margin-left:52%}.col-no-margin-m-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-9[data-v-44c83513]{margin-left:78%}.col-no-margin-m-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-m-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-44c83513]{display:none!important}.m-visible[data-v-44c83513]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-3[data-v-44c83513]{margin-left:26%}.col-no-margin-l-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-6[data-v-44c83513]{margin-left:52%}.col-no-margin-l-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-9[data-v-44c83513]{margin-left:78%}.col-no-margin-l-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-l-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-44c83513]{display:none!important}.l-visible[data-v-44c83513]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-3[data-v-44c83513]{margin-left:26%}.col-no-margin-xl-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-6[data-v-44c83513]{margin-left:52%}.col-no-margin-xl-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-9[data-v-44c83513]{margin-left:78%}.col-no-margin-xl-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-44c83513]{display:none!important}.xl-visible[data-v-44c83513]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-3[data-v-44c83513]{margin-left:26%}.col-no-margin-xxl-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-6[data-v-44c83513]{margin-left:52%}.col-no-margin-xxl-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-9[data-v-44c83513]{margin-left:78%}.col-no-margin-xxl-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-44c83513]{display:none!important}.xxl-visible[data-v-44c83513]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-44c83513]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-44c83513]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-44c83513]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-44c83513]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-44c83513]{display:none!important}}.vertical-center[data-v-44c83513]{display:flex;align-items:center}.horizontal-center[data-v-44c83513]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-44c83513]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-44c83513]{display:none!important}.no-content[data-v-44c83513]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-44c83513]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-44c83513]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-44c83513]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-44c83513]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-44c83513]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-44c83513]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-44c83513],.btn[data-v-44c83513],button[data-v-44c83513]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-44c83513],.btn-default[type=submit][data-v-44c83513],.btn.btn-primary[data-v-44c83513],.btn[type=submit][data-v-44c83513],button.btn-primary[data-v-44c83513],button[type=submit][data-v-44c83513]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-44c83513],.btn-default .icon[data-v-44c83513],button .icon[data-v-44c83513]{margin-right:.5em}input[type=password][data-v-44c83513],input[type=text][data-v-44c83513]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-44c83513]:focus,input[type=text][data-v-44c83513]:focus{border:1px solid #35b870}button[data-v-44c83513],input[data-v-44c83513]{outline:none}input[type=text][data-v-44c83513]:hover,textarea[data-v-44c83513]:hover{border:1px solid #9cdfb0}ul[data-v-44c83513]{margin:0;padding:0;list-style:none}a[data-v-44c83513]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-44c83513]:hover{color:#35b870}[data-v-44c83513]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-44c83513]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-44c83513]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-44c83513]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-44c83513]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-44c83513] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-44c83513] .nav .path{cursor:pointer}.browser[data-v-44c83513] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-44c83513] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-44c83513]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-44c83513],input[type=number][data-v-44c83513],input[type=password][data-v-44c83513],input[type=search][data-v-44c83513],input[type=text][data-v-44c83513],input[type=time][data-v-44c83513]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-44c83513]:hover,input[type=number][data-v-44c83513]:hover,input[type=password][data-v-44c83513]:hover,input[type=search][data-v-44c83513]:hover,input[type=text][data-v-44c83513]:hover,input[type=time][data-v-44c83513]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-44c83513]:focus,input[type=number][data-v-44c83513]:focus,input[type=password][data-v-44c83513]:focus,input[type=search][data-v-44c83513]:focus,input[type=text][data-v-44c83513]:focus,input[type=time][data-v-44c83513]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-44c83513],input[type=number].with-icon[data-v-44c83513],input[type=password].with-icon[data-v-44c83513],input[type=search].with-icon[data-v-44c83513],input[type=text].with-icon[data-v-44c83513],input[type=time].with-icon[data-v-44c83513]{padding-left:.3em}input[type=search][data-v-44c83513],input[type=text][data-v-44c83513]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-44c83513]{animation-fill-mode:both;animation-name:fadeIn-44c83513;-webkit-animation-name:fadeIn-44c83513}.fade-in[data-v-44c83513],.fade-out[data-v-44c83513]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-44c83513]{animation-fill-mode:both;animation-name:fadeOut-44c83513;-webkit-animation-name:fadeOut-44c83513}@keyframes fadeIn-44c83513{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-44c83513{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-44c83513]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-44c83513;-webkit-animation-name:glow-44c83513}.loop[data-v-44c83513]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-44c83513{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-44c83513]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-44c83513]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-44c83513]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.animation-container[data-v-44c83513]{width:100%}.animation-container .animation-header[data-v-44c83513],.animation-container .animation[data-v-44c83513]{padding-bottom:.5em;margin-bottom:.5em;box-shadow:0 3px 2px -1px silver}.controls[data-v-44c83513]{width:100%;display:flex;flex-direction:column;align-items:center;margin-top:2.25em;background:#fff;padding:.5em 1em;border-radius:1em;box-shadow:0 0 2px 2px #ccc}.controls .selector[data-v-44c83513]{width:100%}.controls .row[data-v-44c83513]{width:100%;display:flex;align-items:center;padding:.5em 0}.controls .row>div[data-v-44c83513]:last-child{text-align:right}.controls .control[data-v-44c83513]{padding-top:.25em}.controls .lights[data-v-44c83513]{padding-top:.5em;width:100%}.controls .lights .row[data-v-44c83513]{display:flex;align-items:center}.controls .lights label[data-v-44c83513]{width:100%}.light-group-container{width:100%;min-height:100%}.light-group-container .row.panel-row{flex-direction:column}.light-group-container .row.panel-row.expanded,.light-group-container .row.panel-row.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.light-group-container .header{padding:.5em!important;display:flex;align-items:center}.light-group-container .header .back-btn{border:0;background:none}.light-group-container .header .back-btn:hover{border:0;color:#35b870}.light-group-container .header .name{text-align:center}.light-group-container .header .name.selected{color:#32b646}.light-group-container .header .name:hover{color:#35b870}.light-group-container .view-selector{width:100%;border-radius:0}.light-group-container .view-selector button{width:33.3%;padding:1.5em;text-align:left;opacity:.8;box-shadow:1px 0 1px 1px #ddd;border-right:0}.light-group-container .view-selector button.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.light-group-container .view-selector button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.light-group-container .view-selector .icon{width:100%;text-align:center;font-size:1.2em}.light-group-container .group-controls{margin:0;padding:1em;background-color:#e4eae8;border-radius:0 0 1em 1em}.light-group-container .group-controls .controls{margin:0;padding:1em}.col-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-781dd72c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-781dd72c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-781dd72c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-781dd72c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-781dd72c]:first-child{margin-left:26%!important}.col-offset-3[data-v-781dd72c]:not(first-child){margin-left:30%!important}.col-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-781dd72c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-781dd72c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-781dd72c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-781dd72c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-781dd72c]:first-child{margin-left:52%!important}.col-offset-6[data-v-781dd72c]:not(first-child){margin-left:56%!important}.col-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-781dd72c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-781dd72c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-781dd72c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-781dd72c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-781dd72c]:first-child{margin-left:78%!important}.col-offset-9[data-v-781dd72c]:not(first-child){margin-left:82%!important}.col-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-781dd72c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-781dd72c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-781dd72c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-781dd72c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-s-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-s-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-s-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-781dd72c]{display:none!important}.s-visible[data-v-781dd72c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-m-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-m-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-m-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-781dd72c]{display:none!important}.m-visible[data-v-781dd72c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-l-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-l-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-l-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-781dd72c]{display:none!important}.l-visible[data-v-781dd72c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-xl-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-xl-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-xl-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-781dd72c]{display:none!important}.xl-visible[data-v-781dd72c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-xxl-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-xxl-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-xxl-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-781dd72c]{display:none!important}.xxl-visible[data-v-781dd72c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-781dd72c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-781dd72c]{display:none!important}}.vertical-center[data-v-781dd72c]{display:flex;align-items:center}.horizontal-center[data-v-781dd72c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-781dd72c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-781dd72c]{display:none!important}.no-content[data-v-781dd72c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-781dd72c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-781dd72c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-781dd72c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-781dd72c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-781dd72c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-781dd72c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-781dd72c],.btn[data-v-781dd72c],button[data-v-781dd72c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-781dd72c],.btn-default[type=submit][data-v-781dd72c],.btn.btn-primary[data-v-781dd72c],.btn[type=submit][data-v-781dd72c],button.btn-primary[data-v-781dd72c],button[type=submit][data-v-781dd72c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-781dd72c],.btn-default .icon[data-v-781dd72c],button .icon[data-v-781dd72c]{margin-right:.5em}input[type=password][data-v-781dd72c],input[type=text][data-v-781dd72c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-781dd72c]:focus,input[type=text][data-v-781dd72c]:focus{border:1px solid #35b870}button[data-v-781dd72c],input[data-v-781dd72c]{outline:none}input[type=text][data-v-781dd72c]:hover,textarea[data-v-781dd72c]:hover{border:1px solid #9cdfb0}ul[data-v-781dd72c]{margin:0;padding:0;list-style:none}a[data-v-781dd72c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-781dd72c]:hover{color:#35b870}[data-v-781dd72c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-781dd72c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-781dd72c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-781dd72c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-781dd72c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-781dd72c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-781dd72c] .nav .path{cursor:pointer}.browser[data-v-781dd72c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-781dd72c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-781dd72c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-781dd72c],input[type=number][data-v-781dd72c],input[type=password][data-v-781dd72c],input[type=search][data-v-781dd72c],input[type=text][data-v-781dd72c],input[type=time][data-v-781dd72c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-781dd72c]:hover,input[type=number][data-v-781dd72c]:hover,input[type=password][data-v-781dd72c]:hover,input[type=search][data-v-781dd72c]:hover,input[type=text][data-v-781dd72c]:hover,input[type=time][data-v-781dd72c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-781dd72c]:focus,input[type=number][data-v-781dd72c]:focus,input[type=password][data-v-781dd72c]:focus,input[type=search][data-v-781dd72c]:focus,input[type=text][data-v-781dd72c]:focus,input[type=time][data-v-781dd72c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-781dd72c],input[type=number].with-icon[data-v-781dd72c],input[type=password].with-icon[data-v-781dd72c],input[type=search].with-icon[data-v-781dd72c],input[type=text].with-icon[data-v-781dd72c],input[type=time].with-icon[data-v-781dd72c]{padding-left:.3em}input[type=search][data-v-781dd72c],input[type=text][data-v-781dd72c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-781dd72c]{animation-fill-mode:both;animation-name:fadeIn-781dd72c;-webkit-animation-name:fadeIn-781dd72c}.fade-in[data-v-781dd72c],.fade-out[data-v-781dd72c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-781dd72c]{animation-fill-mode:both;animation-name:fadeOut-781dd72c;-webkit-animation-name:fadeOut-781dd72c}@keyframes fadeIn-781dd72c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-781dd72c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-781dd72c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-781dd72c;-webkit-animation-name:glow-781dd72c}.loop[data-v-781dd72c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-781dd72c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-781dd72c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-781dd72c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-781dd72c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.plugin[data-v-781dd72c]{width:100%;height:100%;display:flex}.panel[data-v-781dd72c]{width:100%;height:100%;box-shadow:none;overflow:auto}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.lights-plugin .menu-panel ul li:not(.header){padding:1.5em 1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9751.f5541a2c.css b/platypush/backend/http/webapp/dist/static/css/9751.f5541a2c.css new file mode 100644 index 0000000000..086bc8c8ca --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9751.f5541a2c.css @@ -0,0 +1 @@ +.menu-panel{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;background:#e0eae8;padding-top:2em}.menu-panel .content{background:#fff;border-radius:15px;box-shadow:0 0 2px 2px #ccc;border:0}.menu-panel .content .panel-row{display:flex;margin:0!important;padding:1em;box-shadow:1px 0 1px 1px #ddd;cursor:pointer;border:0;letter-spacing:.05em}.menu-panel .content .panel-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.menu-panel .content .panel-row:first-child{border-radius:15px 15px 0 0;box-shadow:2px 0 1px -2px #ddd}.menu-panel .content .panel-row:last-child{border-radius:0 0 15px 15px;box-shadow:-1px 0 1px 0 #ddd}.menu-panel .content .header{background:#dde5e1;font-weight:700;box-shadow:0 0 1px 1px silver}.menu-panel .content .header:hover{background:#dde5e1}@media screen and (max-width:1024px){.menu-panel{padding-top:0}.menu-panel .content{min-width:100%}.menu-panel .content .row:first-child,.menu-panel .content .row:last-child{border-radius:0}}@media screen and (min-width:1024px){.menu-panel .content{min-width:75%}}@media screen and (min-width:1216px){.menu-panel .content{min-width:50%}}@media screen and (min-width:1408px){.menu-panel .content{min-width:35%}}.col-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-42318a2b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-42318a2b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-42318a2b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-42318a2b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-42318a2b]:first-child{margin-left:26%!important}.col-offset-3[data-v-42318a2b]:not(first-child){margin-left:30%!important}.col-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-42318a2b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-42318a2b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-42318a2b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-42318a2b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-42318a2b]:first-child{margin-left:52%!important}.col-offset-6[data-v-42318a2b]:not(first-child){margin-left:56%!important}.col-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-42318a2b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-42318a2b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-42318a2b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-42318a2b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-42318a2b]:first-child{margin-left:78%!important}.col-offset-9[data-v-42318a2b]:not(first-child){margin-left:82%!important}.col-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-42318a2b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-42318a2b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-42318a2b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-42318a2b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-s-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-s-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-s-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-s-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-42318a2b]{display:none!important}.s-visible[data-v-42318a2b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-m-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-m-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-m-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-m-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-42318a2b]{display:none!important}.m-visible[data-v-42318a2b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-l-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-l-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-l-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-l-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-42318a2b]{display:none!important}.l-visible[data-v-42318a2b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-xl-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-xl-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-xl-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xl-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-42318a2b]{display:none!important}.xl-visible[data-v-42318a2b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-42318a2b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-42318a2b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-42318a2b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-42318a2b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-42318a2b]{margin-left:26%}.col-no-margin-xxl-3[data-v-42318a2b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-42318a2b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-42318a2b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-42318a2b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-42318a2b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-42318a2b]{margin-left:52%}.col-no-margin-xxl-6[data-v-42318a2b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-42318a2b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-42318a2b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-42318a2b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-42318a2b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-42318a2b]{margin-left:78%}.col-no-margin-xxl-9[data-v-42318a2b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-42318a2b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-42318a2b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-42318a2b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-42318a2b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-42318a2b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-42318a2b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-42318a2b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-42318a2b]{display:none!important}.xxl-visible[data-v-42318a2b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-42318a2b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-42318a2b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-42318a2b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-42318a2b]{display:none!important}}.vertical-center[data-v-42318a2b]{display:flex;align-items:center}.horizontal-center[data-v-42318a2b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-42318a2b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-42318a2b]{display:none!important}.no-content[data-v-42318a2b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-42318a2b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-42318a2b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-42318a2b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-42318a2b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-42318a2b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-42318a2b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-42318a2b],.btn[data-v-42318a2b],button[data-v-42318a2b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-42318a2b],.btn-default[type=submit][data-v-42318a2b],.btn.btn-primary[data-v-42318a2b],.btn[type=submit][data-v-42318a2b],button.btn-primary[data-v-42318a2b],button[type=submit][data-v-42318a2b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-42318a2b]:hover,.btn[data-v-42318a2b]:hover,button[data-v-42318a2b]:hover{color:#35b870}.btn .icon[data-v-42318a2b],.btn-default .icon[data-v-42318a2b],button .icon[data-v-42318a2b]{margin-right:.5em}.btn-default[data-v-42318a2b]:disabled,.btn-default[disabled][data-v-42318a2b],.btn[data-v-42318a2b]:disabled,.btn[disabled][data-v-42318a2b],button[data-v-42318a2b]:disabled,button[disabled][data-v-42318a2b]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-42318a2b]{cursor:grab!important}.dragged[data-v-42318a2b]{opacity:.5!important}input[type=password][data-v-42318a2b],input[type=text][data-v-42318a2b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-42318a2b]:focus,input[type=text][data-v-42318a2b]:focus{border:1px solid #35b870}button[data-v-42318a2b],input[data-v-42318a2b]{outline:none}input[type=text][data-v-42318a2b]:hover,textarea[data-v-42318a2b]:hover{border:1px solid #9cdfb0}ul[data-v-42318a2b]{margin:0;padding:0;list-style:none}a[data-v-42318a2b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-42318a2b]:hover{color:#35b870}[data-v-42318a2b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-42318a2b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-42318a2b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-42318a2b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-42318a2b]{color:#ad1717}body[data-v-42318a2b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-42318a2b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-42318a2b] .nav .path{cursor:pointer}.browser[data-v-42318a2b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-42318a2b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-42318a2b]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-42318a2b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-42318a2b],input[type=number][data-v-42318a2b],input[type=password][data-v-42318a2b],input[type=search][data-v-42318a2b],input[type=text][data-v-42318a2b],input[type=time][data-v-42318a2b]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-42318a2b]:hover,input[type=number][data-v-42318a2b]:hover,input[type=password][data-v-42318a2b]:hover,input[type=search][data-v-42318a2b]:hover,input[type=text][data-v-42318a2b]:hover,input[type=time][data-v-42318a2b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-42318a2b]:focus,input[type=number][data-v-42318a2b]:focus,input[type=password][data-v-42318a2b]:focus,input[type=search][data-v-42318a2b]:focus,input[type=text][data-v-42318a2b]:focus,input[type=time][data-v-42318a2b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-42318a2b],input[type=number].with-icon[data-v-42318a2b],input[type=password].with-icon[data-v-42318a2b],input[type=search].with-icon[data-v-42318a2b],input[type=text].with-icon[data-v-42318a2b],input[type=time].with-icon[data-v-42318a2b]{padding-left:.3em}input[type=search][data-v-42318a2b],input[type=text][data-v-42318a2b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-42318a2b]{animation-fill-mode:both;animation-name:fadeIn-42318a2b;-webkit-animation-name:fadeIn-42318a2b}.fade-in[data-v-42318a2b],.fade-out[data-v-42318a2b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-42318a2b]{animation-fill-mode:both;animation-name:fadeOut-42318a2b;-webkit-animation-name:fadeOut-42318a2b}.expand[data-v-42318a2b]{animation-fill-mode:both;animation-name:expand-42318a2b;-webkit-animation-name:expand-42318a2b}.expand[data-v-42318a2b],.shrink[data-v-42318a2b]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-42318a2b]{animation-fill-mode:both;animation-name:shrink-42318a2b;-webkit-animation-name:shrink-42318a2b}.fold[data-v-42318a2b]{animation-fill-mode:both;animation-name:fold-42318a2b;-webkit-animation-name:fold-42318a2b}.fold[data-v-42318a2b],.unfold[data-v-42318a2b]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-42318a2b]{animation-fill-mode:both;animation-name:unfold-42318a2b;-webkit-animation-name:unfold-42318a2b}.dim[data-v-42318a2b]{animation-fill-mode:both;animation-name:dim-42318a2b;-webkit-animation-name:dim-42318a2b}.brighten[data-v-42318a2b],.dim[data-v-42318a2b]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-42318a2b]{animation-fill-mode:both;animation-name:brighten-42318a2b;-webkit-animation-name:brighten-42318a2b}@keyframes fadeIn-42318a2b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-42318a2b{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-42318a2b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-42318a2b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-42318a2b{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-42318a2b{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-42318a2b{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-42318a2b{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-42318a2b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-42318a2b;-webkit-animation-name:glow-42318a2b}.loop[data-v-42318a2b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-42318a2b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-42318a2b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-42318a2b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-42318a2b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-42318a2b]{display:flex;align-items:center;padding-top:.75em!important;padding-bottom:.75em!important}.header .icon[data-v-42318a2b]{margin-left:.5em}.header .name[data-v-42318a2b]{text-align:center}.group[data-v-42318a2b]{display:flex;align-items:center}.col-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-9c012c62]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-9c012c62]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-9c012c62]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-9c012c62]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-9c012c62]:first-child{margin-left:26%!important}.col-offset-3[data-v-9c012c62]:not(first-child){margin-left:30%!important}.col-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-9c012c62]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-9c012c62]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-9c012c62]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-9c012c62]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-9c012c62]:first-child{margin-left:52%!important}.col-offset-6[data-v-9c012c62]:not(first-child){margin-left:56%!important}.col-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-9c012c62]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-9c012c62]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-9c012c62]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-9c012c62]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-9c012c62]:first-child{margin-left:78%!important}.col-offset-9[data-v-9c012c62]:not(first-child){margin-left:82%!important}.col-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-9c012c62]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-9c012c62]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-9c012c62]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-9c012c62]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-s-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-s-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-s-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-s-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-s-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-9c012c62]{display:none!important}.s-visible[data-v-9c012c62]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-m-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-m-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-m-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-m-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-m-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-9c012c62]{display:none!important}.m-visible[data-v-9c012c62]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-l-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-l-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-l-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-l-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-l-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-9c012c62]{display:none!important}.l-visible[data-v-9c012c62]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-xl-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-xl-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-xl-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xl-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-9c012c62]{display:none!important}.xl-visible[data-v-9c012c62]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-1[data-v-9c012c62]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-9c012c62]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-2[data-v-9c012c62]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-9c012c62]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-3[data-v-9c012c62]{margin-left:26%}.col-no-margin-xxl-3[data-v-9c012c62]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-4[data-v-9c012c62]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-9c012c62]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-5[data-v-9c012c62]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-9c012c62]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-6[data-v-9c012c62]{margin-left:52%}.col-no-margin-xxl-6[data-v-9c012c62]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-7[data-v-9c012c62]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-9c012c62]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-8[data-v-9c012c62]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-9c012c62]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-9[data-v-9c012c62]{margin-left:78%}.col-no-margin-xxl-9[data-v-9c012c62]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-10[data-v-9c012c62]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-9c012c62]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-9c012c62]:first-child{margin-left:0}.col-offset-xxl-11[data-v-9c012c62]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-9c012c62]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-9c012c62]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-9c012c62]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-9c012c62]{display:none!important}.xxl-visible[data-v-9c012c62]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-9c012c62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-9c012c62]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-9c012c62]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-9c012c62]{display:none!important}}.vertical-center[data-v-9c012c62]{display:flex;align-items:center}.horizontal-center[data-v-9c012c62]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-9c012c62]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-9c012c62]{display:none!important}.no-content[data-v-9c012c62]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-9c012c62]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-9c012c62]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-9c012c62]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-9c012c62]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-9c012c62]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-9c012c62]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-9c012c62],.btn[data-v-9c012c62],button[data-v-9c012c62]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-9c012c62],.btn-default[type=submit][data-v-9c012c62],.btn.btn-primary[data-v-9c012c62],.btn[type=submit][data-v-9c012c62],button.btn-primary[data-v-9c012c62],button[type=submit][data-v-9c012c62]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-9c012c62]:hover,.btn[data-v-9c012c62]:hover,button[data-v-9c012c62]:hover{color:#35b870}.btn .icon[data-v-9c012c62],.btn-default .icon[data-v-9c012c62],button .icon[data-v-9c012c62]{margin-right:.5em}.btn-default[data-v-9c012c62]:disabled,.btn-default[disabled][data-v-9c012c62],.btn[data-v-9c012c62]:disabled,.btn[disabled][data-v-9c012c62],button[data-v-9c012c62]:disabled,button[disabled][data-v-9c012c62]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-9c012c62]{cursor:grab!important}.dragged[data-v-9c012c62]{opacity:.5!important}input[type=password][data-v-9c012c62],input[type=text][data-v-9c012c62]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-9c012c62]:focus,input[type=text][data-v-9c012c62]:focus{border:1px solid #35b870}button[data-v-9c012c62],input[data-v-9c012c62]{outline:none}input[type=text][data-v-9c012c62]:hover,textarea[data-v-9c012c62]:hover{border:1px solid #9cdfb0}ul[data-v-9c012c62]{margin:0;padding:0;list-style:none}a[data-v-9c012c62]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-9c012c62]:hover{color:#35b870}[data-v-9c012c62]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-9c012c62]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-9c012c62]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-9c012c62]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-9c012c62]{color:#ad1717}body[data-v-9c012c62]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-9c012c62] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-9c012c62] .nav .path{cursor:pointer}.browser[data-v-9c012c62] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-9c012c62] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-9c012c62]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-9c012c62]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-9c012c62],input[type=number][data-v-9c012c62],input[type=password][data-v-9c012c62],input[type=search][data-v-9c012c62],input[type=text][data-v-9c012c62],input[type=time][data-v-9c012c62]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-9c012c62]:hover,input[type=number][data-v-9c012c62]:hover,input[type=password][data-v-9c012c62]:hover,input[type=search][data-v-9c012c62]:hover,input[type=text][data-v-9c012c62]:hover,input[type=time][data-v-9c012c62]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-9c012c62]:focus,input[type=number][data-v-9c012c62]:focus,input[type=password][data-v-9c012c62]:focus,input[type=search][data-v-9c012c62]:focus,input[type=text][data-v-9c012c62]:focus,input[type=time][data-v-9c012c62]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-9c012c62],input[type=number].with-icon[data-v-9c012c62],input[type=password].with-icon[data-v-9c012c62],input[type=search].with-icon[data-v-9c012c62],input[type=text].with-icon[data-v-9c012c62],input[type=time].with-icon[data-v-9c012c62]{padding-left:.3em}input[type=search][data-v-9c012c62],input[type=text][data-v-9c012c62]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-9c012c62]{animation-fill-mode:both;animation-name:fadeIn-9c012c62;-webkit-animation-name:fadeIn-9c012c62}.fade-in[data-v-9c012c62],.fade-out[data-v-9c012c62]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-9c012c62]{animation-fill-mode:both;animation-name:fadeOut-9c012c62;-webkit-animation-name:fadeOut-9c012c62}.expand[data-v-9c012c62]{animation-fill-mode:both;animation-name:expand-9c012c62;-webkit-animation-name:expand-9c012c62}.expand[data-v-9c012c62],.shrink[data-v-9c012c62]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-9c012c62]{animation-fill-mode:both;animation-name:shrink-9c012c62;-webkit-animation-name:shrink-9c012c62}.fold[data-v-9c012c62]{animation-fill-mode:both;animation-name:fold-9c012c62;-webkit-animation-name:fold-9c012c62}.fold[data-v-9c012c62],.unfold[data-v-9c012c62]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-9c012c62]{animation-fill-mode:both;animation-name:unfold-9c012c62;-webkit-animation-name:unfold-9c012c62}.dim[data-v-9c012c62]{animation-fill-mode:both;animation-name:dim-9c012c62;-webkit-animation-name:dim-9c012c62}.brighten[data-v-9c012c62],.dim[data-v-9c012c62]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-9c012c62]{animation-fill-mode:both;animation-name:brighten-9c012c62;-webkit-animation-name:brighten-9c012c62}@keyframes fadeIn-9c012c62{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-9c012c62{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-9c012c62{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-9c012c62{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-9c012c62{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-9c012c62{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-9c012c62{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-9c012c62{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-9c012c62]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-9c012c62;-webkit-animation-name:glow-9c012c62}.loop[data-v-9c012c62]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-9c012c62{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-9c012c62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-9c012c62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-9c012c62]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.controls[data-v-9c012c62]{flex-direction:column;margin-top:2.25em;background:#fff;padding:.5em 1em;border-radius:1em;box-shadow:0 0 2px 2px #ccc}.controls .row[data-v-9c012c62],.controls[data-v-9c012c62]{width:100%;display:flex;align-items:center}.controls .control[data-v-9c012c62]{padding-top:.25em}.controls .icon[data-v-9c012c62]{opacity:.7}.controls input[type=color][data-v-9c012c62]{width:100%;border:0}.light-controls .row .slider{margin-top:.4em}.col-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-52168252]:first-child{margin-left:0}.col-no-margin-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-52168252]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-52168252]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-52168252]:first-child{margin-left:0}.col-no-margin-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-52168252]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-52168252]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-52168252]:first-child{margin-left:0}.col-no-margin-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-52168252]:first-child{margin-left:26%!important}.col-offset-3[data-v-52168252]:not(first-child){margin-left:30%!important}.col-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-52168252]:first-child{margin-left:0}.col-no-margin-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-52168252]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-52168252]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-52168252]:first-child{margin-left:0}.col-no-margin-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-52168252]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-52168252]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-52168252]:first-child{margin-left:0}.col-no-margin-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-52168252]:first-child{margin-left:52%!important}.col-offset-6[data-v-52168252]:not(first-child){margin-left:56%!important}.col-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-52168252]:first-child{margin-left:0}.col-no-margin-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-52168252]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-52168252]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-52168252]:first-child{margin-left:0}.col-no-margin-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-52168252]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-52168252]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-52168252]:first-child{margin-left:0}.col-no-margin-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-52168252]:first-child{margin-left:78%!important}.col-offset-9[data-v-52168252]:not(first-child){margin-left:82%!important}.col-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-52168252]:first-child{margin-left:0}.col-no-margin-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-52168252]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-52168252]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-52168252]:first-child{margin-left:0}.col-no-margin-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-52168252]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-52168252]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-52168252]:first-child{margin-left:0}.col-offset-s-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-52168252]:first-child{margin-left:0}.col-offset-s-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-52168252]:first-child{margin-left:0}.col-offset-s-3[data-v-52168252]{margin-left:26%}.col-no-margin-s-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-52168252]:first-child{margin-left:0}.col-offset-s-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-52168252]:first-child{margin-left:0}.col-offset-s-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-52168252]:first-child{margin-left:0}.col-offset-s-6[data-v-52168252]{margin-left:52%}.col-no-margin-s-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-52168252]:first-child{margin-left:0}.col-offset-s-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-52168252]:first-child{margin-left:0}.col-offset-s-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-52168252]:first-child{margin-left:0}.col-offset-s-9[data-v-52168252]{margin-left:78%}.col-no-margin-s-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-52168252]:first-child{margin-left:0}.col-offset-s-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-52168252]:first-child{margin-left:0}.col-offset-s-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-s-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-52168252]{display:none!important}.s-visible[data-v-52168252]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-52168252]:first-child{margin-left:0}.col-offset-m-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-52168252]:first-child{margin-left:0}.col-offset-m-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-52168252]:first-child{margin-left:0}.col-offset-m-3[data-v-52168252]{margin-left:26%}.col-no-margin-m-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-52168252]:first-child{margin-left:0}.col-offset-m-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-52168252]:first-child{margin-left:0}.col-offset-m-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-52168252]:first-child{margin-left:0}.col-offset-m-6[data-v-52168252]{margin-left:52%}.col-no-margin-m-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-52168252]:first-child{margin-left:0}.col-offset-m-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-52168252]:first-child{margin-left:0}.col-offset-m-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-52168252]:first-child{margin-left:0}.col-offset-m-9[data-v-52168252]{margin-left:78%}.col-no-margin-m-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-52168252]:first-child{margin-left:0}.col-offset-m-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-52168252]:first-child{margin-left:0}.col-offset-m-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-m-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-52168252]{display:none!important}.m-visible[data-v-52168252]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-52168252]:first-child{margin-left:0}.col-offset-l-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-52168252]:first-child{margin-left:0}.col-offset-l-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-52168252]:first-child{margin-left:0}.col-offset-l-3[data-v-52168252]{margin-left:26%}.col-no-margin-l-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-52168252]:first-child{margin-left:0}.col-offset-l-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-52168252]:first-child{margin-left:0}.col-offset-l-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-52168252]:first-child{margin-left:0}.col-offset-l-6[data-v-52168252]{margin-left:52%}.col-no-margin-l-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-52168252]:first-child{margin-left:0}.col-offset-l-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-52168252]:first-child{margin-left:0}.col-offset-l-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-52168252]:first-child{margin-left:0}.col-offset-l-9[data-v-52168252]{margin-left:78%}.col-no-margin-l-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-52168252]:first-child{margin-left:0}.col-offset-l-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-52168252]:first-child{margin-left:0}.col-offset-l-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-l-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-52168252]{display:none!important}.l-visible[data-v-52168252]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-3[data-v-52168252]{margin-left:26%}.col-no-margin-xl-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-6[data-v-52168252]{margin-left:52%}.col-no-margin-xl-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-9[data-v-52168252]{margin-left:78%}.col-no-margin-xl-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-52168252]:first-child{margin-left:0}.col-offset-xl-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-52168252]{display:none!important}.xl-visible[data-v-52168252]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-52168252]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-1[data-v-52168252]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-52168252]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-52168252]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-2[data-v-52168252]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-52168252]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-52168252]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-3[data-v-52168252]{margin-left:26%}.col-no-margin-xxl-3[data-v-52168252]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-52168252]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-4[data-v-52168252]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-52168252]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-52168252]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-5[data-v-52168252]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-52168252]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-52168252]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-6[data-v-52168252]{margin-left:52%}.col-no-margin-xxl-6[data-v-52168252]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-52168252]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-7[data-v-52168252]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-52168252]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-52168252]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-8[data-v-52168252]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-52168252]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-52168252]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-9[data-v-52168252]{margin-left:78%}.col-no-margin-xxl-9[data-v-52168252]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-52168252]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-10[data-v-52168252]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-52168252]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-52168252]:first-child{margin-left:0}.col-offset-xxl-11[data-v-52168252]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-52168252]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-52168252]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-52168252]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-52168252]{display:none!important}.xxl-visible[data-v-52168252]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-52168252]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-52168252]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-52168252]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-52168252]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-52168252]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-52168252]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-52168252]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-52168252]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-52168252]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-52168252]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-52168252]{display:none!important}}.vertical-center[data-v-52168252]{display:flex;align-items:center}.horizontal-center[data-v-52168252]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-52168252]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-52168252]{display:none!important}.no-content[data-v-52168252]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-52168252]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-52168252]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-52168252]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-52168252]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-52168252]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-52168252]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-52168252],.btn[data-v-52168252],button[data-v-52168252]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-52168252],.btn-default[type=submit][data-v-52168252],.btn.btn-primary[data-v-52168252],.btn[type=submit][data-v-52168252],button.btn-primary[data-v-52168252],button[type=submit][data-v-52168252]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-52168252]:hover,.btn[data-v-52168252]:hover,button[data-v-52168252]:hover{color:#35b870}.btn .icon[data-v-52168252],.btn-default .icon[data-v-52168252],button .icon[data-v-52168252]{margin-right:.5em}.btn-default[data-v-52168252]:disabled,.btn-default[disabled][data-v-52168252],.btn[data-v-52168252]:disabled,.btn[disabled][data-v-52168252],button[data-v-52168252]:disabled,button[disabled][data-v-52168252]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-52168252]{cursor:grab!important}.dragged[data-v-52168252]{opacity:.5!important}input[type=password][data-v-52168252],input[type=text][data-v-52168252]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-52168252]:focus,input[type=text][data-v-52168252]:focus{border:1px solid #35b870}button[data-v-52168252],input[data-v-52168252]{outline:none}input[type=text][data-v-52168252]:hover,textarea[data-v-52168252]:hover{border:1px solid #9cdfb0}ul[data-v-52168252]{margin:0;padding:0;list-style:none}a[data-v-52168252]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-52168252]:hover{color:#35b870}[data-v-52168252]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-52168252]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-52168252]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-52168252]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-52168252]{color:#ad1717}body[data-v-52168252]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-52168252] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-52168252] .nav .path{cursor:pointer}.browser[data-v-52168252] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-52168252] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-52168252]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-52168252]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-52168252],input[type=number][data-v-52168252],input[type=password][data-v-52168252],input[type=search][data-v-52168252],input[type=text][data-v-52168252],input[type=time][data-v-52168252]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-52168252]:hover,input[type=number][data-v-52168252]:hover,input[type=password][data-v-52168252]:hover,input[type=search][data-v-52168252]:hover,input[type=text][data-v-52168252]:hover,input[type=time][data-v-52168252]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-52168252]:focus,input[type=number][data-v-52168252]:focus,input[type=password][data-v-52168252]:focus,input[type=search][data-v-52168252]:focus,input[type=text][data-v-52168252]:focus,input[type=time][data-v-52168252]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-52168252],input[type=number].with-icon[data-v-52168252],input[type=password].with-icon[data-v-52168252],input[type=search].with-icon[data-v-52168252],input[type=text].with-icon[data-v-52168252],input[type=time].with-icon[data-v-52168252]{padding-left:.3em}input[type=search][data-v-52168252],input[type=text][data-v-52168252]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-52168252]{animation-fill-mode:both;animation-name:fadeIn-52168252;-webkit-animation-name:fadeIn-52168252}.fade-in[data-v-52168252],.fade-out[data-v-52168252]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-52168252]{animation-fill-mode:both;animation-name:fadeOut-52168252;-webkit-animation-name:fadeOut-52168252}.expand[data-v-52168252]{animation-fill-mode:both;animation-name:expand-52168252;-webkit-animation-name:expand-52168252}.expand[data-v-52168252],.shrink[data-v-52168252]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-52168252]{animation-fill-mode:both;animation-name:shrink-52168252;-webkit-animation-name:shrink-52168252}.fold[data-v-52168252]{animation-fill-mode:both;animation-name:fold-52168252;-webkit-animation-name:fold-52168252}.fold[data-v-52168252],.unfold[data-v-52168252]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-52168252]{animation-fill-mode:both;animation-name:unfold-52168252;-webkit-animation-name:unfold-52168252}.dim[data-v-52168252]{animation-fill-mode:both;animation-name:dim-52168252;-webkit-animation-name:dim-52168252}.brighten[data-v-52168252],.dim[data-v-52168252]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-52168252]{animation-fill-mode:both;animation-name:brighten-52168252;-webkit-animation-name:brighten-52168252}@keyframes fadeIn-52168252{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-52168252{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-52168252{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-52168252{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-52168252{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-52168252{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-52168252{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-52168252{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-52168252]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-52168252;-webkit-animation-name:glow-52168252}.loop[data-v-52168252]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-52168252{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-52168252]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-52168252]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-52168252]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.expanded .name[data-v-52168252]{font-size:1.25em}.col-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-981c5de0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-981c5de0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-981c5de0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-981c5de0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-981c5de0]:first-child{margin-left:26%!important}.col-offset-3[data-v-981c5de0]:not(first-child){margin-left:30%!important}.col-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-981c5de0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-981c5de0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-981c5de0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-981c5de0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-981c5de0]:first-child{margin-left:52%!important}.col-offset-6[data-v-981c5de0]:not(first-child){margin-left:56%!important}.col-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-981c5de0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-981c5de0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-981c5de0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-981c5de0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-981c5de0]:first-child{margin-left:78%!important}.col-offset-9[data-v-981c5de0]:not(first-child){margin-left:82%!important}.col-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-981c5de0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-981c5de0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-981c5de0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-981c5de0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-s-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-s-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-s-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-s-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-981c5de0]{display:none!important}.s-visible[data-v-981c5de0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-m-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-m-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-m-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-m-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-981c5de0]{display:none!important}.m-visible[data-v-981c5de0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-l-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-l-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-l-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-l-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-981c5de0]{display:none!important}.l-visible[data-v-981c5de0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-xl-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-xl-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-xl-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xl-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-981c5de0]{display:none!important}.xl-visible[data-v-981c5de0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-981c5de0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-981c5de0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-981c5de0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-981c5de0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-981c5de0]{margin-left:26%}.col-no-margin-xxl-3[data-v-981c5de0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-981c5de0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-981c5de0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-981c5de0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-981c5de0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-981c5de0]{margin-left:52%}.col-no-margin-xxl-6[data-v-981c5de0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-981c5de0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-981c5de0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-981c5de0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-981c5de0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-981c5de0]{margin-left:78%}.col-no-margin-xxl-9[data-v-981c5de0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-981c5de0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-981c5de0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-981c5de0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-981c5de0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-981c5de0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-981c5de0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-981c5de0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-981c5de0]{display:none!important}.xxl-visible[data-v-981c5de0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-981c5de0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-981c5de0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-981c5de0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-981c5de0]{display:none!important}}.vertical-center[data-v-981c5de0]{display:flex;align-items:center}.horizontal-center[data-v-981c5de0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-981c5de0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-981c5de0]{display:none!important}.no-content[data-v-981c5de0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-981c5de0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-981c5de0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-981c5de0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-981c5de0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-981c5de0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-981c5de0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-981c5de0],.btn[data-v-981c5de0],button[data-v-981c5de0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-981c5de0],.btn-default[type=submit][data-v-981c5de0],.btn.btn-primary[data-v-981c5de0],.btn[type=submit][data-v-981c5de0],button.btn-primary[data-v-981c5de0],button[type=submit][data-v-981c5de0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-981c5de0]:hover,.btn[data-v-981c5de0]:hover,button[data-v-981c5de0]:hover{color:#35b870}.btn .icon[data-v-981c5de0],.btn-default .icon[data-v-981c5de0],button .icon[data-v-981c5de0]{margin-right:.5em}.btn-default[data-v-981c5de0]:disabled,.btn-default[disabled][data-v-981c5de0],.btn[data-v-981c5de0]:disabled,.btn[disabled][data-v-981c5de0],button[data-v-981c5de0]:disabled,button[disabled][data-v-981c5de0]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-981c5de0]{cursor:grab!important}.dragged[data-v-981c5de0]{opacity:.5!important}input[type=password][data-v-981c5de0],input[type=text][data-v-981c5de0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-981c5de0]:focus,input[type=text][data-v-981c5de0]:focus{border:1px solid #35b870}button[data-v-981c5de0],input[data-v-981c5de0]{outline:none}input[type=text][data-v-981c5de0]:hover,textarea[data-v-981c5de0]:hover{border:1px solid #9cdfb0}ul[data-v-981c5de0]{margin:0;padding:0;list-style:none}a[data-v-981c5de0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-981c5de0]:hover{color:#35b870}[data-v-981c5de0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-981c5de0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-981c5de0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-981c5de0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-981c5de0]{color:#ad1717}body[data-v-981c5de0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-981c5de0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-981c5de0] .nav .path{cursor:pointer}.browser[data-v-981c5de0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-981c5de0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-981c5de0]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-981c5de0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-981c5de0],input[type=number][data-v-981c5de0],input[type=password][data-v-981c5de0],input[type=search][data-v-981c5de0],input[type=text][data-v-981c5de0],input[type=time][data-v-981c5de0]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-981c5de0]:hover,input[type=number][data-v-981c5de0]:hover,input[type=password][data-v-981c5de0]:hover,input[type=search][data-v-981c5de0]:hover,input[type=text][data-v-981c5de0]:hover,input[type=time][data-v-981c5de0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-981c5de0]:focus,input[type=number][data-v-981c5de0]:focus,input[type=password][data-v-981c5de0]:focus,input[type=search][data-v-981c5de0]:focus,input[type=text][data-v-981c5de0]:focus,input[type=time][data-v-981c5de0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-981c5de0],input[type=number].with-icon[data-v-981c5de0],input[type=password].with-icon[data-v-981c5de0],input[type=search].with-icon[data-v-981c5de0],input[type=text].with-icon[data-v-981c5de0],input[type=time].with-icon[data-v-981c5de0]{padding-left:.3em}input[type=search][data-v-981c5de0],input[type=text][data-v-981c5de0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-981c5de0]{animation-fill-mode:both;animation-name:fadeIn-981c5de0;-webkit-animation-name:fadeIn-981c5de0}.fade-in[data-v-981c5de0],.fade-out[data-v-981c5de0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-981c5de0]{animation-fill-mode:both;animation-name:fadeOut-981c5de0;-webkit-animation-name:fadeOut-981c5de0}.expand[data-v-981c5de0]{animation-fill-mode:both;animation-name:expand-981c5de0;-webkit-animation-name:expand-981c5de0}.expand[data-v-981c5de0],.shrink[data-v-981c5de0]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-981c5de0]{animation-fill-mode:both;animation-name:shrink-981c5de0;-webkit-animation-name:shrink-981c5de0}.fold[data-v-981c5de0]{animation-fill-mode:both;animation-name:fold-981c5de0;-webkit-animation-name:fold-981c5de0}.fold[data-v-981c5de0],.unfold[data-v-981c5de0]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-981c5de0]{animation-fill-mode:both;animation-name:unfold-981c5de0;-webkit-animation-name:unfold-981c5de0}.dim[data-v-981c5de0]{animation-fill-mode:both;animation-name:dim-981c5de0;-webkit-animation-name:dim-981c5de0}.brighten[data-v-981c5de0],.dim[data-v-981c5de0]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-981c5de0]{animation-fill-mode:both;animation-name:brighten-981c5de0;-webkit-animation-name:brighten-981c5de0}@keyframes fadeIn-981c5de0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-981c5de0{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-981c5de0{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-981c5de0{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-981c5de0{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-981c5de0{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-981c5de0{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-981c5de0{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-981c5de0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-981c5de0;-webkit-animation-name:glow-981c5de0}.loop[data-v-981c5de0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-981c5de0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-981c5de0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-981c5de0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-981c5de0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.range-wrapper[data-v-981c5de0]{width:100%;position:relative}.range-wrapper input[type=range][data-v-981c5de0]{width:100%;position:absolute;left:0;bottom:0;outline:none;-webkit-appearance:none;-o-appearance:none;-moz-appearance:none;appearance:none}.range-wrapper input[type=range][data-v-981c5de0]:focus,.range-wrapper input[type=range][data-v-981c5de0]:hover{outline:none;border:0}.range-wrapper input[type=range][data-v-981c5de0]::-webkit-slider-runnable-track{width:100%;height:.75em;cursor:pointer;animate:.2s;background:#e4e4e4;border-radius:.5em;box-shadow:inset 1px 0 3px 0 #a5a2a2;border:0}.range-wrapper input[type=range][data-v-981c5de0]::-moz-range-track{width:100%;height:.75em;cursor:pointer;animate:.2s;background:#e4e4e4;border-radius:.5em;box-shadow:inset 1px 0 3px 0 #a5a2a2;border:0}.range-wrapper input[type=range][data-v-981c5de0]::-ms-track{width:100%;height:.75em;cursor:pointer;animate:.2s;background:transparent;border-color:transparent;color:transparent}.range-wrapper input[type=range][data-v-981c5de0]::-ms-fill-lower,.range-wrapper input[type=range][data-v-981c5de0]::-ms-fill-upper{background:#00d750;border-radius:1px;box-shadow:none;border:0}.range-wrapper input[type=range][data-v-981c5de0]::-webkit-slider-thumb{width:1.25em;height:1.25em;background:#37d560;position:relative;z-index:2;border-radius:50%;box-shadow:1px 0 2px 0 #475c40;cursor:pointer;-webkit-appearance:none;-o-appearance:none;appearance:none;margin-top:-.25em}.range-wrapper input[type=range][data-v-981c5de0]::-moz-range-thumb{width:1.25em;height:1.25em;background:#37d560;position:relative;z-index:2;border-radius:50%;box-shadow:1px 0 2px 0 #475c40;cursor:pointer}.range-wrapper input[type=range][data-v-981c5de0]::-ms-thumb{width:1.25em;height:1.25em;background:#37d560;position:relative;z-index:2;border-radius:50%;box-shadow:1px 0 2px 0 #475c40;cursor:pointer}.col-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-44c83513]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-44c83513]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-44c83513]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-44c83513]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-44c83513]:first-child{margin-left:26%!important}.col-offset-3[data-v-44c83513]:not(first-child){margin-left:30%!important}.col-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-44c83513]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-44c83513]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-44c83513]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-44c83513]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-44c83513]:first-child{margin-left:52%!important}.col-offset-6[data-v-44c83513]:not(first-child){margin-left:56%!important}.col-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-44c83513]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-44c83513]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-44c83513]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-44c83513]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-44c83513]:first-child{margin-left:78%!important}.col-offset-9[data-v-44c83513]:not(first-child){margin-left:82%!important}.col-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-44c83513]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-44c83513]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-44c83513]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-44c83513]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-3[data-v-44c83513]{margin-left:26%}.col-no-margin-s-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-6[data-v-44c83513]{margin-left:52%}.col-no-margin-s-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-9[data-v-44c83513]{margin-left:78%}.col-no-margin-s-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-s-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-s-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-44c83513]{display:none!important}.s-visible[data-v-44c83513]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-3[data-v-44c83513]{margin-left:26%}.col-no-margin-m-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-6[data-v-44c83513]{margin-left:52%}.col-no-margin-m-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-9[data-v-44c83513]{margin-left:78%}.col-no-margin-m-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-m-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-m-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-44c83513]{display:none!important}.m-visible[data-v-44c83513]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-3[data-v-44c83513]{margin-left:26%}.col-no-margin-l-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-6[data-v-44c83513]{margin-left:52%}.col-no-margin-l-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-9[data-v-44c83513]{margin-left:78%}.col-no-margin-l-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-l-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-l-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-44c83513]{display:none!important}.l-visible[data-v-44c83513]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-3[data-v-44c83513]{margin-left:26%}.col-no-margin-xl-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-6[data-v-44c83513]{margin-left:52%}.col-no-margin-xl-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-9[data-v-44c83513]{margin-left:78%}.col-no-margin-xl-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-xl-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-44c83513]{display:none!important}.xl-visible[data-v-44c83513]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-44c83513]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-1[data-v-44c83513]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-44c83513]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-44c83513]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-2[data-v-44c83513]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-44c83513]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-44c83513]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-3[data-v-44c83513]{margin-left:26%}.col-no-margin-xxl-3[data-v-44c83513]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-44c83513]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-4[data-v-44c83513]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-44c83513]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-44c83513]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-5[data-v-44c83513]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-44c83513]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-44c83513]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-6[data-v-44c83513]{margin-left:52%}.col-no-margin-xxl-6[data-v-44c83513]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-44c83513]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-7[data-v-44c83513]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-44c83513]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-44c83513]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-8[data-v-44c83513]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-44c83513]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-44c83513]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-9[data-v-44c83513]{margin-left:78%}.col-no-margin-xxl-9[data-v-44c83513]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-44c83513]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-10[data-v-44c83513]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-44c83513]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-44c83513]:first-child{margin-left:0}.col-offset-xxl-11[data-v-44c83513]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-44c83513]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-44c83513]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-44c83513]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-44c83513]{display:none!important}.xxl-visible[data-v-44c83513]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-44c83513]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-44c83513]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-44c83513]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-44c83513]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-44c83513]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-44c83513]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-44c83513]{display:none!important}}.vertical-center[data-v-44c83513]{display:flex;align-items:center}.horizontal-center[data-v-44c83513]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-44c83513]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-44c83513]{display:none!important}.no-content[data-v-44c83513]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-44c83513]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-44c83513]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-44c83513]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-44c83513]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-44c83513]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-44c83513]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-44c83513],.btn[data-v-44c83513],button[data-v-44c83513]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-44c83513],.btn-default[type=submit][data-v-44c83513],.btn.btn-primary[data-v-44c83513],.btn[type=submit][data-v-44c83513],button.btn-primary[data-v-44c83513],button[type=submit][data-v-44c83513]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-44c83513]:hover,.btn[data-v-44c83513]:hover,button[data-v-44c83513]:hover{color:#35b870}.btn .icon[data-v-44c83513],.btn-default .icon[data-v-44c83513],button .icon[data-v-44c83513]{margin-right:.5em}.btn-default[data-v-44c83513]:disabled,.btn-default[disabled][data-v-44c83513],.btn[data-v-44c83513]:disabled,.btn[disabled][data-v-44c83513],button[data-v-44c83513]:disabled,button[disabled][data-v-44c83513]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-44c83513]{cursor:grab!important}.dragged[data-v-44c83513]{opacity:.5!important}input[type=password][data-v-44c83513],input[type=text][data-v-44c83513]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-44c83513]:focus,input[type=text][data-v-44c83513]:focus{border:1px solid #35b870}button[data-v-44c83513],input[data-v-44c83513]{outline:none}input[type=text][data-v-44c83513]:hover,textarea[data-v-44c83513]:hover{border:1px solid #9cdfb0}ul[data-v-44c83513]{margin:0;padding:0;list-style:none}a[data-v-44c83513]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-44c83513]:hover{color:#35b870}[data-v-44c83513]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-44c83513]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-44c83513]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-44c83513]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-44c83513]{color:#ad1717}body[data-v-44c83513]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-44c83513] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-44c83513] .nav .path{cursor:pointer}.browser[data-v-44c83513] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-44c83513] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-44c83513]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-44c83513]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-44c83513],input[type=number][data-v-44c83513],input[type=password][data-v-44c83513],input[type=search][data-v-44c83513],input[type=text][data-v-44c83513],input[type=time][data-v-44c83513]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-44c83513]:hover,input[type=number][data-v-44c83513]:hover,input[type=password][data-v-44c83513]:hover,input[type=search][data-v-44c83513]:hover,input[type=text][data-v-44c83513]:hover,input[type=time][data-v-44c83513]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-44c83513]:focus,input[type=number][data-v-44c83513]:focus,input[type=password][data-v-44c83513]:focus,input[type=search][data-v-44c83513]:focus,input[type=text][data-v-44c83513]:focus,input[type=time][data-v-44c83513]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-44c83513],input[type=number].with-icon[data-v-44c83513],input[type=password].with-icon[data-v-44c83513],input[type=search].with-icon[data-v-44c83513],input[type=text].with-icon[data-v-44c83513],input[type=time].with-icon[data-v-44c83513]{padding-left:.3em}input[type=search][data-v-44c83513],input[type=text][data-v-44c83513]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-44c83513]{animation-fill-mode:both;animation-name:fadeIn-44c83513;-webkit-animation-name:fadeIn-44c83513}.fade-in[data-v-44c83513],.fade-out[data-v-44c83513]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-44c83513]{animation-fill-mode:both;animation-name:fadeOut-44c83513;-webkit-animation-name:fadeOut-44c83513}.expand[data-v-44c83513]{animation-fill-mode:both;animation-name:expand-44c83513;-webkit-animation-name:expand-44c83513}.expand[data-v-44c83513],.shrink[data-v-44c83513]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-44c83513]{animation-fill-mode:both;animation-name:shrink-44c83513;-webkit-animation-name:shrink-44c83513}.fold[data-v-44c83513]{animation-fill-mode:both;animation-name:fold-44c83513;-webkit-animation-name:fold-44c83513}.fold[data-v-44c83513],.unfold[data-v-44c83513]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-44c83513]{animation-fill-mode:both;animation-name:unfold-44c83513;-webkit-animation-name:unfold-44c83513}.dim[data-v-44c83513]{animation-fill-mode:both;animation-name:dim-44c83513;-webkit-animation-name:dim-44c83513}.brighten[data-v-44c83513],.dim[data-v-44c83513]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-44c83513]{animation-fill-mode:both;animation-name:brighten-44c83513;-webkit-animation-name:brighten-44c83513}@keyframes fadeIn-44c83513{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-44c83513{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-44c83513{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-44c83513{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-44c83513{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-44c83513{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-44c83513{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-44c83513{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-44c83513]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-44c83513;-webkit-animation-name:glow-44c83513}.loop[data-v-44c83513]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-44c83513{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-44c83513]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-44c83513]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-44c83513]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.animation-container[data-v-44c83513]{width:100%}.animation-container .animation-header[data-v-44c83513],.animation-container .animation[data-v-44c83513]{padding-bottom:.5em;margin-bottom:.5em;box-shadow:0 3px 2px -1px silver}.controls[data-v-44c83513]{width:100%;display:flex;flex-direction:column;align-items:center;margin-top:2.25em;background:#fff;padding:.5em 1em;border-radius:1em;box-shadow:0 0 2px 2px #ccc}.controls .selector[data-v-44c83513]{width:100%}.controls .row[data-v-44c83513]{width:100%;display:flex;align-items:center;padding:.5em 0}.controls .row>div[data-v-44c83513]:last-child{text-align:right}.controls .control[data-v-44c83513]{padding-top:.25em}.controls .lights[data-v-44c83513]{padding-top:.5em;width:100%}.controls .lights .row[data-v-44c83513]{display:flex;align-items:center}.controls .lights label[data-v-44c83513]{width:100%}.light-group-container{width:100%;min-height:100%}.light-group-container .row.panel-row{flex-direction:column}.light-group-container .row.panel-row.expanded,.light-group-container .row.panel-row.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.light-group-container .header{padding:.5em!important;display:flex;align-items:center}.light-group-container .header .back-btn{border:0;background:none}.light-group-container .header .back-btn:hover{border:0;color:#35b870}.light-group-container .header .name{text-align:center}.light-group-container .header .name.selected{color:#32b646}.light-group-container .header .name:hover{color:#35b870}.light-group-container .view-selector{width:100%;border-radius:0}.light-group-container .view-selector button{width:33.3%;padding:1.5em;text-align:left;opacity:.8;box-shadow:1px 0 1px 1px #ddd;border-right:0}.light-group-container .view-selector button.selected{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.light-group-container .view-selector button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.light-group-container .view-selector .icon{width:100%;text-align:center;font-size:1.2em}.light-group-container .group-controls{margin:0;padding:1em;background-color:#e4eae8;border-radius:0 0 1em 1em}.light-group-container .group-controls .controls{margin:0;padding:1em}.col-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-781dd72c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-781dd72c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-781dd72c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-781dd72c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-781dd72c]:first-child{margin-left:26%!important}.col-offset-3[data-v-781dd72c]:not(first-child){margin-left:30%!important}.col-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-781dd72c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-781dd72c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-781dd72c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-781dd72c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-781dd72c]:first-child{margin-left:52%!important}.col-offset-6[data-v-781dd72c]:not(first-child){margin-left:56%!important}.col-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-781dd72c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-781dd72c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-781dd72c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-781dd72c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-781dd72c]:first-child{margin-left:78%!important}.col-offset-9[data-v-781dd72c]:not(first-child){margin-left:82%!important}.col-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-781dd72c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-781dd72c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-781dd72c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-781dd72c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-s-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-s-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-s-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-s-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-781dd72c]{display:none!important}.s-visible[data-v-781dd72c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-m-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-m-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-m-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-m-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-781dd72c]{display:none!important}.m-visible[data-v-781dd72c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-l-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-l-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-l-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-l-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-781dd72c]{display:none!important}.l-visible[data-v-781dd72c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-xl-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-xl-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-xl-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xl-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-781dd72c]{display:none!important}.xl-visible[data-v-781dd72c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-781dd72c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-781dd72c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-781dd72c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-781dd72c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-781dd72c]{margin-left:26%}.col-no-margin-xxl-3[data-v-781dd72c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-781dd72c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-781dd72c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-781dd72c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-781dd72c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-781dd72c]{margin-left:52%}.col-no-margin-xxl-6[data-v-781dd72c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-781dd72c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-781dd72c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-781dd72c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-781dd72c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-781dd72c]{margin-left:78%}.col-no-margin-xxl-9[data-v-781dd72c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-781dd72c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-781dd72c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-781dd72c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-781dd72c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-781dd72c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-781dd72c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-781dd72c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-781dd72c]{display:none!important}.xxl-visible[data-v-781dd72c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-781dd72c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-781dd72c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-781dd72c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-781dd72c]{display:none!important}}.vertical-center[data-v-781dd72c]{display:flex;align-items:center}.horizontal-center[data-v-781dd72c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-781dd72c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-781dd72c]{display:none!important}.no-content[data-v-781dd72c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-781dd72c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-781dd72c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-781dd72c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-781dd72c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-781dd72c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-781dd72c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-781dd72c],.btn[data-v-781dd72c],button[data-v-781dd72c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-781dd72c],.btn-default[type=submit][data-v-781dd72c],.btn.btn-primary[data-v-781dd72c],.btn[type=submit][data-v-781dd72c],button.btn-primary[data-v-781dd72c],button[type=submit][data-v-781dd72c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-781dd72c]:hover,.btn[data-v-781dd72c]:hover,button[data-v-781dd72c]:hover{color:#35b870}.btn .icon[data-v-781dd72c],.btn-default .icon[data-v-781dd72c],button .icon[data-v-781dd72c]{margin-right:.5em}.btn-default[data-v-781dd72c]:disabled,.btn-default[disabled][data-v-781dd72c],.btn[data-v-781dd72c]:disabled,.btn[disabled][data-v-781dd72c],button[data-v-781dd72c]:disabled,button[disabled][data-v-781dd72c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-781dd72c]{cursor:grab!important}.dragged[data-v-781dd72c]{opacity:.5!important}input[type=password][data-v-781dd72c],input[type=text][data-v-781dd72c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-781dd72c]:focus,input[type=text][data-v-781dd72c]:focus{border:1px solid #35b870}button[data-v-781dd72c],input[data-v-781dd72c]{outline:none}input[type=text][data-v-781dd72c]:hover,textarea[data-v-781dd72c]:hover{border:1px solid #9cdfb0}ul[data-v-781dd72c]{margin:0;padding:0;list-style:none}a[data-v-781dd72c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-781dd72c]:hover{color:#35b870}[data-v-781dd72c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-781dd72c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-781dd72c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-781dd72c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-781dd72c]{color:#ad1717}body[data-v-781dd72c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-781dd72c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-781dd72c] .nav .path{cursor:pointer}.browser[data-v-781dd72c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-781dd72c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-781dd72c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-781dd72c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-781dd72c],input[type=number][data-v-781dd72c],input[type=password][data-v-781dd72c],input[type=search][data-v-781dd72c],input[type=text][data-v-781dd72c],input[type=time][data-v-781dd72c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-781dd72c]:hover,input[type=number][data-v-781dd72c]:hover,input[type=password][data-v-781dd72c]:hover,input[type=search][data-v-781dd72c]:hover,input[type=text][data-v-781dd72c]:hover,input[type=time][data-v-781dd72c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-781dd72c]:focus,input[type=number][data-v-781dd72c]:focus,input[type=password][data-v-781dd72c]:focus,input[type=search][data-v-781dd72c]:focus,input[type=text][data-v-781dd72c]:focus,input[type=time][data-v-781dd72c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-781dd72c],input[type=number].with-icon[data-v-781dd72c],input[type=password].with-icon[data-v-781dd72c],input[type=search].with-icon[data-v-781dd72c],input[type=text].with-icon[data-v-781dd72c],input[type=time].with-icon[data-v-781dd72c]{padding-left:.3em}input[type=search][data-v-781dd72c],input[type=text][data-v-781dd72c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-781dd72c]{animation-fill-mode:both;animation-name:fadeIn-781dd72c;-webkit-animation-name:fadeIn-781dd72c}.fade-in[data-v-781dd72c],.fade-out[data-v-781dd72c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-781dd72c]{animation-fill-mode:both;animation-name:fadeOut-781dd72c;-webkit-animation-name:fadeOut-781dd72c}.expand[data-v-781dd72c]{animation-fill-mode:both;animation-name:expand-781dd72c;-webkit-animation-name:expand-781dd72c}.expand[data-v-781dd72c],.shrink[data-v-781dd72c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-781dd72c]{animation-fill-mode:both;animation-name:shrink-781dd72c;-webkit-animation-name:shrink-781dd72c}.fold[data-v-781dd72c]{animation-fill-mode:both;animation-name:fold-781dd72c;-webkit-animation-name:fold-781dd72c}.fold[data-v-781dd72c],.unfold[data-v-781dd72c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-781dd72c]{animation-fill-mode:both;animation-name:unfold-781dd72c;-webkit-animation-name:unfold-781dd72c}.dim[data-v-781dd72c]{animation-fill-mode:both;animation-name:dim-781dd72c;-webkit-animation-name:dim-781dd72c}.brighten[data-v-781dd72c],.dim[data-v-781dd72c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-781dd72c]{animation-fill-mode:both;animation-name:brighten-781dd72c;-webkit-animation-name:brighten-781dd72c}@keyframes fadeIn-781dd72c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-781dd72c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-781dd72c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-781dd72c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-781dd72c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-781dd72c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-781dd72c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-781dd72c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-781dd72c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-781dd72c;-webkit-animation-name:glow-781dd72c}.loop[data-v-781dd72c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-781dd72c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-781dd72c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-781dd72c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-781dd72c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.plugin[data-v-781dd72c]{width:100%;height:100%;display:flex}.panel[data-v-781dd72c]{width:100%;height:100%;box-shadow:none;overflow:auto}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.lights-plugin .menu-panel ul li:not(.header){padding:1.5em 1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/980.96973824.css b/platypush/backend/http/webapp/dist/static/css/980.0ae4451e.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/980.96973824.css rename to platypush/backend/http/webapp/dist/static/css/980.0ae4451e.css index 4bd50b80df..fcb541a0ae 100644 --- a/platypush/backend/http/webapp/dist/static/css/980.96973824.css +++ b/platypush/backend/http/webapp/dist/static/css/980.0ae4451e.css @@ -1 +1 @@ -.col-1[data-v-6d7f09ba],.entity .head .icon[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6d7f09ba]:first-child,.entity .head .icon[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6d7f09ba]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6d7f09ba]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6d7f09ba]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6d7f09ba]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6d7f09ba],.entity .head .value-and-toggler[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6d7f09ba]:first-child,.entity .head .value-and-toggler[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6d7f09ba]:first-child{margin-left:26%!important}.col-offset-3[data-v-6d7f09ba]:not(first-child){margin-left:30%!important}.col-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6d7f09ba]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6d7f09ba]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6d7f09ba]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6d7f09ba]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6d7f09ba]:first-child{margin-left:52%!important}.col-offset-6[data-v-6d7f09ba]:not(first-child){margin-left:56%!important}.col-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6d7f09ba]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6d7f09ba]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6d7f09ba]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6d7f09ba]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6d7f09ba]:first-child{margin-left:78%!important}.col-offset-9[data-v-6d7f09ba]:not(first-child){margin-left:82%!important}.col-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6d7f09ba]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6d7f09ba]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6d7f09ba]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6d7f09ba]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6d7f09ba],.entity .head .value-container[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6d7f09ba]:first-child,.entity .head .value-container[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-s-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-s-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6d7f09ba],.entity .head .label[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6d7f09ba]:first-child,.entity .head .label[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-s-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-6d7f09ba],.attributes .child .value[data-v-6d7f09ba],.col-s-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-6d7f09ba]:first-child,.attributes .child .value[data-v-6d7f09ba]:first-child,.col-s-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6d7f09ba]{display:none!important}.s-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6d7f09ba],.entity .head .value-container[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6d7f09ba]:first-child,.entity .head .value-container[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-m-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-6d7f09ba],.attributes .child .value[data-v-6d7f09ba],.col-m-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-6d7f09ba]:first-child,.attributes .child .value[data-v-6d7f09ba]:first-child,.col-m-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-m-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6d7f09ba],.entity .head .label[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6d7f09ba]:first-child,.entity .head .label[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-m-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6d7f09ba]{display:none!important}.m-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-l-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-l-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-l-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6d7f09ba]{display:none!important}.l-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-xl-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-xl-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-xl-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6d7f09ba]{display:none!important}.xl-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-xxl-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-xxl-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-xxl-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6d7f09ba]{display:none!important}.xxl-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6d7f09ba]{display:none!important}}.vertical-center[data-v-6d7f09ba]{display:flex;align-items:center}.horizontal-center[data-v-6d7f09ba]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-6d7f09ba],.pull-right[data-v-6d7f09ba]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6d7f09ba]{display:none!important}.no-content[data-v-6d7f09ba]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6d7f09ba]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6d7f09ba],.btn[data-v-6d7f09ba],button[data-v-6d7f09ba]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6d7f09ba],.btn-default[type=submit][data-v-6d7f09ba],.btn.btn-primary[data-v-6d7f09ba],.btn[type=submit][data-v-6d7f09ba],button.btn-primary[data-v-6d7f09ba],button[type=submit][data-v-6d7f09ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6d7f09ba],.btn-default .icon[data-v-6d7f09ba],button .icon[data-v-6d7f09ba]{margin-right:.5em}input[type=password][data-v-6d7f09ba],input[type=text][data-v-6d7f09ba]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6d7f09ba]:focus,input[type=text][data-v-6d7f09ba]:focus{border:1px solid #35b870}button[data-v-6d7f09ba],input[data-v-6d7f09ba]{outline:none}input[type=text][data-v-6d7f09ba]:hover,textarea[data-v-6d7f09ba]:hover{border:1px solid #9cdfb0}ul[data-v-6d7f09ba]{margin:0;padding:0;list-style:none}a[data-v-6d7f09ba]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6d7f09ba]:hover{color:#35b870}[data-v-6d7f09ba]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6d7f09ba]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6d7f09ba]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6d7f09ba]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6d7f09ba]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6d7f09ba] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6d7f09ba] .nav .path{cursor:pointer}.browser[data-v-6d7f09ba] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6d7f09ba] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-6d7f09ba]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6d7f09ba],input[type=number][data-v-6d7f09ba],input[type=password][data-v-6d7f09ba],input[type=search][data-v-6d7f09ba],input[type=text][data-v-6d7f09ba],input[type=time][data-v-6d7f09ba]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-6d7f09ba]:hover,input[type=number][data-v-6d7f09ba]:hover,input[type=password][data-v-6d7f09ba]:hover,input[type=search][data-v-6d7f09ba]:hover,input[type=text][data-v-6d7f09ba]:hover,input[type=time][data-v-6d7f09ba]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6d7f09ba]:focus,input[type=number][data-v-6d7f09ba]:focus,input[type=password][data-v-6d7f09ba]:focus,input[type=search][data-v-6d7f09ba]:focus,input[type=text][data-v-6d7f09ba]:focus,input[type=time][data-v-6d7f09ba]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6d7f09ba],input[type=number].with-icon[data-v-6d7f09ba],input[type=password].with-icon[data-v-6d7f09ba],input[type=search].with-icon[data-v-6d7f09ba],input[type=text].with-icon[data-v-6d7f09ba],input[type=time].with-icon[data-v-6d7f09ba]{padding-left:.3em}input[type=search][data-v-6d7f09ba],input[type=text][data-v-6d7f09ba]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-6d7f09ba],.fade-in[data-v-6d7f09ba]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-6d7f09ba;-webkit-animation-name:fadeIn-6d7f09ba}.fade-out[data-v-6d7f09ba]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-6d7f09ba;-webkit-animation-name:fadeOut-6d7f09ba}@keyframes fadeIn-6d7f09ba{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6d7f09ba{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-6d7f09ba]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6d7f09ba;-webkit-animation-name:glow-6d7f09ba}.loop[data-v-6d7f09ba]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6d7f09ba{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6d7f09ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6d7f09ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6d7f09ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-6d7f09ba]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-6d7f09ba]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-6d7f09ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-6d7f09ba]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-6d7f09ba]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-6d7f09ba]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-6d7f09ba]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-6d7f09ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-6d7f09ba]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-6d7f09ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-6d7f09ba]{margin-right:.5em}.entity .head .icon[data-v-6d7f09ba]:hover{color:#35b870}.entity .head .label[data-v-6d7f09ba]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-6d7f09ba]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-6d7f09ba]:hover{color:#35b870}.entity .head .value[data-v-6d7f09ba]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-6d7f09ba]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-6d7f09ba]{margin-right:2.5em}.entity .head .value-container[data-v-6d7f09ba]{min-width:7em}.entity .head .unit[data-v-6d7f09ba]{margin-left:.2em}.entity .head .pull-right[data-v-6d7f09ba],.entity .head .value-container[data-v-6d7f09ba]{padding-right:.5em}.entity .head .pull-right[data-v-6d7f09ba] .power-switch,.entity .head .value-container[data-v-6d7f09ba] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-6d7f09ba]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-6d7f09ba]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-6d7f09ba]:hover{color:#35b870}.collapse-toggler[data-v-6d7f09ba]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-6d7f09ba]:hover{color:#35b870}.attributes .child[data-v-6d7f09ba]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-6d7f09ba]{flex-direction:column}}.attributes .child[data-v-6d7f09ba]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-6d7f09ba]:hover{cursor:auto}.attributes .child.head[data-v-6d7f09ba]{cursor:pointer}.attributes .child.head[data-v-6d7f09ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-6d7f09ba]{font-weight:700}.attributes .child .value[data-v-6d7f09ba]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-6d7f09ba]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-6d7f09ba]:last-child,.entity-container-wrapper.with-children[data-v-6d7f09ba]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-6d7f09ba]{animation:blink-animation-6d7f09ba 1s steps(20,start)}@keyframes blink-animation-6d7f09ba{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.light-container .head .value-container button[data-v-6d7f09ba]{margin-right:.5em}.light-container .body .row[data-v-6d7f09ba]{display:flex;align-items:center;padding:.5em}.light-container .body .row .icon[data-v-6d7f09ba]{width:2em;margin-left:-.5em;text-align:center}.light-container .body .row .input[data-v-6d7f09ba]{width:calc(100% - 2em)}.light-container .body .row .input [type=color][data-v-6d7f09ba]{width:100%}.light-container .body .row .input[data-v-6d7f09ba] .slider{margin-top:.5em} \ No newline at end of file +.col-1[data-v-6d7f09ba],.entity .head .icon[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6d7f09ba]:first-child,.entity .head .icon[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6d7f09ba]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6d7f09ba]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6d7f09ba]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6d7f09ba]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6d7f09ba],.entity .head .value-and-toggler[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6d7f09ba]:first-child,.entity .head .value-and-toggler[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6d7f09ba]:first-child{margin-left:26%!important}.col-offset-3[data-v-6d7f09ba]:not(first-child){margin-left:30%!important}.col-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6d7f09ba]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6d7f09ba]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6d7f09ba]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6d7f09ba]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6d7f09ba]:first-child{margin-left:52%!important}.col-offset-6[data-v-6d7f09ba]:not(first-child){margin-left:56%!important}.col-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6d7f09ba]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6d7f09ba]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6d7f09ba]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6d7f09ba]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6d7f09ba]:first-child{margin-left:78%!important}.col-offset-9[data-v-6d7f09ba]:not(first-child){margin-left:82%!important}.col-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6d7f09ba]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6d7f09ba]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6d7f09ba]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6d7f09ba]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6d7f09ba],.entity .head .value-container[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6d7f09ba]:first-child,.entity .head .value-container[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-s-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-s-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6d7f09ba],.entity .head .label[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6d7f09ba]:first-child,.entity .head .label[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-s-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-s-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-6d7f09ba],.attributes .child .value[data-v-6d7f09ba],.col-s-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-6d7f09ba]:first-child,.attributes .child .value[data-v-6d7f09ba]:first-child,.col-s-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6d7f09ba]{display:none!important}.s-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6d7f09ba],.entity .head .value-container[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6d7f09ba]:first-child,.entity .head .value-container[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-m-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-6d7f09ba],.attributes .child .value[data-v-6d7f09ba],.col-m-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-6d7f09ba]:first-child,.attributes .child .value[data-v-6d7f09ba]:first-child,.col-m-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-m-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6d7f09ba],.entity .head .label[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6d7f09ba]:first-child,.entity .head .label[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-m-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-m-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6d7f09ba]{display:none!important}.m-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-l-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-l-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-l-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-l-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6d7f09ba]{display:none!important}.l-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-xl-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-xl-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-xl-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xl-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6d7f09ba]{display:none!important}.xl-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6d7f09ba]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6d7f09ba]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6d7f09ba]{margin-left:26%}.col-no-margin-xxl-3[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6d7f09ba]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6d7f09ba]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6d7f09ba]{margin-left:52%}.col-no-margin-xxl-6[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6d7f09ba]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6d7f09ba]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6d7f09ba]{margin-left:78%}.col-no-margin-xxl-9[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6d7f09ba]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6d7f09ba]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6d7f09ba]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6d7f09ba]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6d7f09ba]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6d7f09ba]{display:none!important}.xxl-visible[data-v-6d7f09ba]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6d7f09ba]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6d7f09ba]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6d7f09ba]{display:none!important}}.vertical-center[data-v-6d7f09ba]{display:flex;align-items:center}.horizontal-center[data-v-6d7f09ba]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-6d7f09ba],.pull-right[data-v-6d7f09ba]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6d7f09ba]{display:none!important}.no-content[data-v-6d7f09ba]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6d7f09ba]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6d7f09ba]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6d7f09ba],.btn[data-v-6d7f09ba],button[data-v-6d7f09ba]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6d7f09ba],.btn-default[type=submit][data-v-6d7f09ba],.btn.btn-primary[data-v-6d7f09ba],.btn[type=submit][data-v-6d7f09ba],button.btn-primary[data-v-6d7f09ba],button[type=submit][data-v-6d7f09ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-6d7f09ba]:hover,.btn[data-v-6d7f09ba]:hover,button[data-v-6d7f09ba]:hover{color:#35b870}.btn .icon[data-v-6d7f09ba],.btn-default .icon[data-v-6d7f09ba],button .icon[data-v-6d7f09ba]{margin-right:.5em}.btn-default[data-v-6d7f09ba]:disabled,.btn-default[disabled][data-v-6d7f09ba],.btn[data-v-6d7f09ba]:disabled,.btn[disabled][data-v-6d7f09ba],button[data-v-6d7f09ba]:disabled,button[disabled][data-v-6d7f09ba]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-6d7f09ba]{cursor:grab!important}.dragged[data-v-6d7f09ba]{opacity:.5!important}input[type=password][data-v-6d7f09ba],input[type=text][data-v-6d7f09ba]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6d7f09ba]:focus,input[type=text][data-v-6d7f09ba]:focus{border:1px solid #35b870}button[data-v-6d7f09ba],input[data-v-6d7f09ba]{outline:none}input[type=text][data-v-6d7f09ba]:hover,textarea[data-v-6d7f09ba]:hover{border:1px solid #9cdfb0}ul[data-v-6d7f09ba]{margin:0;padding:0;list-style:none}a[data-v-6d7f09ba]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6d7f09ba]:hover{color:#35b870}[data-v-6d7f09ba]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6d7f09ba]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6d7f09ba]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6d7f09ba]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-6d7f09ba]{color:#ad1717}body[data-v-6d7f09ba]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6d7f09ba] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6d7f09ba] .nav .path{cursor:pointer}.browser[data-v-6d7f09ba] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6d7f09ba] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-6d7f09ba]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-6d7f09ba]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6d7f09ba],input[type=number][data-v-6d7f09ba],input[type=password][data-v-6d7f09ba],input[type=search][data-v-6d7f09ba],input[type=text][data-v-6d7f09ba],input[type=time][data-v-6d7f09ba]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-6d7f09ba]:hover,input[type=number][data-v-6d7f09ba]:hover,input[type=password][data-v-6d7f09ba]:hover,input[type=search][data-v-6d7f09ba]:hover,input[type=text][data-v-6d7f09ba]:hover,input[type=time][data-v-6d7f09ba]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6d7f09ba]:focus,input[type=number][data-v-6d7f09ba]:focus,input[type=password][data-v-6d7f09ba]:focus,input[type=search][data-v-6d7f09ba]:focus,input[type=text][data-v-6d7f09ba]:focus,input[type=time][data-v-6d7f09ba]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6d7f09ba],input[type=number].with-icon[data-v-6d7f09ba],input[type=password].with-icon[data-v-6d7f09ba],input[type=search].with-icon[data-v-6d7f09ba],input[type=text].with-icon[data-v-6d7f09ba],input[type=time].with-icon[data-v-6d7f09ba]{padding-left:.3em}input[type=search][data-v-6d7f09ba],input[type=text][data-v-6d7f09ba]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-6d7f09ba],.fade-in[data-v-6d7f09ba]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-6d7f09ba;-webkit-animation-name:fadeIn-6d7f09ba}.fade-out[data-v-6d7f09ba]{animation-fill-mode:both;animation-name:fadeOut-6d7f09ba;-webkit-animation-name:fadeOut-6d7f09ba}.expand[data-v-6d7f09ba],.fade-out[data-v-6d7f09ba]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-6d7f09ba]{animation-fill-mode:both;animation-name:expand-6d7f09ba;-webkit-animation-name:expand-6d7f09ba}.shrink[data-v-6d7f09ba]{animation-fill-mode:both;animation-name:shrink-6d7f09ba;-webkit-animation-name:shrink-6d7f09ba}.fold[data-v-6d7f09ba],.shrink[data-v-6d7f09ba]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-6d7f09ba]{animation-fill-mode:both;animation-name:fold-6d7f09ba;-webkit-animation-name:fold-6d7f09ba}.unfold[data-v-6d7f09ba]{animation-fill-mode:both;animation-name:unfold-6d7f09ba;-webkit-animation-name:unfold-6d7f09ba}.dim[data-v-6d7f09ba],.unfold[data-v-6d7f09ba]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-6d7f09ba]{animation-fill-mode:both;animation-name:dim-6d7f09ba;-webkit-animation-name:dim-6d7f09ba}.brighten[data-v-6d7f09ba]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-6d7f09ba;-webkit-animation-name:brighten-6d7f09ba}@keyframes fadeIn-6d7f09ba{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6d7f09ba{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-6d7f09ba{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-6d7f09ba{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-6d7f09ba{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-6d7f09ba{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-6d7f09ba{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-6d7f09ba{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-6d7f09ba]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-6d7f09ba;-webkit-animation-name:glow-6d7f09ba}.loop[data-v-6d7f09ba]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-6d7f09ba{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-6d7f09ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6d7f09ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6d7f09ba]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-6d7f09ba]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-6d7f09ba]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-6d7f09ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-6d7f09ba]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-6d7f09ba]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-6d7f09ba]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-6d7f09ba]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-6d7f09ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-6d7f09ba]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-6d7f09ba]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-6d7f09ba]{margin-right:.5em}.entity .head .icon[data-v-6d7f09ba]:hover{color:#35b870}.entity .head .label[data-v-6d7f09ba]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-6d7f09ba]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-6d7f09ba]:hover{color:#35b870}.entity .head .value[data-v-6d7f09ba]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-6d7f09ba]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-6d7f09ba]{margin-right:2.5em}.entity .head .value-container[data-v-6d7f09ba]{min-width:7em}.entity .head .unit[data-v-6d7f09ba]{margin-left:.2em}.entity .head .pull-right[data-v-6d7f09ba],.entity .head .value-container[data-v-6d7f09ba]{padding-right:.5em}.entity .head .pull-right[data-v-6d7f09ba] .power-switch,.entity .head .value-container[data-v-6d7f09ba] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-6d7f09ba]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-6d7f09ba]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-6d7f09ba]:hover{color:#35b870}.collapse-toggler[data-v-6d7f09ba]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-6d7f09ba]:hover{color:#35b870}.attributes .child[data-v-6d7f09ba]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-6d7f09ba]{flex-direction:column}}.attributes .child[data-v-6d7f09ba]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-6d7f09ba]:hover{cursor:auto}.attributes .child.head[data-v-6d7f09ba]{cursor:pointer}.attributes .child.head[data-v-6d7f09ba]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-6d7f09ba]{font-weight:700}.attributes .child .value[data-v-6d7f09ba]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-6d7f09ba]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-6d7f09ba]:last-child,.entity-container-wrapper.with-children[data-v-6d7f09ba]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-6d7f09ba]{animation:blink-animation-6d7f09ba 1s steps(20,start)}@keyframes blink-animation-6d7f09ba{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.light-container .head .value-container button[data-v-6d7f09ba]{margin-right:.5em}.light-container .body .row[data-v-6d7f09ba]{display:flex;align-items:center;padding:.5em}.light-container .body .row .icon[data-v-6d7f09ba]{width:2em;margin-left:-.5em;text-align:center}.light-container .body .row .input[data-v-6d7f09ba]{width:calc(100% - 2em)}.light-container .body .row .input [type=color][data-v-6d7f09ba]{width:100%}.light-container .body .row .input[data-v-6d7f09ba] .slider{margin-top:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/984.04a4e901.css b/platypush/backend/http/webapp/dist/static/css/984.4b68dcc1.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/984.04a4e901.css rename to platypush/backend/http/webapp/dist/static/css/984.4b68dcc1.css index 4742881548..50803bd4d0 100644 --- a/platypush/backend/http/webapp/dist/static/css/984.04a4e901.css +++ b/platypush/backend/http/webapp/dist/static/css/984.4b68dcc1.css @@ -1 +1 @@ -.col-1[data-v-5c801a06],.entity .head .icon[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5c801a06]:first-child,.entity .head .icon[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5c801a06]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5c801a06]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5c801a06]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5c801a06]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5c801a06],.entity .head .value-and-toggler[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5c801a06]:first-child,.entity .head .value-and-toggler[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5c801a06]:first-child{margin-left:26%!important}.col-offset-3[data-v-5c801a06]:not(first-child){margin-left:30%!important}.col-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5c801a06]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5c801a06]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5c801a06]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5c801a06]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5c801a06]:first-child{margin-left:52%!important}.col-offset-6[data-v-5c801a06]:not(first-child){margin-left:56%!important}.col-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5c801a06]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5c801a06]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5c801a06]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5c801a06]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5c801a06]:first-child{margin-left:78%!important}.col-offset-9[data-v-5c801a06]:not(first-child){margin-left:82%!important}.col-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5c801a06]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5c801a06]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5c801a06]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5c801a06]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5c801a06],.entity .head .value-container[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5c801a06]:first-child,.entity .head .value-container[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-s-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-s-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5c801a06],.entity .head .label[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5c801a06]:first-child,.entity .head .label[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-s-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-5c801a06],.attributes .child .value[data-v-5c801a06],.col-s-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-5c801a06]:first-child,.attributes .child .value[data-v-5c801a06]:first-child,.col-s-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5c801a06]{display:none!important}.s-visible[data-v-5c801a06]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5c801a06],.entity .head .value-container[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5c801a06]:first-child,.entity .head .value-container[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-m-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-5c801a06],.attributes .child .value[data-v-5c801a06],.col-m-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-5c801a06]:first-child,.attributes .child .value[data-v-5c801a06]:first-child,.col-m-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-m-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5c801a06],.entity .head .label[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5c801a06]:first-child,.entity .head .label[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-m-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5c801a06]{display:none!important}.m-visible[data-v-5c801a06]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-l-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-l-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-l-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5c801a06]{display:none!important}.l-visible[data-v-5c801a06]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-xl-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-xl-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-xl-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5c801a06]{display:none!important}.xl-visible[data-v-5c801a06]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-xxl-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-xxl-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-xxl-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5c801a06]{display:none!important}.xxl-visible[data-v-5c801a06]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5c801a06]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5c801a06]{display:none!important}}.vertical-center[data-v-5c801a06]{display:flex;align-items:center}.horizontal-center[data-v-5c801a06]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-5c801a06],.pull-right[data-v-5c801a06]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5c801a06]{display:none!important}.no-content[data-v-5c801a06]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5c801a06]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5c801a06]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5c801a06]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5c801a06]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5c801a06]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5c801a06]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5c801a06],.btn[data-v-5c801a06],button[data-v-5c801a06]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5c801a06],.btn-default[type=submit][data-v-5c801a06],.btn.btn-primary[data-v-5c801a06],.btn[type=submit][data-v-5c801a06],button.btn-primary[data-v-5c801a06],button[type=submit][data-v-5c801a06]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5c801a06],.btn-default .icon[data-v-5c801a06],button .icon[data-v-5c801a06]{margin-right:.5em}input[type=password][data-v-5c801a06],input[type=text][data-v-5c801a06]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5c801a06]:focus,input[type=text][data-v-5c801a06]:focus{border:1px solid #35b870}button[data-v-5c801a06],input[data-v-5c801a06]{outline:none}input[type=text][data-v-5c801a06]:hover,textarea[data-v-5c801a06]:hover{border:1px solid #9cdfb0}ul[data-v-5c801a06]{margin:0;padding:0;list-style:none}a[data-v-5c801a06]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5c801a06]:hover{color:#35b870}[data-v-5c801a06]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5c801a06]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5c801a06]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5c801a06]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5c801a06]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5c801a06] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5c801a06] .nav .path{cursor:pointer}.browser[data-v-5c801a06] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5c801a06] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-5c801a06]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5c801a06],input[type=number][data-v-5c801a06],input[type=password][data-v-5c801a06],input[type=search][data-v-5c801a06],input[type=text][data-v-5c801a06],input[type=time][data-v-5c801a06]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-5c801a06]:hover,input[type=number][data-v-5c801a06]:hover,input[type=password][data-v-5c801a06]:hover,input[type=search][data-v-5c801a06]:hover,input[type=text][data-v-5c801a06]:hover,input[type=time][data-v-5c801a06]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5c801a06]:focus,input[type=number][data-v-5c801a06]:focus,input[type=password][data-v-5c801a06]:focus,input[type=search][data-v-5c801a06]:focus,input[type=text][data-v-5c801a06]:focus,input[type=time][data-v-5c801a06]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5c801a06],input[type=number].with-icon[data-v-5c801a06],input[type=password].with-icon[data-v-5c801a06],input[type=search].with-icon[data-v-5c801a06],input[type=text].with-icon[data-v-5c801a06],input[type=time].with-icon[data-v-5c801a06]{padding-left:.3em}input[type=search][data-v-5c801a06],input[type=text][data-v-5c801a06]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-5c801a06],.fade-in[data-v-5c801a06]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-5c801a06;-webkit-animation-name:fadeIn-5c801a06}.fade-out[data-v-5c801a06]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-5c801a06;-webkit-animation-name:fadeOut-5c801a06}@keyframes fadeIn-5c801a06{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5c801a06{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-5c801a06]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5c801a06;-webkit-animation-name:glow-5c801a06}.loop[data-v-5c801a06]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5c801a06{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5c801a06]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5c801a06]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5c801a06]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-5c801a06]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-5c801a06]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-5c801a06]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-5c801a06]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-5c801a06]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-5c801a06]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-5c801a06]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-5c801a06]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-5c801a06]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-5c801a06]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-5c801a06]{margin-right:.5em}.entity .head .icon[data-v-5c801a06]:hover{color:#35b870}.entity .head .label[data-v-5c801a06]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-5c801a06]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-5c801a06]:hover{color:#35b870}.entity .head .value[data-v-5c801a06]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-5c801a06]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-5c801a06]{margin-right:2.5em}.entity .head .value-container[data-v-5c801a06]{min-width:7em}.entity .head .unit[data-v-5c801a06]{margin-left:.2em}.entity .head .pull-right[data-v-5c801a06],.entity .head .value-container[data-v-5c801a06]{padding-right:.5em}.entity .head .pull-right[data-v-5c801a06] .power-switch,.entity .head .value-container[data-v-5c801a06] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-5c801a06]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-5c801a06]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-5c801a06]:hover{color:#35b870}.collapse-toggler[data-v-5c801a06]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-5c801a06]:hover{color:#35b870}.attributes .child[data-v-5c801a06]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-5c801a06]{flex-direction:column}}.attributes .child[data-v-5c801a06]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-5c801a06]:hover{cursor:auto}.attributes .child.head[data-v-5c801a06]{cursor:pointer}.attributes .child.head[data-v-5c801a06]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-5c801a06]{font-weight:700}.attributes .child .value[data-v-5c801a06]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-5c801a06]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-5c801a06]:last-child,.entity-container-wrapper.with-children[data-v-5c801a06]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-5c801a06]{animation:blink-animation-5c801a06 1s steps(20,start)}@keyframes blink-animation-5c801a06{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.switch-container .switch[data-v-5c801a06]{direction:rtl} \ No newline at end of file +.col-1[data-v-5c801a06],.entity .head .icon[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5c801a06]:first-child,.entity .head .icon[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5c801a06]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5c801a06]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5c801a06]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5c801a06]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5c801a06],.entity .head .value-and-toggler[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5c801a06]:first-child,.entity .head .value-and-toggler[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5c801a06]:first-child{margin-left:26%!important}.col-offset-3[data-v-5c801a06]:not(first-child){margin-left:30%!important}.col-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5c801a06]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5c801a06]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5c801a06]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5c801a06]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5c801a06]:first-child{margin-left:52%!important}.col-offset-6[data-v-5c801a06]:not(first-child){margin-left:56%!important}.col-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5c801a06]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5c801a06]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5c801a06]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5c801a06]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5c801a06]:first-child{margin-left:78%!important}.col-offset-9[data-v-5c801a06]:not(first-child){margin-left:82%!important}.col-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5c801a06]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5c801a06]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5c801a06]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5c801a06]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5c801a06],.entity .head .value-container[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5c801a06]:first-child,.entity .head .value-container[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-s-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-s-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5c801a06],.entity .head .label[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5c801a06]:first-child,.entity .head .label[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-s-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-s-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-5c801a06],.attributes .child .value[data-v-5c801a06],.col-s-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-5c801a06]:first-child,.attributes .child .value[data-v-5c801a06]:first-child,.col-s-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5c801a06]{display:none!important}.s-visible[data-v-5c801a06]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5c801a06],.entity .head .value-container[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5c801a06]:first-child,.entity .head .value-container[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-m-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-5c801a06],.attributes .child .value[data-v-5c801a06],.col-m-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-5c801a06]:first-child,.attributes .child .value[data-v-5c801a06]:first-child,.col-m-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-m-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5c801a06],.entity .head .label[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5c801a06]:first-child,.entity .head .label[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-m-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-m-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5c801a06]{display:none!important}.m-visible[data-v-5c801a06]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-l-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-l-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-l-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-l-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5c801a06]{display:none!important}.l-visible[data-v-5c801a06]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-xl-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-xl-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-xl-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xl-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5c801a06]{display:none!important}.xl-visible[data-v-5c801a06]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5c801a06]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5c801a06]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5c801a06]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5c801a06]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5c801a06]{margin-left:26%}.col-no-margin-xxl-3[data-v-5c801a06]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5c801a06]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5c801a06]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5c801a06]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5c801a06]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5c801a06]{margin-left:52%}.col-no-margin-xxl-6[data-v-5c801a06]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5c801a06]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5c801a06]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5c801a06]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5c801a06]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5c801a06]{margin-left:78%}.col-no-margin-xxl-9[data-v-5c801a06]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5c801a06]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5c801a06]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5c801a06]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5c801a06]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5c801a06]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5c801a06]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5c801a06]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5c801a06]{display:none!important}.xxl-visible[data-v-5c801a06]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5c801a06]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5c801a06]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5c801a06]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5c801a06]{display:none!important}}.vertical-center[data-v-5c801a06]{display:flex;align-items:center}.horizontal-center[data-v-5c801a06]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-5c801a06],.pull-right[data-v-5c801a06]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5c801a06]{display:none!important}.no-content[data-v-5c801a06]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5c801a06]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5c801a06]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5c801a06]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5c801a06]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5c801a06]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5c801a06]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5c801a06],.btn[data-v-5c801a06],button[data-v-5c801a06]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5c801a06],.btn-default[type=submit][data-v-5c801a06],.btn.btn-primary[data-v-5c801a06],.btn[type=submit][data-v-5c801a06],button.btn-primary[data-v-5c801a06],button[type=submit][data-v-5c801a06]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5c801a06]:hover,.btn[data-v-5c801a06]:hover,button[data-v-5c801a06]:hover{color:#35b870}.btn .icon[data-v-5c801a06],.btn-default .icon[data-v-5c801a06],button .icon[data-v-5c801a06]{margin-right:.5em}.btn-default[data-v-5c801a06]:disabled,.btn-default[disabled][data-v-5c801a06],.btn[data-v-5c801a06]:disabled,.btn[disabled][data-v-5c801a06],button[data-v-5c801a06]:disabled,button[disabled][data-v-5c801a06]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5c801a06]{cursor:grab!important}.dragged[data-v-5c801a06]{opacity:.5!important}input[type=password][data-v-5c801a06],input[type=text][data-v-5c801a06]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5c801a06]:focus,input[type=text][data-v-5c801a06]:focus{border:1px solid #35b870}button[data-v-5c801a06],input[data-v-5c801a06]{outline:none}input[type=text][data-v-5c801a06]:hover,textarea[data-v-5c801a06]:hover{border:1px solid #9cdfb0}ul[data-v-5c801a06]{margin:0;padding:0;list-style:none}a[data-v-5c801a06]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5c801a06]:hover{color:#35b870}[data-v-5c801a06]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5c801a06]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5c801a06]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5c801a06]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5c801a06]{color:#ad1717}body[data-v-5c801a06]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5c801a06] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5c801a06] .nav .path{cursor:pointer}.browser[data-v-5c801a06] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5c801a06] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5c801a06]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5c801a06]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5c801a06],input[type=number][data-v-5c801a06],input[type=password][data-v-5c801a06],input[type=search][data-v-5c801a06],input[type=text][data-v-5c801a06],input[type=time][data-v-5c801a06]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5c801a06]:hover,input[type=number][data-v-5c801a06]:hover,input[type=password][data-v-5c801a06]:hover,input[type=search][data-v-5c801a06]:hover,input[type=text][data-v-5c801a06]:hover,input[type=time][data-v-5c801a06]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5c801a06]:focus,input[type=number][data-v-5c801a06]:focus,input[type=password][data-v-5c801a06]:focus,input[type=search][data-v-5c801a06]:focus,input[type=text][data-v-5c801a06]:focus,input[type=time][data-v-5c801a06]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5c801a06],input[type=number].with-icon[data-v-5c801a06],input[type=password].with-icon[data-v-5c801a06],input[type=search].with-icon[data-v-5c801a06],input[type=text].with-icon[data-v-5c801a06],input[type=time].with-icon[data-v-5c801a06]{padding-left:.3em}input[type=search][data-v-5c801a06],input[type=text][data-v-5c801a06]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-5c801a06],.fade-in[data-v-5c801a06]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-5c801a06;-webkit-animation-name:fadeIn-5c801a06}.fade-out[data-v-5c801a06]{animation-fill-mode:both;animation-name:fadeOut-5c801a06;-webkit-animation-name:fadeOut-5c801a06}.expand[data-v-5c801a06],.fade-out[data-v-5c801a06]{animation-duration:.5s;-webkit-animation-duration:.5s}.expand[data-v-5c801a06]{animation-fill-mode:both;animation-name:expand-5c801a06;-webkit-animation-name:expand-5c801a06}.shrink[data-v-5c801a06]{animation-fill-mode:both;animation-name:shrink-5c801a06;-webkit-animation-name:shrink-5c801a06}.fold[data-v-5c801a06],.shrink[data-v-5c801a06]{animation-duration:.5s;-webkit-animation-duration:.5s}.fold[data-v-5c801a06]{animation-fill-mode:both;animation-name:fold-5c801a06;-webkit-animation-name:fold-5c801a06}.unfold[data-v-5c801a06]{animation-fill-mode:both;animation-name:unfold-5c801a06;-webkit-animation-name:unfold-5c801a06}.dim[data-v-5c801a06],.unfold[data-v-5c801a06]{animation-duration:.5s;-webkit-animation-duration:.5s}.dim[data-v-5c801a06]{animation-fill-mode:both;animation-name:dim-5c801a06;-webkit-animation-name:dim-5c801a06}.brighten[data-v-5c801a06]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:brighten-5c801a06;-webkit-animation-name:brighten-5c801a06}@keyframes fadeIn-5c801a06{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5c801a06{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5c801a06{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5c801a06{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5c801a06{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5c801a06{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5c801a06{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5c801a06{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5c801a06]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5c801a06;-webkit-animation-name:glow-5c801a06}.loop[data-v-5c801a06]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5c801a06{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5c801a06]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5c801a06]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5c801a06]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-5c801a06]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-5c801a06]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-5c801a06]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-5c801a06]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-5c801a06]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-5c801a06]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-5c801a06]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-5c801a06]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-5c801a06]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-5c801a06]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-5c801a06]{margin-right:.5em}.entity .head .icon[data-v-5c801a06]:hover{color:#35b870}.entity .head .label[data-v-5c801a06]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-5c801a06]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-5c801a06]:hover{color:#35b870}.entity .head .value[data-v-5c801a06]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-5c801a06]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-5c801a06]{margin-right:2.5em}.entity .head .value-container[data-v-5c801a06]{min-width:7em}.entity .head .unit[data-v-5c801a06]{margin-left:.2em}.entity .head .pull-right[data-v-5c801a06],.entity .head .value-container[data-v-5c801a06]{padding-right:.5em}.entity .head .pull-right[data-v-5c801a06] .power-switch,.entity .head .value-container[data-v-5c801a06] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-5c801a06]{display:flex;flex-direction:column;padding:.5em;background:linear-gradient(0deg,#edf0ee,#f8f8f8);border-top:1px solid #e1e4e8;box-shadow:0 3px 2px -1px silver;font-weight:400}.entity button[data-v-5c801a06]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-5c801a06]:hover{color:#35b870}.collapse-toggler[data-v-5c801a06]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end;flex:1;min-height:2em;margin-right:1.25em;cursor:pointer}.collapse-toggler[data-v-5c801a06]:hover{color:#35b870}.attributes .child[data-v-5c801a06]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-5c801a06]{flex-direction:column}}.attributes .child[data-v-5c801a06]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-5c801a06]:hover{cursor:auto}.attributes .child.head[data-v-5c801a06]{cursor:pointer}.attributes .child.head[data-v-5c801a06]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-5c801a06]{font-weight:700}.attributes .child .value[data-v-5c801a06]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-5c801a06]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-5c801a06]:last-child,.entity-container-wrapper.with-children[data-v-5c801a06]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-5c801a06]{animation:blink-animation-5c801a06 1s steps(20,start)}@keyframes blink-animation-5c801a06{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.switch-container .switch[data-v-5c801a06]{direction:rtl} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9962.b2a51ef8.css b/platypush/backend/http/webapp/dist/static/css/9962.b2a51ef8.css deleted file mode 100644 index 4efc05d8c0..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/9962.b2a51ef8.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5031881e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5031881e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5031881e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5031881e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5031881e]:first-child{margin-left:26%!important}.col-offset-3[data-v-5031881e]:not(first-child){margin-left:30%!important}.col-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5031881e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5031881e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5031881e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5031881e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5031881e]:first-child{margin-left:52%!important}.col-offset-6[data-v-5031881e]:not(first-child){margin-left:56%!important}.col-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5031881e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5031881e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5031881e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5031881e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5031881e]:first-child{margin-left:78%!important}.col-offset-9[data-v-5031881e]:not(first-child){margin-left:82%!important}.col-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5031881e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5031881e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5031881e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5031881e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-3[data-v-5031881e]{margin-left:26%}.col-no-margin-s-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-6[data-v-5031881e]{margin-left:52%}.col-no-margin-s-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-9[data-v-5031881e]{margin-left:78%}.col-no-margin-s-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5031881e]{display:none!important}.s-visible[data-v-5031881e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-3[data-v-5031881e]{margin-left:26%}.col-no-margin-m-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-6[data-v-5031881e]{margin-left:52%}.col-no-margin-m-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-9[data-v-5031881e]{margin-left:78%}.col-no-margin-m-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5031881e]{display:none!important}.m-visible[data-v-5031881e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-3[data-v-5031881e]{margin-left:26%}.col-no-margin-l-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-6[data-v-5031881e]{margin-left:52%}.col-no-margin-l-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-9[data-v-5031881e]{margin-left:78%}.col-no-margin-l-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5031881e]{display:none!important}.l-visible[data-v-5031881e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-3[data-v-5031881e]{margin-left:26%}.col-no-margin-xl-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-6[data-v-5031881e]{margin-left:52%}.col-no-margin-xl-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-9[data-v-5031881e]{margin-left:78%}.col-no-margin-xl-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5031881e]{display:none!important}.xl-visible[data-v-5031881e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5031881e]{margin-left:26%}.col-no-margin-xxl-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5031881e]{margin-left:52%}.col-no-margin-xxl-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5031881e]{margin-left:78%}.col-no-margin-xxl-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5031881e]{display:none!important}.xxl-visible[data-v-5031881e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5031881e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5031881e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5031881e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5031881e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5031881e]{display:none!important}}.vertical-center[data-v-5031881e]{display:flex;align-items:center}.horizontal-center[data-v-5031881e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5031881e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5031881e]{display:none!important}.no-content[data-v-5031881e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5031881e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5031881e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5031881e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5031881e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5031881e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5031881e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5031881e],.btn[data-v-5031881e],button[data-v-5031881e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5031881e],.btn-default[type=submit][data-v-5031881e],.btn.btn-primary[data-v-5031881e],.btn[type=submit][data-v-5031881e],button.btn-primary[data-v-5031881e],button[type=submit][data-v-5031881e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5031881e],.btn-default .icon[data-v-5031881e],button .icon[data-v-5031881e]{margin-right:.5em}input[type=password][data-v-5031881e],input[type=text][data-v-5031881e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5031881e]:focus,input[type=text][data-v-5031881e]:focus{border:1px solid #35b870}button[data-v-5031881e],input[data-v-5031881e]{outline:none}input[type=text][data-v-5031881e]:hover,textarea[data-v-5031881e]:hover{border:1px solid #9cdfb0}ul[data-v-5031881e]{margin:0;padding:0;list-style:none}a[data-v-5031881e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5031881e]:hover{color:#35b870}[data-v-5031881e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5031881e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5031881e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5031881e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5031881e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5031881e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5031881e] .nav .path{cursor:pointer}.browser[data-v-5031881e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5031881e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-5031881e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5031881e],input[type=number][data-v-5031881e],input[type=password][data-v-5031881e],input[type=search][data-v-5031881e],input[type=text][data-v-5031881e],input[type=time][data-v-5031881e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-5031881e]:hover,input[type=number][data-v-5031881e]:hover,input[type=password][data-v-5031881e]:hover,input[type=search][data-v-5031881e]:hover,input[type=text][data-v-5031881e]:hover,input[type=time][data-v-5031881e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5031881e]:focus,input[type=number][data-v-5031881e]:focus,input[type=password][data-v-5031881e]:focus,input[type=search][data-v-5031881e]:focus,input[type=text][data-v-5031881e]:focus,input[type=time][data-v-5031881e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5031881e],input[type=number].with-icon[data-v-5031881e],input[type=password].with-icon[data-v-5031881e],input[type=search].with-icon[data-v-5031881e],input[type=text].with-icon[data-v-5031881e],input[type=time].with-icon[data-v-5031881e]{padding-left:.3em}input[type=search][data-v-5031881e],input[type=text][data-v-5031881e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5031881e]{animation-fill-mode:both;animation-name:fadeIn-5031881e;-webkit-animation-name:fadeIn-5031881e}.fade-in[data-v-5031881e],.fade-out[data-v-5031881e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5031881e]{animation-fill-mode:both;animation-name:fadeOut-5031881e;-webkit-animation-name:fadeOut-5031881e}@keyframes fadeIn-5031881e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5031881e{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-5031881e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5031881e;-webkit-animation-name:glow-5031881e}.loop[data-v-5031881e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5031881e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5031881e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5031881e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5031881e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.label-container[data-v-5031881e]{text-align:left}.value-container[data-v-5031881e]{text-align:right}.col-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-69d38a93]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-69d38a93]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-69d38a93]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-69d38a93]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-69d38a93]:first-child{margin-left:26%!important}.col-offset-3[data-v-69d38a93]:not(first-child){margin-left:30%!important}.col-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-69d38a93]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-69d38a93]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-69d38a93]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-69d38a93]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-69d38a93]:first-child{margin-left:52%!important}.col-offset-6[data-v-69d38a93]:not(first-child){margin-left:56%!important}.col-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-69d38a93]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-69d38a93]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-69d38a93]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-69d38a93]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-69d38a93]:first-child{margin-left:78%!important}.col-offset-9[data-v-69d38a93]:not(first-child){margin-left:82%!important}.col-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-69d38a93]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-69d38a93]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-69d38a93]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-69d38a93]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-s-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-s-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-s-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-s-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-69d38a93]{display:none!important}.s-visible[data-v-69d38a93]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-m-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-m-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-m-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-m-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-69d38a93]{display:none!important}.m-visible[data-v-69d38a93]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-l-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-l-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-l-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-l-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-69d38a93]{display:none!important}.l-visible[data-v-69d38a93]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-xl-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-xl-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-xl-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-69d38a93]{display:none!important}.xl-visible[data-v-69d38a93]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-xxl-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-xxl-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-xxl-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-69d38a93]{display:none!important}.xxl-visible[data-v-69d38a93]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-69d38a93]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-69d38a93]{display:none!important}}.vertical-center[data-v-69d38a93]{display:flex;align-items:center}.horizontal-center[data-v-69d38a93]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-69d38a93]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-69d38a93]{display:none!important}.no-content[data-v-69d38a93]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-69d38a93]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-69d38a93]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-69d38a93]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-69d38a93]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-69d38a93]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-69d38a93]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-69d38a93],.btn[data-v-69d38a93],button[data-v-69d38a93]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-69d38a93],.btn-default[type=submit][data-v-69d38a93],.btn.btn-primary[data-v-69d38a93],.btn[type=submit][data-v-69d38a93],button.btn-primary[data-v-69d38a93],button[type=submit][data-v-69d38a93]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-69d38a93],.btn-default .icon[data-v-69d38a93],button .icon[data-v-69d38a93]{margin-right:.5em}input[type=password][data-v-69d38a93],input[type=text][data-v-69d38a93]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-69d38a93]:focus,input[type=text][data-v-69d38a93]:focus{border:1px solid #35b870}button[data-v-69d38a93],input[data-v-69d38a93]{outline:none}input[type=text][data-v-69d38a93]:hover,textarea[data-v-69d38a93]:hover{border:1px solid #9cdfb0}ul[data-v-69d38a93]{margin:0;padding:0;list-style:none}a[data-v-69d38a93]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-69d38a93]:hover{color:#35b870}[data-v-69d38a93]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-69d38a93]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-69d38a93]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-69d38a93]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-69d38a93]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-69d38a93] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-69d38a93] .nav .path{cursor:pointer}.browser[data-v-69d38a93] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-69d38a93] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-69d38a93]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-69d38a93],input[type=number][data-v-69d38a93],input[type=password][data-v-69d38a93],input[type=search][data-v-69d38a93],input[type=text][data-v-69d38a93],input[type=time][data-v-69d38a93]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-69d38a93]:hover,input[type=number][data-v-69d38a93]:hover,input[type=password][data-v-69d38a93]:hover,input[type=search][data-v-69d38a93]:hover,input[type=text][data-v-69d38a93]:hover,input[type=time][data-v-69d38a93]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-69d38a93]:focus,input[type=number][data-v-69d38a93]:focus,input[type=password][data-v-69d38a93]:focus,input[type=search][data-v-69d38a93]:focus,input[type=text][data-v-69d38a93]:focus,input[type=time][data-v-69d38a93]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-69d38a93],input[type=number].with-icon[data-v-69d38a93],input[type=password].with-icon[data-v-69d38a93],input[type=search].with-icon[data-v-69d38a93],input[type=text].with-icon[data-v-69d38a93],input[type=time].with-icon[data-v-69d38a93]{padding-left:.3em}input[type=search][data-v-69d38a93],input[type=text][data-v-69d38a93]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-69d38a93]{animation-fill-mode:both;animation-name:fadeIn-69d38a93;-webkit-animation-name:fadeIn-69d38a93}.fade-in[data-v-69d38a93],.fade-out[data-v-69d38a93]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-69d38a93]{animation-fill-mode:both;animation-name:fadeOut-69d38a93;-webkit-animation-name:fadeOut-69d38a93}@keyframes fadeIn-69d38a93{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-69d38a93{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-69d38a93]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-69d38a93;-webkit-animation-name:glow-69d38a93}.loop[data-v-69d38a93]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-69d38a93{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-69d38a93]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-69d38a93]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-69d38a93]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.date-time-weather[data-v-69d38a93]{height:100%;display:flex;flex-direction:column;align-items:center;padding-top:.5em}.date-time-weather .row[data-v-69d38a93]{text-align:center}.date-time-weather .date-time-container[data-v-69d38a93]{height:35%}.date-time-weather .weather-container[data-v-69d38a93]{height:45%}.date-time-weather .sensors-container[data-v-69d38a93]{width:100%;height:20%;position:relative}.date-time-weather .sensors-container .row[data-v-69d38a93]{width:100%;position:absolute;bottom:0} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/9962.b5594d80.css b/platypush/backend/http/webapp/dist/static/css/9962.b5594d80.css new file mode 100644 index 0000000000..bdce19d73e --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9962.b5594d80.css @@ -0,0 +1 @@ +.col-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5031881e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5031881e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5031881e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5031881e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5031881e]:first-child{margin-left:26%!important}.col-offset-3[data-v-5031881e]:not(first-child){margin-left:30%!important}.col-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5031881e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5031881e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5031881e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5031881e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5031881e]:first-child{margin-left:52%!important}.col-offset-6[data-v-5031881e]:not(first-child){margin-left:56%!important}.col-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5031881e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5031881e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5031881e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5031881e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5031881e]:first-child{margin-left:78%!important}.col-offset-9[data-v-5031881e]:not(first-child){margin-left:82%!important}.col-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5031881e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5031881e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5031881e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5031881e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-3[data-v-5031881e]{margin-left:26%}.col-no-margin-s-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-6[data-v-5031881e]{margin-left:52%}.col-no-margin-s-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-9[data-v-5031881e]{margin-left:78%}.col-no-margin-s-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-s-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5031881e]{display:none!important}.s-visible[data-v-5031881e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-3[data-v-5031881e]{margin-left:26%}.col-no-margin-m-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-6[data-v-5031881e]{margin-left:52%}.col-no-margin-m-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-9[data-v-5031881e]{margin-left:78%}.col-no-margin-m-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-m-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5031881e]{display:none!important}.m-visible[data-v-5031881e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-3[data-v-5031881e]{margin-left:26%}.col-no-margin-l-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-6[data-v-5031881e]{margin-left:52%}.col-no-margin-l-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-9[data-v-5031881e]{margin-left:78%}.col-no-margin-l-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-l-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5031881e]{display:none!important}.l-visible[data-v-5031881e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-3[data-v-5031881e]{margin-left:26%}.col-no-margin-xl-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-6[data-v-5031881e]{margin-left:52%}.col-no-margin-xl-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-9[data-v-5031881e]{margin-left:78%}.col-no-margin-xl-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-xl-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5031881e]{display:none!important}.xl-visible[data-v-5031881e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5031881e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5031881e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5031881e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5031881e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5031881e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5031881e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5031881e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5031881e]{margin-left:26%}.col-no-margin-xxl-3[data-v-5031881e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5031881e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5031881e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5031881e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5031881e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5031881e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5031881e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5031881e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5031881e]{margin-left:52%}.col-no-margin-xxl-6[data-v-5031881e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5031881e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5031881e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5031881e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5031881e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5031881e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5031881e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5031881e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5031881e]{margin-left:78%}.col-no-margin-xxl-9[data-v-5031881e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5031881e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5031881e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5031881e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5031881e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5031881e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5031881e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5031881e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5031881e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5031881e]{display:none!important}.xxl-visible[data-v-5031881e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5031881e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5031881e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5031881e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5031881e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5031881e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5031881e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5031881e]{display:none!important}}.vertical-center[data-v-5031881e]{display:flex;align-items:center}.horizontal-center[data-v-5031881e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5031881e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5031881e]{display:none!important}.no-content[data-v-5031881e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5031881e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5031881e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5031881e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5031881e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5031881e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5031881e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5031881e],.btn[data-v-5031881e],button[data-v-5031881e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5031881e],.btn-default[type=submit][data-v-5031881e],.btn.btn-primary[data-v-5031881e],.btn[type=submit][data-v-5031881e],button.btn-primary[data-v-5031881e],button[type=submit][data-v-5031881e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5031881e]:hover,.btn[data-v-5031881e]:hover,button[data-v-5031881e]:hover{color:#35b870}.btn .icon[data-v-5031881e],.btn-default .icon[data-v-5031881e],button .icon[data-v-5031881e]{margin-right:.5em}.btn-default[data-v-5031881e]:disabled,.btn-default[disabled][data-v-5031881e],.btn[data-v-5031881e]:disabled,.btn[disabled][data-v-5031881e],button[data-v-5031881e]:disabled,button[disabled][data-v-5031881e]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5031881e]{cursor:grab!important}.dragged[data-v-5031881e]{opacity:.5!important}input[type=password][data-v-5031881e],input[type=text][data-v-5031881e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5031881e]:focus,input[type=text][data-v-5031881e]:focus{border:1px solid #35b870}button[data-v-5031881e],input[data-v-5031881e]{outline:none}input[type=text][data-v-5031881e]:hover,textarea[data-v-5031881e]:hover{border:1px solid #9cdfb0}ul[data-v-5031881e]{margin:0;padding:0;list-style:none}a[data-v-5031881e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5031881e]:hover{color:#35b870}[data-v-5031881e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5031881e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5031881e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5031881e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5031881e]{color:#ad1717}body[data-v-5031881e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5031881e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5031881e] .nav .path{cursor:pointer}.browser[data-v-5031881e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5031881e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5031881e]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5031881e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5031881e],input[type=number][data-v-5031881e],input[type=password][data-v-5031881e],input[type=search][data-v-5031881e],input[type=text][data-v-5031881e],input[type=time][data-v-5031881e]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5031881e]:hover,input[type=number][data-v-5031881e]:hover,input[type=password][data-v-5031881e]:hover,input[type=search][data-v-5031881e]:hover,input[type=text][data-v-5031881e]:hover,input[type=time][data-v-5031881e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5031881e]:focus,input[type=number][data-v-5031881e]:focus,input[type=password][data-v-5031881e]:focus,input[type=search][data-v-5031881e]:focus,input[type=text][data-v-5031881e]:focus,input[type=time][data-v-5031881e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5031881e],input[type=number].with-icon[data-v-5031881e],input[type=password].with-icon[data-v-5031881e],input[type=search].with-icon[data-v-5031881e],input[type=text].with-icon[data-v-5031881e],input[type=time].with-icon[data-v-5031881e]{padding-left:.3em}input[type=search][data-v-5031881e],input[type=text][data-v-5031881e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5031881e]{animation-fill-mode:both;animation-name:fadeIn-5031881e;-webkit-animation-name:fadeIn-5031881e}.fade-in[data-v-5031881e],.fade-out[data-v-5031881e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5031881e]{animation-fill-mode:both;animation-name:fadeOut-5031881e;-webkit-animation-name:fadeOut-5031881e}.expand[data-v-5031881e]{animation-fill-mode:both;animation-name:expand-5031881e;-webkit-animation-name:expand-5031881e}.expand[data-v-5031881e],.shrink[data-v-5031881e]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-5031881e]{animation-fill-mode:both;animation-name:shrink-5031881e;-webkit-animation-name:shrink-5031881e}.fold[data-v-5031881e]{animation-fill-mode:both;animation-name:fold-5031881e;-webkit-animation-name:fold-5031881e}.fold[data-v-5031881e],.unfold[data-v-5031881e]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-5031881e]{animation-fill-mode:both;animation-name:unfold-5031881e;-webkit-animation-name:unfold-5031881e}.dim[data-v-5031881e]{animation-fill-mode:both;animation-name:dim-5031881e;-webkit-animation-name:dim-5031881e}.brighten[data-v-5031881e],.dim[data-v-5031881e]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-5031881e]{animation-fill-mode:both;animation-name:brighten-5031881e;-webkit-animation-name:brighten-5031881e}@keyframes fadeIn-5031881e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5031881e{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5031881e{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5031881e{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5031881e{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5031881e{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5031881e{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5031881e{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5031881e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5031881e;-webkit-animation-name:glow-5031881e}.loop[data-v-5031881e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5031881e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5031881e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5031881e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5031881e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.label-container[data-v-5031881e]{text-align:left}.value-container[data-v-5031881e]{text-align:right}.col-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-69d38a93]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-69d38a93]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-69d38a93]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-69d38a93]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-69d38a93]:first-child{margin-left:26%!important}.col-offset-3[data-v-69d38a93]:not(first-child){margin-left:30%!important}.col-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-69d38a93]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-69d38a93]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-69d38a93]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-69d38a93]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-69d38a93]:first-child{margin-left:52%!important}.col-offset-6[data-v-69d38a93]:not(first-child){margin-left:56%!important}.col-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-69d38a93]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-69d38a93]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-69d38a93]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-69d38a93]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-69d38a93]:first-child{margin-left:78%!important}.col-offset-9[data-v-69d38a93]:not(first-child){margin-left:82%!important}.col-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-69d38a93]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-69d38a93]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-69d38a93]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-69d38a93]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-s-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-s-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-s-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-s-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-s-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-69d38a93]{display:none!important}.s-visible[data-v-69d38a93]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-m-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-m-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-m-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-m-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-m-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-69d38a93]{display:none!important}.m-visible[data-v-69d38a93]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-l-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-l-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-l-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-l-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-l-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-69d38a93]{display:none!important}.l-visible[data-v-69d38a93]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-xl-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-xl-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-xl-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xl-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-69d38a93]{display:none!important}.xl-visible[data-v-69d38a93]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-1[data-v-69d38a93]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-69d38a93]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-2[data-v-69d38a93]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-69d38a93]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-3[data-v-69d38a93]{margin-left:26%}.col-no-margin-xxl-3[data-v-69d38a93]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-4[data-v-69d38a93]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-69d38a93]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-5[data-v-69d38a93]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-69d38a93]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-6[data-v-69d38a93]{margin-left:52%}.col-no-margin-xxl-6[data-v-69d38a93]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-7[data-v-69d38a93]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-69d38a93]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-8[data-v-69d38a93]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-69d38a93]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-9[data-v-69d38a93]{margin-left:78%}.col-no-margin-xxl-9[data-v-69d38a93]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-10[data-v-69d38a93]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-69d38a93]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-69d38a93]:first-child{margin-left:0}.col-offset-xxl-11[data-v-69d38a93]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-69d38a93]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-69d38a93]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-69d38a93]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-69d38a93]{display:none!important}.xxl-visible[data-v-69d38a93]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-69d38a93]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-69d38a93]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-69d38a93]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-69d38a93]{display:none!important}}.vertical-center[data-v-69d38a93]{display:flex;align-items:center}.horizontal-center[data-v-69d38a93]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-69d38a93]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-69d38a93]{display:none!important}.no-content[data-v-69d38a93]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-69d38a93]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-69d38a93]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-69d38a93]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-69d38a93]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-69d38a93]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-69d38a93]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-69d38a93],.btn[data-v-69d38a93],button[data-v-69d38a93]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-69d38a93],.btn-default[type=submit][data-v-69d38a93],.btn.btn-primary[data-v-69d38a93],.btn[type=submit][data-v-69d38a93],button.btn-primary[data-v-69d38a93],button[type=submit][data-v-69d38a93]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-69d38a93]:hover,.btn[data-v-69d38a93]:hover,button[data-v-69d38a93]:hover{color:#35b870}.btn .icon[data-v-69d38a93],.btn-default .icon[data-v-69d38a93],button .icon[data-v-69d38a93]{margin-right:.5em}.btn-default[data-v-69d38a93]:disabled,.btn-default[disabled][data-v-69d38a93],.btn[data-v-69d38a93]:disabled,.btn[disabled][data-v-69d38a93],button[data-v-69d38a93]:disabled,button[disabled][data-v-69d38a93]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-69d38a93]{cursor:grab!important}.dragged[data-v-69d38a93]{opacity:.5!important}input[type=password][data-v-69d38a93],input[type=text][data-v-69d38a93]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-69d38a93]:focus,input[type=text][data-v-69d38a93]:focus{border:1px solid #35b870}button[data-v-69d38a93],input[data-v-69d38a93]{outline:none}input[type=text][data-v-69d38a93]:hover,textarea[data-v-69d38a93]:hover{border:1px solid #9cdfb0}ul[data-v-69d38a93]{margin:0;padding:0;list-style:none}a[data-v-69d38a93]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-69d38a93]:hover{color:#35b870}[data-v-69d38a93]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-69d38a93]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-69d38a93]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-69d38a93]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-69d38a93]{color:#ad1717}body[data-v-69d38a93]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-69d38a93] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-69d38a93] .nav .path{cursor:pointer}.browser[data-v-69d38a93] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-69d38a93] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-69d38a93]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-69d38a93]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-69d38a93],input[type=number][data-v-69d38a93],input[type=password][data-v-69d38a93],input[type=search][data-v-69d38a93],input[type=text][data-v-69d38a93],input[type=time][data-v-69d38a93]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-69d38a93]:hover,input[type=number][data-v-69d38a93]:hover,input[type=password][data-v-69d38a93]:hover,input[type=search][data-v-69d38a93]:hover,input[type=text][data-v-69d38a93]:hover,input[type=time][data-v-69d38a93]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-69d38a93]:focus,input[type=number][data-v-69d38a93]:focus,input[type=password][data-v-69d38a93]:focus,input[type=search][data-v-69d38a93]:focus,input[type=text][data-v-69d38a93]:focus,input[type=time][data-v-69d38a93]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-69d38a93],input[type=number].with-icon[data-v-69d38a93],input[type=password].with-icon[data-v-69d38a93],input[type=search].with-icon[data-v-69d38a93],input[type=text].with-icon[data-v-69d38a93],input[type=time].with-icon[data-v-69d38a93]{padding-left:.3em}input[type=search][data-v-69d38a93],input[type=text][data-v-69d38a93]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-69d38a93]{animation-fill-mode:both;animation-name:fadeIn-69d38a93;-webkit-animation-name:fadeIn-69d38a93}.fade-in[data-v-69d38a93],.fade-out[data-v-69d38a93]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-69d38a93]{animation-fill-mode:both;animation-name:fadeOut-69d38a93;-webkit-animation-name:fadeOut-69d38a93}.expand[data-v-69d38a93]{animation-fill-mode:both;animation-name:expand-69d38a93;-webkit-animation-name:expand-69d38a93}.expand[data-v-69d38a93],.shrink[data-v-69d38a93]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-69d38a93]{animation-fill-mode:both;animation-name:shrink-69d38a93;-webkit-animation-name:shrink-69d38a93}.fold[data-v-69d38a93]{animation-fill-mode:both;animation-name:fold-69d38a93;-webkit-animation-name:fold-69d38a93}.fold[data-v-69d38a93],.unfold[data-v-69d38a93]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-69d38a93]{animation-fill-mode:both;animation-name:unfold-69d38a93;-webkit-animation-name:unfold-69d38a93}.dim[data-v-69d38a93]{animation-fill-mode:both;animation-name:dim-69d38a93;-webkit-animation-name:dim-69d38a93}.brighten[data-v-69d38a93],.dim[data-v-69d38a93]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-69d38a93]{animation-fill-mode:both;animation-name:brighten-69d38a93;-webkit-animation-name:brighten-69d38a93}@keyframes fadeIn-69d38a93{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-69d38a93{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-69d38a93{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-69d38a93{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-69d38a93{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-69d38a93{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-69d38a93{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-69d38a93{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-69d38a93]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-69d38a93;-webkit-animation-name:glow-69d38a93}.loop[data-v-69d38a93]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-69d38a93{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-69d38a93]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-69d38a93]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-69d38a93]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.date-time-weather[data-v-69d38a93]{height:100%;display:flex;flex-direction:column;align-items:center;padding-top:.5em}.date-time-weather .row[data-v-69d38a93]{text-align:center}.date-time-weather .date-time-container[data-v-69d38a93]{height:35%}.date-time-weather .weather-container[data-v-69d38a93]{height:45%}.date-time-weather .sensors-container[data-v-69d38a93]{width:100%;height:20%;position:relative}.date-time-weather .sensors-container .row[data-v-69d38a93]{width:100%;position:absolute;bottom:0} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/app.34a0a3ba.css b/platypush/backend/http/webapp/dist/static/css/app.34a0a3ba.css deleted file mode 100644 index 3a62dda8fb..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/app.34a0a3ba.css +++ /dev/null @@ -1,17 +0,0 @@ -.col-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-09bd997a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-09bd997a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-09bd997a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-09bd997a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-09bd997a]:first-child{margin-left:26%!important}.col-offset-3[data-v-09bd997a]:not(first-child){margin-left:30%!important}.col-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-09bd997a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-09bd997a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-09bd997a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-09bd997a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-09bd997a]:first-child{margin-left:52%!important}.col-offset-6[data-v-09bd997a]:not(first-child){margin-left:56%!important}.col-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-09bd997a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-09bd997a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-09bd997a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-09bd997a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-09bd997a]:first-child{margin-left:78%!important}.col-offset-9[data-v-09bd997a]:not(first-child){margin-left:82%!important}.col-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-09bd997a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-09bd997a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-09bd997a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-09bd997a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-1[data-v-09bd997a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-2[data-v-09bd997a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-3[data-v-09bd997a]{margin-left:26%}.col-no-margin-s-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-4[data-v-09bd997a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-5[data-v-09bd997a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-6[data-v-09bd997a]{margin-left:52%}.col-no-margin-s-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-7[data-v-09bd997a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-8[data-v-09bd997a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-9[data-v-09bd997a]{margin-left:78%}.col-no-margin-s-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-10[data-v-09bd997a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-09bd997a]:first-child{margin-left:0}.col-offset-s-11[data-v-09bd997a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-09bd997a]{display:none!important}.s-visible[data-v-09bd997a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-1[data-v-09bd997a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-2[data-v-09bd997a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-3[data-v-09bd997a]{margin-left:26%}.col-no-margin-m-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-4[data-v-09bd997a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-5[data-v-09bd997a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-6[data-v-09bd997a]{margin-left:52%}.col-no-margin-m-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-7[data-v-09bd997a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-8[data-v-09bd997a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-9[data-v-09bd997a]{margin-left:78%}.col-no-margin-m-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-10[data-v-09bd997a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-09bd997a]:first-child{margin-left:0}.col-offset-m-11[data-v-09bd997a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-09bd997a]{display:none!important}.m-visible[data-v-09bd997a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-1[data-v-09bd997a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-2[data-v-09bd997a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-3[data-v-09bd997a]{margin-left:26%}.col-no-margin-l-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-4[data-v-09bd997a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-5[data-v-09bd997a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-6[data-v-09bd997a]{margin-left:52%}.col-no-margin-l-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-7[data-v-09bd997a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-8[data-v-09bd997a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-9[data-v-09bd997a]{margin-left:78%}.col-no-margin-l-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-10[data-v-09bd997a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-09bd997a]:first-child{margin-left:0}.col-offset-l-11[data-v-09bd997a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-09bd997a]{display:none!important}.l-visible[data-v-09bd997a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-1[data-v-09bd997a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-2[data-v-09bd997a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-3[data-v-09bd997a]{margin-left:26%}.col-no-margin-xl-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-4[data-v-09bd997a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-5[data-v-09bd997a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-6[data-v-09bd997a]{margin-left:52%}.col-no-margin-xl-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-7[data-v-09bd997a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-8[data-v-09bd997a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-9[data-v-09bd997a]{margin-left:78%}.col-no-margin-xl-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-10[data-v-09bd997a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xl-11[data-v-09bd997a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-09bd997a]{display:none!important}.xl-visible[data-v-09bd997a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-09bd997a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-09bd997a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-09bd997a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-09bd997a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-09bd997a]{margin-left:26%}.col-no-margin-xxl-3[data-v-09bd997a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-09bd997a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-09bd997a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-09bd997a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-09bd997a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-09bd997a]{margin-left:52%}.col-no-margin-xxl-6[data-v-09bd997a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-09bd997a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-09bd997a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-09bd997a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-09bd997a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-09bd997a]{margin-left:78%}.col-no-margin-xxl-9[data-v-09bd997a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-09bd997a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-09bd997a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-09bd997a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-09bd997a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-09bd997a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-09bd997a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-09bd997a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-09bd997a]{display:none!important}.xxl-visible[data-v-09bd997a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-09bd997a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-09bd997a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-09bd997a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-09bd997a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-09bd997a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-09bd997a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-09bd997a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-09bd997a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-09bd997a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-09bd997a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-09bd997a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-09bd997a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-09bd997a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-09bd997a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-09bd997a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-09bd997a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-09bd997a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-09bd997a]{display:none!important}}.vertical-center[data-v-09bd997a]{display:flex;align-items:center}.horizontal-center[data-v-09bd997a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-09bd997a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-09bd997a]{display:none!important}.no-content[data-v-09bd997a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-09bd997a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-09bd997a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-09bd997a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-09bd997a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-09bd997a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-09bd997a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-09bd997a],.btn[data-v-09bd997a],button[data-v-09bd997a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-09bd997a],.btn-default[type=submit][data-v-09bd997a],.btn.btn-primary[data-v-09bd997a],.btn[type=submit][data-v-09bd997a],button.btn-primary[data-v-09bd997a],button[type=submit][data-v-09bd997a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-09bd997a],.btn-default .icon[data-v-09bd997a],button .icon[data-v-09bd997a]{margin-right:.5em}input[type=password][data-v-09bd997a],input[type=text][data-v-09bd997a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-09bd997a]:focus,input[type=text][data-v-09bd997a]:focus{border:1px solid #35b870}button[data-v-09bd997a],input[data-v-09bd997a]{outline:none}input[type=text][data-v-09bd997a]:hover,textarea[data-v-09bd997a]:hover{border:1px solid #9cdfb0}ul[data-v-09bd997a]{margin:0;padding:0;list-style:none}a[data-v-09bd997a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-09bd997a]:hover{color:#35b870}[data-v-09bd997a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-09bd997a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-09bd997a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-09bd997a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-09bd997a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-09bd997a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-09bd997a] .nav .path{cursor:pointer}.browser[data-v-09bd997a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-09bd997a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-09bd997a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-09bd997a],input[type=number][data-v-09bd997a],input[type=password][data-v-09bd997a],input[type=search][data-v-09bd997a],input[type=text][data-v-09bd997a],input[type=time][data-v-09bd997a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-09bd997a]:hover,input[type=number][data-v-09bd997a]:hover,input[type=password][data-v-09bd997a]:hover,input[type=search][data-v-09bd997a]:hover,input[type=text][data-v-09bd997a]:hover,input[type=time][data-v-09bd997a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-09bd997a]:focus,input[type=number][data-v-09bd997a]:focus,input[type=password][data-v-09bd997a]:focus,input[type=search][data-v-09bd997a]:focus,input[type=text][data-v-09bd997a]:focus,input[type=time][data-v-09bd997a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-09bd997a],input[type=number].with-icon[data-v-09bd997a],input[type=password].with-icon[data-v-09bd997a],input[type=search].with-icon[data-v-09bd997a],input[type=text].with-icon[data-v-09bd997a],input[type=time].with-icon[data-v-09bd997a]{padding-left:.3em}input[type=search][data-v-09bd997a],input[type=text][data-v-09bd997a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-09bd997a]{animation-fill-mode:both;animation-name:fadeIn-09bd997a;-webkit-animation-name:fadeIn-09bd997a}.fade-in[data-v-09bd997a],.fade-out[data-v-09bd997a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-09bd997a]{animation-fill-mode:both;animation-name:fadeOut-09bd997a;-webkit-animation-name:fadeOut-09bd997a}@keyframes fadeIn-09bd997a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-09bd997a{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-09bd997a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-09bd997a;-webkit-animation-name:glow-09bd997a}.loop[data-v-09bd997a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-09bd997a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-09bd997a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-09bd997a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-09bd997a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.modal-container[data-v-09bd997a]{position:fixed;display:flex;align-items:center;justify-content:center;top:0;left:0;width:100%;height:100%;z-index:var(--z-index);background:hsla(0,0%,4%,.9)}.modal-container .modal[data-v-09bd997a]{display:flex;max-width:100%;justify-content:center}.modal-container .modal .content[data-v-09bd997a]{--width:auto;--height:auto;width:var(--width);height:var(--height);border-radius:.5em;background:#fff}.modal-container .modal .header[data-v-09bd997a]{display:flex;position:relative;border-bottom:1px solid #ccc;border-radius:.5em .5em 0 0;padding:.5em;text-align:center;justify-content:center;align-items:center;background:#e0e0e0;text-transform:uppercase}.modal-container .modal .header button[data-v-09bd997a]{width:1.5em;height:1.5em;position:absolute;right:0;margin:auto .5em;padding:0;border:0;background:transparent}.modal-container .modal .header button[data-v-09bd997a]:hover{color:#35b870}.modal-container .modal .body[data-v-09bd997a]{max-height:75vh;overflow:auto;padding:2em}.col-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-06d2f237]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-06d2f237]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-06d2f237]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-06d2f237]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-06d2f237]:first-child{margin-left:26%!important}.col-offset-3[data-v-06d2f237]:not(first-child){margin-left:30%!important}.col-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-06d2f237]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-06d2f237]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-06d2f237]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-06d2f237]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-06d2f237]:first-child{margin-left:52%!important}.col-offset-6[data-v-06d2f237]:not(first-child){margin-left:56%!important}.col-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-06d2f237]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-06d2f237]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-06d2f237]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-06d2f237]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-06d2f237]:first-child{margin-left:78%!important}.col-offset-9[data-v-06d2f237]:not(first-child){margin-left:82%!important}.col-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-06d2f237]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-06d2f237]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-06d2f237]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-06d2f237]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-1[data-v-06d2f237]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-2[data-v-06d2f237]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-3[data-v-06d2f237]{margin-left:26%}.col-no-margin-s-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-4[data-v-06d2f237]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-5[data-v-06d2f237]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-6[data-v-06d2f237]{margin-left:52%}.col-no-margin-s-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-7[data-v-06d2f237]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-8[data-v-06d2f237]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-9[data-v-06d2f237]{margin-left:78%}.col-no-margin-s-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-10[data-v-06d2f237]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-06d2f237]:first-child{margin-left:0}.col-offset-s-11[data-v-06d2f237]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-s-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-06d2f237]{display:none!important}.s-visible[data-v-06d2f237]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-1[data-v-06d2f237]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-2[data-v-06d2f237]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-3[data-v-06d2f237]{margin-left:26%}.col-no-margin-m-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-4[data-v-06d2f237]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-5[data-v-06d2f237]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-6[data-v-06d2f237]{margin-left:52%}.col-no-margin-m-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-7[data-v-06d2f237]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-8[data-v-06d2f237]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-9[data-v-06d2f237]{margin-left:78%}.col-no-margin-m-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-10[data-v-06d2f237]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-06d2f237]:first-child{margin-left:0}.col-offset-m-11[data-v-06d2f237]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-m-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-06d2f237]{display:none!important}.m-visible[data-v-06d2f237]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-1[data-v-06d2f237]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-2[data-v-06d2f237]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-3[data-v-06d2f237]{margin-left:26%}.col-no-margin-l-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-4[data-v-06d2f237]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-5[data-v-06d2f237]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-6[data-v-06d2f237]{margin-left:52%}.col-no-margin-l-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-7[data-v-06d2f237]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-8[data-v-06d2f237]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-9[data-v-06d2f237]{margin-left:78%}.col-no-margin-l-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-10[data-v-06d2f237]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-06d2f237]:first-child{margin-left:0}.col-offset-l-11[data-v-06d2f237]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-l-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-06d2f237]{display:none!important}.l-visible[data-v-06d2f237]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-1[data-v-06d2f237]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-2[data-v-06d2f237]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-3[data-v-06d2f237]{margin-left:26%}.col-no-margin-xl-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-4[data-v-06d2f237]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-5[data-v-06d2f237]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-6[data-v-06d2f237]{margin-left:52%}.col-no-margin-xl-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-7[data-v-06d2f237]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-8[data-v-06d2f237]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-9[data-v-06d2f237]{margin-left:78%}.col-no-margin-xl-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-10[data-v-06d2f237]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xl-11[data-v-06d2f237]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-06d2f237]{display:none!important}.xl-visible[data-v-06d2f237]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-1[data-v-06d2f237]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-06d2f237]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-2[data-v-06d2f237]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-06d2f237]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-3[data-v-06d2f237]{margin-left:26%}.col-no-margin-xxl-3[data-v-06d2f237]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-4[data-v-06d2f237]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-06d2f237]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-5[data-v-06d2f237]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-06d2f237]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-6[data-v-06d2f237]{margin-left:52%}.col-no-margin-xxl-6[data-v-06d2f237]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-7[data-v-06d2f237]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-06d2f237]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-8[data-v-06d2f237]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-06d2f237]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-9[data-v-06d2f237]{margin-left:78%}.col-no-margin-xxl-9[data-v-06d2f237]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-10[data-v-06d2f237]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-06d2f237]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-06d2f237]:first-child{margin-left:0}.col-offset-xxl-11[data-v-06d2f237]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-06d2f237]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-06d2f237]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-06d2f237]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-06d2f237]{display:none!important}.xxl-visible[data-v-06d2f237]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-06d2f237]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-06d2f237]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-06d2f237]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-06d2f237]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-06d2f237]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-06d2f237]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-06d2f237]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-06d2f237]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-06d2f237]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-06d2f237]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-06d2f237]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-06d2f237]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-06d2f237]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-06d2f237]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-06d2f237]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-06d2f237]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-06d2f237]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-06d2f237]{display:none!important}}.vertical-center[data-v-06d2f237]{display:flex;align-items:center}.horizontal-center[data-v-06d2f237]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-06d2f237]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-06d2f237]{display:none!important}.no-content[data-v-06d2f237]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-06d2f237]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-06d2f237]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-06d2f237]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-06d2f237]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-06d2f237]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-06d2f237]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-06d2f237],.btn[data-v-06d2f237],button[data-v-06d2f237]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-06d2f237],.btn-default[type=submit][data-v-06d2f237],.btn.btn-primary[data-v-06d2f237],.btn[type=submit][data-v-06d2f237],button.btn-primary[data-v-06d2f237],button[type=submit][data-v-06d2f237]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-06d2f237],.btn-default .icon[data-v-06d2f237],button .icon[data-v-06d2f237]{margin-right:.5em}input[type=password][data-v-06d2f237],input[type=text][data-v-06d2f237]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-06d2f237]:focus,input[type=text][data-v-06d2f237]:focus{border:1px solid #35b870}button[data-v-06d2f237],input[data-v-06d2f237]{outline:none}input[type=text][data-v-06d2f237]:hover,textarea[data-v-06d2f237]:hover{border:1px solid #9cdfb0}ul[data-v-06d2f237]{margin:0;padding:0;list-style:none}a[data-v-06d2f237]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-06d2f237]:hover{color:#35b870}[data-v-06d2f237]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-06d2f237]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-06d2f237]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-06d2f237]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-06d2f237]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-06d2f237] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-06d2f237] .nav .path{cursor:pointer}.browser[data-v-06d2f237] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-06d2f237] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-06d2f237]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-06d2f237],input[type=number][data-v-06d2f237],input[type=password][data-v-06d2f237],input[type=search][data-v-06d2f237],input[type=text][data-v-06d2f237],input[type=time][data-v-06d2f237]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-06d2f237]:hover,input[type=number][data-v-06d2f237]:hover,input[type=password][data-v-06d2f237]:hover,input[type=search][data-v-06d2f237]:hover,input[type=text][data-v-06d2f237]:hover,input[type=time][data-v-06d2f237]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-06d2f237]:focus,input[type=number][data-v-06d2f237]:focus,input[type=password][data-v-06d2f237]:focus,input[type=search][data-v-06d2f237]:focus,input[type=text][data-v-06d2f237]:focus,input[type=time][data-v-06d2f237]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-06d2f237],input[type=number].with-icon[data-v-06d2f237],input[type=password].with-icon[data-v-06d2f237],input[type=search].with-icon[data-v-06d2f237],input[type=text].with-icon[data-v-06d2f237],input[type=time].with-icon[data-v-06d2f237]{padding-left:.3em}input[type=search][data-v-06d2f237],input[type=text][data-v-06d2f237]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-06d2f237]{animation-fill-mode:both;animation-name:fadeIn-06d2f237;-webkit-animation-name:fadeIn-06d2f237}.fade-in[data-v-06d2f237],.fade-out[data-v-06d2f237]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-06d2f237]{animation-fill-mode:both;animation-name:fadeOut-06d2f237;-webkit-animation-name:fadeOut-06d2f237}@keyframes fadeIn-06d2f237{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-06d2f237{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-06d2f237]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-06d2f237;-webkit-animation-name:glow-06d2f237}.loop[data-v-06d2f237]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-06d2f237{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-06d2f237]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-06d2f237]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-06d2f237]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-06d2f237] .modal .dialog-content{padding:1em}[data-v-06d2f237] .modal .body{padding:1.5em}[data-v-06d2f237] .modal .buttons{display:flex;flex-direction:row;justify-content:right;margin-bottom:1em;border:0;border-radius:0}[data-v-06d2f237] .modal .buttons button{margin-right:1em;padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-06d2f237] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-c190f656]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-1[data-v-c190f656]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c190f656]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c190f656]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c190f656]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-2[data-v-c190f656]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c190f656]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c190f656]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c190f656]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-3[data-v-c190f656]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c190f656]:first-child{margin-left:26%!important}.col-offset-3[data-v-c190f656]:not(first-child){margin-left:30%!important}.col-4[data-v-c190f656]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-4[data-v-c190f656]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c190f656]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c190f656]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c190f656]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-5[data-v-c190f656]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c190f656]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c190f656]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c190f656]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-6[data-v-c190f656]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c190f656]:first-child{margin-left:52%!important}.col-offset-6[data-v-c190f656]:not(first-child){margin-left:56%!important}.col-7[data-v-c190f656]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-7[data-v-c190f656]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c190f656]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c190f656]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c190f656]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-8[data-v-c190f656]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c190f656]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c190f656]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c190f656]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-9[data-v-c190f656]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c190f656]:first-child{margin-left:78%!important}.col-offset-9[data-v-c190f656]:not(first-child){margin-left:82%!important}.col-10[data-v-c190f656]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-10[data-v-c190f656]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c190f656]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c190f656]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c190f656]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c190f656]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c190f656]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-1[data-v-c190f656]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c190f656]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c190f656]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-2[data-v-c190f656]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c190f656]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c190f656]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-3[data-v-c190f656]{margin-left:26%}.col-no-margin-s-3[data-v-c190f656]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c190f656]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-4[data-v-c190f656]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c190f656]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c190f656]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-5[data-v-c190f656]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c190f656]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c190f656]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-6[data-v-c190f656]{margin-left:52%}.col-no-margin-s-6[data-v-c190f656]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c190f656]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-7[data-v-c190f656]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c190f656]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c190f656]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-8[data-v-c190f656]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c190f656]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c190f656]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-9[data-v-c190f656]{margin-left:78%}.col-no-margin-s-9[data-v-c190f656]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c190f656]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-10[data-v-c190f656]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c190f656]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c190f656]:first-child{margin-left:0}.col-offset-s-11[data-v-c190f656]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c190f656]{display:none!important}.s-visible[data-v-c190f656]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c190f656]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-1[data-v-c190f656]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c190f656]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c190f656]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-2[data-v-c190f656]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c190f656]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c190f656]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-3[data-v-c190f656]{margin-left:26%}.col-no-margin-m-3[data-v-c190f656]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c190f656]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-4[data-v-c190f656]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c190f656]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c190f656]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-5[data-v-c190f656]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c190f656]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c190f656]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-6[data-v-c190f656]{margin-left:52%}.col-no-margin-m-6[data-v-c190f656]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c190f656]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-7[data-v-c190f656]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c190f656]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c190f656]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-8[data-v-c190f656]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c190f656]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c190f656]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-9[data-v-c190f656]{margin-left:78%}.col-no-margin-m-9[data-v-c190f656]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c190f656]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-10[data-v-c190f656]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c190f656]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c190f656]:first-child{margin-left:0}.col-offset-m-11[data-v-c190f656]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c190f656]{display:none!important}.m-visible[data-v-c190f656]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c190f656]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-1[data-v-c190f656]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c190f656]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c190f656]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-2[data-v-c190f656]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c190f656]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c190f656]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-3[data-v-c190f656]{margin-left:26%}.col-no-margin-l-3[data-v-c190f656]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c190f656]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-4[data-v-c190f656]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c190f656]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c190f656]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-5[data-v-c190f656]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c190f656]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c190f656]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-6[data-v-c190f656]{margin-left:52%}.col-no-margin-l-6[data-v-c190f656]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c190f656]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-7[data-v-c190f656]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c190f656]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c190f656]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-8[data-v-c190f656]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c190f656]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c190f656]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-9[data-v-c190f656]{margin-left:78%}.col-no-margin-l-9[data-v-c190f656]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c190f656]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-10[data-v-c190f656]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c190f656]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c190f656]:first-child{margin-left:0}.col-offset-l-11[data-v-c190f656]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c190f656]{display:none!important}.l-visible[data-v-c190f656]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c190f656]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-1[data-v-c190f656]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c190f656]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c190f656]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-2[data-v-c190f656]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c190f656]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c190f656]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-3[data-v-c190f656]{margin-left:26%}.col-no-margin-xl-3[data-v-c190f656]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c190f656]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-4[data-v-c190f656]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c190f656]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c190f656]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-5[data-v-c190f656]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c190f656]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c190f656]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-6[data-v-c190f656]{margin-left:52%}.col-no-margin-xl-6[data-v-c190f656]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c190f656]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-7[data-v-c190f656]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c190f656]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c190f656]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-8[data-v-c190f656]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c190f656]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c190f656]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-9[data-v-c190f656]{margin-left:78%}.col-no-margin-xl-9[data-v-c190f656]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c190f656]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-10[data-v-c190f656]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c190f656]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c190f656]:first-child{margin-left:0}.col-offset-xl-11[data-v-c190f656]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c190f656]{display:none!important}.xl-visible[data-v-c190f656]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c190f656]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c190f656]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c190f656]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c190f656]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c190f656]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c190f656]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c190f656]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c190f656]{margin-left:26%}.col-no-margin-xxl-3[data-v-c190f656]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c190f656]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c190f656]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c190f656]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c190f656]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c190f656]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c190f656]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c190f656]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c190f656]{margin-left:52%}.col-no-margin-xxl-6[data-v-c190f656]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c190f656]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c190f656]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c190f656]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c190f656]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c190f656]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c190f656]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c190f656]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c190f656]{margin-left:78%}.col-no-margin-xxl-9[data-v-c190f656]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c190f656]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c190f656]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c190f656]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c190f656]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c190f656]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c190f656]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c190f656]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c190f656]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c190f656]{display:none!important}.xxl-visible[data-v-c190f656]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-c190f656]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-c190f656]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-c190f656]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-c190f656]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c190f656]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-c190f656]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c190f656]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-c190f656]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c190f656]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-c190f656]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c190f656]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-c190f656]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c190f656]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-c190f656]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c190f656]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-c190f656]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-c190f656]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c190f656]{display:none!important}}.vertical-center[data-v-c190f656]{display:flex;align-items:center}.horizontal-center[data-v-c190f656]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c190f656]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c190f656]{display:none!important}.no-content[data-v-c190f656]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-c190f656]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-c190f656]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-c190f656]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-c190f656]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-c190f656]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-c190f656]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-c190f656],.btn[data-v-c190f656],button[data-v-c190f656]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c190f656],.btn-default[type=submit][data-v-c190f656],.btn.btn-primary[data-v-c190f656],.btn[type=submit][data-v-c190f656],button.btn-primary[data-v-c190f656],button[type=submit][data-v-c190f656]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-c190f656],.btn-default .icon[data-v-c190f656],button .icon[data-v-c190f656]{margin-right:.5em}input[type=password][data-v-c190f656],input[type=text][data-v-c190f656]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c190f656]:focus,input[type=text][data-v-c190f656]:focus{border:1px solid #35b870}button[data-v-c190f656],input[data-v-c190f656]{outline:none}input[type=text][data-v-c190f656]:hover,textarea[data-v-c190f656]:hover{border:1px solid #9cdfb0}ul[data-v-c190f656]{margin:0;padding:0;list-style:none}a[data-v-c190f656]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c190f656]:hover{color:#35b870}[data-v-c190f656]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-c190f656]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-c190f656]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c190f656]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-c190f656]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-c190f656] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-c190f656] .nav .path{cursor:pointer}.browser[data-v-c190f656] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-c190f656] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-c190f656]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-c190f656],input[type=number][data-v-c190f656],input[type=password][data-v-c190f656],input[type=search][data-v-c190f656],input[type=text][data-v-c190f656],input[type=time][data-v-c190f656]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-c190f656]:hover,input[type=number][data-v-c190f656]:hover,input[type=password][data-v-c190f656]:hover,input[type=search][data-v-c190f656]:hover,input[type=text][data-v-c190f656]:hover,input[type=time][data-v-c190f656]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-c190f656]:focus,input[type=number][data-v-c190f656]:focus,input[type=password][data-v-c190f656]:focus,input[type=search][data-v-c190f656]:focus,input[type=text][data-v-c190f656]:focus,input[type=time][data-v-c190f656]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-c190f656],input[type=number].with-icon[data-v-c190f656],input[type=password].with-icon[data-v-c190f656],input[type=search].with-icon[data-v-c190f656],input[type=text].with-icon[data-v-c190f656],input[type=time].with-icon[data-v-c190f656]{padding-left:.3em}input[type=search][data-v-c190f656],input[type=text][data-v-c190f656]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c190f656]{animation-fill-mode:both;animation-name:fadeIn-c190f656;-webkit-animation-name:fadeIn-c190f656}.fade-in[data-v-c190f656],.fade-out[data-v-c190f656]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c190f656]{animation-fill-mode:both;animation-name:fadeOut-c190f656;-webkit-animation-name:fadeOut-c190f656}@keyframes fadeIn-c190f656{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c190f656{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-c190f656]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-c190f656;-webkit-animation-name:glow-c190f656}.loop[data-v-c190f656]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-c190f656{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-c190f656]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c190f656]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c190f656]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.dropdown-container[data-v-c190f656] .dropdown{border:1px solid #ddd}.col-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7646705e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7646705e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7646705e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7646705e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7646705e]:first-child{margin-left:26%!important}.col-offset-3[data-v-7646705e]:not(first-child){margin-left:30%!important}.col-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7646705e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7646705e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7646705e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7646705e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7646705e]:first-child{margin-left:52%!important}.col-offset-6[data-v-7646705e]:not(first-child){margin-left:56%!important}.col-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7646705e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7646705e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7646705e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7646705e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7646705e]:first-child{margin-left:78%!important}.col-offset-9[data-v-7646705e]:not(first-child){margin-left:82%!important}.col-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7646705e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7646705e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7646705e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7646705e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-3[data-v-7646705e]{margin-left:26%}.col-no-margin-s-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-6[data-v-7646705e]{margin-left:52%}.col-no-margin-s-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-9[data-v-7646705e]{margin-left:78%}.col-no-margin-s-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7646705e]{display:none!important}.s-visible[data-v-7646705e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-3[data-v-7646705e]{margin-left:26%}.col-no-margin-m-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-6[data-v-7646705e]{margin-left:52%}.col-no-margin-m-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-9[data-v-7646705e]{margin-left:78%}.col-no-margin-m-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7646705e]{display:none!important}.m-visible[data-v-7646705e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-3[data-v-7646705e]{margin-left:26%}.col-no-margin-l-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-6[data-v-7646705e]{margin-left:52%}.col-no-margin-l-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-9[data-v-7646705e]{margin-left:78%}.col-no-margin-l-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7646705e]{display:none!important}.l-visible[data-v-7646705e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-3[data-v-7646705e]{margin-left:26%}.col-no-margin-xl-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-6[data-v-7646705e]{margin-left:52%}.col-no-margin-xl-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-9[data-v-7646705e]{margin-left:78%}.col-no-margin-xl-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7646705e]{display:none!important}.xl-visible[data-v-7646705e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7646705e]{margin-left:26%}.col-no-margin-xxl-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7646705e]{margin-left:52%}.col-no-margin-xxl-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7646705e]{margin-left:78%}.col-no-margin-xxl-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7646705e]{display:none!important}.xxl-visible[data-v-7646705e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7646705e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7646705e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7646705e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7646705e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7646705e]{display:none!important}}.notification .body[data-v-7646705e],.notification .image .row[data-v-7646705e],.vertical-center[data-v-7646705e]{display:flex;align-items:center}.horizontal-center[data-v-7646705e],.notification .image .row[data-v-7646705e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7646705e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7646705e]{display:none!important}.no-content[data-v-7646705e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7646705e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7646705e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7646705e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7646705e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7646705e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7646705e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7646705e],.btn[data-v-7646705e],button[data-v-7646705e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7646705e],.btn-default[type=submit][data-v-7646705e],.btn.btn-primary[data-v-7646705e],.btn[type=submit][data-v-7646705e],button.btn-primary[data-v-7646705e],button[type=submit][data-v-7646705e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7646705e],.btn-default .icon[data-v-7646705e],button .icon[data-v-7646705e]{margin-right:.5em}input[type=password][data-v-7646705e],input[type=text][data-v-7646705e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7646705e]:focus,input[type=text][data-v-7646705e]:focus{border:1px solid #35b870}button[data-v-7646705e],input[data-v-7646705e]{outline:none}input[type=text][data-v-7646705e]:hover,textarea[data-v-7646705e]:hover{border:1px solid #9cdfb0}ul[data-v-7646705e]{margin:0;padding:0;list-style:none}a[data-v-7646705e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7646705e]:hover{color:#35b870}[data-v-7646705e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7646705e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7646705e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7646705e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7646705e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7646705e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7646705e] .nav .path{cursor:pointer}.browser[data-v-7646705e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7646705e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7646705e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7646705e],input[type=number][data-v-7646705e],input[type=password][data-v-7646705e],input[type=search][data-v-7646705e],input[type=text][data-v-7646705e],input[type=time][data-v-7646705e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7646705e]:hover,input[type=number][data-v-7646705e]:hover,input[type=password][data-v-7646705e]:hover,input[type=search][data-v-7646705e]:hover,input[type=text][data-v-7646705e]:hover,input[type=time][data-v-7646705e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7646705e]:focus,input[type=number][data-v-7646705e]:focus,input[type=password][data-v-7646705e]:focus,input[type=search][data-v-7646705e]:focus,input[type=text][data-v-7646705e]:focus,input[type=time][data-v-7646705e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7646705e],input[type=number].with-icon[data-v-7646705e],input[type=password].with-icon[data-v-7646705e],input[type=search].with-icon[data-v-7646705e],input[type=text].with-icon[data-v-7646705e],input[type=time].with-icon[data-v-7646705e]{padding-left:.3em}input[type=search][data-v-7646705e],input[type=text][data-v-7646705e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7646705e]{animation-fill-mode:both;animation-name:fadeIn-7646705e;-webkit-animation-name:fadeIn-7646705e}.fade-in[data-v-7646705e],.fade-out[data-v-7646705e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7646705e]{animation-fill-mode:both;animation-name:fadeOut-7646705e;-webkit-animation-name:fadeOut-7646705e}@keyframes fadeIn-7646705e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7646705e{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-7646705e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7646705e;-webkit-animation-name:glow-7646705e}.loop[data-v-7646705e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7646705e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7646705e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7646705e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7646705e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.notification[data-v-7646705e]{background:rgba(185,255,193,.9);border:1px solid rgba(109,205,134,.62);border-radius:1em;margin-bottom:.25em!important;margin-right:.1em;padding:.5em;cursor:pointer}.notification[data-v-7646705e]:hover{background:rgba(160,245,178,.95)}.notification:hover.warning[data-v-7646705e]{background:rgba(218,245,68,.95)}.notification:hover.error[data-v-7646705e]{background:rgba(245,90,90,.95)}.notification.warning[data-v-7646705e]{background:rgba(228,255,78,.9);border:1px solid hsla(60,49%,62%,.62)}.notification.warning .image[data-v-7646705e]{--color:$notification-warning-icon-color}.notification.error[data-v-7646705e]{background:hsla(0,100%,70%,.9);border:1px solid hsla(0,49%,62%,.62)}.notification.error .image[data-v-7646705e]{--color:$notification-error-icon-color}.notification .title[data-v-7646705e]{color:#364;font-size:1.25em;font-weight:400;margin:.25em 0;padding:0;letter-spacing:.07em}.notification .body[data-v-7646705e]{height:6em;overflow:hidden;padding-bottom:.1em;letter-spacing:.05em}.notification .image[data-v-7646705e]{height:100%;text-align:center;--color:$notification-icon-color}.notification .image .row[data-v-7646705e]{width:100%;height:100%}.notification .image .row .fa[data-v-7646705e]{font-size:2.5em;color:var(--color)}.notification .image .row img[data-v-7646705e]{width:80%;height:80%}.notifications[data-v-6dc8bebc]{position:fixed;bottom:0;right:0;width:25em;z-index:1000}.assistant-modal .modal .body{width:50vw;height:50vh;display:flex;align-items:center;justify-content:center;flex-direction:column;text-align:center}.assistant-modal .modal .body .icon{font-size:3em;color:#7e8;box-shadow:2px 2px 2px #ccc;border:1px solid #ccc;border-radius:3em;padding:1em}.assistant-modal .modal .body .text{margin-top:2.5em}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}/*! - * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2024 Fonticons, Inc. - */.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:Font Awesome\ 6 Free}.fa-brands,.fab{font-family:Font Awesome\ 6 Brands}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.0833333337em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.0714285718em;vertical-align:.0535714295em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.0416666682em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{animation-name:fa-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{animation-name:fa-beat-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{animation-name:fa-shake;animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{animation-name:fa-spin;animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media(prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}24%,8%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0:before{content:"\30 "}.fa-1:before{content:"\31 "}.fa-2:before{content:"\32 "}.fa-3:before{content:"\33 "}.fa-4:before{content:"\34 "}.fa-5:before{content:"\35 "}.fa-6:before{content:"\36 "}.fa-7:before{content:"\37 "}.fa-8:before{content:"\38 "}.fa-9:before{content:"\39 "}.fa-fill-drip:before{content:""}.fa-arrows-to-circle:before{content:""}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:""}.fa-at:before{content:"\@"}.fa-trash-alt:before,.fa-trash-can:before{content:""}.fa-text-height:before{content:""}.fa-user-times:before,.fa-user-xmark:before{content:""}.fa-stethoscope:before{content:""}.fa-comment-alt:before,.fa-message:before{content:""}.fa-info:before{content:""}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:""}.fa-explosion:before{content:""}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:""}.fa-wave-square:before{content:""}.fa-ring:before{content:""}.fa-building-un:before{content:""}.fa-dice-three:before{content:""}.fa-calendar-alt:before,.fa-calendar-days:before{content:""}.fa-anchor-circle-check:before{content:""}.fa-building-circle-arrow-right:before{content:""}.fa-volleyball-ball:before,.fa-volleyball:before{content:""}.fa-arrows-up-to-line:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-circle-minus:before,.fa-minus-circle:before{content:""}.fa-door-open:before{content:""}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:""}.fa-atom:before{content:""}.fa-soap:before{content:""}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:""}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:""}.fa-bridge-circle-check:before{content:""}.fa-pump-medical:before{content:""}.fa-fingerprint:before{content:""}.fa-hand-point-right:before{content:""}.fa-magnifying-glass-location:before,.fa-search-location:before{content:""}.fa-forward-step:before,.fa-step-forward:before{content:""}.fa-face-smile-beam:before,.fa-smile-beam:before{content:""}.fa-flag-checkered:before{content:""}.fa-football-ball:before,.fa-football:before{content:""}.fa-school-circle-exclamation:before{content:""}.fa-crop:before{content:""}.fa-angle-double-down:before,.fa-angles-down:before{content:""}.fa-users-rectangle:before{content:""}.fa-people-roof:before{content:""}.fa-people-line:before{content:""}.fa-beer-mug-empty:before,.fa-beer:before{content:""}.fa-diagram-predecessor:before{content:""}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:""}.fa-burn:before,.fa-fire-flame-simple:before{content:""}.fa-male:before,.fa-person:before{content:""}.fa-laptop:before{content:""}.fa-file-csv:before{content:""}.fa-menorah:before{content:""}.fa-truck-plane:before{content:""}.fa-record-vinyl:before{content:""}.fa-face-grin-stars:before,.fa-grin-stars:before{content:""}.fa-bong:before{content:""}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:""}.fa-arrow-down-up-across-line:before{content:""}.fa-spoon:before,.fa-utensil-spoon:before{content:""}.fa-jar-wheat:before{content:""}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:""}.fa-file-circle-exclamation:before{content:""}.fa-circle-h:before,.fa-hospital-symbol:before{content:""}.fa-pager:before{content:""}.fa-address-book:before,.fa-contact-book:before{content:""}.fa-strikethrough:before{content:""}.fa-k:before{content:"K"}.fa-landmark-flag:before{content:""}.fa-pencil-alt:before,.fa-pencil:before{content:""}.fa-backward:before{content:""}.fa-caret-right:before{content:""}.fa-comments:before{content:""}.fa-file-clipboard:before,.fa-paste:before{content:""}.fa-code-pull-request:before{content:""}.fa-clipboard-list:before{content:""}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:""}.fa-user-check:before{content:""}.fa-vial-virus:before{content:""}.fa-sheet-plastic:before{content:""}.fa-blog:before{content:""}.fa-user-ninja:before{content:""}.fa-person-arrow-up-from-line:before{content:""}.fa-scroll-torah:before,.fa-torah:before{content:""}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:""}.fa-toggle-off:before{content:""}.fa-archive:before,.fa-box-archive:before{content:""}.fa-person-drowning:before{content:""}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:""}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:""}.fa-spray-can:before{content:""}.fa-truck-monster:before{content:""}.fa-w:before{content:"W"}.fa-earth-africa:before,.fa-globe-africa:before{content:""}.fa-rainbow:before{content:""}.fa-circle-notch:before{content:""}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:""}.fa-paw:before{content:""}.fa-cloud:before{content:""}.fa-trowel-bricks:before{content:""}.fa-face-flushed:before,.fa-flushed:before{content:""}.fa-hospital-user:before{content:""}.fa-tent-arrow-left-right:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-binoculars:before{content:""}.fa-microphone-slash:before{content:""}.fa-box-tissue:before{content:""}.fa-motorcycle:before{content:""}.fa-bell-concierge:before,.fa-concierge-bell:before{content:""}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:""}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:""}.fa-mars-and-venus-burst:before{content:""}.fa-caret-square-right:before,.fa-square-caret-right:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-sun-plant-wilt:before{content:""}.fa-toilets-portable:before{content:""}.fa-hockey-puck:before{content:""}.fa-table:before{content:""}.fa-magnifying-glass-arrow-right:before{content:""}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:""}.fa-users-slash:before{content:""}.fa-clover:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-star-and-crescent:before{content:""}.fa-house-fire:before{content:""}.fa-minus-square:before,.fa-square-minus:before{content:""}.fa-helicopter:before{content:""}.fa-compass:before{content:""}.fa-caret-square-down:before,.fa-square-caret-down:before{content:""}.fa-file-circle-question:before{content:""}.fa-laptop-code:before{content:""}.fa-swatchbook:before{content:""}.fa-prescription-bottle:before{content:""}.fa-bars:before,.fa-navicon:before{content:""}.fa-people-group:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-heart-broken:before,.fa-heart-crack:before{content:""}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:""}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:""}.fa-film:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-people-robbery:before{content:""}.fa-lightbulb:before{content:""}.fa-caret-left:before{content:""}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:""}.fa-school-circle-xmark:before{content:""}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:""}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:""}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-headphones-alt:before,.fa-headphones-simple:before{content:""}.fa-sitemap:before{content:""}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:""}.fa-memory:before{content:""}.fa-road-spikes:before{content:""}.fa-fire-burner:before{content:""}.fa-flag:before{content:""}.fa-hanukiah:before{content:""}.fa-feather:before{content:""}.fa-volume-down:before,.fa-volume-low:before{content:""}.fa-comment-slash:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-compress:before{content:""}.fa-wheat-alt:before,.fa-wheat-awn:before{content:""}.fa-ankh:before{content:""}.fa-hands-holding-child:before{content:""}.fa-asterisk:before{content:"\*"}.fa-check-square:before,.fa-square-check:before{content:""}.fa-peseta-sign:before{content:""}.fa-header:before,.fa-heading:before{content:""}.fa-ghost:before{content:""}.fa-list-squares:before,.fa-list:before{content:""}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:""}.fa-cart-plus:before{content:""}.fa-gamepad:before{content:""}.fa-circle-dot:before,.fa-dot-circle:before{content:""}.fa-dizzy:before,.fa-face-dizzy:before{content:""}.fa-egg:before{content:""}.fa-house-medical-circle-xmark:before{content:""}.fa-campground:before{content:""}.fa-folder-plus:before{content:""}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:""}.fa-paint-brush:before,.fa-paintbrush:before{content:""}.fa-lock:before{content:""}.fa-gas-pump:before{content:""}.fa-hot-tub-person:before,.fa-hot-tub:before{content:""}.fa-map-location:before,.fa-map-marked:before{content:""}.fa-house-flood-water:before{content:""}.fa-tree:before{content:""}.fa-bridge-lock:before{content:""}.fa-sack-dollar:before{content:""}.fa-edit:before,.fa-pen-to-square:before{content:""}.fa-car-side:before{content:""}.fa-share-alt:before,.fa-share-nodes:before{content:""}.fa-heart-circle-minus:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-microscope:before{content:""}.fa-sink:before{content:""}.fa-bag-shopping:before,.fa-shopping-bag:before{content:""}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:""}.fa-mitten:before{content:""}.fa-person-rays:before{content:""}.fa-users:before{content:""}.fa-eye-slash:before{content:""}.fa-flask-vial:before{content:""}.fa-hand-paper:before,.fa-hand:before{content:""}.fa-om:before{content:""}.fa-worm:before{content:""}.fa-house-circle-xmark:before{content:""}.fa-plug:before{content:""}.fa-chevron-up:before{content:""}.fa-hand-spock:before{content:""}.fa-stopwatch:before{content:""}.fa-face-kiss:before,.fa-kiss:before{content:""}.fa-bridge-circle-xmark:before{content:""}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:""}.fa-chess-bishop:before{content:""}.fa-face-grin-wink:before,.fa-grin-wink:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:""}.fa-road-circle-check:before{content:""}.fa-dice-five:before{content:""}.fa-rss-square:before,.fa-square-rss:before{content:""}.fa-land-mine-on:before{content:""}.fa-i-cursor:before{content:""}.fa-stamp:before{content:""}.fa-stairs:before{content:""}.fa-i:before{content:"I"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:""}.fa-pills:before{content:""}.fa-face-grin-wide:before,.fa-grin-alt:before{content:""}.fa-tooth:before{content:""}.fa-v:before{content:"V"}.fa-bangladeshi-taka-sign:before{content:""}.fa-bicycle:before{content:""}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-ambulance:before,.fa-truck-medical:before{content:""}.fa-wheat-awn-circle-exclamation:before{content:""}.fa-snowman:before{content:""}.fa-mortar-pestle:before{content:""}.fa-road-barrier:before{content:""}.fa-school:before{content:""}.fa-igloo:before{content:""}.fa-joint:before{content:""}.fa-angle-right:before{content:""}.fa-horse:before{content:""}.fa-q:before{content:"Q"}.fa-g:before{content:"G"}.fa-notes-medical:before{content:""}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-dong-sign:before{content:""}.fa-capsules:before{content:""}.fa-poo-bolt:before,.fa-poo-storm:before{content:""}.fa-face-frown-open:before,.fa-frown-open:before{content:""}.fa-hand-point-up:before{content:""}.fa-money-bill:before{content:""}.fa-bookmark:before{content:""}.fa-align-justify:before{content:""}.fa-umbrella-beach:before{content:""}.fa-helmet-un:before{content:""}.fa-bullseye:before{content:""}.fa-bacon:before{content:""}.fa-hand-point-down:before{content:""}.fa-arrow-up-from-bracket:before{content:""}.fa-folder-blank:before,.fa-folder:before{content:""}.fa-file-medical-alt:before,.fa-file-waveform:before{content:""}.fa-radiation:before{content:""}.fa-chart-simple:before{content:""}.fa-mars-stroke:before{content:""}.fa-vial:before{content:""}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:""}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:""}.fa-e:before{content:"E"}.fa-pen-alt:before,.fa-pen-clip:before{content:""}.fa-bridge-circle-exclamation:before{content:""}.fa-user:before{content:""}.fa-school-circle-check:before{content:""}.fa-dumpster:before{content:""}.fa-shuttle-van:before,.fa-van-shuttle:before{content:""}.fa-building-user:before{content:""}.fa-caret-square-left:before,.fa-square-caret-left:before{content:""}.fa-highlighter:before{content:""}.fa-key:before{content:""}.fa-bullhorn:before{content:""}.fa-globe:before{content:""}.fa-synagogue:before{content:""}.fa-person-half-dress:before{content:""}.fa-road-bridge:before{content:""}.fa-location-arrow:before{content:""}.fa-c:before{content:"C"}.fa-tablet-button:before{content:""}.fa-building-lock:before{content:""}.fa-pizza-slice:before{content:""}.fa-money-bill-wave:before{content:""}.fa-area-chart:before,.fa-chart-area:before{content:""}.fa-house-flag:before{content:""}.fa-person-circle-minus:before{content:""}.fa-ban:before,.fa-cancel:before{content:""}.fa-camera-rotate:before{content:""}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:""}.fa-star:before{content:""}.fa-repeat:before{content:""}.fa-cross:before{content:""}.fa-box:before{content:""}.fa-venus-mars:before{content:""}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:""}.fa-expand-arrows-alt:before,.fa-maximize:before{content:""}.fa-charging-station:before{content:""}.fa-shapes:before,.fa-triangle-circle-square:before{content:""}.fa-random:before,.fa-shuffle:before{content:""}.fa-person-running:before,.fa-running:before{content:""}.fa-mobile-retro:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-spider:before{content:""}.fa-hands-bound:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-plane-circle-exclamation:before{content:""}.fa-x-ray:before{content:""}.fa-spell-check:before{content:""}.fa-slash:before{content:""}.fa-computer-mouse:before,.fa-mouse:before{content:""}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:""}.fa-shop-slash:before,.fa-store-alt-slash:before{content:""}.fa-server:before{content:""}.fa-virus-covid-slash:before{content:""}.fa-shop-lock:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-blender-phone:before{content:""}.fa-building-wheat:before{content:""}.fa-person-breastfeeding:before{content:""}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:""}.fa-venus:before{content:""}.fa-passport:before{content:""}.fa-heart-pulse:before,.fa-heartbeat:before{content:""}.fa-people-carry-box:before,.fa-people-carry:before{content:""}.fa-temperature-high:before{content:""}.fa-microchip:before{content:""}.fa-crown:before{content:""}.fa-weight-hanging:before{content:""}.fa-xmarks-lines:before{content:""}.fa-file-prescription:before{content:""}.fa-weight-scale:before,.fa-weight:before{content:""}.fa-user-friends:before,.fa-user-group:before{content:""}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:""}.fa-chess-knight:before{content:""}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:""}.fa-wheelchair:before{content:""}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:""}.fa-toggle-on:before{content:""}.fa-person-walking:before,.fa-walking:before{content:""}.fa-l:before{content:"L"}.fa-fire:before{content:""}.fa-bed-pulse:before,.fa-procedures:before{content:""}.fa-shuttle-space:before,.fa-space-shuttle:before{content:""}.fa-face-laugh:before,.fa-laugh:before{content:""}.fa-folder-open:before{content:""}.fa-heart-circle-plus:before{content:""}.fa-code-fork:before{content:""}.fa-city:before{content:""}.fa-microphone-alt:before,.fa-microphone-lines:before{content:""}.fa-pepper-hot:before{content:""}.fa-unlock:before{content:""}.fa-colon-sign:before{content:""}.fa-headset:before{content:""}.fa-store-slash:before{content:""}.fa-road-circle-xmark:before{content:""}.fa-user-minus:before{content:""}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:""}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:""}.fa-clipboard:before{content:""}.fa-house-circle-exclamation:before{content:""}.fa-file-arrow-up:before,.fa-file-upload:before{content:""}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:""}.fa-bath:before,.fa-bathtub:before{content:""}.fa-underline:before{content:""}.fa-user-edit:before,.fa-user-pen:before{content:""}.fa-signature:before{content:""}.fa-stroopwafel:before{content:""}.fa-bold:before{content:""}.fa-anchor-lock:before{content:""}.fa-building-ngo:before{content:""}.fa-manat-sign:before{content:""}.fa-not-equal:before{content:""}.fa-border-style:before,.fa-border-top-left:before{content:""}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:""}.fa-jedi:before{content:""}.fa-poll:before,.fa-square-poll-vertical:before{content:""}.fa-mug-hot:before{content:""}.fa-battery-car:before,.fa-car-battery:before{content:""}.fa-gift:before{content:""}.fa-dice-two:before{content:""}.fa-chess-queen:before{content:""}.fa-glasses:before{content:""}.fa-chess-board:before{content:""}.fa-building-circle-check:before{content:""}.fa-person-chalkboard:before{content:""}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:""}.fa-hand-back-fist:before,.fa-hand-rock:before{content:""}.fa-caret-square-up:before,.fa-square-caret-up:before{content:""}.fa-cloud-showers-water:before{content:""}.fa-bar-chart:before,.fa-chart-bar:before{content:""}.fa-hands-bubbles:before,.fa-hands-wash:before{content:""}.fa-less-than-equal:before{content:""}.fa-train:before{content:""}.fa-eye-low-vision:before,.fa-low-vision:before{content:""}.fa-crow:before{content:""}.fa-sailboat:before{content:""}.fa-window-restore:before{content:""}.fa-plus-square:before,.fa-square-plus:before{content:""}.fa-torii-gate:before{content:""}.fa-frog:before{content:""}.fa-bucket:before{content:""}.fa-image:before{content:""}.fa-microphone:before{content:""}.fa-cow:before{content:""}.fa-caret-up:before{content:""}.fa-screwdriver:before{content:""}.fa-folder-closed:before{content:""}.fa-house-tsunami:before{content:""}.fa-square-nfi:before{content:""}.fa-arrow-up-from-ground-water:before{content:""}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:""}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:""}.fa-columns:before,.fa-table-columns:before{content:""}.fa-lemon:before{content:""}.fa-head-side-mask:before{content:""}.fa-handshake:before{content:""}.fa-gem:before{content:""}.fa-dolly-box:before,.fa-dolly:before{content:""}.fa-smoking:before{content:""}.fa-compress-arrows-alt:before,.fa-minimize:before{content:""}.fa-monument:before{content:""}.fa-snowplow:before{content:""}.fa-angle-double-right:before,.fa-angles-right:before{content:""}.fa-cannabis:before{content:""}.fa-circle-play:before,.fa-play-circle:before{content:""}.fa-tablets:before{content:""}.fa-ethernet:before{content:""}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:""}.fa-chair:before{content:""}.fa-check-circle:before,.fa-circle-check:before{content:""}.fa-circle-stop:before,.fa-stop-circle:before{content:""}.fa-compass-drafting:before,.fa-drafting-compass:before{content:""}.fa-plate-wheat:before{content:""}.fa-icicles:before{content:""}.fa-person-shelter:before{content:""}.fa-neuter:before{content:""}.fa-id-badge:before{content:""}.fa-marker:before{content:""}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:""}.fa-helicopter-symbol:before{content:""}.fa-universal-access:before{content:""}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:""}.fa-lari-sign:before{content:""}.fa-volcano:before{content:""}.fa-person-walking-dashed-line-arrow-right:before{content:""}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:""}.fa-viruses:before{content:""}.fa-square-person-confined:before{content:""}.fa-user-tie:before{content:""}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:""}.fa-tent-arrow-down-to-line:before{content:""}.fa-certificate:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-suitcase:before{content:""}.fa-person-skating:before,.fa-skating:before{content:""}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:""}.fa-camera-retro:before{content:""}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:""}.fa-arrow-right-to-file:before,.fa-file-import:before{content:""}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:""}.fa-box-open:before{content:""}.fa-scroll:before{content:""}.fa-spa:before{content:""}.fa-location-pin-lock:before{content:""}.fa-pause:before{content:""}.fa-hill-avalanche:before{content:""}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-bomb:before{content:""}.fa-registered:before{content:""}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:""}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:""}.fa-subscript:before{content:""}.fa-diamond-turn-right:before,.fa-directions:before{content:""}.fa-burst:before{content:""}.fa-house-laptop:before,.fa-laptop-house:before{content:""}.fa-face-tired:before,.fa-tired:before{content:""}.fa-money-bills:before{content:""}.fa-smog:before{content:""}.fa-crutch:before{content:""}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:""}.fa-palette:before{content:""}.fa-arrows-turn-right:before{content:""}.fa-vest:before{content:""}.fa-ferry:before{content:""}.fa-arrows-down-to-people:before{content:""}.fa-seedling:before,.fa-sprout:before{content:""}.fa-arrows-alt-h:before,.fa-left-right:before{content:""}.fa-boxes-packing:before{content:""}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:""}.fa-group-arrows-rotate:before{content:""}.fa-bowl-food:before{content:""}.fa-candy-cane:before{content:""}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:""}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:""}.fa-remove-format:before,.fa-text-slash:before{content:""}.fa-face-smile-wink:before,.fa-smile-wink:before{content:""}.fa-file-word:before{content:""}.fa-file-powerpoint:before{content:""}.fa-arrows-h:before,.fa-arrows-left-right:before{content:""}.fa-house-lock:before{content:""}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:""}.fa-children:before{content:""}.fa-blackboard:before,.fa-chalkboard:before{content:""}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:""}.fa-envelope-open:before{content:""}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:""}.fa-mattress-pillow:before{content:""}.fa-guarani-sign:before{content:""}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-cruzeiro-sign:before{content:""}.fa-greater-than-equal:before{content:""}.fa-shield-alt:before,.fa-shield-halved:before{content:""}.fa-atlas:before,.fa-book-atlas:before{content:""}.fa-virus:before{content:""}.fa-envelope-circle-check:before{content:""}.fa-layer-group:before{content:""}.fa-arrows-to-dot:before{content:""}.fa-archway:before{content:""}.fa-heart-circle-check:before{content:""}.fa-house-chimney-crack:before,.fa-house-damage:before{content:""}.fa-file-archive:before,.fa-file-zipper:before{content:""}.fa-square:before{content:""}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:""}.fa-couch:before{content:""}.fa-cedi-sign:before{content:""}.fa-italic:before{content:""}.fa-table-cells-column-lock:before{content:""}.fa-church:before{content:""}.fa-comments-dollar:before{content:""}.fa-democrat:before{content:""}.fa-z:before{content:"Z"}.fa-person-skiing:before,.fa-skiing:before{content:""}.fa-road-lock:before{content:""}.fa-a:before{content:"A"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:""}.fa-feather-alt:before,.fa-feather-pointed:before{content:""}.fa-p:before{content:"P"}.fa-snowflake:before{content:""}.fa-newspaper:before{content:""}.fa-ad:before,.fa-rectangle-ad:before{content:""}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:""}.fa-filter-circle-xmark:before{content:""}.fa-locust:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:""}.fa-person-dress-burst:before{content:""}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:""}.fa-vector-square:before{content:""}.fa-bread-slice:before{content:""}.fa-language:before{content:""}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:""}.fa-filter:before{content:""}.fa-question:before{content:"\?"}.fa-file-signature:before{content:""}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:""}.fa-house-chimney-user:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-puzzle-piece:before{content:""}.fa-money-check:before{content:""}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:""}.fa-code:before{content:""}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:""}.fa-building-circle-exclamation:before{content:""}.fa-magnifying-glass-chart:before{content:""}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:""}.fa-cubes-stacked:before{content:""}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:""}.fa-virus-covid:before{content:""}.fa-austral-sign:before{content:""}.fa-f:before{content:"F"}.fa-leaf:before{content:""}.fa-road:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-person-circle-plus:before{content:""}.fa-chart-pie:before,.fa-pie-chart:before{content:""}.fa-bolt-lightning:before{content:""}.fa-sack-xmark:before{content:""}.fa-file-excel:before{content:""}.fa-file-contract:before{content:""}.fa-fish-fins:before{content:""}.fa-building-flag:before{content:""}.fa-face-grin-beam:before,.fa-grin-beam:before{content:""}.fa-object-ungroup:before{content:""}.fa-poop:before{content:""}.fa-location-pin:before,.fa-map-marker:before{content:""}.fa-kaaba:before{content:""}.fa-toilet-paper:before{content:""}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:""}.fa-eject:before{content:""}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:""}.fa-plane-circle-check:before{content:""}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:""}.fa-object-group:before{content:""}.fa-chart-line:before,.fa-line-chart:before{content:""}.fa-mask-ventilator:before{content:""}.fa-arrow-right:before{content:""}.fa-map-signs:before,.fa-signs-post:before{content:""}.fa-cash-register:before{content:""}.fa-person-circle-question:before{content:""}.fa-h:before{content:"H"}.fa-tarp:before{content:""}.fa-screwdriver-wrench:before,.fa-tools:before{content:""}.fa-arrows-to-eye:before{content:""}.fa-plug-circle-bolt:before{content:""}.fa-heart:before{content:""}.fa-mars-and-venus:before{content:""}.fa-home-user:before,.fa-house-user:before{content:""}.fa-dumpster-fire:before{content:""}.fa-house-crack:before{content:""}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:""}.fa-face-surprise:before,.fa-surprise:before{content:""}.fa-bottle-water:before{content:""}.fa-circle-pause:before,.fa-pause-circle:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-apple-alt:before,.fa-apple-whole:before{content:""}.fa-kitchen-set:before{content:""}.fa-r:before{content:"R"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-cube:before{content:""}.fa-bitcoin-sign:before{content:""}.fa-shield-dog:before{content:""}.fa-solar-panel:before{content:""}.fa-lock-open:before{content:""}.fa-elevator:before{content:""}.fa-money-bill-transfer:before{content:""}.fa-money-bill-trend-up:before{content:""}.fa-house-flood-water-circle-arrow-right:before{content:""}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:""}.fa-circle:before{content:""}.fa-backward-fast:before,.fa-fast-backward:before{content:""}.fa-recycle:before{content:""}.fa-user-astronaut:before{content:""}.fa-plane-slash:before{content:""}.fa-trademark:before{content:""}.fa-basketball-ball:before,.fa-basketball:before{content:""}.fa-satellite-dish:before{content:""}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:""}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:""}.fa-volume-high:before,.fa-volume-up:before{content:""}.fa-users-rays:before{content:""}.fa-wallet:before{content:""}.fa-clipboard-check:before{content:""}.fa-file-audio:before{content:""}.fa-burger:before,.fa-hamburger:before{content:""}.fa-wrench:before{content:""}.fa-bugs:before{content:""}.fa-rupee-sign:before,.fa-rupee:before{content:""}.fa-file-image:before{content:""}.fa-circle-question:before,.fa-question-circle:before{content:""}.fa-plane-departure:before{content:""}.fa-handshake-slash:before{content:""}.fa-book-bookmark:before{content:""}.fa-code-branch:before{content:""}.fa-hat-cowboy:before{content:""}.fa-bridge:before{content:""}.fa-phone-alt:before,.fa-phone-flip:before{content:""}.fa-truck-front:before{content:""}.fa-cat:before{content:""}.fa-anchor-circle-exclamation:before{content:""}.fa-truck-field:before{content:""}.fa-route:before{content:""}.fa-clipboard-question:before{content:""}.fa-panorama:before{content:""}.fa-comment-medical:before{content:""}.fa-teeth-open:before{content:""}.fa-file-circle-minus:before{content:""}.fa-tags:before{content:""}.fa-wine-glass:before{content:""}.fa-fast-forward:before,.fa-forward-fast:before{content:""}.fa-face-meh-blank:before,.fa-meh-blank:before{content:""}.fa-parking:before,.fa-square-parking:before{content:""}.fa-house-signal:before{content:""}.fa-bars-progress:before,.fa-tasks-alt:before{content:""}.fa-faucet-drip:before{content:""}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:""}.fa-ban-smoking:before,.fa-smoking-ban:before{content:""}.fa-terminal:before{content:""}.fa-mobile-button:before{content:""}.fa-house-medical-flag:before{content:""}.fa-basket-shopping:before,.fa-shopping-basket:before{content:""}.fa-tape:before{content:""}.fa-bus-alt:before,.fa-bus-simple:before{content:""}.fa-eye:before{content:""}.fa-face-sad-cry:before,.fa-sad-cry:before{content:""}.fa-audio-description:before{content:""}.fa-person-military-to-person:before{content:""}.fa-file-shield:before{content:""}.fa-user-slash:before{content:""}.fa-pen:before{content:""}.fa-tower-observation:before{content:""}.fa-file-code:before{content:""}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:""}.fa-bus:before{content:""}.fa-heart-circle-xmark:before{content:""}.fa-home-lg:before,.fa-house-chimney:before{content:""}.fa-window-maximize:before{content:""}.fa-face-frown:before,.fa-frown:before{content:""}.fa-prescription:before{content:""}.fa-shop:before,.fa-store-alt:before{content:""}.fa-floppy-disk:before,.fa-save:before{content:""}.fa-vihara:before{content:""}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-comment-dots:before,.fa-commenting:before{content:""}.fa-plant-wilt:before{content:""}.fa-diamond:before{content:""}.fa-face-grin-squint:before,.fa-grin-squint:before{content:""}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:""}.fa-bacterium:before{content:""}.fa-hand-pointer:before{content:""}.fa-drum-steelpan:before{content:""}.fa-hand-scissors:before{content:""}.fa-hands-praying:before,.fa-praying-hands:before{content:""}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:""}.fa-biohazard:before{content:""}.fa-location-crosshairs:before,.fa-location:before{content:""}.fa-mars-double:before{content:""}.fa-child-dress:before{content:""}.fa-users-between-lines:before{content:""}.fa-lungs-virus:before{content:""}.fa-face-grin-tears:before,.fa-grin-tears:before{content:""}.fa-phone:before{content:""}.fa-calendar-times:before,.fa-calendar-xmark:before{content:""}.fa-child-reaching:before{content:""}.fa-head-side-virus:before{content:""}.fa-user-cog:before,.fa-user-gear:before{content:""}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:""}.fa-door-closed:before{content:""}.fa-shield-virus:before{content:""}.fa-dice-six:before{content:""}.fa-mosquito-net:before{content:""}.fa-bridge-water:before{content:""}.fa-person-booth:before{content:""}.fa-text-width:before{content:""}.fa-hat-wizard:before{content:""}.fa-pen-fancy:before{content:""}.fa-digging:before,.fa-person-digging:before{content:""}.fa-trash:before{content:""}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:""}.fa-book-medical:before{content:""}.fa-poo:before{content:""}.fa-quote-right-alt:before,.fa-quote-right:before{content:""}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:""}.fa-cubes:before{content:""}.fa-divide:before{content:""}.fa-tenge-sign:before,.fa-tenge:before{content:""}.fa-headphones:before{content:""}.fa-hands-holding:before{content:""}.fa-hands-clapping:before{content:""}.fa-republican:before{content:""}.fa-arrow-left:before{content:""}.fa-person-circle-xmark:before{content:""}.fa-ruler:before{content:""}.fa-align-left:before{content:""}.fa-dice-d6:before{content:""}.fa-restroom:before{content:""}.fa-j:before{content:"J"}.fa-users-viewfinder:before{content:""}.fa-file-video:before{content:""}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:""}.fa-table-cells:before,.fa-th:before{content:""}.fa-file-pdf:before{content:""}.fa-bible:before,.fa-book-bible:before{content:""}.fa-o:before{content:"O"}.fa-medkit:before,.fa-suitcase-medical:before{content:""}.fa-user-secret:before{content:""}.fa-otter:before{content:""}.fa-female:before,.fa-person-dress:before{content:""}.fa-comment-dollar:before{content:""}.fa-briefcase-clock:before,.fa-business-time:before{content:""}.fa-table-cells-large:before,.fa-th-large:before{content:""}.fa-book-tanakh:before,.fa-tanakh:before{content:""}.fa-phone-volume:before,.fa-volume-control-phone:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-clipboard-user:before{content:""}.fa-child:before{content:""}.fa-lira-sign:before{content:""}.fa-satellite:before{content:""}.fa-plane-lock:before{content:""}.fa-tag:before{content:""}.fa-comment:before{content:""}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:""}.fa-envelope:before{content:""}.fa-angle-double-up:before,.fa-angles-up:before{content:""}.fa-paperclip:before{content:""}.fa-arrow-right-to-city:before{content:""}.fa-ribbon:before{content:""}.fa-lungs:before{content:""}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:""}.fa-litecoin-sign:before{content:""}.fa-border-none:before{content:""}.fa-circle-nodes:before{content:""}.fa-parachute-box:before{content:""}.fa-indent:before{content:""}.fa-truck-field-un:before{content:""}.fa-hourglass-empty:before,.fa-hourglass:before{content:""}.fa-mountain:before{content:""}.fa-user-doctor:before,.fa-user-md:before{content:""}.fa-circle-info:before,.fa-info-circle:before{content:""}.fa-cloud-meatball:before{content:""}.fa-camera-alt:before,.fa-camera:before{content:""}.fa-square-virus:before{content:""}.fa-meteor:before{content:""}.fa-car-on:before{content:""}.fa-sleigh:before{content:""}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:""}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:""}.fa-water:before{content:""}.fa-calendar-check:before{content:""}.fa-braille:before{content:""}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:""}.fa-landmark:before{content:""}.fa-truck:before{content:""}.fa-crosshairs:before{content:""}.fa-person-cane:before{content:""}.fa-tent:before{content:""}.fa-vest-patches:before{content:""}.fa-check-double:before{content:""}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:""}.fa-money-bill-wheat:before{content:""}.fa-cookie:before{content:""}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:""}.fa-hard-drive:before,.fa-hdd:before{content:""}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:""}.fa-dumbbell:before{content:""}.fa-list-alt:before,.fa-rectangle-list:before{content:""}.fa-tarp-droplet:before{content:""}.fa-house-medical-circle-check:before{content:""}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:""}.fa-calendar-plus:before{content:""}.fa-plane-arrival:before{content:""}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:""}.fa-subway:before,.fa-train-subway:before{content:""}.fa-chart-gantt:before{content:""}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:""}.fa-crop-alt:before,.fa-crop-simple:before{content:""}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:""}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:""}.fa-dna:before{content:""}.fa-virus-slash:before{content:""}.fa-minus:before,.fa-subtract:before{content:""}.fa-chess:before{content:""}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:""}.fa-plug-circle-check:before{content:""}.fa-street-view:before{content:""}.fa-franc-sign:before{content:""}.fa-volume-off:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-droplet-slash:before,.fa-tint-slash:before{content:""}.fa-mosque:before{content:""}.fa-mosquito:before{content:""}.fa-star-of-david:before{content:""}.fa-person-military-rifle:before{content:""}.fa-cart-shopping:before,.fa-shopping-cart:before{content:""}.fa-vials:before{content:""}.fa-plug-circle-plus:before{content:""}.fa-place-of-worship:before{content:""}.fa-grip-vertical:before{content:""}.fa-arrow-turn-up:before,.fa-level-up:before{content:""}.fa-u:before{content:"U"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:""}.fa-clock-four:before,.fa-clock:before{content:""}.fa-backward-step:before,.fa-step-backward:before{content:""}.fa-pallet:before{content:""}.fa-faucet:before{content:""}.fa-baseball-bat-ball:before{content:""}.fa-s:before{content:"S"}.fa-timeline:before{content:""}.fa-keyboard:before{content:""}.fa-caret-down:before{content:""}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:""}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:""}.fa-plane-up:before{content:""}.fa-piggy-bank:before{content:""}.fa-battery-3:before,.fa-battery-half:before{content:""}.fa-mountain-city:before{content:""}.fa-coins:before{content:""}.fa-khanda:before{content:""}.fa-sliders-h:before,.fa-sliders:before{content:""}.fa-folder-tree:before{content:""}.fa-network-wired:before{content:""}.fa-map-pin:before{content:""}.fa-hamsa:before{content:""}.fa-cent-sign:before{content:""}.fa-flask:before{content:""}.fa-person-pregnant:before{content:""}.fa-wand-sparkles:before{content:""}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:""}.fa-ticket:before{content:""}.fa-power-off:before{content:""}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:""}.fa-flag-usa:before{content:""}.fa-laptop-file:before{content:""}.fa-teletype:before,.fa-tty:before{content:""}.fa-diagram-next:before{content:""}.fa-person-rifle:before{content:""}.fa-house-medical-circle-exclamation:before{content:""}.fa-closed-captioning:before{content:""}.fa-hiking:before,.fa-person-hiking:before{content:""}.fa-venus-double:before{content:""}.fa-images:before{content:""}.fa-calculator:before{content:""}.fa-people-pulling:before{content:""}.fa-n:before{content:"N"}.fa-cable-car:before,.fa-tram:before{content:""}.fa-cloud-rain:before{content:""}.fa-building-circle-xmark:before{content:""}.fa-ship:before{content:""}.fa-arrows-down-to-line:before{content:""}.fa-download:before{content:""}.fa-face-grin:before,.fa-grin:before{content:""}.fa-backspace:before,.fa-delete-left:before{content:""}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:""}.fa-file-circle-check:before{content:""}.fa-forward:before{content:""}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-face-meh:before,.fa-meh:before{content:""}.fa-align-center:before{content:""}.fa-book-dead:before,.fa-book-skull:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-heart-circle-exclamation:before{content:""}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:""}.fa-calendar-week:before{content:""}.fa-laptop-medical:before{content:""}.fa-b:before{content:"B"}.fa-file-medical:before{content:""}.fa-dice-one:before{content:""}.fa-kiwi-bird:before{content:""}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:""}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:""}.fa-cutlery:before,.fa-utensils:before{content:""}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:""}.fa-mill-sign:before{content:""}.fa-bowl-rice:before{content:""}.fa-skull:before{content:""}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:""}.fa-truck-pickup:before{content:""}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:""}.fa-stop:before{content:""}.fa-code-merge:before{content:""}.fa-upload:before{content:""}.fa-hurricane:before{content:""}.fa-mound:before{content:""}.fa-toilet-portable:before{content:""}.fa-compact-disc:before{content:""}.fa-file-arrow-down:before,.fa-file-download:before{content:""}.fa-caravan:before{content:""}.fa-shield-cat:before{content:""}.fa-bolt:before,.fa-zap:before{content:""}.fa-glass-water:before{content:""}.fa-oil-well:before{content:""}.fa-vault:before{content:""}.fa-mars:before{content:""}.fa-toilet:before{content:""}.fa-plane-circle-xmark:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:""}.fa-sun:before{content:""}.fa-guitar:before{content:""}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:""}.fa-horse-head:before{content:""}.fa-bore-hole:before{content:""}.fa-industry:before{content:""}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:""}.fa-arrows-turn-to-dots:before{content:""}.fa-florin-sign:before{content:""}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:""}.fa-less-than:before{content:"\<"}.fa-angle-down:before{content:""}.fa-car-tunnel:before{content:""}.fa-head-side-cough:before{content:""}.fa-grip-lines:before{content:""}.fa-thumbs-down:before{content:""}.fa-user-lock:before{content:""}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:""}.fa-anchor-circle-xmark:before{content:""}.fa-ellipsis-h:before,.fa-ellipsis:before{content:""}.fa-chess-pawn:before{content:""}.fa-first-aid:before,.fa-kit-medical:before{content:""}.fa-person-through-window:before{content:""}.fa-toolbox:before{content:""}.fa-hands-holding-circle:before{content:""}.fa-bug:before{content:""}.fa-credit-card-alt:before,.fa-credit-card:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-hand-holding-hand:before{content:""}.fa-book-open-reader:before,.fa-book-reader:before{content:""}.fa-mountain-sun:before{content:""}.fa-arrows-left-right-to-line:before{content:""}.fa-dice-d20:before{content:""}.fa-truck-droplet:before{content:""}.fa-file-circle-xmark:before{content:""}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:""}.fa-medal:before{content:""}.fa-bed:before{content:""}.fa-h-square:before,.fa-square-h:before{content:""}.fa-podcast:before{content:""}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:""}.fa-bell:before{content:""}.fa-superscript:before{content:""}.fa-plug-circle-xmark:before{content:""}.fa-star-of-life:before{content:""}.fa-phone-slash:before{content:""}.fa-paint-roller:before{content:""}.fa-hands-helping:before,.fa-handshake-angle:before{content:""}.fa-location-dot:before,.fa-map-marker-alt:before{content:""}.fa-file:before{content:""}.fa-greater-than:before{content:"\>"}.fa-person-swimming:before,.fa-swimmer:before{content:""}.fa-arrow-down:before{content:""}.fa-droplet:before,.fa-tint:before{content:""}.fa-eraser:before{content:""}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:""}.fa-person-burst:before{content:""}.fa-dove:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-socks:before{content:""}.fa-inbox:before{content:""}.fa-section:before{content:""}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:""}.fa-envelope-open-text:before{content:""}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:""}.fa-wine-bottle:before{content:""}.fa-chess-rook:before{content:""}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:""}.fa-dharmachakra:before{content:""}.fa-hotdog:before{content:""}.fa-blind:before,.fa-person-walking-with-cane:before{content:""}.fa-drum:before{content:""}.fa-ice-cream:before{content:""}.fa-heart-circle-bolt:before{content:""}.fa-fax:before{content:""}.fa-paragraph:before{content:""}.fa-check-to-slot:before,.fa-vote-yea:before{content:""}.fa-star-half:before{content:""}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:""}.fa-tree-city:before{content:""}.fa-play:before{content:""}.fa-font:before{content:""}.fa-table-cells-row-lock:before{content:""}.fa-rupiah-sign:before{content:""}.fa-magnifying-glass:before,.fa-search:before{content:""}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:""}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:""}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:""}.fa-naira-sign:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-walkie-talkie:before{content:""}.fa-file-edit:before,.fa-file-pen:before{content:""}.fa-receipt:before{content:""}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-person-circle-exclamation:before{content:""}.fa-chevron-down:before{content:""}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-skull-crossbones:before{content:""}.fa-code-compare:before{content:""}.fa-list-dots:before,.fa-list-ul:before{content:""}.fa-school-lock:before{content:""}.fa-tower-cell:before{content:""}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:""}.fa-ranking-star:before{content:""}.fa-chess-king:before{content:""}.fa-person-harassing:before{content:""}.fa-brazilian-real-sign:before{content:""}.fa-landmark-alt:before,.fa-landmark-dome:before{content:""}.fa-arrow-up:before{content:""}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:""}.fa-shrimp:before{content:""}.fa-list-check:before,.fa-tasks:before{content:""}.fa-jug-detergent:before{content:""}.fa-circle-user:before,.fa-user-circle:before{content:""}.fa-user-shield:before{content:""}.fa-wind:before{content:""}.fa-car-burst:before,.fa-car-crash:before{content:""}.fa-y:before{content:"Y"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:""}.fa-shipping-fast:before,.fa-truck-fast:before{content:""}.fa-fish:before{content:""}.fa-user-graduate:before{content:""}.fa-adjust:before,.fa-circle-half-stroke:before{content:""}.fa-clapperboard:before{content:""}.fa-circle-radiation:before,.fa-radiation-alt:before{content:""}.fa-baseball-ball:before,.fa-baseball:before{content:""}.fa-jet-fighter-up:before{content:""}.fa-diagram-project:before,.fa-project-diagram:before{content:""}.fa-copy:before{content:""}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:""}.fa-hand-sparkles:before{content:""}.fa-grip-horizontal:before,.fa-grip:before{content:""}.fa-share-from-square:before,.fa-share-square:before{content:""}.fa-child-combatant:before,.fa-child-rifle:before{content:""}.fa-gun:before{content:""}.fa-phone-square:before,.fa-square-phone:before{content:""}.fa-add:before,.fa-plus:before{content:"\+"}.fa-expand:before{content:""}.fa-computer:before{content:""}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:""}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:""}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:""}.fa-peso-sign:before{content:""}.fa-building-shield:before{content:""}.fa-baby:before{content:""}.fa-users-line:before{content:""}.fa-quote-left-alt:before,.fa-quote-left:before{content:""}.fa-tractor:before{content:""}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:""}.fa-arrow-down-up-lock:before{content:""}.fa-lines-leaning:before{content:""}.fa-ruler-combined:before{content:""}.fa-copyright:before{content:""}.fa-equals:before{content:"\="}.fa-blender:before{content:""}.fa-teeth:before{content:""}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:""}.fa-map:before{content:""}.fa-rocket:before{content:""}.fa-photo-film:before,.fa-photo-video:before{content:""}.fa-folder-minus:before{content:""}.fa-store:before{content:""}.fa-arrow-trend-up:before{content:""}.fa-plug-circle-minus:before{content:""}.fa-sign-hanging:before,.fa-sign:before{content:""}.fa-bezier-curve:before{content:""}.fa-bell-slash:before{content:""}.fa-tablet-android:before,.fa-tablet:before{content:""}.fa-school-flag:before{content:""}.fa-fill:before{content:""}.fa-angle-up:before{content:""}.fa-drumstick-bite:before{content:""}.fa-holly-berry:before{content:""}.fa-chevron-left:before{content:""}.fa-bacteria:before{content:""}.fa-hand-lizard:before{content:""}.fa-notdef:before{content:""}.fa-disease:before{content:""}.fa-briefcase-medical:before{content:""}.fa-genderless:before{content:""}.fa-chevron-right:before{content:""}.fa-retweet:before{content:""}.fa-car-alt:before,.fa-car-rear:before{content:""}.fa-pump-soap:before{content:""}.fa-video-slash:before{content:""}.fa-battery-2:before,.fa-battery-quarter:before{content:""}.fa-radio:before{content:""}.fa-baby-carriage:before,.fa-carriage-baby:before{content:""}.fa-traffic-light:before{content:""}.fa-thermometer:before{content:""}.fa-vr-cardboard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-percent:before,.fa-percentage:before{content:"\%"}.fa-truck-moving:before{content:""}.fa-glass-water-droplet:before{content:""}.fa-display:before{content:""}.fa-face-smile:before,.fa-smile:before{content:""}.fa-thumb-tack:before,.fa-thumbtack:before{content:""}.fa-trophy:before{content:""}.fa-person-praying:before,.fa-pray:before{content:""}.fa-hammer:before{content:""}.fa-hand-peace:before{content:""}.fa-rotate:before,.fa-sync-alt:before{content:""}.fa-spinner:before{content:""}.fa-robot:before{content:""}.fa-peace:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-warehouse:before{content:""}.fa-arrow-up-right-dots:before{content:""}.fa-splotch:before{content:""}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:""}.fa-dice-four:before{content:""}.fa-sim-card:before{content:""}.fa-transgender-alt:before,.fa-transgender:before{content:""}.fa-mercury:before{content:""}.fa-arrow-turn-down:before,.fa-level-down:before{content:""}.fa-person-falling-burst:before{content:""}.fa-award:before{content:""}.fa-ticket-alt:before,.fa-ticket-simple:before{content:""}.fa-building:before{content:""}.fa-angle-double-left:before,.fa-angles-left:before{content:""}.fa-qrcode:before{content:""}.fa-clock-rotate-left:before,.fa-history:before{content:""}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:""}.fa-arrow-right-from-file:before,.fa-file-export:before{content:""}.fa-shield-blank:before,.fa-shield:before{content:""}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:""}.fa-house-medical:before{content:""}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:""}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:""}.fa-house-chimney-window:before{content:""}.fa-pen-nib:before{content:""}.fa-tent-arrow-turn-left:before{content:""}.fa-tents:before{content:""}.fa-magic:before,.fa-wand-magic:before{content:""}.fa-dog:before{content:""}.fa-carrot:before{content:""}.fa-moon:before{content:""}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:""}.fa-cheese:before{content:""}.fa-yin-yang:before{content:""}.fa-music:before{content:""}.fa-code-commit:before{content:""}.fa-temperature-low:before{content:""}.fa-biking:before,.fa-person-biking:before{content:""}.fa-broom:before{content:""}.fa-shield-heart:before{content:""}.fa-gopuram:before{content:""}.fa-earth-oceania:before,.fa-globe-oceania:before{content:""}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:""}.fa-hashtag:before{content:"\#"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:""}.fa-oil-can:before{content:""}.fa-t:before{content:"T"}.fa-hippo:before{content:""}.fa-chart-column:before{content:""}.fa-infinity:before{content:""}.fa-vial-circle-check:before{content:""}.fa-person-arrow-down-to-line:before{content:""}.fa-voicemail:before{content:""}.fa-fan:before{content:""}.fa-person-walking-luggage:before{content:""}.fa-arrows-alt-v:before,.fa-up-down:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-calendar:before{content:""}.fa-trailer:before{content:""}.fa-bahai:before,.fa-haykal:before{content:""}.fa-sd-card:before{content:""}.fa-dragon:before{content:""}.fa-shoe-prints:before{content:""}.fa-circle-plus:before,.fa-plus-circle:before{content:""}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:""}.fa-hand-holding:before{content:""}.fa-plug-circle-exclamation:before{content:""}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:""}.fa-clone:before{content:""}.fa-person-walking-arrow-loop-left:before{content:""}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:""}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:""}.fa-tornado:before{content:""}.fa-file-circle-plus:before{content:""}.fa-book-quran:before,.fa-quran:before{content:""}.fa-anchor:before{content:""}.fa-border-all:before{content:""}.fa-angry:before,.fa-face-angry:before{content:""}.fa-cookie-bite:before{content:""}.fa-arrow-trend-down:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-draw-polygon:before{content:""}.fa-balance-scale:before,.fa-scale-balanced:before{content:""}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:""}.fa-shower:before{content:""}.fa-desktop-alt:before,.fa-desktop:before{content:""}.fa-m:before{content:"M"}.fa-table-list:before,.fa-th-list:before{content:""}.fa-comment-sms:before,.fa-sms:before{content:""}.fa-book:before{content:""}.fa-user-plus:before{content:""}.fa-check:before{content:""}.fa-battery-4:before,.fa-battery-three-quarters:before{content:""}.fa-house-circle-check:before{content:""}.fa-angle-left:before{content:""}.fa-diagram-successor:before{content:""}.fa-truck-arrow-right:before{content:""}.fa-arrows-split-up-and-left:before{content:""}.fa-fist-raised:before,.fa-hand-fist:before{content:""}.fa-cloud-moon:before{content:""}.fa-briefcase:before{content:""}.fa-person-falling:before{content:""}.fa-image-portrait:before,.fa-portrait:before{content:""}.fa-user-tag:before{content:""}.fa-rug:before{content:""}.fa-earth-europe:before,.fa-globe-europe:before{content:""}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:""}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-baht-sign:before{content:""}.fa-book-open:before{content:""}.fa-book-journal-whills:before,.fa-journal-whills:before{content:""}.fa-handcuffs:before{content:""}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:""}.fa-database:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-bottle-droplet:before{content:""}.fa-mask-face:before{content:""}.fa-hill-rockslide:before{content:""}.fa-exchange-alt:before,.fa-right-left:before{content:""}.fa-paper-plane:before{content:""}.fa-road-circle-exclamation:before{content:""}.fa-dungeon:before{content:""}.fa-align-right:before{content:""}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:""}.fa-life-ring:before{content:""}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:""}.fa-calendar-day:before{content:""}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:""}.fa-arrows-up-down:before,.fa-arrows-v:before{content:""}.fa-face-grimace:before,.fa-grimace:before{content:""}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:""}.fa-level-down-alt:before,.fa-turn-down:before{content:""}.fa-person-walking-arrow-right:before{content:""}.fa-envelope-square:before,.fa-square-envelope:before{content:""}.fa-dice:before{content:""}.fa-bowling-ball:before{content:""}.fa-brain:before{content:""}.fa-band-aid:before,.fa-bandage:before{content:""}.fa-calendar-minus:before{content:""}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:""}.fa-gifts:before{content:""}.fa-hotel:before{content:""}.fa-earth-asia:before,.fa-globe-asia:before{content:""}.fa-id-card-alt:before,.fa-id-card-clip:before{content:""}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:""}.fa-thumbs-up:before{content:""}.fa-user-clock:before{content:""}.fa-allergies:before,.fa-hand-dots:before{content:""}.fa-file-invoice:before{content:""}.fa-window-minimize:before{content:""}.fa-coffee:before,.fa-mug-saucer:before{content:""}.fa-brush:before{content:""}.fa-mask:before{content:""}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:""}.fa-ruler-vertical:before{content:""}.fa-user-alt:before,.fa-user-large:before{content:""}.fa-train-tram:before{content:""}.fa-user-nurse:before{content:""}.fa-syringe:before{content:""}.fa-cloud-sun:before{content:""}.fa-stopwatch-20:before{content:""}.fa-square-full:before{content:""}.fa-magnet:before{content:""}.fa-jar:before{content:""}.fa-note-sticky:before,.fa-sticky-note:before{content:""}.fa-bug-slash:before{content:""}.fa-arrow-up-from-water-pump:before{content:""}.fa-bone:before{content:""}.fa-user-injured:before{content:""}.fa-face-sad-tear:before,.fa-sad-tear:before{content:""}.fa-plane:before{content:""}.fa-tent-arrows-down:before{content:""}.fa-exclamation:before{content:"\!"}.fa-arrows-spin:before{content:""}.fa-print:before{content:""}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:""}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\$"}.fa-x:before{content:"X"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:""}.fa-users-cog:before,.fa-users-gear:before{content:""}.fa-person-military-pointing:before{content:""}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:""}.fa-umbrella:before{content:""}.fa-trowel:before{content:""}.fa-d:before{content:"D"}.fa-stapler:before{content:""}.fa-masks-theater:before,.fa-theater-masks:before{content:""}.fa-kip-sign:before{content:""}.fa-hand-point-left:before{content:""}.fa-handshake-alt:before,.fa-handshake-simple:before{content:""}.fa-fighter-jet:before,.fa-jet-fighter:before{content:""}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:""}.fa-barcode:before{content:""}.fa-plus-minus:before{content:""}.fa-video-camera:before,.fa-video:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-person-circle-check:before{content:""}.fa-level-up-alt:before,.fa-turn-up:before{content:""}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}/*! - * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2024 Fonticons, Inc. - */:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:Font Awesome\ 6 Free;font-style:normal;font-weight:900;font-display:block;src:url(/static/fonts/fa-solid-900.0b0cc8a6.woff2) format("woff2"),url(/static/fonts/fa-solid-900.69d3141a.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}/*! - * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2024 Fonticons, Inc. - */:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:Font Awesome\ 6 Free;font-style:normal;font-weight:400;font-display:block;src:url(/static/fonts/fa-regular-400.3ccdbd3d.woff2) format("woff2"),url(/static/fonts/fa-regular-400.81482cd4.ttf) format("truetype")}.fa-regular,.far{font-weight:400}/*! - * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2024 Fonticons, Inc. - */:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:Font Awesome\ 6 Brands;font-style:normal;font-weight:400;font-display:block;src:url(/static/fonts/fa-brands-400.87587a68.woff2) format("woff2"),url(/static/fonts/fa-brands-400.5d18d427.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:""}.fa-hooli:before{content:""}.fa-yelp:before{content:""}.fa-cc-visa:before{content:""}.fa-lastfm:before{content:""}.fa-shopware:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-aws:before{content:""}.fa-redhat:before{content:""}.fa-yoast:before{content:""}.fa-cloudflare:before{content:""}.fa-ups:before{content:""}.fa-pixiv:before{content:""}.fa-wpexplorer:before{content:""}.fa-dyalog:before{content:""}.fa-bity:before{content:""}.fa-stackpath:before{content:""}.fa-buysellads:before{content:""}.fa-first-order:before{content:""}.fa-modx:before{content:""}.fa-guilded:before{content:""}.fa-vnv:before{content:""}.fa-js-square:before,.fa-square-js:before{content:""}.fa-microsoft:before{content:""}.fa-qq:before{content:""}.fa-orcid:before{content:""}.fa-java:before{content:""}.fa-invision:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-centercode:before{content:""}.fa-glide-g:before{content:""}.fa-drupal:before{content:""}.fa-jxl:before{content:""}.fa-hire-a-helper:before{content:""}.fa-creative-commons-by:before{content:""}.fa-unity:before{content:""}.fa-whmcs:before{content:""}.fa-rocketchat:before{content:""}.fa-vk:before{content:""}.fa-untappd:before{content:""}.fa-mailchimp:before{content:""}.fa-css3-alt:before{content:""}.fa-reddit-square:before,.fa-square-reddit:before{content:""}.fa-vimeo-v:before{content:""}.fa-contao:before{content:""}.fa-square-font-awesome:before{content:""}.fa-deskpro:before{content:""}.fa-brave:before{content:""}.fa-sistrix:before{content:""}.fa-instagram-square:before,.fa-square-instagram:before{content:""}.fa-battle-net:before{content:""}.fa-the-red-yeti:before{content:""}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:""}.fa-edge:before{content:""}.fa-threads:before{content:""}.fa-napster:before{content:""}.fa-snapchat-square:before,.fa-square-snapchat:before{content:""}.fa-google-plus-g:before{content:""}.fa-artstation:before{content:""}.fa-markdown:before{content:""}.fa-sourcetree:before{content:""}.fa-google-plus:before{content:""}.fa-diaspora:before{content:""}.fa-foursquare:before{content:""}.fa-stack-overflow:before{content:""}.fa-github-alt:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-pagelines:before{content:""}.fa-algolia:before{content:""}.fa-red-river:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-safari:before{content:""}.fa-google:before{content:""}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:""}.fa-atlassian:before{content:""}.fa-linkedin-in:before{content:""}.fa-digital-ocean:before{content:""}.fa-nimblr:before{content:""}.fa-chromecast:before{content:""}.fa-evernote:before{content:""}.fa-hacker-news:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-adversal:before{content:""}.fa-creative-commons:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-fonticons:before{content:""}.fa-weixin:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-codepen:before{content:""}.fa-git-alt:before{content:""}.fa-lyft:before{content:""}.fa-rev:before{content:""}.fa-windows:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-square-viadeo:before,.fa-viadeo-square:before{content:""}.fa-meetup:before{content:""}.fa-centos:before{content:""}.fa-adn:before{content:""}.fa-cloudsmith:before{content:""}.fa-opensuse:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-dribbble-square:before,.fa-square-dribbble:before{content:""}.fa-codiepie:before{content:""}.fa-node:before{content:""}.fa-mix:before{content:""}.fa-steam:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-scribd:before{content:""}.fa-debian:before{content:""}.fa-openid:before{content:""}.fa-instalod:before{content:""}.fa-expeditedssl:before{content:""}.fa-sellcast:before{content:""}.fa-square-twitter:before,.fa-twitter-square:before{content:""}.fa-r-project:before{content:""}.fa-delicious:before{content:""}.fa-freebsd:before{content:""}.fa-vuejs:before{content:""}.fa-accusoft:before{content:""}.fa-ioxhost:before{content:""}.fa-fonticons-fi:before{content:""}.fa-app-store:before{content:""}.fa-cc-mastercard:before{content:""}.fa-itunes-note:before{content:""}.fa-golang:before{content:""}.fa-kickstarter:before,.fa-square-kickstarter:before{content:""}.fa-grav:before{content:""}.fa-weibo:before{content:""}.fa-uncharted:before{content:""}.fa-firstdraft:before{content:""}.fa-square-youtube:before,.fa-youtube-square:before{content:""}.fa-wikipedia-w:before{content:""}.fa-rendact:before,.fa-wpressr:before{content:""}.fa-angellist:before{content:""}.fa-galactic-republic:before{content:""}.fa-nfc-directional:before{content:""}.fa-skype:before{content:""}.fa-joget:before{content:""}.fa-fedora:before{content:""}.fa-stripe-s:before{content:""}.fa-meta:before{content:""}.fa-laravel:before{content:""}.fa-hotjar:before{content:""}.fa-bluetooth-b:before{content:""}.fa-square-letterboxd:before{content:""}.fa-sticker-mule:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-hips:before{content:""}.fa-behance:before{content:""}.fa-reddit:before{content:""}.fa-discord:before{content:""}.fa-chrome:before{content:""}.fa-app-store-ios:before{content:""}.fa-cc-discover:before{content:""}.fa-wpbeginner:before{content:""}.fa-confluence:before{content:""}.fa-shoelace:before{content:""}.fa-mdb:before{content:""}.fa-dochub:before{content:""}.fa-accessible-icon:before{content:""}.fa-ebay:before{content:""}.fa-amazon:before{content:""}.fa-unsplash:before{content:""}.fa-yarn:before{content:""}.fa-square-steam:before,.fa-steam-square:before{content:""}.fa-500px:before{content:""}.fa-square-vimeo:before,.fa-vimeo-square:before{content:""}.fa-asymmetrik:before{content:""}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:""}.fa-gratipay:before{content:""}.fa-apple:before{content:""}.fa-hive:before{content:""}.fa-gitkraken:before{content:""}.fa-keybase:before{content:""}.fa-apple-pay:before{content:""}.fa-padlet:before{content:""}.fa-amazon-pay:before{content:""}.fa-github-square:before,.fa-square-github:before{content:""}.fa-stumbleupon:before{content:""}.fa-fedex:before{content:""}.fa-phoenix-framework:before{content:""}.fa-shopify:before{content:""}.fa-neos:before{content:""}.fa-square-threads:before{content:""}.fa-hackerrank:before{content:""}.fa-researchgate:before{content:""}.fa-swift:before{content:""}.fa-angular:before{content:""}.fa-speakap:before{content:""}.fa-angrycreative:before{content:""}.fa-y-combinator:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-google-scholar:before{content:""}.fa-gitlab-square:before,.fa-square-gitlab:before{content:""}.fa-studiovinari:before{content:""}.fa-pied-piper:before{content:""}.fa-wordpress:before{content:""}.fa-product-hunt:before{content:""}.fa-firefox:before{content:""}.fa-linode:before{content:""}.fa-goodreads:before{content:""}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:""}.fa-jsfiddle:before{content:""}.fa-sith:before{content:""}.fa-themeisle:before{content:""}.fa-page4:before{content:""}.fa-hashnode:before{content:""}.fa-react:before{content:""}.fa-cc-paypal:before{content:""}.fa-squarespace:before{content:""}.fa-cc-stripe:before{content:""}.fa-creative-commons-share:before{content:""}.fa-bitcoin:before{content:""}.fa-keycdn:before{content:""}.fa-opera:before{content:""}.fa-itch-io:before{content:""}.fa-umbraco:before{content:""}.fa-galactic-senate:before{content:""}.fa-ubuntu:before{content:""}.fa-draft2digital:before{content:""}.fa-stripe:before{content:""}.fa-houzz:before{content:""}.fa-gg:before{content:""}.fa-dhl:before{content:""}.fa-pinterest-square:before,.fa-square-pinterest:before{content:""}.fa-xing:before{content:""}.fa-blackberry:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-playstation:before{content:""}.fa-quinscape:before{content:""}.fa-less:before{content:""}.fa-blogger-b:before{content:""}.fa-opencart:before{content:""}.fa-vine:before{content:""}.fa-signal-messenger:before{content:""}.fa-paypal:before{content:""}.fa-gitlab:before{content:""}.fa-typo3:before{content:""}.fa-reddit-alien:before{content:""}.fa-yahoo:before{content:""}.fa-dailymotion:before{content:""}.fa-affiliatetheme:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-bootstrap:before{content:""}.fa-odnoklassniki:before{content:""}.fa-nfc-symbol:before{content:""}.fa-mintbit:before{content:""}.fa-ethereum:before{content:""}.fa-speaker-deck:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-patreon:before{content:""}.fa-avianex:before{content:""}.fa-ello:before{content:""}.fa-gofore:before{content:""}.fa-bimobject:before{content:""}.fa-brave-reverse:before{content:""}.fa-facebook-f:before{content:""}.fa-google-plus-square:before,.fa-square-google-plus:before{content:""}.fa-web-awesome:before{content:""}.fa-mandalorian:before{content:""}.fa-first-order-alt:before{content:""}.fa-osi:before{content:""}.fa-google-wallet:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-periscope:before{content:""}.fa-fulcrum:before{content:""}.fa-cloudscale:before{content:""}.fa-forumbee:before{content:""}.fa-mizuni:before{content:""}.fa-schlix:before{content:""}.fa-square-xing:before,.fa-xing-square:before{content:""}.fa-bandcamp:before{content:""}.fa-wpforms:before{content:""}.fa-cloudversify:before{content:""}.fa-usps:before{content:""}.fa-megaport:before{content:""}.fa-magento:before{content:""}.fa-spotify:before{content:""}.fa-optin-monster:before{content:""}.fa-fly:before{content:""}.fa-aviato:before{content:""}.fa-itunes:before{content:""}.fa-cuttlefish:before{content:""}.fa-blogger:before{content:""}.fa-flickr:before{content:""}.fa-viber:before{content:""}.fa-soundcloud:before{content:""}.fa-digg:before{content:""}.fa-tencent-weibo:before{content:""}.fa-letterboxd:before{content:""}.fa-symfony:before{content:""}.fa-maxcdn:before{content:""}.fa-etsy:before{content:""}.fa-facebook-messenger:before{content:""}.fa-audible:before{content:""}.fa-think-peaks:before{content:""}.fa-bilibili:before{content:""}.fa-erlang:before{content:""}.fa-x-twitter:before{content:""}.fa-cotton-bureau:before{content:""}.fa-dashcube:before{content:""}.fa-42-group:before,.fa-innosoft:before{content:""}.fa-stack-exchange:before{content:""}.fa-elementor:before{content:""}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-palfed:before{content:""}.fa-superpowers:before{content:""}.fa-resolving:before{content:""}.fa-xbox:before{content:""}.fa-square-web-awesome-stroke:before{content:""}.fa-searchengin:before{content:""}.fa-tiktok:before{content:""}.fa-facebook-square:before,.fa-square-facebook:before{content:""}.fa-renren:before{content:""}.fa-linux:before{content:""}.fa-glide:before{content:""}.fa-linkedin:before{content:""}.fa-hubspot:before{content:""}.fa-deploydog:before{content:""}.fa-twitch:before{content:""}.fa-ravelry:before{content:""}.fa-mixer:before{content:""}.fa-lastfm-square:before,.fa-square-lastfm:before{content:""}.fa-vimeo:before{content:""}.fa-mendeley:before{content:""}.fa-uniregistry:before{content:""}.fa-figma:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-dropbox:before{content:""}.fa-instagram:before{content:""}.fa-cmplid:before{content:""}.fa-upwork:before{content:""}.fa-facebook:before{content:""}.fa-gripfire:before{content:""}.fa-jedi-order:before{content:""}.fa-uikit:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-phabricator:before{content:""}.fa-ussunnah:before{content:""}.fa-earlybirds:before{content:""}.fa-trade-federation:before{content:""}.fa-autoprefixer:before{content:""}.fa-whatsapp:before{content:""}.fa-square-upwork:before{content:""}.fa-slideshare:before{content:""}.fa-google-play:before{content:""}.fa-viadeo:before{content:""}.fa-line:before{content:""}.fa-google-drive:before{content:""}.fa-servicestack:before{content:""}.fa-simplybuilt:before{content:""}.fa-bitbucket:before{content:""}.fa-imdb:before{content:""}.fa-deezer:before{content:""}.fa-raspberry-pi:before{content:""}.fa-jira:before{content:""}.fa-docker:before{content:""}.fa-screenpal:before{content:""}.fa-bluetooth:before{content:""}.fa-gitter:before{content:""}.fa-d-and-d:before{content:""}.fa-microblog:before{content:""}.fa-cc-diners-club:before{content:""}.fa-gg-circle:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-kickstarter-k:before{content:""}.fa-yandex:before{content:""}.fa-readme:before{content:""}.fa-html5:before{content:""}.fa-sellsy:before{content:""}.fa-square-web-awesome:before{content:""}.fa-sass:before{content:""}.fa-wirsindhandwerk:before,.fa-wsh:before{content:""}.fa-buromobelexperte:before{content:""}.fa-salesforce:before{content:""}.fa-octopus-deploy:before{content:""}.fa-medapps:before{content:""}.fa-ns8:before{content:""}.fa-pinterest-p:before{content:""}.fa-apper:before{content:""}.fa-fort-awesome:before{content:""}.fa-waze:before{content:""}.fa-bluesky:before{content:""}.fa-cc-jcb:before{content:""}.fa-snapchat-ghost:before,.fa-snapchat:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-rust:before{content:""}.fa-wix:before{content:""}.fa-behance-square:before,.fa-square-behance:before{content:""}.fa-supple:before{content:""}.fa-webflow:before{content:""}.fa-rebel:before{content:""}.fa-css3:before{content:""}.fa-staylinked:before{content:""}.fa-kaggle:before{content:""}.fa-space-awesome:before{content:""}.fa-deviantart:before{content:""}.fa-cpanel:before{content:""}.fa-goodreads-g:before{content:""}.fa-git-square:before,.fa-square-git:before{content:""}.fa-square-tumblr:before,.fa-tumblr-square:before{content:""}.fa-trello:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-get-pocket:before{content:""}.fa-perbyte:before{content:""}.fa-grunt:before{content:""}.fa-weebly:before{content:""}.fa-connectdevelop:before{content:""}.fa-leanpub:before{content:""}.fa-black-tie:before{content:""}.fa-themeco:before{content:""}.fa-python:before{content:""}.fa-android:before{content:""}.fa-bots:before{content:""}.fa-free-code-camp:before{content:""}.fa-hornbill:before{content:""}.fa-js:before{content:""}.fa-ideal:before{content:""}.fa-git:before{content:""}.fa-dev:before{content:""}.fa-sketch:before{content:""}.fa-yandex-international:before{content:""}.fa-cc-amex:before{content:""}.fa-uber:before{content:""}.fa-github:before{content:""}.fa-php:before{content:""}.fa-alipay:before{content:""}.fa-youtube:before{content:""}.fa-skyatlas:before{content:""}.fa-firefox-browser:before{content:""}.fa-replyd:before{content:""}.fa-suse:before{content:""}.fa-jenkins:before{content:""}.fa-twitter:before{content:""}.fa-rockrms:before{content:""}.fa-pinterest:before{content:""}.fa-buffer:before{content:""}.fa-npm:before{content:""}.fa-yammer:before{content:""}.fa-btc:before{content:""}.fa-dribbble:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-internet-explorer:before{content:""}.fa-stubber:before{content:""}.fa-telegram-plane:before,.fa-telegram:before{content:""}.fa-old-republic:before{content:""}.fa-odysee:before{content:""}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:""}.fa-node-js:before{content:""}.fa-edge-legacy:before{content:""}.fa-slack-hash:before,.fa-slack:before{content:""}.fa-medrt:before{content:""}.fa-usb:before{content:""}.fa-tumblr:before{content:""}.fa-vaadin:before{content:""}.fa-quora:before{content:""}.fa-square-x-twitter:before{content:""}.fa-reacteurope:before{content:""}.fa-medium-m:before,.fa-medium:before{content:""}.fa-amilia:before{content:""}.fa-mixcloud:before{content:""}.fa-flipboard:before{content:""}.fa-viacoin:before{content:""}.fa-critical-role:before{content:""}.fa-sitrox:before{content:""}.fa-discourse:before{content:""}.fa-joomla:before{content:""}.fa-mastodon:before{content:""}.fa-airbnb:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-buy-n-large:before{content:""}.fa-gulp:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-strava:before{content:""}.fa-ember:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-teamspeak:before{content:""}.fa-pushed:before{content:""}.fa-wordpress-simple:before{content:""}.fa-nutritionix:before{content:""}.fa-wodu:before{content:""}.fa-google-pay:before{content:""}.fa-intercom:before{content:""}.fa-zhihu:before{content:""}.fa-korvue:before{content:""}.fa-pix:before{content:""}.fa-steam-symbol:before{content:""}body,html{margin:0;overflow:auto}#app,body,html{width:100%;height:100%}#app{font-family:BlinkMacSystemFont,-apple-system,Avenir,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Verdana,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#2c3e50} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/app.70fb1f4a.css b/platypush/backend/http/webapp/dist/static/css/app.70fb1f4a.css new file mode 100644 index 0000000000..6b9cf7244a --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/app.70fb1f4a.css @@ -0,0 +1,17 @@ +.col-1[data-v-564212f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-1[data-v-564212f0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-564212f0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-564212f0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-564212f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-2[data-v-564212f0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-564212f0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-564212f0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-564212f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-3[data-v-564212f0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-564212f0]:first-child{margin-left:26%!important}.col-offset-3[data-v-564212f0]:not(first-child){margin-left:30%!important}.col-4[data-v-564212f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-4[data-v-564212f0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-564212f0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-564212f0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-564212f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-5[data-v-564212f0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-564212f0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-564212f0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-564212f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-6[data-v-564212f0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-564212f0]:first-child{margin-left:52%!important}.col-offset-6[data-v-564212f0]:not(first-child){margin-left:56%!important}.col-7[data-v-564212f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-7[data-v-564212f0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-564212f0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-564212f0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-564212f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-8[data-v-564212f0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-564212f0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-564212f0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-564212f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-9[data-v-564212f0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-564212f0]:first-child{margin-left:78%!important}.col-offset-9[data-v-564212f0]:not(first-child){margin-left:82%!important}.col-10[data-v-564212f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-10[data-v-564212f0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-564212f0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-564212f0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-564212f0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-564212f0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-564212f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-1[data-v-564212f0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-564212f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-564212f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-2[data-v-564212f0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-564212f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-564212f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-3[data-v-564212f0]{margin-left:26%}.col-no-margin-s-3[data-v-564212f0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-564212f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-4[data-v-564212f0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-564212f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-564212f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-5[data-v-564212f0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-564212f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-564212f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-6[data-v-564212f0]{margin-left:52%}.col-no-margin-s-6[data-v-564212f0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-564212f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-7[data-v-564212f0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-564212f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-564212f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-8[data-v-564212f0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-564212f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-564212f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-9[data-v-564212f0]{margin-left:78%}.col-no-margin-s-9[data-v-564212f0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-564212f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-10[data-v-564212f0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-564212f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-564212f0]:first-child{margin-left:0}.col-offset-s-11[data-v-564212f0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-564212f0]{display:none!important}.s-visible[data-v-564212f0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-564212f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-1[data-v-564212f0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-564212f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-564212f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-2[data-v-564212f0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-564212f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-564212f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-3[data-v-564212f0]{margin-left:26%}.col-no-margin-m-3[data-v-564212f0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-564212f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-4[data-v-564212f0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-564212f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-564212f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-5[data-v-564212f0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-564212f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-564212f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-6[data-v-564212f0]{margin-left:52%}.col-no-margin-m-6[data-v-564212f0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-564212f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-7[data-v-564212f0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-564212f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-564212f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-8[data-v-564212f0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-564212f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-564212f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-9[data-v-564212f0]{margin-left:78%}.col-no-margin-m-9[data-v-564212f0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-564212f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-10[data-v-564212f0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-564212f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-564212f0]:first-child{margin-left:0}.col-offset-m-11[data-v-564212f0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-564212f0]{display:none!important}.m-visible[data-v-564212f0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-564212f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-1[data-v-564212f0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-564212f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-564212f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-2[data-v-564212f0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-564212f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-564212f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-3[data-v-564212f0]{margin-left:26%}.col-no-margin-l-3[data-v-564212f0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-564212f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-4[data-v-564212f0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-564212f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-564212f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-5[data-v-564212f0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-564212f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-564212f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-6[data-v-564212f0]{margin-left:52%}.col-no-margin-l-6[data-v-564212f0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-564212f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-7[data-v-564212f0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-564212f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-564212f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-8[data-v-564212f0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-564212f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-564212f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-9[data-v-564212f0]{margin-left:78%}.col-no-margin-l-9[data-v-564212f0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-564212f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-10[data-v-564212f0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-564212f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-564212f0]:first-child{margin-left:0}.col-offset-l-11[data-v-564212f0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-564212f0]{display:none!important}.l-visible[data-v-564212f0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-564212f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-1[data-v-564212f0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-564212f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-564212f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-2[data-v-564212f0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-564212f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-564212f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-3[data-v-564212f0]{margin-left:26%}.col-no-margin-xl-3[data-v-564212f0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-564212f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-4[data-v-564212f0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-564212f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-564212f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-5[data-v-564212f0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-564212f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-564212f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-6[data-v-564212f0]{margin-left:52%}.col-no-margin-xl-6[data-v-564212f0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-564212f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-7[data-v-564212f0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-564212f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-564212f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-8[data-v-564212f0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-564212f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-564212f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-9[data-v-564212f0]{margin-left:78%}.col-no-margin-xl-9[data-v-564212f0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-564212f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-10[data-v-564212f0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-564212f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-564212f0]:first-child{margin-left:0}.col-offset-xl-11[data-v-564212f0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-564212f0]{display:none!important}.xl-visible[data-v-564212f0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-564212f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-564212f0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-564212f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-564212f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-564212f0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-564212f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-564212f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-564212f0]{margin-left:26%}.col-no-margin-xxl-3[data-v-564212f0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-564212f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-564212f0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-564212f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-564212f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-564212f0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-564212f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-564212f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-564212f0]{margin-left:52%}.col-no-margin-xxl-6[data-v-564212f0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-564212f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-564212f0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-564212f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-564212f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-564212f0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-564212f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-564212f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-564212f0]{margin-left:78%}.col-no-margin-xxl-9[data-v-564212f0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-564212f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-564212f0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-564212f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-564212f0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-564212f0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-564212f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-564212f0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-564212f0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-564212f0]{display:none!important}.xxl-visible[data-v-564212f0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-564212f0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-564212f0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-564212f0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-564212f0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-564212f0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-564212f0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-564212f0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-564212f0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-564212f0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-564212f0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-564212f0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-564212f0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-564212f0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-564212f0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-564212f0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-564212f0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-564212f0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-564212f0]{display:none!important}}.vertical-center[data-v-564212f0]{display:flex;align-items:center}.horizontal-center[data-v-564212f0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-564212f0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-564212f0]{display:none!important}.no-content[data-v-564212f0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-564212f0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-564212f0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-564212f0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-564212f0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-564212f0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-564212f0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-564212f0],.btn[data-v-564212f0],button[data-v-564212f0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-564212f0],.btn-default[type=submit][data-v-564212f0],.btn.btn-primary[data-v-564212f0],.btn[type=submit][data-v-564212f0],button.btn-primary[data-v-564212f0],button[type=submit][data-v-564212f0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-564212f0]:hover,.btn[data-v-564212f0]:hover,button[data-v-564212f0]:hover{color:#35b870}.btn .icon[data-v-564212f0],.btn-default .icon[data-v-564212f0],button .icon[data-v-564212f0]{margin-right:.5em}.btn-default[data-v-564212f0]:disabled,.btn-default[disabled][data-v-564212f0],.btn[data-v-564212f0]:disabled,.btn[disabled][data-v-564212f0],button[data-v-564212f0]:disabled,button[disabled][data-v-564212f0]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-564212f0]{cursor:grab!important}.dragged[data-v-564212f0]{opacity:.5!important}input[type=password][data-v-564212f0],input[type=text][data-v-564212f0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-564212f0]:focus,input[type=text][data-v-564212f0]:focus{border:1px solid #35b870}button[data-v-564212f0],input[data-v-564212f0]{outline:none}input[type=text][data-v-564212f0]:hover,textarea[data-v-564212f0]:hover{border:1px solid #9cdfb0}ul[data-v-564212f0]{margin:0;padding:0;list-style:none}a[data-v-564212f0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-564212f0]:hover{color:#35b870}[data-v-564212f0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-564212f0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-564212f0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-564212f0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-564212f0]{color:#ad1717}body[data-v-564212f0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-564212f0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-564212f0] .nav .path{cursor:pointer}.browser[data-v-564212f0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-564212f0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-564212f0]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-564212f0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-564212f0],input[type=number][data-v-564212f0],input[type=password][data-v-564212f0],input[type=search][data-v-564212f0],input[type=text][data-v-564212f0],input[type=time][data-v-564212f0]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-564212f0]:hover,input[type=number][data-v-564212f0]:hover,input[type=password][data-v-564212f0]:hover,input[type=search][data-v-564212f0]:hover,input[type=text][data-v-564212f0]:hover,input[type=time][data-v-564212f0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-564212f0]:focus,input[type=number][data-v-564212f0]:focus,input[type=password][data-v-564212f0]:focus,input[type=search][data-v-564212f0]:focus,input[type=text][data-v-564212f0]:focus,input[type=time][data-v-564212f0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-564212f0],input[type=number].with-icon[data-v-564212f0],input[type=password].with-icon[data-v-564212f0],input[type=search].with-icon[data-v-564212f0],input[type=text].with-icon[data-v-564212f0],input[type=time].with-icon[data-v-564212f0]{padding-left:.3em}input[type=search][data-v-564212f0],input[type=text][data-v-564212f0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-564212f0]{animation-fill-mode:both;animation-name:fadeIn-564212f0;-webkit-animation-name:fadeIn-564212f0}.fade-in[data-v-564212f0],.fade-out[data-v-564212f0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-564212f0]{animation-fill-mode:both;animation-name:fadeOut-564212f0;-webkit-animation-name:fadeOut-564212f0}.expand[data-v-564212f0]{animation-fill-mode:both;animation-name:expand-564212f0;-webkit-animation-name:expand-564212f0}.expand[data-v-564212f0],.shrink[data-v-564212f0]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-564212f0]{animation-fill-mode:both;animation-name:shrink-564212f0;-webkit-animation-name:shrink-564212f0}.fold[data-v-564212f0]{animation-fill-mode:both;animation-name:fold-564212f0;-webkit-animation-name:fold-564212f0}.fold[data-v-564212f0],.unfold[data-v-564212f0]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-564212f0]{animation-fill-mode:both;animation-name:unfold-564212f0;-webkit-animation-name:unfold-564212f0}.dim[data-v-564212f0]{animation-fill-mode:both;animation-name:dim-564212f0;-webkit-animation-name:dim-564212f0}.brighten[data-v-564212f0],.dim[data-v-564212f0]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-564212f0]{animation-fill-mode:both;animation-name:brighten-564212f0;-webkit-animation-name:brighten-564212f0}@keyframes fadeIn-564212f0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-564212f0{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-564212f0{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-564212f0{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-564212f0{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-564212f0{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-564212f0{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-564212f0{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-564212f0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-564212f0;-webkit-animation-name:glow-564212f0}.loop[data-v-564212f0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-564212f0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-564212f0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-564212f0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-564212f0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.modal-container[data-v-564212f0]{position:fixed;display:flex;align-items:center;justify-content:center;top:0;left:0;width:100%;height:100%;z-index:var(--z-index);background:hsla(0,0%,4%,.9)}.modal-container .modal[data-v-564212f0]{display:flex;max-width:100%;justify-content:center}.modal-container .modal .content[data-v-564212f0]{--width:auto;--height:auto;width:var(--width);height:var(--height);border-radius:.5em;background:#fff}.modal-container .modal .header[data-v-564212f0]{display:flex;position:relative;border-bottom:1px solid #ccc;border-radius:.5em .5em 0 0;padding:.5em;text-align:center;justify-content:center;align-items:center;background:#e0e0e0}.modal-container .modal .header.uppercase[data-v-564212f0]{text-transform:uppercase}.modal-container .modal .header .buttons[data-v-564212f0]{width:auto;position:absolute;right:0}.modal-container .modal .header button[data-v-564212f0]{width:1.5em;height:1.5em;margin:auto .5em;padding:0;border:0;background:transparent}.modal-container .modal .header button[data-v-564212f0]:hover{color:#35b870}.modal-container .modal .body[data-v-564212f0]{max-height:75vh;overflow:auto;padding:2em}.col-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-46875d7a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-46875d7a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-46875d7a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-46875d7a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-46875d7a]:first-child{margin-left:26%!important}.col-offset-3[data-v-46875d7a]:not(first-child){margin-left:30%!important}.col-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-46875d7a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-46875d7a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-46875d7a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-46875d7a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-46875d7a]:first-child{margin-left:52%!important}.col-offset-6[data-v-46875d7a]:not(first-child){margin-left:56%!important}.col-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-46875d7a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-46875d7a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-46875d7a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-46875d7a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-46875d7a]:first-child{margin-left:78%!important}.col-offset-9[data-v-46875d7a]:not(first-child){margin-left:82%!important}.col-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-46875d7a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-46875d7a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-46875d7a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-46875d7a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-1[data-v-46875d7a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-2[data-v-46875d7a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-3[data-v-46875d7a]{margin-left:26%}.col-no-margin-s-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-4[data-v-46875d7a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-5[data-v-46875d7a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-6[data-v-46875d7a]{margin-left:52%}.col-no-margin-s-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-7[data-v-46875d7a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-8[data-v-46875d7a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-9[data-v-46875d7a]{margin-left:78%}.col-no-margin-s-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-10[data-v-46875d7a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-46875d7a]:first-child{margin-left:0}.col-offset-s-11[data-v-46875d7a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-46875d7a]{display:none!important}.s-visible[data-v-46875d7a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-1[data-v-46875d7a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-2[data-v-46875d7a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-3[data-v-46875d7a]{margin-left:26%}.col-no-margin-m-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-4[data-v-46875d7a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-5[data-v-46875d7a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-6[data-v-46875d7a]{margin-left:52%}.col-no-margin-m-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-7[data-v-46875d7a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-8[data-v-46875d7a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-9[data-v-46875d7a]{margin-left:78%}.col-no-margin-m-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-10[data-v-46875d7a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-46875d7a]:first-child{margin-left:0}.col-offset-m-11[data-v-46875d7a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-46875d7a]{display:none!important}.m-visible[data-v-46875d7a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-1[data-v-46875d7a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-2[data-v-46875d7a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-3[data-v-46875d7a]{margin-left:26%}.col-no-margin-l-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-4[data-v-46875d7a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-5[data-v-46875d7a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-6[data-v-46875d7a]{margin-left:52%}.col-no-margin-l-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-7[data-v-46875d7a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-8[data-v-46875d7a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-9[data-v-46875d7a]{margin-left:78%}.col-no-margin-l-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-10[data-v-46875d7a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-46875d7a]:first-child{margin-left:0}.col-offset-l-11[data-v-46875d7a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-46875d7a]{display:none!important}.l-visible[data-v-46875d7a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-1[data-v-46875d7a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-2[data-v-46875d7a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-3[data-v-46875d7a]{margin-left:26%}.col-no-margin-xl-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-4[data-v-46875d7a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-5[data-v-46875d7a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-6[data-v-46875d7a]{margin-left:52%}.col-no-margin-xl-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-7[data-v-46875d7a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-8[data-v-46875d7a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-9[data-v-46875d7a]{margin-left:78%}.col-no-margin-xl-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-10[data-v-46875d7a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xl-11[data-v-46875d7a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-46875d7a]{display:none!important}.xl-visible[data-v-46875d7a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-46875d7a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-46875d7a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-46875d7a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-46875d7a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-46875d7a]{margin-left:26%}.col-no-margin-xxl-3[data-v-46875d7a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-46875d7a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-46875d7a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-46875d7a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-46875d7a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-46875d7a]{margin-left:52%}.col-no-margin-xxl-6[data-v-46875d7a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-46875d7a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-46875d7a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-46875d7a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-46875d7a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-46875d7a]{margin-left:78%}.col-no-margin-xxl-9[data-v-46875d7a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-46875d7a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-46875d7a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-46875d7a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-46875d7a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-46875d7a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-46875d7a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-46875d7a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-46875d7a]{display:none!important}.xxl-visible[data-v-46875d7a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-46875d7a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-46875d7a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-46875d7a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-46875d7a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-46875d7a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-46875d7a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-46875d7a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-46875d7a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-46875d7a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-46875d7a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-46875d7a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-46875d7a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-46875d7a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-46875d7a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-46875d7a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-46875d7a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-46875d7a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-46875d7a]{display:none!important}}.vertical-center[data-v-46875d7a]{display:flex;align-items:center}.horizontal-center[data-v-46875d7a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-46875d7a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-46875d7a]{display:none!important}.no-content[data-v-46875d7a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-46875d7a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-46875d7a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-46875d7a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-46875d7a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-46875d7a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-46875d7a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-46875d7a],.btn[data-v-46875d7a],button[data-v-46875d7a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-46875d7a],.btn-default[type=submit][data-v-46875d7a],.btn.btn-primary[data-v-46875d7a],.btn[type=submit][data-v-46875d7a],button.btn-primary[data-v-46875d7a],button[type=submit][data-v-46875d7a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-46875d7a]:hover,.btn[data-v-46875d7a]:hover,button[data-v-46875d7a]:hover{color:#35b870}.btn .icon[data-v-46875d7a],.btn-default .icon[data-v-46875d7a],button .icon[data-v-46875d7a]{margin-right:.5em}.btn-default[data-v-46875d7a]:disabled,.btn-default[disabled][data-v-46875d7a],.btn[data-v-46875d7a]:disabled,.btn[disabled][data-v-46875d7a],button[data-v-46875d7a]:disabled,button[disabled][data-v-46875d7a]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-46875d7a]{cursor:grab!important}.dragged[data-v-46875d7a]{opacity:.5!important}input[type=password][data-v-46875d7a],input[type=text][data-v-46875d7a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-46875d7a]:focus,input[type=text][data-v-46875d7a]:focus{border:1px solid #35b870}button[data-v-46875d7a],input[data-v-46875d7a]{outline:none}input[type=text][data-v-46875d7a]:hover,textarea[data-v-46875d7a]:hover{border:1px solid #9cdfb0}ul[data-v-46875d7a]{margin:0;padding:0;list-style:none}a[data-v-46875d7a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-46875d7a]:hover{color:#35b870}[data-v-46875d7a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-46875d7a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-46875d7a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-46875d7a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-46875d7a]{color:#ad1717}body[data-v-46875d7a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-46875d7a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-46875d7a] .nav .path{cursor:pointer}.browser[data-v-46875d7a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-46875d7a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-46875d7a]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-46875d7a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-46875d7a],input[type=number][data-v-46875d7a],input[type=password][data-v-46875d7a],input[type=search][data-v-46875d7a],input[type=text][data-v-46875d7a],input[type=time][data-v-46875d7a]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-46875d7a]:hover,input[type=number][data-v-46875d7a]:hover,input[type=password][data-v-46875d7a]:hover,input[type=search][data-v-46875d7a]:hover,input[type=text][data-v-46875d7a]:hover,input[type=time][data-v-46875d7a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-46875d7a]:focus,input[type=number][data-v-46875d7a]:focus,input[type=password][data-v-46875d7a]:focus,input[type=search][data-v-46875d7a]:focus,input[type=text][data-v-46875d7a]:focus,input[type=time][data-v-46875d7a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-46875d7a],input[type=number].with-icon[data-v-46875d7a],input[type=password].with-icon[data-v-46875d7a],input[type=search].with-icon[data-v-46875d7a],input[type=text].with-icon[data-v-46875d7a],input[type=time].with-icon[data-v-46875d7a]{padding-left:.3em}input[type=search][data-v-46875d7a],input[type=text][data-v-46875d7a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-46875d7a]{animation-fill-mode:both;animation-name:fadeIn-46875d7a;-webkit-animation-name:fadeIn-46875d7a}.fade-in[data-v-46875d7a],.fade-out[data-v-46875d7a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-46875d7a]{animation-fill-mode:both;animation-name:fadeOut-46875d7a;-webkit-animation-name:fadeOut-46875d7a}.expand[data-v-46875d7a]{animation-fill-mode:both;animation-name:expand-46875d7a;-webkit-animation-name:expand-46875d7a}.expand[data-v-46875d7a],.shrink[data-v-46875d7a]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-46875d7a]{animation-fill-mode:both;animation-name:shrink-46875d7a;-webkit-animation-name:shrink-46875d7a}.fold[data-v-46875d7a]{animation-fill-mode:both;animation-name:fold-46875d7a;-webkit-animation-name:fold-46875d7a}.fold[data-v-46875d7a],.unfold[data-v-46875d7a]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-46875d7a]{animation-fill-mode:both;animation-name:unfold-46875d7a;-webkit-animation-name:unfold-46875d7a}.dim[data-v-46875d7a]{animation-fill-mode:both;animation-name:dim-46875d7a;-webkit-animation-name:dim-46875d7a}.brighten[data-v-46875d7a],.dim[data-v-46875d7a]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-46875d7a]{animation-fill-mode:both;animation-name:brighten-46875d7a;-webkit-animation-name:brighten-46875d7a}@keyframes fadeIn-46875d7a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-46875d7a{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-46875d7a{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-46875d7a{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-46875d7a{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-46875d7a{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-46875d7a{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-46875d7a{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-46875d7a]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-46875d7a;-webkit-animation-name:glow-46875d7a}.loop[data-v-46875d7a]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-46875d7a{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-46875d7a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-46875d7a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-46875d7a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-46875d7a] .modal .dialog-content{padding:1em}[data-v-46875d7a] .modal .body{padding:1.5em}[data-v-46875d7a] .modal .buttons{display:flex;flex-direction:row;justify-content:right;margin-bottom:1em;border:0;border-radius:0}[data-v-46875d7a] .modal .buttons button{margin-right:1em;padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-46875d7a] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f4e8cf00]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f4e8cf00]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f4e8cf00]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f4e8cf00]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f4e8cf00]:first-child{margin-left:26%!important}.col-offset-3[data-v-f4e8cf00]:not(first-child){margin-left:30%!important}.col-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f4e8cf00]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f4e8cf00]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f4e8cf00]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f4e8cf00]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f4e8cf00]:first-child{margin-left:52%!important}.col-offset-6[data-v-f4e8cf00]:not(first-child){margin-left:56%!important}.col-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f4e8cf00]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f4e8cf00]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f4e8cf00]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f4e8cf00]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f4e8cf00]:first-child{margin-left:78%!important}.col-offset-9[data-v-f4e8cf00]:not(first-child){margin-left:82%!important}.col-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f4e8cf00]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f4e8cf00]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f4e8cf00]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f4e8cf00]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-1[data-v-f4e8cf00]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-2[data-v-f4e8cf00]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-3[data-v-f4e8cf00]{margin-left:26%}.col-no-margin-s-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-4[data-v-f4e8cf00]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-5[data-v-f4e8cf00]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-6[data-v-f4e8cf00]{margin-left:52%}.col-no-margin-s-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-7[data-v-f4e8cf00]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-8[data-v-f4e8cf00]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-9[data-v-f4e8cf00]{margin-left:78%}.col-no-margin-s-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-10[data-v-f4e8cf00]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-s-11[data-v-f4e8cf00]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f4e8cf00]{display:none!important}.s-visible[data-v-f4e8cf00]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-1[data-v-f4e8cf00]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-2[data-v-f4e8cf00]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-3[data-v-f4e8cf00]{margin-left:26%}.col-no-margin-m-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-4[data-v-f4e8cf00]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-5[data-v-f4e8cf00]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-6[data-v-f4e8cf00]{margin-left:52%}.col-no-margin-m-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-7[data-v-f4e8cf00]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-8[data-v-f4e8cf00]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-9[data-v-f4e8cf00]{margin-left:78%}.col-no-margin-m-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-10[data-v-f4e8cf00]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-m-11[data-v-f4e8cf00]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f4e8cf00]{display:none!important}.m-visible[data-v-f4e8cf00]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-1[data-v-f4e8cf00]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-2[data-v-f4e8cf00]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-3[data-v-f4e8cf00]{margin-left:26%}.col-no-margin-l-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-4[data-v-f4e8cf00]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-5[data-v-f4e8cf00]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-6[data-v-f4e8cf00]{margin-left:52%}.col-no-margin-l-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-7[data-v-f4e8cf00]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-8[data-v-f4e8cf00]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-9[data-v-f4e8cf00]{margin-left:78%}.col-no-margin-l-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-10[data-v-f4e8cf00]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-l-11[data-v-f4e8cf00]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f4e8cf00]{display:none!important}.l-visible[data-v-f4e8cf00]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-1[data-v-f4e8cf00]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-2[data-v-f4e8cf00]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-3[data-v-f4e8cf00]{margin-left:26%}.col-no-margin-xl-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-4[data-v-f4e8cf00]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-5[data-v-f4e8cf00]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-6[data-v-f4e8cf00]{margin-left:52%}.col-no-margin-xl-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-7[data-v-f4e8cf00]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-8[data-v-f4e8cf00]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-9[data-v-f4e8cf00]{margin-left:78%}.col-no-margin-xl-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-10[data-v-f4e8cf00]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xl-11[data-v-f4e8cf00]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f4e8cf00]{display:none!important}.xl-visible[data-v-f4e8cf00]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f4e8cf00]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f4e8cf00]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f4e8cf00]{margin-left:26%}.col-no-margin-xxl-3[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f4e8cf00]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f4e8cf00]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f4e8cf00]{margin-left:52%}.col-no-margin-xxl-6[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f4e8cf00]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f4e8cf00]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f4e8cf00]{margin-left:78%}.col-no-margin-xxl-9[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f4e8cf00]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f4e8cf00]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f4e8cf00]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f4e8cf00]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f4e8cf00]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f4e8cf00]{display:none!important}.xxl-visible[data-v-f4e8cf00]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f4e8cf00]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f4e8cf00]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f4e8cf00]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f4e8cf00]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f4e8cf00]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f4e8cf00]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f4e8cf00]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f4e8cf00]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f4e8cf00]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f4e8cf00]{display:none!important}}.vertical-center[data-v-f4e8cf00]{display:flex;align-items:center}.horizontal-center[data-v-f4e8cf00]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f4e8cf00]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f4e8cf00]{display:none!important}.no-content[data-v-f4e8cf00]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f4e8cf00]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f4e8cf00]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f4e8cf00]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f4e8cf00]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f4e8cf00]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f4e8cf00]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f4e8cf00],.btn[data-v-f4e8cf00],button[data-v-f4e8cf00]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f4e8cf00],.btn-default[type=submit][data-v-f4e8cf00],.btn.btn-primary[data-v-f4e8cf00],.btn[type=submit][data-v-f4e8cf00],button.btn-primary[data-v-f4e8cf00],button[type=submit][data-v-f4e8cf00]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-f4e8cf00]:hover,.btn[data-v-f4e8cf00]:hover,button[data-v-f4e8cf00]:hover{color:#35b870}.btn .icon[data-v-f4e8cf00],.btn-default .icon[data-v-f4e8cf00],button .icon[data-v-f4e8cf00]{margin-right:.5em}.btn-default[data-v-f4e8cf00]:disabled,.btn-default[disabled][data-v-f4e8cf00],.btn[data-v-f4e8cf00]:disabled,.btn[disabled][data-v-f4e8cf00],button[data-v-f4e8cf00]:disabled,button[disabled][data-v-f4e8cf00]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-f4e8cf00]{cursor:grab!important}.dragged[data-v-f4e8cf00]{opacity:.5!important}input[type=password][data-v-f4e8cf00],input[type=text][data-v-f4e8cf00]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f4e8cf00]:focus,input[type=text][data-v-f4e8cf00]:focus{border:1px solid #35b870}button[data-v-f4e8cf00],input[data-v-f4e8cf00]{outline:none}input[type=text][data-v-f4e8cf00]:hover,textarea[data-v-f4e8cf00]:hover{border:1px solid #9cdfb0}ul[data-v-f4e8cf00]{margin:0;padding:0;list-style:none}a[data-v-f4e8cf00]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f4e8cf00]:hover{color:#35b870}[data-v-f4e8cf00]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f4e8cf00]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f4e8cf00]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f4e8cf00]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-f4e8cf00]{color:#ad1717}body[data-v-f4e8cf00]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f4e8cf00] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f4e8cf00] .nav .path{cursor:pointer}.browser[data-v-f4e8cf00] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f4e8cf00] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-f4e8cf00]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-f4e8cf00]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f4e8cf00],input[type=number][data-v-f4e8cf00],input[type=password][data-v-f4e8cf00],input[type=search][data-v-f4e8cf00],input[type=text][data-v-f4e8cf00],input[type=time][data-v-f4e8cf00]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-f4e8cf00]:hover,input[type=number][data-v-f4e8cf00]:hover,input[type=password][data-v-f4e8cf00]:hover,input[type=search][data-v-f4e8cf00]:hover,input[type=text][data-v-f4e8cf00]:hover,input[type=time][data-v-f4e8cf00]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f4e8cf00]:focus,input[type=number][data-v-f4e8cf00]:focus,input[type=password][data-v-f4e8cf00]:focus,input[type=search][data-v-f4e8cf00]:focus,input[type=text][data-v-f4e8cf00]:focus,input[type=time][data-v-f4e8cf00]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f4e8cf00],input[type=number].with-icon[data-v-f4e8cf00],input[type=password].with-icon[data-v-f4e8cf00],input[type=search].with-icon[data-v-f4e8cf00],input[type=text].with-icon[data-v-f4e8cf00],input[type=time].with-icon[data-v-f4e8cf00]{padding-left:.3em}input[type=search][data-v-f4e8cf00],input[type=text][data-v-f4e8cf00]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f4e8cf00]{animation-fill-mode:both;animation-name:fadeIn-f4e8cf00;-webkit-animation-name:fadeIn-f4e8cf00}.fade-in[data-v-f4e8cf00],.fade-out[data-v-f4e8cf00]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f4e8cf00]{animation-fill-mode:both;animation-name:fadeOut-f4e8cf00;-webkit-animation-name:fadeOut-f4e8cf00}.expand[data-v-f4e8cf00]{animation-fill-mode:both;animation-name:expand-f4e8cf00;-webkit-animation-name:expand-f4e8cf00}.expand[data-v-f4e8cf00],.shrink[data-v-f4e8cf00]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-f4e8cf00]{animation-fill-mode:both;animation-name:shrink-f4e8cf00;-webkit-animation-name:shrink-f4e8cf00}.fold[data-v-f4e8cf00]{animation-fill-mode:both;animation-name:fold-f4e8cf00;-webkit-animation-name:fold-f4e8cf00}.fold[data-v-f4e8cf00],.unfold[data-v-f4e8cf00]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-f4e8cf00]{animation-fill-mode:both;animation-name:unfold-f4e8cf00;-webkit-animation-name:unfold-f4e8cf00}.dim[data-v-f4e8cf00]{animation-fill-mode:both;animation-name:dim-f4e8cf00;-webkit-animation-name:dim-f4e8cf00}.brighten[data-v-f4e8cf00],.dim[data-v-f4e8cf00]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-f4e8cf00]{animation-fill-mode:both;animation-name:brighten-f4e8cf00;-webkit-animation-name:brighten-f4e8cf00}@keyframes fadeIn-f4e8cf00{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f4e8cf00{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-f4e8cf00{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-f4e8cf00{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-f4e8cf00{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-f4e8cf00{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-f4e8cf00{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-f4e8cf00{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-f4e8cf00]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-f4e8cf00;-webkit-animation-name:glow-f4e8cf00}.loop[data-v-f4e8cf00]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-f4e8cf00{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-f4e8cf00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f4e8cf00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f4e8cf00]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.dropdown-container[data-v-f4e8cf00] .dropdown{border:1px solid #ddd}.col-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4d9c871b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4d9c871b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4d9c871b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4d9c871b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4d9c871b]:first-child{margin-left:26%!important}.col-offset-3[data-v-4d9c871b]:not(first-child){margin-left:30%!important}.col-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4d9c871b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4d9c871b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4d9c871b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4d9c871b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4d9c871b]:first-child{margin-left:52%!important}.col-offset-6[data-v-4d9c871b]:not(first-child){margin-left:56%!important}.col-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4d9c871b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4d9c871b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4d9c871b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4d9c871b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4d9c871b]:first-child{margin-left:78%!important}.col-offset-9[data-v-4d9c871b]:not(first-child){margin-left:82%!important}.col-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4d9c871b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4d9c871b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4d9c871b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4d9c871b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-s-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-s-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-s-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-s-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4d9c871b]{display:none!important}.s-visible[data-v-4d9c871b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-m-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-m-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-m-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-m-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4d9c871b]{display:none!important}.m-visible[data-v-4d9c871b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-l-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-l-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-l-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-l-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4d9c871b]{display:none!important}.l-visible[data-v-4d9c871b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-xl-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-xl-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-xl-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xl-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4d9c871b]{display:none!important}.xl-visible[data-v-4d9c871b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4d9c871b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4d9c871b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4d9c871b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4d9c871b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4d9c871b]{margin-left:26%}.col-no-margin-xxl-3[data-v-4d9c871b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4d9c871b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4d9c871b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4d9c871b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4d9c871b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4d9c871b]{margin-left:52%}.col-no-margin-xxl-6[data-v-4d9c871b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4d9c871b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4d9c871b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4d9c871b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4d9c871b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4d9c871b]{margin-left:78%}.col-no-margin-xxl-9[data-v-4d9c871b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4d9c871b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4d9c871b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4d9c871b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4d9c871b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4d9c871b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4d9c871b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4d9c871b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4d9c871b]{display:none!important}.xxl-visible[data-v-4d9c871b]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4d9c871b]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4d9c871b]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4d9c871b]{display:none!important}}.vertical-center[data-v-4d9c871b]{display:flex;align-items:center}.horizontal-center[data-v-4d9c871b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4d9c871b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4d9c871b]{display:none!important}.no-content[data-v-4d9c871b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4d9c871b]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4d9c871b]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4d9c871b]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4d9c871b]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4d9c871b]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4d9c871b]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4d9c871b],.btn[data-v-4d9c871b],button[data-v-4d9c871b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4d9c871b],.btn-default[type=submit][data-v-4d9c871b],.btn.btn-primary[data-v-4d9c871b],.btn[type=submit][data-v-4d9c871b],button.btn-primary[data-v-4d9c871b],button[type=submit][data-v-4d9c871b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-4d9c871b]:hover,.btn[data-v-4d9c871b]:hover,button[data-v-4d9c871b]:hover{color:#35b870}.btn .icon[data-v-4d9c871b],.btn-default .icon[data-v-4d9c871b],button .icon[data-v-4d9c871b]{margin-right:.5em}.btn-default[data-v-4d9c871b]:disabled,.btn-default[disabled][data-v-4d9c871b],.btn[data-v-4d9c871b]:disabled,.btn[disabled][data-v-4d9c871b],button[data-v-4d9c871b]:disabled,button[disabled][data-v-4d9c871b]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-4d9c871b]{cursor:grab!important}.dragged[data-v-4d9c871b]{opacity:.5!important}input[type=password][data-v-4d9c871b],input[type=text][data-v-4d9c871b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4d9c871b]:focus,input[type=text][data-v-4d9c871b]:focus{border:1px solid #35b870}button[data-v-4d9c871b],input[data-v-4d9c871b]{outline:none}input[type=text][data-v-4d9c871b]:hover,textarea[data-v-4d9c871b]:hover{border:1px solid #9cdfb0}ul[data-v-4d9c871b]{margin:0;padding:0;list-style:none}a[data-v-4d9c871b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4d9c871b]:hover{color:#35b870}[data-v-4d9c871b]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4d9c871b]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4d9c871b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4d9c871b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-4d9c871b]{color:#ad1717}body[data-v-4d9c871b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4d9c871b] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4d9c871b] .nav .path{cursor:pointer}.browser[data-v-4d9c871b] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4d9c871b] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-4d9c871b]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-4d9c871b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4d9c871b],input[type=number][data-v-4d9c871b],input[type=password][data-v-4d9c871b],input[type=search][data-v-4d9c871b],input[type=text][data-v-4d9c871b],input[type=time][data-v-4d9c871b]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-4d9c871b]:hover,input[type=number][data-v-4d9c871b]:hover,input[type=password][data-v-4d9c871b]:hover,input[type=search][data-v-4d9c871b]:hover,input[type=text][data-v-4d9c871b]:hover,input[type=time][data-v-4d9c871b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4d9c871b]:focus,input[type=number][data-v-4d9c871b]:focus,input[type=password][data-v-4d9c871b]:focus,input[type=search][data-v-4d9c871b]:focus,input[type=text][data-v-4d9c871b]:focus,input[type=time][data-v-4d9c871b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4d9c871b],input[type=number].with-icon[data-v-4d9c871b],input[type=password].with-icon[data-v-4d9c871b],input[type=search].with-icon[data-v-4d9c871b],input[type=text].with-icon[data-v-4d9c871b],input[type=time].with-icon[data-v-4d9c871b]{padding-left:.3em}input[type=search][data-v-4d9c871b],input[type=text][data-v-4d9c871b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4d9c871b]{animation-fill-mode:both;animation-name:fadeIn-4d9c871b;-webkit-animation-name:fadeIn-4d9c871b}.fade-in[data-v-4d9c871b],.fade-out[data-v-4d9c871b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4d9c871b]{animation-fill-mode:both;animation-name:fadeOut-4d9c871b;-webkit-animation-name:fadeOut-4d9c871b}.expand[data-v-4d9c871b]{animation-fill-mode:both;animation-name:expand-4d9c871b;-webkit-animation-name:expand-4d9c871b}.expand[data-v-4d9c871b],.shrink[data-v-4d9c871b]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-4d9c871b]{animation-fill-mode:both;animation-name:shrink-4d9c871b;-webkit-animation-name:shrink-4d9c871b}.fold[data-v-4d9c871b]{animation-fill-mode:both;animation-name:fold-4d9c871b;-webkit-animation-name:fold-4d9c871b}.fold[data-v-4d9c871b],.unfold[data-v-4d9c871b]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-4d9c871b]{animation-fill-mode:both;animation-name:unfold-4d9c871b;-webkit-animation-name:unfold-4d9c871b}.dim[data-v-4d9c871b]{animation-fill-mode:both;animation-name:dim-4d9c871b;-webkit-animation-name:dim-4d9c871b}.brighten[data-v-4d9c871b],.dim[data-v-4d9c871b]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-4d9c871b]{animation-fill-mode:both;animation-name:brighten-4d9c871b;-webkit-animation-name:brighten-4d9c871b}@keyframes fadeIn-4d9c871b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4d9c871b{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-4d9c871b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-4d9c871b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-4d9c871b{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-4d9c871b{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-4d9c871b{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-4d9c871b{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-4d9c871b]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-4d9c871b;-webkit-animation-name:glow-4d9c871b}.loop[data-v-4d9c871b]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-4d9c871b{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-4d9c871b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4d9c871b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4d9c871b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.loading[data-v-4d9c871b]{display:flex;align-items:center;justify-content:center;font-size:3em;position:absolute;top:0;left:0;width:100%;height:100%;background:#909090;opacity:.5}.icon[data-v-4d9c871b]{display:inline-block;position:relative;width:80px;height:80px}.icon div[data-v-4d9c871b]{position:absolute;top:33px;width:13px;height:13px;border-radius:50%;background:#fff;animation-timing-function:cubic-bezier(0,1,1,0)}.icon div[data-v-4d9c871b]:first-child{left:8px;animation:lds-ellipsis1-4d9c871b .6s infinite}.icon div[data-v-4d9c871b]:nth-child(2){left:8px;animation:lds-ellipsis2-4d9c871b .6s infinite}.icon div[data-v-4d9c871b]:nth-child(3){left:32px;animation:lds-ellipsis2-4d9c871b .6s infinite}.icon div[data-v-4d9c871b]:nth-child(4){left:56px;animation:lds-ellipsis3-4d9c871b .6s infinite}@keyframes lds-ellipsis1-4d9c871b{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes lds-ellipsis3-4d9c871b{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes lds-ellipsis2-4d9c871b{0%{transform:translate(0)}to{transform:translate(24px)}}.col-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7646705e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7646705e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7646705e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7646705e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7646705e]:first-child{margin-left:26%!important}.col-offset-3[data-v-7646705e]:not(first-child){margin-left:30%!important}.col-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7646705e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7646705e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7646705e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7646705e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7646705e]:first-child{margin-left:52%!important}.col-offset-6[data-v-7646705e]:not(first-child){margin-left:56%!important}.col-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7646705e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7646705e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7646705e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7646705e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7646705e]:first-child{margin-left:78%!important}.col-offset-9[data-v-7646705e]:not(first-child){margin-left:82%!important}.col-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7646705e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7646705e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7646705e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7646705e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-3[data-v-7646705e]{margin-left:26%}.col-no-margin-s-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-6[data-v-7646705e]{margin-left:52%}.col-no-margin-s-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-9[data-v-7646705e]{margin-left:78%}.col-no-margin-s-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-s-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7646705e]{display:none!important}.s-visible[data-v-7646705e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-3[data-v-7646705e]{margin-left:26%}.col-no-margin-m-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-6[data-v-7646705e]{margin-left:52%}.col-no-margin-m-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-9[data-v-7646705e]{margin-left:78%}.col-no-margin-m-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-m-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7646705e]{display:none!important}.m-visible[data-v-7646705e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-3[data-v-7646705e]{margin-left:26%}.col-no-margin-l-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-6[data-v-7646705e]{margin-left:52%}.col-no-margin-l-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-9[data-v-7646705e]{margin-left:78%}.col-no-margin-l-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-l-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7646705e]{display:none!important}.l-visible[data-v-7646705e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-3[data-v-7646705e]{margin-left:26%}.col-no-margin-xl-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-6[data-v-7646705e]{margin-left:52%}.col-no-margin-xl-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-9[data-v-7646705e]{margin-left:78%}.col-no-margin-xl-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-xl-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7646705e]{display:none!important}.xl-visible[data-v-7646705e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7646705e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7646705e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7646705e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7646705e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7646705e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7646705e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7646705e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7646705e]{margin-left:26%}.col-no-margin-xxl-3[data-v-7646705e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7646705e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7646705e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7646705e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7646705e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7646705e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7646705e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7646705e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7646705e]{margin-left:52%}.col-no-margin-xxl-6[data-v-7646705e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7646705e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7646705e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7646705e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7646705e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7646705e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7646705e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7646705e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7646705e]{margin-left:78%}.col-no-margin-xxl-9[data-v-7646705e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7646705e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7646705e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7646705e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7646705e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7646705e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7646705e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7646705e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7646705e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7646705e]{display:none!important}.xxl-visible[data-v-7646705e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7646705e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7646705e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7646705e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7646705e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7646705e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7646705e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7646705e]{display:none!important}}.notification .body[data-v-7646705e],.notification .image .row[data-v-7646705e],.vertical-center[data-v-7646705e]{display:flex;align-items:center}.horizontal-center[data-v-7646705e],.notification .image .row[data-v-7646705e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7646705e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7646705e]{display:none!important}.no-content[data-v-7646705e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7646705e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7646705e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7646705e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7646705e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7646705e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7646705e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7646705e],.btn[data-v-7646705e],button[data-v-7646705e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7646705e],.btn-default[type=submit][data-v-7646705e],.btn.btn-primary[data-v-7646705e],.btn[type=submit][data-v-7646705e],button.btn-primary[data-v-7646705e],button[type=submit][data-v-7646705e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-7646705e]:hover,.btn[data-v-7646705e]:hover,button[data-v-7646705e]:hover{color:#35b870}.btn .icon[data-v-7646705e],.btn-default .icon[data-v-7646705e],button .icon[data-v-7646705e]{margin-right:.5em}.btn-default[data-v-7646705e]:disabled,.btn-default[disabled][data-v-7646705e],.btn[data-v-7646705e]:disabled,.btn[disabled][data-v-7646705e],button[data-v-7646705e]:disabled,button[disabled][data-v-7646705e]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-7646705e]{cursor:grab!important}.dragged[data-v-7646705e]{opacity:.5!important}input[type=password][data-v-7646705e],input[type=text][data-v-7646705e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7646705e]:focus,input[type=text][data-v-7646705e]:focus{border:1px solid #35b870}button[data-v-7646705e],input[data-v-7646705e]{outline:none}input[type=text][data-v-7646705e]:hover,textarea[data-v-7646705e]:hover{border:1px solid #9cdfb0}ul[data-v-7646705e]{margin:0;padding:0;list-style:none}a[data-v-7646705e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7646705e]:hover{color:#35b870}[data-v-7646705e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7646705e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7646705e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7646705e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-7646705e]{color:#ad1717}body[data-v-7646705e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7646705e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7646705e] .nav .path{cursor:pointer}.browser[data-v-7646705e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7646705e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-7646705e]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-7646705e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7646705e],input[type=number][data-v-7646705e],input[type=password][data-v-7646705e],input[type=search][data-v-7646705e],input[type=text][data-v-7646705e],input[type=time][data-v-7646705e]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-7646705e]:hover,input[type=number][data-v-7646705e]:hover,input[type=password][data-v-7646705e]:hover,input[type=search][data-v-7646705e]:hover,input[type=text][data-v-7646705e]:hover,input[type=time][data-v-7646705e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7646705e]:focus,input[type=number][data-v-7646705e]:focus,input[type=password][data-v-7646705e]:focus,input[type=search][data-v-7646705e]:focus,input[type=text][data-v-7646705e]:focus,input[type=time][data-v-7646705e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7646705e],input[type=number].with-icon[data-v-7646705e],input[type=password].with-icon[data-v-7646705e],input[type=search].with-icon[data-v-7646705e],input[type=text].with-icon[data-v-7646705e],input[type=time].with-icon[data-v-7646705e]{padding-left:.3em}input[type=search][data-v-7646705e],input[type=text][data-v-7646705e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7646705e]{animation-fill-mode:both;animation-name:fadeIn-7646705e;-webkit-animation-name:fadeIn-7646705e}.fade-in[data-v-7646705e],.fade-out[data-v-7646705e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7646705e]{animation-fill-mode:both;animation-name:fadeOut-7646705e;-webkit-animation-name:fadeOut-7646705e}.expand[data-v-7646705e]{animation-fill-mode:both;animation-name:expand-7646705e;-webkit-animation-name:expand-7646705e}.expand[data-v-7646705e],.shrink[data-v-7646705e]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-7646705e]{animation-fill-mode:both;animation-name:shrink-7646705e;-webkit-animation-name:shrink-7646705e}.fold[data-v-7646705e]{animation-fill-mode:both;animation-name:fold-7646705e;-webkit-animation-name:fold-7646705e}.fold[data-v-7646705e],.unfold[data-v-7646705e]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-7646705e]{animation-fill-mode:both;animation-name:unfold-7646705e;-webkit-animation-name:unfold-7646705e}.dim[data-v-7646705e]{animation-fill-mode:both;animation-name:dim-7646705e;-webkit-animation-name:dim-7646705e}.brighten[data-v-7646705e],.dim[data-v-7646705e]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-7646705e]{animation-fill-mode:both;animation-name:brighten-7646705e;-webkit-animation-name:brighten-7646705e}@keyframes fadeIn-7646705e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7646705e{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-7646705e{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-7646705e{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-7646705e{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-7646705e{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-7646705e{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-7646705e{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-7646705e]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-7646705e;-webkit-animation-name:glow-7646705e}.loop[data-v-7646705e]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-7646705e{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-7646705e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7646705e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7646705e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.notification[data-v-7646705e]{background:rgba(185,255,193,.9);border:1px solid rgba(109,205,134,.62);border-radius:1em;margin-bottom:.25em!important;margin-right:.1em;padding:.5em;cursor:pointer}.notification[data-v-7646705e]:hover{background:rgba(160,245,178,.95)}.notification:hover.warning[data-v-7646705e]{background:rgba(218,245,68,.95)}.notification:hover.error[data-v-7646705e]{background:rgba(245,90,90,.95)}.notification.warning[data-v-7646705e]{background:rgba(228,255,78,.9);border:1px solid hsla(60,49%,62%,.62)}.notification.warning .image[data-v-7646705e]{--color:$notification-warning-icon-color}.notification.error[data-v-7646705e]{background:hsla(0,100%,70%,.9);border:1px solid hsla(0,49%,62%,.62)}.notification.error .image[data-v-7646705e]{--color:$notification-error-icon-color}.notification .title[data-v-7646705e]{color:#364;font-size:1.25em;font-weight:400;margin:.25em 0;padding:0;letter-spacing:.07em}.notification .body[data-v-7646705e]{height:6em;overflow:hidden;padding-bottom:.1em;letter-spacing:.05em}.notification .image[data-v-7646705e]{height:100%;text-align:center;--color:$notification-icon-color}.notification .image .row[data-v-7646705e]{width:100%;height:100%}.notification .image .row .fa[data-v-7646705e]{font-size:2.5em;color:var(--color)}.notification .image .row img[data-v-7646705e]{width:80%;height:80%}.notifications[data-v-6dc8bebc]{position:fixed;bottom:0;right:0;width:25em;z-index:1000}.assistant-modal .modal .body{width:50vw;height:50vh;display:flex;align-items:center;justify-content:center;flex-direction:column;text-align:center}.assistant-modal .modal .body .icon{font-size:3em;color:#7e8;box-shadow:2px 2px 2px #ccc;border:1px solid #ccc;border-radius:3em;padding:1em}.assistant-modal .modal .body .text{margin-top:2.5em}.col-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1:first-child{margin-left:0}.col-no-margin-1{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1:first-child{margin-left:8.6666666667%!important}.col-offset-1:not(first-child){margin-left:12.6666666667%!important}.col-2{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2:first-child{margin-left:0}.col-no-margin-2{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2:first-child{margin-left:17.3333333333%!important}.col-offset-2:not(first-child){margin-left:21.3333333333%!important}.col-3{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3:first-child{margin-left:0}.col-no-margin-3{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3:first-child{margin-left:26%!important}.col-offset-3:not(first-child){margin-left:30%!important}.col-4{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4:first-child{margin-left:0}.col-no-margin-4{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4:first-child{margin-left:34.6666666667%!important}.col-offset-4:not(first-child){margin-left:38.6666666667%!important}.col-5{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5:first-child{margin-left:0}.col-no-margin-5{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5:first-child{margin-left:43.3333333334%!important}.col-offset-5:not(first-child){margin-left:47.3333333334%!important}.col-6{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6:first-child{margin-left:0}.col-no-margin-6{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6:first-child{margin-left:52%!important}.col-offset-6:not(first-child){margin-left:56%!important}.col-7{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7:first-child{margin-left:0}.col-no-margin-7{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7:first-child{margin-left:60.6666666667%!important}.col-offset-7:not(first-child){margin-left:64.6666666667%!important}.col-8{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8:first-child{margin-left:0}.col-no-margin-8{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8:first-child{margin-left:69.3333333334%!important}.col-offset-8:not(first-child){margin-left:73.3333333334%!important}.col-9{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9:first-child{margin-left:0}.col-no-margin-9{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9:first-child{margin-left:78%!important}.col-offset-9:not(first-child){margin-left:82%!important}.col-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10:first-child{margin-left:0}.col-no-margin-10{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10:first-child{margin-left:86.6666666667%!important}.col-offset-10:not(first-child){margin-left:90.6666666667%!important}.col-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11:first-child{margin-left:0}.col-no-margin-11{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11:first-child{margin-left:95.3333333334%!important}.col-offset-11:not(first-child){margin-left:99.3333333334%!important}.col-12{float:left;box-sizing:border-box;width:100%}.col-12,.col-12:first-child{margin-left:0}.col-no-margin-12{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1:first-child{margin-left:0}.col-offset-s-1{margin-left:8.6666666667%}.col-no-margin-s-1{width:8.3333333333%}.col-no-margin-s-1,.col-s-2{float:left;box-sizing:border-box}.col-s-2{width:13.3333333333%;margin-left:4%}.col-s-2:first-child{margin-left:0}.col-offset-s-2{margin-left:17.3333333333%}.col-no-margin-s-2{width:16.6666666667%}.col-no-margin-s-2,.col-s-3{float:left;box-sizing:border-box}.col-s-3{width:22%;margin-left:4%}.col-s-3:first-child{margin-left:0}.col-offset-s-3{margin-left:26%}.col-no-margin-s-3{width:25%}.col-no-margin-s-3,.col-s-4{float:left;box-sizing:border-box}.col-s-4{width:30.6666666667%;margin-left:4%}.col-s-4:first-child{margin-left:0}.col-offset-s-4{margin-left:34.6666666667%}.col-no-margin-s-4{width:33.3333333333%}.col-no-margin-s-4,.col-s-5{float:left;box-sizing:border-box}.col-s-5{width:39.3333333334%;margin-left:4%}.col-s-5:first-child{margin-left:0}.col-offset-s-5{margin-left:43.3333333334%}.col-no-margin-s-5{width:41.6666666667%}.col-no-margin-s-5,.col-s-6{float:left;box-sizing:border-box}.col-s-6{width:48%;margin-left:4%}.col-s-6:first-child{margin-left:0}.col-offset-s-6{margin-left:52%}.col-no-margin-s-6{width:50%}.col-no-margin-s-6,.col-s-7{float:left;box-sizing:border-box}.col-s-7{width:56.6666666667%;margin-left:4%}.col-s-7:first-child{margin-left:0}.col-offset-s-7{margin-left:60.6666666667%}.col-no-margin-s-7{width:58.3333333333%}.col-no-margin-s-7,.col-s-8{float:left;box-sizing:border-box}.col-s-8{width:65.3333333334%;margin-left:4%}.col-s-8:first-child{margin-left:0}.col-offset-s-8{margin-left:69.3333333334%}.col-no-margin-s-8{width:66.6666666667%}.col-no-margin-s-8,.col-s-9{float:left;box-sizing:border-box}.col-s-9{width:74%;margin-left:4%}.col-s-9:first-child{margin-left:0}.col-offset-s-9{margin-left:78%}.col-no-margin-s-9{width:75%}.col-no-margin-s-9,.col-s-10{float:left;box-sizing:border-box}.col-s-10{width:82.6666666667%;margin-left:4%}.col-s-10:first-child{margin-left:0}.col-offset-s-10{margin-left:86.6666666667%}.col-no-margin-s-10{width:83.3333333333%}.col-no-margin-s-10,.col-s-11{float:left;box-sizing:border-box}.col-s-11{width:91.3333333334%;margin-left:4%}.col-s-11:first-child{margin-left:0}.col-offset-s-11{margin-left:95.3333333334%}.col-no-margin-s-11{width:91.6666666667%}.col-no-margin-s-11,.col-s-12{float:left;box-sizing:border-box}.col-s-12{width:100%}.col-s-12,.col-s-12:first-child{margin-left:0}.col-no-margin-s-12{float:left;box-sizing:border-box;width:100%}.s-hidden{display:none!important}.s-visible{display:block!important}}@media screen and (min-width:769px){.col-m-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1:first-child{margin-left:0}.col-offset-m-1{margin-left:8.6666666667%}.col-no-margin-m-1{width:8.3333333333%}.col-m-2,.col-no-margin-m-1{float:left;box-sizing:border-box}.col-m-2{width:13.3333333333%;margin-left:4%}.col-m-2:first-child{margin-left:0}.col-offset-m-2{margin-left:17.3333333333%}.col-no-margin-m-2{width:16.6666666667%}.col-m-3,.col-no-margin-m-2{float:left;box-sizing:border-box}.col-m-3{width:22%;margin-left:4%}.col-m-3:first-child{margin-left:0}.col-offset-m-3{margin-left:26%}.col-no-margin-m-3{width:25%}.col-m-4,.col-no-margin-m-3{float:left;box-sizing:border-box}.col-m-4{width:30.6666666667%;margin-left:4%}.col-m-4:first-child{margin-left:0}.col-offset-m-4{margin-left:34.6666666667%}.col-no-margin-m-4{width:33.3333333333%}.col-m-5,.col-no-margin-m-4{float:left;box-sizing:border-box}.col-m-5{width:39.3333333334%;margin-left:4%}.col-m-5:first-child{margin-left:0}.col-offset-m-5{margin-left:43.3333333334%}.col-no-margin-m-5{width:41.6666666667%}.col-m-6,.col-no-margin-m-5{float:left;box-sizing:border-box}.col-m-6{width:48%;margin-left:4%}.col-m-6:first-child{margin-left:0}.col-offset-m-6{margin-left:52%}.col-no-margin-m-6{width:50%}.col-m-7,.col-no-margin-m-6{float:left;box-sizing:border-box}.col-m-7{width:56.6666666667%;margin-left:4%}.col-m-7:first-child{margin-left:0}.col-offset-m-7{margin-left:60.6666666667%}.col-no-margin-m-7{width:58.3333333333%}.col-m-8,.col-no-margin-m-7{float:left;box-sizing:border-box}.col-m-8{width:65.3333333334%;margin-left:4%}.col-m-8:first-child{margin-left:0}.col-offset-m-8{margin-left:69.3333333334%}.col-no-margin-m-8{width:66.6666666667%}.col-m-9,.col-no-margin-m-8{float:left;box-sizing:border-box}.col-m-9{width:74%;margin-left:4%}.col-m-9:first-child{margin-left:0}.col-offset-m-9{margin-left:78%}.col-no-margin-m-9{width:75%}.col-m-10,.col-no-margin-m-9{float:left;box-sizing:border-box}.col-m-10{width:82.6666666667%;margin-left:4%}.col-m-10:first-child{margin-left:0}.col-offset-m-10{margin-left:86.6666666667%}.col-no-margin-m-10{width:83.3333333333%}.col-m-11,.col-no-margin-m-10{float:left;box-sizing:border-box}.col-m-11{width:91.3333333334%;margin-left:4%}.col-m-11:first-child{margin-left:0}.col-offset-m-11{margin-left:95.3333333334%}.col-no-margin-m-11{width:91.6666666667%}.col-m-12,.col-no-margin-m-11{float:left;box-sizing:border-box}.col-m-12{width:100%}.col-m-12,.col-m-12:first-child{margin-left:0}.col-no-margin-m-12{float:left;box-sizing:border-box;width:100%}.m-hidden{display:none!important}.m-visible{display:block!important}}@media screen and (min-width:1024px){.col-l-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1:first-child{margin-left:0}.col-offset-l-1{margin-left:8.6666666667%}.col-no-margin-l-1{width:8.3333333333%}.col-l-2,.col-no-margin-l-1{float:left;box-sizing:border-box}.col-l-2{width:13.3333333333%;margin-left:4%}.col-l-2:first-child{margin-left:0}.col-offset-l-2{margin-left:17.3333333333%}.col-no-margin-l-2{width:16.6666666667%}.col-l-3,.col-no-margin-l-2{float:left;box-sizing:border-box}.col-l-3{width:22%;margin-left:4%}.col-l-3:first-child{margin-left:0}.col-offset-l-3{margin-left:26%}.col-no-margin-l-3{width:25%}.col-l-4,.col-no-margin-l-3{float:left;box-sizing:border-box}.col-l-4{width:30.6666666667%;margin-left:4%}.col-l-4:first-child{margin-left:0}.col-offset-l-4{margin-left:34.6666666667%}.col-no-margin-l-4{width:33.3333333333%}.col-l-5,.col-no-margin-l-4{float:left;box-sizing:border-box}.col-l-5{width:39.3333333334%;margin-left:4%}.col-l-5:first-child{margin-left:0}.col-offset-l-5{margin-left:43.3333333334%}.col-no-margin-l-5{width:41.6666666667%}.col-l-6,.col-no-margin-l-5{float:left;box-sizing:border-box}.col-l-6{width:48%;margin-left:4%}.col-l-6:first-child{margin-left:0}.col-offset-l-6{margin-left:52%}.col-no-margin-l-6{width:50%}.col-l-7,.col-no-margin-l-6{float:left;box-sizing:border-box}.col-l-7{width:56.6666666667%;margin-left:4%}.col-l-7:first-child{margin-left:0}.col-offset-l-7{margin-left:60.6666666667%}.col-no-margin-l-7{width:58.3333333333%}.col-l-8,.col-no-margin-l-7{float:left;box-sizing:border-box}.col-l-8{width:65.3333333334%;margin-left:4%}.col-l-8:first-child{margin-left:0}.col-offset-l-8{margin-left:69.3333333334%}.col-no-margin-l-8{width:66.6666666667%}.col-l-9,.col-no-margin-l-8{float:left;box-sizing:border-box}.col-l-9{width:74%;margin-left:4%}.col-l-9:first-child{margin-left:0}.col-offset-l-9{margin-left:78%}.col-no-margin-l-9{width:75%}.col-l-10,.col-no-margin-l-9{float:left;box-sizing:border-box}.col-l-10{width:82.6666666667%;margin-left:4%}.col-l-10:first-child{margin-left:0}.col-offset-l-10{margin-left:86.6666666667%}.col-no-margin-l-10{width:83.3333333333%}.col-l-11,.col-no-margin-l-10{float:left;box-sizing:border-box}.col-l-11{width:91.3333333334%;margin-left:4%}.col-l-11:first-child{margin-left:0}.col-offset-l-11{margin-left:95.3333333334%}.col-no-margin-l-11{width:91.6666666667%}.col-l-12,.col-no-margin-l-11{float:left;box-sizing:border-box}.col-l-12{width:100%}.col-l-12,.col-l-12:first-child{margin-left:0}.col-no-margin-l-12{float:left;box-sizing:border-box;width:100%}.l-hidden{display:none!important}.l-visible{display:block!important}}@media screen and (min-width:1216px){.col-xl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1:first-child{margin-left:0}.col-offset-xl-1{margin-left:8.6666666667%}.col-no-margin-xl-1{width:8.3333333333%}.col-no-margin-xl-1,.col-xl-2{float:left;box-sizing:border-box}.col-xl-2{width:13.3333333333%;margin-left:4%}.col-xl-2:first-child{margin-left:0}.col-offset-xl-2{margin-left:17.3333333333%}.col-no-margin-xl-2{width:16.6666666667%}.col-no-margin-xl-2,.col-xl-3{float:left;box-sizing:border-box}.col-xl-3{width:22%;margin-left:4%}.col-xl-3:first-child{margin-left:0}.col-offset-xl-3{margin-left:26%}.col-no-margin-xl-3{width:25%}.col-no-margin-xl-3,.col-xl-4{float:left;box-sizing:border-box}.col-xl-4{width:30.6666666667%;margin-left:4%}.col-xl-4:first-child{margin-left:0}.col-offset-xl-4{margin-left:34.6666666667%}.col-no-margin-xl-4{width:33.3333333333%}.col-no-margin-xl-4,.col-xl-5{float:left;box-sizing:border-box}.col-xl-5{width:39.3333333334%;margin-left:4%}.col-xl-5:first-child{margin-left:0}.col-offset-xl-5{margin-left:43.3333333334%}.col-no-margin-xl-5{width:41.6666666667%}.col-no-margin-xl-5,.col-xl-6{float:left;box-sizing:border-box}.col-xl-6{width:48%;margin-left:4%}.col-xl-6:first-child{margin-left:0}.col-offset-xl-6{margin-left:52%}.col-no-margin-xl-6{width:50%}.col-no-margin-xl-6,.col-xl-7{float:left;box-sizing:border-box}.col-xl-7{width:56.6666666667%;margin-left:4%}.col-xl-7:first-child{margin-left:0}.col-offset-xl-7{margin-left:60.6666666667%}.col-no-margin-xl-7{width:58.3333333333%}.col-no-margin-xl-7,.col-xl-8{float:left;box-sizing:border-box}.col-xl-8{width:65.3333333334%;margin-left:4%}.col-xl-8:first-child{margin-left:0}.col-offset-xl-8{margin-left:69.3333333334%}.col-no-margin-xl-8{width:66.6666666667%}.col-no-margin-xl-8,.col-xl-9{float:left;box-sizing:border-box}.col-xl-9{width:74%;margin-left:4%}.col-xl-9:first-child{margin-left:0}.col-offset-xl-9{margin-left:78%}.col-no-margin-xl-9{width:75%}.col-no-margin-xl-9,.col-xl-10{float:left;box-sizing:border-box}.col-xl-10{width:82.6666666667%;margin-left:4%}.col-xl-10:first-child{margin-left:0}.col-offset-xl-10{margin-left:86.6666666667%}.col-no-margin-xl-10{width:83.3333333333%}.col-no-margin-xl-10,.col-xl-11{float:left;box-sizing:border-box}.col-xl-11{width:91.3333333334%;margin-left:4%}.col-xl-11:first-child{margin-left:0}.col-offset-xl-11{margin-left:95.3333333334%}.col-no-margin-xl-11{width:91.6666666667%}.col-no-margin-xl-11,.col-xl-12{float:left;box-sizing:border-box}.col-xl-12{width:100%}.col-xl-12,.col-xl-12:first-child{margin-left:0}.col-no-margin-xl-12{float:left;box-sizing:border-box;width:100%}.xl-hidden{display:none!important}.xl-visible{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1:first-child{margin-left:0}.col-offset-xxl-1{margin-left:8.6666666667%}.col-no-margin-xxl-1{width:8.3333333333%}.col-no-margin-xxl-1,.col-xxl-2{float:left;box-sizing:border-box}.col-xxl-2{width:13.3333333333%;margin-left:4%}.col-xxl-2:first-child{margin-left:0}.col-offset-xxl-2{margin-left:17.3333333333%}.col-no-margin-xxl-2{width:16.6666666667%}.col-no-margin-xxl-2,.col-xxl-3{float:left;box-sizing:border-box}.col-xxl-3{width:22%;margin-left:4%}.col-xxl-3:first-child{margin-left:0}.col-offset-xxl-3{margin-left:26%}.col-no-margin-xxl-3{width:25%}.col-no-margin-xxl-3,.col-xxl-4{float:left;box-sizing:border-box}.col-xxl-4{width:30.6666666667%;margin-left:4%}.col-xxl-4:first-child{margin-left:0}.col-offset-xxl-4{margin-left:34.6666666667%}.col-no-margin-xxl-4{width:33.3333333333%}.col-no-margin-xxl-4,.col-xxl-5{float:left;box-sizing:border-box}.col-xxl-5{width:39.3333333334%;margin-left:4%}.col-xxl-5:first-child{margin-left:0}.col-offset-xxl-5{margin-left:43.3333333334%}.col-no-margin-xxl-5{width:41.6666666667%}.col-no-margin-xxl-5,.col-xxl-6{float:left;box-sizing:border-box}.col-xxl-6{width:48%;margin-left:4%}.col-xxl-6:first-child{margin-left:0}.col-offset-xxl-6{margin-left:52%}.col-no-margin-xxl-6{width:50%}.col-no-margin-xxl-6,.col-xxl-7{float:left;box-sizing:border-box}.col-xxl-7{width:56.6666666667%;margin-left:4%}.col-xxl-7:first-child{margin-left:0}.col-offset-xxl-7{margin-left:60.6666666667%}.col-no-margin-xxl-7{width:58.3333333333%}.col-no-margin-xxl-7,.col-xxl-8{float:left;box-sizing:border-box}.col-xxl-8{width:65.3333333334%;margin-left:4%}.col-xxl-8:first-child{margin-left:0}.col-offset-xxl-8{margin-left:69.3333333334%}.col-no-margin-xxl-8{width:66.6666666667%}.col-no-margin-xxl-8,.col-xxl-9{float:left;box-sizing:border-box}.col-xxl-9{width:74%;margin-left:4%}.col-xxl-9:first-child{margin-left:0}.col-offset-xxl-9{margin-left:78%}.col-no-margin-xxl-9{float:left;box-sizing:border-box;width:75%}.col-xxl-10{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10:first-child{margin-left:0}.col-offset-xxl-10{margin-left:86.6666666667%}.col-no-margin-xxl-10{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11:first-child{margin-left:0}.col-offset-xxl-11{margin-left:95.3333333334%}.col-no-margin-xxl-11{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12{float:left;box-sizing:border-box;width:100%}.col-xxl-12,.col-xxl-12:first-child{margin-left:0}.col-no-margin-xxl-12{float:left;box-sizing:border-box;width:100%}.xxl-hidden{display:none!important}.xxl-visible{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from{display:none!important}}@media screen and (min-width:769px){.tablet-small.until{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only{display:none!important}}@media screen and (min-width:769px){.tablet-small.only{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from{display:none!important}}@media screen and (min-width:1024px){.tablet.until{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none!important}}@media screen and (min-width:1024px){.tablet.only{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none!important}}@media screen and (min-width:1216px){.desktop.until{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none!important}}@media screen and (min-width:1216px){.desktop.only{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none!important}}@media screen and (min-width:1408px){.widescreen.until{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none!important}}@media screen and (min-width:1408px){.widescreen.only{display:none!important}}@media screen and (min-width:769px){.mobile{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none!important}}.vertical-center{display:flex;align-items:center}.horizontal-center{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden{display:none!important}.no-content{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn,.btn-default,button{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary,.btn-default[type=submit],.btn.btn-primary,.btn[type=submit],button.btn-primary,button[type=submit]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default:hover,.btn:hover,button:hover{color:#35b870}.btn .icon,.btn-default .icon,button .icon{margin-right:.5em}.btn-default:disabled,.btn-default[disabled],.btn:disabled,.btn[disabled],button:disabled,button[disabled]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable]{cursor:grab!important}.dragged{opacity:.5!important}input[type=password],input[type=text]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password]:focus,input[type=text]:focus{border:1px solid #35b870}button,input{outline:none}input[type=text]:hover,textarea:hover{border:1px solid #9cdfb0}ul{margin:0;padding:0;list-style:none}a{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a:hover{color:#35b870}::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){::-webkit-scrollbar{width:.3333em;height:.3333em}}::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger{color:#ad1717}body{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser :deep(.nav){width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser :deep(.nav) .path{cursor:pointer}.browser :deep(.nav) .path .token:hover{color:#35b870;text-decoration:underline}.browser :deep(.nav) .path .separator{font-size:1em;width:1.2em;padding:0 1em}code{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local],input[type=number],input[type=password],input[type=search],input[type=text],input[type=time]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,input[type=time]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,input[type=time]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon,input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].with-icon,input[type=time].with-icon{padding-left:.3em}input[type=search],input[type=text]{border-radius:1em;padding:.25em .5em}.fade-in{animation-fill-mode:both;animation-name:fadeIn;-webkit-animation-name:fadeIn}.fade-in,.fade-out{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out{animation-fill-mode:both;animation-name:fadeOut;-webkit-animation-name:fadeOut}.expand{animation-fill-mode:both;animation-name:expand;-webkit-animation-name:expand}.expand,.shrink{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink{animation-fill-mode:both;animation-name:shrink;-webkit-animation-name:shrink}.fold{animation-fill-mode:both;animation-name:fold;-webkit-animation-name:fold}.fold,.unfold{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold{animation-fill-mode:both;animation-name:unfold;-webkit-animation-name:unfold}.dim{animation-fill-mode:both;animation-name:dim;-webkit-animation-name:dim}.brighten,.dim{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten{animation-fill-mode:both;animation-name:brighten;-webkit-animation-name:brighten}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow;-webkit-animation-name:glow}.loop{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi:before{background-size:1em 1em;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-kodi:before,.fa.fa-plex:before{content:" ";width:1em;height:1em;display:inline-block}.fa.fa-plex:before{background-size:1em 1em;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}/*! + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:Font Awesome\ 6 Free}.fa-brands,.fab{font-family:Font Awesome\ 6 Brands}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.0833333337em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.0714285718em;vertical-align:.0535714295em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.0416666682em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{animation-name:fa-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{animation-name:fa-beat-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{animation-name:fa-shake;animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{animation-name:fa-spin;animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media(prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}24%,8%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0:before{content:"\30 "}.fa-1:before{content:"\31 "}.fa-2:before{content:"\32 "}.fa-3:before{content:"\33 "}.fa-4:before{content:"\34 "}.fa-5:before{content:"\35 "}.fa-6:before{content:"\36 "}.fa-7:before{content:"\37 "}.fa-8:before{content:"\38 "}.fa-9:before{content:"\39 "}.fa-fill-drip:before{content:""}.fa-arrows-to-circle:before{content:""}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:""}.fa-at:before{content:"\@"}.fa-trash-alt:before,.fa-trash-can:before{content:""}.fa-text-height:before{content:""}.fa-user-times:before,.fa-user-xmark:before{content:""}.fa-stethoscope:before{content:""}.fa-comment-alt:before,.fa-message:before{content:""}.fa-info:before{content:""}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:""}.fa-explosion:before{content:""}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:""}.fa-wave-square:before{content:""}.fa-ring:before{content:""}.fa-building-un:before{content:""}.fa-dice-three:before{content:""}.fa-calendar-alt:before,.fa-calendar-days:before{content:""}.fa-anchor-circle-check:before{content:""}.fa-building-circle-arrow-right:before{content:""}.fa-volleyball-ball:before,.fa-volleyball:before{content:""}.fa-arrows-up-to-line:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-circle-minus:before,.fa-minus-circle:before{content:""}.fa-door-open:before{content:""}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:""}.fa-atom:before{content:""}.fa-soap:before{content:""}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:""}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:""}.fa-bridge-circle-check:before{content:""}.fa-pump-medical:before{content:""}.fa-fingerprint:before{content:""}.fa-hand-point-right:before{content:""}.fa-magnifying-glass-location:before,.fa-search-location:before{content:""}.fa-forward-step:before,.fa-step-forward:before{content:""}.fa-face-smile-beam:before,.fa-smile-beam:before{content:""}.fa-flag-checkered:before{content:""}.fa-football-ball:before,.fa-football:before{content:""}.fa-school-circle-exclamation:before{content:""}.fa-crop:before{content:""}.fa-angle-double-down:before,.fa-angles-down:before{content:""}.fa-users-rectangle:before{content:""}.fa-people-roof:before{content:""}.fa-people-line:before{content:""}.fa-beer-mug-empty:before,.fa-beer:before{content:""}.fa-diagram-predecessor:before{content:""}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:""}.fa-burn:before,.fa-fire-flame-simple:before{content:""}.fa-male:before,.fa-person:before{content:""}.fa-laptop:before{content:""}.fa-file-csv:before{content:""}.fa-menorah:before{content:""}.fa-truck-plane:before{content:""}.fa-record-vinyl:before{content:""}.fa-face-grin-stars:before,.fa-grin-stars:before{content:""}.fa-bong:before{content:""}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:""}.fa-arrow-down-up-across-line:before{content:""}.fa-spoon:before,.fa-utensil-spoon:before{content:""}.fa-jar-wheat:before{content:""}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:""}.fa-file-circle-exclamation:before{content:""}.fa-circle-h:before,.fa-hospital-symbol:before{content:""}.fa-pager:before{content:""}.fa-address-book:before,.fa-contact-book:before{content:""}.fa-strikethrough:before{content:""}.fa-k:before{content:"K"}.fa-landmark-flag:before{content:""}.fa-pencil-alt:before,.fa-pencil:before{content:""}.fa-backward:before{content:""}.fa-caret-right:before{content:""}.fa-comments:before{content:""}.fa-file-clipboard:before,.fa-paste:before{content:""}.fa-code-pull-request:before{content:""}.fa-clipboard-list:before{content:""}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:""}.fa-user-check:before{content:""}.fa-vial-virus:before{content:""}.fa-sheet-plastic:before{content:""}.fa-blog:before{content:""}.fa-user-ninja:before{content:""}.fa-person-arrow-up-from-line:before{content:""}.fa-scroll-torah:before,.fa-torah:before{content:""}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:""}.fa-toggle-off:before{content:""}.fa-archive:before,.fa-box-archive:before{content:""}.fa-person-drowning:before{content:""}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:""}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:""}.fa-spray-can:before{content:""}.fa-truck-monster:before{content:""}.fa-w:before{content:"W"}.fa-earth-africa:before,.fa-globe-africa:before{content:""}.fa-rainbow:before{content:""}.fa-circle-notch:before{content:""}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:""}.fa-paw:before{content:""}.fa-cloud:before{content:""}.fa-trowel-bricks:before{content:""}.fa-face-flushed:before,.fa-flushed:before{content:""}.fa-hospital-user:before{content:""}.fa-tent-arrow-left-right:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-binoculars:before{content:""}.fa-microphone-slash:before{content:""}.fa-box-tissue:before{content:""}.fa-motorcycle:before{content:""}.fa-bell-concierge:before,.fa-concierge-bell:before{content:""}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:""}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:""}.fa-mars-and-venus-burst:before{content:""}.fa-caret-square-right:before,.fa-square-caret-right:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-sun-plant-wilt:before{content:""}.fa-toilets-portable:before{content:""}.fa-hockey-puck:before{content:""}.fa-table:before{content:""}.fa-magnifying-glass-arrow-right:before{content:""}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:""}.fa-users-slash:before{content:""}.fa-clover:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-star-and-crescent:before{content:""}.fa-house-fire:before{content:""}.fa-minus-square:before,.fa-square-minus:before{content:""}.fa-helicopter:before{content:""}.fa-compass:before{content:""}.fa-caret-square-down:before,.fa-square-caret-down:before{content:""}.fa-file-circle-question:before{content:""}.fa-laptop-code:before{content:""}.fa-swatchbook:before{content:""}.fa-prescription-bottle:before{content:""}.fa-bars:before,.fa-navicon:before{content:""}.fa-people-group:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-heart-broken:before,.fa-heart-crack:before{content:""}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:""}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:""}.fa-film:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-people-robbery:before{content:""}.fa-lightbulb:before{content:""}.fa-caret-left:before{content:""}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:""}.fa-school-circle-xmark:before{content:""}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:""}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:""}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-headphones-alt:before,.fa-headphones-simple:before{content:""}.fa-sitemap:before{content:""}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:""}.fa-memory:before{content:""}.fa-road-spikes:before{content:""}.fa-fire-burner:before{content:""}.fa-flag:before{content:""}.fa-hanukiah:before{content:""}.fa-feather:before{content:""}.fa-volume-down:before,.fa-volume-low:before{content:""}.fa-comment-slash:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-compress:before{content:""}.fa-wheat-alt:before,.fa-wheat-awn:before{content:""}.fa-ankh:before{content:""}.fa-hands-holding-child:before{content:""}.fa-asterisk:before{content:"\*"}.fa-check-square:before,.fa-square-check:before{content:""}.fa-peseta-sign:before{content:""}.fa-header:before,.fa-heading:before{content:""}.fa-ghost:before{content:""}.fa-list-squares:before,.fa-list:before{content:""}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:""}.fa-cart-plus:before{content:""}.fa-gamepad:before{content:""}.fa-circle-dot:before,.fa-dot-circle:before{content:""}.fa-dizzy:before,.fa-face-dizzy:before{content:""}.fa-egg:before{content:""}.fa-house-medical-circle-xmark:before{content:""}.fa-campground:before{content:""}.fa-folder-plus:before{content:""}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:""}.fa-paint-brush:before,.fa-paintbrush:before{content:""}.fa-lock:before{content:""}.fa-gas-pump:before{content:""}.fa-hot-tub-person:before,.fa-hot-tub:before{content:""}.fa-map-location:before,.fa-map-marked:before{content:""}.fa-house-flood-water:before{content:""}.fa-tree:before{content:""}.fa-bridge-lock:before{content:""}.fa-sack-dollar:before{content:""}.fa-edit:before,.fa-pen-to-square:before{content:""}.fa-car-side:before{content:""}.fa-share-alt:before,.fa-share-nodes:before{content:""}.fa-heart-circle-minus:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-microscope:before{content:""}.fa-sink:before{content:""}.fa-bag-shopping:before,.fa-shopping-bag:before{content:""}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:""}.fa-mitten:before{content:""}.fa-person-rays:before{content:""}.fa-users:before{content:""}.fa-eye-slash:before{content:""}.fa-flask-vial:before{content:""}.fa-hand-paper:before,.fa-hand:before{content:""}.fa-om:before{content:""}.fa-worm:before{content:""}.fa-house-circle-xmark:before{content:""}.fa-plug:before{content:""}.fa-chevron-up:before{content:""}.fa-hand-spock:before{content:""}.fa-stopwatch:before{content:""}.fa-face-kiss:before,.fa-kiss:before{content:""}.fa-bridge-circle-xmark:before{content:""}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:""}.fa-chess-bishop:before{content:""}.fa-face-grin-wink:before,.fa-grin-wink:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:""}.fa-road-circle-check:before{content:""}.fa-dice-five:before{content:""}.fa-rss-square:before,.fa-square-rss:before{content:""}.fa-land-mine-on:before{content:""}.fa-i-cursor:before{content:""}.fa-stamp:before{content:""}.fa-stairs:before{content:""}.fa-i:before{content:"I"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:""}.fa-pills:before{content:""}.fa-face-grin-wide:before,.fa-grin-alt:before{content:""}.fa-tooth:before{content:""}.fa-v:before{content:"V"}.fa-bangladeshi-taka-sign:before{content:""}.fa-bicycle:before{content:""}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-ambulance:before,.fa-truck-medical:before{content:""}.fa-wheat-awn-circle-exclamation:before{content:""}.fa-snowman:before{content:""}.fa-mortar-pestle:before{content:""}.fa-road-barrier:before{content:""}.fa-school:before{content:""}.fa-igloo:before{content:""}.fa-joint:before{content:""}.fa-angle-right:before{content:""}.fa-horse:before{content:""}.fa-q:before{content:"Q"}.fa-g:before{content:"G"}.fa-notes-medical:before{content:""}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-dong-sign:before{content:""}.fa-capsules:before{content:""}.fa-poo-bolt:before,.fa-poo-storm:before{content:""}.fa-face-frown-open:before,.fa-frown-open:before{content:""}.fa-hand-point-up:before{content:""}.fa-money-bill:before{content:""}.fa-bookmark:before{content:""}.fa-align-justify:before{content:""}.fa-umbrella-beach:before{content:""}.fa-helmet-un:before{content:""}.fa-bullseye:before{content:""}.fa-bacon:before{content:""}.fa-hand-point-down:before{content:""}.fa-arrow-up-from-bracket:before{content:""}.fa-folder-blank:before,.fa-folder:before{content:""}.fa-file-medical-alt:before,.fa-file-waveform:before{content:""}.fa-radiation:before{content:""}.fa-chart-simple:before{content:""}.fa-mars-stroke:before{content:""}.fa-vial:before{content:""}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:""}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:""}.fa-e:before{content:"E"}.fa-pen-alt:before,.fa-pen-clip:before{content:""}.fa-bridge-circle-exclamation:before{content:""}.fa-user:before{content:""}.fa-school-circle-check:before{content:""}.fa-dumpster:before{content:""}.fa-shuttle-van:before,.fa-van-shuttle:before{content:""}.fa-building-user:before{content:""}.fa-caret-square-left:before,.fa-square-caret-left:before{content:""}.fa-highlighter:before{content:""}.fa-key:before{content:""}.fa-bullhorn:before{content:""}.fa-globe:before{content:""}.fa-synagogue:before{content:""}.fa-person-half-dress:before{content:""}.fa-road-bridge:before{content:""}.fa-location-arrow:before{content:""}.fa-c:before{content:"C"}.fa-tablet-button:before{content:""}.fa-building-lock:before{content:""}.fa-pizza-slice:before{content:""}.fa-money-bill-wave:before{content:""}.fa-area-chart:before,.fa-chart-area:before{content:""}.fa-house-flag:before{content:""}.fa-person-circle-minus:before{content:""}.fa-ban:before,.fa-cancel:before{content:""}.fa-camera-rotate:before{content:""}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:""}.fa-star:before{content:""}.fa-repeat:before{content:""}.fa-cross:before{content:""}.fa-box:before{content:""}.fa-venus-mars:before{content:""}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:""}.fa-expand-arrows-alt:before,.fa-maximize:before{content:""}.fa-charging-station:before{content:""}.fa-shapes:before,.fa-triangle-circle-square:before{content:""}.fa-random:before,.fa-shuffle:before{content:""}.fa-person-running:before,.fa-running:before{content:""}.fa-mobile-retro:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-spider:before{content:""}.fa-hands-bound:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-plane-circle-exclamation:before{content:""}.fa-x-ray:before{content:""}.fa-spell-check:before{content:""}.fa-slash:before{content:""}.fa-computer-mouse:before,.fa-mouse:before{content:""}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:""}.fa-shop-slash:before,.fa-store-alt-slash:before{content:""}.fa-server:before{content:""}.fa-virus-covid-slash:before{content:""}.fa-shop-lock:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-blender-phone:before{content:""}.fa-building-wheat:before{content:""}.fa-person-breastfeeding:before{content:""}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:""}.fa-venus:before{content:""}.fa-passport:before{content:""}.fa-heart-pulse:before,.fa-heartbeat:before{content:""}.fa-people-carry-box:before,.fa-people-carry:before{content:""}.fa-temperature-high:before{content:""}.fa-microchip:before{content:""}.fa-crown:before{content:""}.fa-weight-hanging:before{content:""}.fa-xmarks-lines:before{content:""}.fa-file-prescription:before{content:""}.fa-weight-scale:before,.fa-weight:before{content:""}.fa-user-friends:before,.fa-user-group:before{content:""}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:""}.fa-chess-knight:before{content:""}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:""}.fa-wheelchair:before{content:""}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:""}.fa-toggle-on:before{content:""}.fa-person-walking:before,.fa-walking:before{content:""}.fa-l:before{content:"L"}.fa-fire:before{content:""}.fa-bed-pulse:before,.fa-procedures:before{content:""}.fa-shuttle-space:before,.fa-space-shuttle:before{content:""}.fa-face-laugh:before,.fa-laugh:before{content:""}.fa-folder-open:before{content:""}.fa-heart-circle-plus:before{content:""}.fa-code-fork:before{content:""}.fa-city:before{content:""}.fa-microphone-alt:before,.fa-microphone-lines:before{content:""}.fa-pepper-hot:before{content:""}.fa-unlock:before{content:""}.fa-colon-sign:before{content:""}.fa-headset:before{content:""}.fa-store-slash:before{content:""}.fa-road-circle-xmark:before{content:""}.fa-user-minus:before{content:""}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:""}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:""}.fa-clipboard:before{content:""}.fa-house-circle-exclamation:before{content:""}.fa-file-arrow-up:before,.fa-file-upload:before{content:""}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:""}.fa-bath:before,.fa-bathtub:before{content:""}.fa-underline:before{content:""}.fa-user-edit:before,.fa-user-pen:before{content:""}.fa-signature:before{content:""}.fa-stroopwafel:before{content:""}.fa-bold:before{content:""}.fa-anchor-lock:before{content:""}.fa-building-ngo:before{content:""}.fa-manat-sign:before{content:""}.fa-not-equal:before{content:""}.fa-border-style:before,.fa-border-top-left:before{content:""}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:""}.fa-jedi:before{content:""}.fa-poll:before,.fa-square-poll-vertical:before{content:""}.fa-mug-hot:before{content:""}.fa-battery-car:before,.fa-car-battery:before{content:""}.fa-gift:before{content:""}.fa-dice-two:before{content:""}.fa-chess-queen:before{content:""}.fa-glasses:before{content:""}.fa-chess-board:before{content:""}.fa-building-circle-check:before{content:""}.fa-person-chalkboard:before{content:""}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:""}.fa-hand-back-fist:before,.fa-hand-rock:before{content:""}.fa-caret-square-up:before,.fa-square-caret-up:before{content:""}.fa-cloud-showers-water:before{content:""}.fa-bar-chart:before,.fa-chart-bar:before{content:""}.fa-hands-bubbles:before,.fa-hands-wash:before{content:""}.fa-less-than-equal:before{content:""}.fa-train:before{content:""}.fa-eye-low-vision:before,.fa-low-vision:before{content:""}.fa-crow:before{content:""}.fa-sailboat:before{content:""}.fa-window-restore:before{content:""}.fa-plus-square:before,.fa-square-plus:before{content:""}.fa-torii-gate:before{content:""}.fa-frog:before{content:""}.fa-bucket:before{content:""}.fa-image:before{content:""}.fa-microphone:before{content:""}.fa-cow:before{content:""}.fa-caret-up:before{content:""}.fa-screwdriver:before{content:""}.fa-folder-closed:before{content:""}.fa-house-tsunami:before{content:""}.fa-square-nfi:before{content:""}.fa-arrow-up-from-ground-water:before{content:""}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:""}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:""}.fa-columns:before,.fa-table-columns:before{content:""}.fa-lemon:before{content:""}.fa-head-side-mask:before{content:""}.fa-handshake:before{content:""}.fa-gem:before{content:""}.fa-dolly-box:before,.fa-dolly:before{content:""}.fa-smoking:before{content:""}.fa-compress-arrows-alt:before,.fa-minimize:before{content:""}.fa-monument:before{content:""}.fa-snowplow:before{content:""}.fa-angle-double-right:before,.fa-angles-right:before{content:""}.fa-cannabis:before{content:""}.fa-circle-play:before,.fa-play-circle:before{content:""}.fa-tablets:before{content:""}.fa-ethernet:before{content:""}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:""}.fa-chair:before{content:""}.fa-check-circle:before,.fa-circle-check:before{content:""}.fa-circle-stop:before,.fa-stop-circle:before{content:""}.fa-compass-drafting:before,.fa-drafting-compass:before{content:""}.fa-plate-wheat:before{content:""}.fa-icicles:before{content:""}.fa-person-shelter:before{content:""}.fa-neuter:before{content:""}.fa-id-badge:before{content:""}.fa-marker:before{content:""}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:""}.fa-helicopter-symbol:before{content:""}.fa-universal-access:before{content:""}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:""}.fa-lari-sign:before{content:""}.fa-volcano:before{content:""}.fa-person-walking-dashed-line-arrow-right:before{content:""}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:""}.fa-viruses:before{content:""}.fa-square-person-confined:before{content:""}.fa-user-tie:before{content:""}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:""}.fa-tent-arrow-down-to-line:before{content:""}.fa-certificate:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-suitcase:before{content:""}.fa-person-skating:before,.fa-skating:before{content:""}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:""}.fa-camera-retro:before{content:""}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:""}.fa-arrow-right-to-file:before,.fa-file-import:before{content:""}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:""}.fa-box-open:before{content:""}.fa-scroll:before{content:""}.fa-spa:before{content:""}.fa-location-pin-lock:before{content:""}.fa-pause:before{content:""}.fa-hill-avalanche:before{content:""}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-bomb:before{content:""}.fa-registered:before{content:""}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:""}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:""}.fa-subscript:before{content:""}.fa-diamond-turn-right:before,.fa-directions:before{content:""}.fa-burst:before{content:""}.fa-house-laptop:before,.fa-laptop-house:before{content:""}.fa-face-tired:before,.fa-tired:before{content:""}.fa-money-bills:before{content:""}.fa-smog:before{content:""}.fa-crutch:before{content:""}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:""}.fa-palette:before{content:""}.fa-arrows-turn-right:before{content:""}.fa-vest:before{content:""}.fa-ferry:before{content:""}.fa-arrows-down-to-people:before{content:""}.fa-seedling:before,.fa-sprout:before{content:""}.fa-arrows-alt-h:before,.fa-left-right:before{content:""}.fa-boxes-packing:before{content:""}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:""}.fa-group-arrows-rotate:before{content:""}.fa-bowl-food:before{content:""}.fa-candy-cane:before{content:""}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:""}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:""}.fa-remove-format:before,.fa-text-slash:before{content:""}.fa-face-smile-wink:before,.fa-smile-wink:before{content:""}.fa-file-word:before{content:""}.fa-file-powerpoint:before{content:""}.fa-arrows-h:before,.fa-arrows-left-right:before{content:""}.fa-house-lock:before{content:""}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:""}.fa-children:before{content:""}.fa-blackboard:before,.fa-chalkboard:before{content:""}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:""}.fa-envelope-open:before{content:""}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:""}.fa-mattress-pillow:before{content:""}.fa-guarani-sign:before{content:""}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-cruzeiro-sign:before{content:""}.fa-greater-than-equal:before{content:""}.fa-shield-alt:before,.fa-shield-halved:before{content:""}.fa-atlas:before,.fa-book-atlas:before{content:""}.fa-virus:before{content:""}.fa-envelope-circle-check:before{content:""}.fa-layer-group:before{content:""}.fa-arrows-to-dot:before{content:""}.fa-archway:before{content:""}.fa-heart-circle-check:before{content:""}.fa-house-chimney-crack:before,.fa-house-damage:before{content:""}.fa-file-archive:before,.fa-file-zipper:before{content:""}.fa-square:before{content:""}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:""}.fa-couch:before{content:""}.fa-cedi-sign:before{content:""}.fa-italic:before{content:""}.fa-table-cells-column-lock:before{content:""}.fa-church:before{content:""}.fa-comments-dollar:before{content:""}.fa-democrat:before{content:""}.fa-z:before{content:"Z"}.fa-person-skiing:before,.fa-skiing:before{content:""}.fa-road-lock:before{content:""}.fa-a:before{content:"A"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:""}.fa-feather-alt:before,.fa-feather-pointed:before{content:""}.fa-p:before{content:"P"}.fa-snowflake:before{content:""}.fa-newspaper:before{content:""}.fa-ad:before,.fa-rectangle-ad:before{content:""}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:""}.fa-filter-circle-xmark:before{content:""}.fa-locust:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:""}.fa-person-dress-burst:before{content:""}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:""}.fa-vector-square:before{content:""}.fa-bread-slice:before{content:""}.fa-language:before{content:""}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:""}.fa-filter:before{content:""}.fa-question:before{content:"\?"}.fa-file-signature:before{content:""}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:""}.fa-house-chimney-user:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-puzzle-piece:before{content:""}.fa-money-check:before{content:""}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:""}.fa-code:before{content:""}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:""}.fa-building-circle-exclamation:before{content:""}.fa-magnifying-glass-chart:before{content:""}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:""}.fa-cubes-stacked:before{content:""}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:""}.fa-virus-covid:before{content:""}.fa-austral-sign:before{content:""}.fa-f:before{content:"F"}.fa-leaf:before{content:""}.fa-road:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-person-circle-plus:before{content:""}.fa-chart-pie:before,.fa-pie-chart:before{content:""}.fa-bolt-lightning:before{content:""}.fa-sack-xmark:before{content:""}.fa-file-excel:before{content:""}.fa-file-contract:before{content:""}.fa-fish-fins:before{content:""}.fa-building-flag:before{content:""}.fa-face-grin-beam:before,.fa-grin-beam:before{content:""}.fa-object-ungroup:before{content:""}.fa-poop:before{content:""}.fa-location-pin:before,.fa-map-marker:before{content:""}.fa-kaaba:before{content:""}.fa-toilet-paper:before{content:""}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:""}.fa-eject:before{content:""}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:""}.fa-plane-circle-check:before{content:""}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:""}.fa-object-group:before{content:""}.fa-chart-line:before,.fa-line-chart:before{content:""}.fa-mask-ventilator:before{content:""}.fa-arrow-right:before{content:""}.fa-map-signs:before,.fa-signs-post:before{content:""}.fa-cash-register:before{content:""}.fa-person-circle-question:before{content:""}.fa-h:before{content:"H"}.fa-tarp:before{content:""}.fa-screwdriver-wrench:before,.fa-tools:before{content:""}.fa-arrows-to-eye:before{content:""}.fa-plug-circle-bolt:before{content:""}.fa-heart:before{content:""}.fa-mars-and-venus:before{content:""}.fa-home-user:before,.fa-house-user:before{content:""}.fa-dumpster-fire:before{content:""}.fa-house-crack:before{content:""}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:""}.fa-face-surprise:before,.fa-surprise:before{content:""}.fa-bottle-water:before{content:""}.fa-circle-pause:before,.fa-pause-circle:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-apple-alt:before,.fa-apple-whole:before{content:""}.fa-kitchen-set:before{content:""}.fa-r:before{content:"R"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-cube:before{content:""}.fa-bitcoin-sign:before{content:""}.fa-shield-dog:before{content:""}.fa-solar-panel:before{content:""}.fa-lock-open:before{content:""}.fa-elevator:before{content:""}.fa-money-bill-transfer:before{content:""}.fa-money-bill-trend-up:before{content:""}.fa-house-flood-water-circle-arrow-right:before{content:""}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:""}.fa-circle:before{content:""}.fa-backward-fast:before,.fa-fast-backward:before{content:""}.fa-recycle:before{content:""}.fa-user-astronaut:before{content:""}.fa-plane-slash:before{content:""}.fa-trademark:before{content:""}.fa-basketball-ball:before,.fa-basketball:before{content:""}.fa-satellite-dish:before{content:""}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:""}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:""}.fa-volume-high:before,.fa-volume-up:before{content:""}.fa-users-rays:before{content:""}.fa-wallet:before{content:""}.fa-clipboard-check:before{content:""}.fa-file-audio:before{content:""}.fa-burger:before,.fa-hamburger:before{content:""}.fa-wrench:before{content:""}.fa-bugs:before{content:""}.fa-rupee-sign:before,.fa-rupee:before{content:""}.fa-file-image:before{content:""}.fa-circle-question:before,.fa-question-circle:before{content:""}.fa-plane-departure:before{content:""}.fa-handshake-slash:before{content:""}.fa-book-bookmark:before{content:""}.fa-code-branch:before{content:""}.fa-hat-cowboy:before{content:""}.fa-bridge:before{content:""}.fa-phone-alt:before,.fa-phone-flip:before{content:""}.fa-truck-front:before{content:""}.fa-cat:before{content:""}.fa-anchor-circle-exclamation:before{content:""}.fa-truck-field:before{content:""}.fa-route:before{content:""}.fa-clipboard-question:before{content:""}.fa-panorama:before{content:""}.fa-comment-medical:before{content:""}.fa-teeth-open:before{content:""}.fa-file-circle-minus:before{content:""}.fa-tags:before{content:""}.fa-wine-glass:before{content:""}.fa-fast-forward:before,.fa-forward-fast:before{content:""}.fa-face-meh-blank:before,.fa-meh-blank:before{content:""}.fa-parking:before,.fa-square-parking:before{content:""}.fa-house-signal:before{content:""}.fa-bars-progress:before,.fa-tasks-alt:before{content:""}.fa-faucet-drip:before{content:""}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:""}.fa-ban-smoking:before,.fa-smoking-ban:before{content:""}.fa-terminal:before{content:""}.fa-mobile-button:before{content:""}.fa-house-medical-flag:before{content:""}.fa-basket-shopping:before,.fa-shopping-basket:before{content:""}.fa-tape:before{content:""}.fa-bus-alt:before,.fa-bus-simple:before{content:""}.fa-eye:before{content:""}.fa-face-sad-cry:before,.fa-sad-cry:before{content:""}.fa-audio-description:before{content:""}.fa-person-military-to-person:before{content:""}.fa-file-shield:before{content:""}.fa-user-slash:before{content:""}.fa-pen:before{content:""}.fa-tower-observation:before{content:""}.fa-file-code:before{content:""}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:""}.fa-bus:before{content:""}.fa-heart-circle-xmark:before{content:""}.fa-home-lg:before,.fa-house-chimney:before{content:""}.fa-window-maximize:before{content:""}.fa-face-frown:before,.fa-frown:before{content:""}.fa-prescription:before{content:""}.fa-shop:before,.fa-store-alt:before{content:""}.fa-floppy-disk:before,.fa-save:before{content:""}.fa-vihara:before{content:""}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-comment-dots:before,.fa-commenting:before{content:""}.fa-plant-wilt:before{content:""}.fa-diamond:before{content:""}.fa-face-grin-squint:before,.fa-grin-squint:before{content:""}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:""}.fa-bacterium:before{content:""}.fa-hand-pointer:before{content:""}.fa-drum-steelpan:before{content:""}.fa-hand-scissors:before{content:""}.fa-hands-praying:before,.fa-praying-hands:before{content:""}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:""}.fa-biohazard:before{content:""}.fa-location-crosshairs:before,.fa-location:before{content:""}.fa-mars-double:before{content:""}.fa-child-dress:before{content:""}.fa-users-between-lines:before{content:""}.fa-lungs-virus:before{content:""}.fa-face-grin-tears:before,.fa-grin-tears:before{content:""}.fa-phone:before{content:""}.fa-calendar-times:before,.fa-calendar-xmark:before{content:""}.fa-child-reaching:before{content:""}.fa-head-side-virus:before{content:""}.fa-user-cog:before,.fa-user-gear:before{content:""}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:""}.fa-door-closed:before{content:""}.fa-shield-virus:before{content:""}.fa-dice-six:before{content:""}.fa-mosquito-net:before{content:""}.fa-bridge-water:before{content:""}.fa-person-booth:before{content:""}.fa-text-width:before{content:""}.fa-hat-wizard:before{content:""}.fa-pen-fancy:before{content:""}.fa-digging:before,.fa-person-digging:before{content:""}.fa-trash:before{content:""}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:""}.fa-book-medical:before{content:""}.fa-poo:before{content:""}.fa-quote-right-alt:before,.fa-quote-right:before{content:""}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:""}.fa-cubes:before{content:""}.fa-divide:before{content:""}.fa-tenge-sign:before,.fa-tenge:before{content:""}.fa-headphones:before{content:""}.fa-hands-holding:before{content:""}.fa-hands-clapping:before{content:""}.fa-republican:before{content:""}.fa-arrow-left:before{content:""}.fa-person-circle-xmark:before{content:""}.fa-ruler:before{content:""}.fa-align-left:before{content:""}.fa-dice-d6:before{content:""}.fa-restroom:before{content:""}.fa-j:before{content:"J"}.fa-users-viewfinder:before{content:""}.fa-file-video:before{content:""}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:""}.fa-table-cells:before,.fa-th:before{content:""}.fa-file-pdf:before{content:""}.fa-bible:before,.fa-book-bible:before{content:""}.fa-o:before{content:"O"}.fa-medkit:before,.fa-suitcase-medical:before{content:""}.fa-user-secret:before{content:""}.fa-otter:before{content:""}.fa-female:before,.fa-person-dress:before{content:""}.fa-comment-dollar:before{content:""}.fa-briefcase-clock:before,.fa-business-time:before{content:""}.fa-table-cells-large:before,.fa-th-large:before{content:""}.fa-book-tanakh:before,.fa-tanakh:before{content:""}.fa-phone-volume:before,.fa-volume-control-phone:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-clipboard-user:before{content:""}.fa-child:before{content:""}.fa-lira-sign:before{content:""}.fa-satellite:before{content:""}.fa-plane-lock:before{content:""}.fa-tag:before{content:""}.fa-comment:before{content:""}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:""}.fa-envelope:before{content:""}.fa-angle-double-up:before,.fa-angles-up:before{content:""}.fa-paperclip:before{content:""}.fa-arrow-right-to-city:before{content:""}.fa-ribbon:before{content:""}.fa-lungs:before{content:""}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:""}.fa-litecoin-sign:before{content:""}.fa-border-none:before{content:""}.fa-circle-nodes:before{content:""}.fa-parachute-box:before{content:""}.fa-indent:before{content:""}.fa-truck-field-un:before{content:""}.fa-hourglass-empty:before,.fa-hourglass:before{content:""}.fa-mountain:before{content:""}.fa-user-doctor:before,.fa-user-md:before{content:""}.fa-circle-info:before,.fa-info-circle:before{content:""}.fa-cloud-meatball:before{content:""}.fa-camera-alt:before,.fa-camera:before{content:""}.fa-square-virus:before{content:""}.fa-meteor:before{content:""}.fa-car-on:before{content:""}.fa-sleigh:before{content:""}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:""}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:""}.fa-water:before{content:""}.fa-calendar-check:before{content:""}.fa-braille:before{content:""}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:""}.fa-landmark:before{content:""}.fa-truck:before{content:""}.fa-crosshairs:before{content:""}.fa-person-cane:before{content:""}.fa-tent:before{content:""}.fa-vest-patches:before{content:""}.fa-check-double:before{content:""}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:""}.fa-money-bill-wheat:before{content:""}.fa-cookie:before{content:""}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:""}.fa-hard-drive:before,.fa-hdd:before{content:""}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:""}.fa-dumbbell:before{content:""}.fa-list-alt:before,.fa-rectangle-list:before{content:""}.fa-tarp-droplet:before{content:""}.fa-house-medical-circle-check:before{content:""}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:""}.fa-calendar-plus:before{content:""}.fa-plane-arrival:before{content:""}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:""}.fa-subway:before,.fa-train-subway:before{content:""}.fa-chart-gantt:before{content:""}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:""}.fa-crop-alt:before,.fa-crop-simple:before{content:""}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:""}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:""}.fa-dna:before{content:""}.fa-virus-slash:before{content:""}.fa-minus:before,.fa-subtract:before{content:""}.fa-chess:before{content:""}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:""}.fa-plug-circle-check:before{content:""}.fa-street-view:before{content:""}.fa-franc-sign:before{content:""}.fa-volume-off:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-droplet-slash:before,.fa-tint-slash:before{content:""}.fa-mosque:before{content:""}.fa-mosquito:before{content:""}.fa-star-of-david:before{content:""}.fa-person-military-rifle:before{content:""}.fa-cart-shopping:before,.fa-shopping-cart:before{content:""}.fa-vials:before{content:""}.fa-plug-circle-plus:before{content:""}.fa-place-of-worship:before{content:""}.fa-grip-vertical:before{content:""}.fa-arrow-turn-up:before,.fa-level-up:before{content:""}.fa-u:before{content:"U"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:""}.fa-clock-four:before,.fa-clock:before{content:""}.fa-backward-step:before,.fa-step-backward:before{content:""}.fa-pallet:before{content:""}.fa-faucet:before{content:""}.fa-baseball-bat-ball:before{content:""}.fa-s:before{content:"S"}.fa-timeline:before{content:""}.fa-keyboard:before{content:""}.fa-caret-down:before{content:""}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:""}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:""}.fa-plane-up:before{content:""}.fa-piggy-bank:before{content:""}.fa-battery-3:before,.fa-battery-half:before{content:""}.fa-mountain-city:before{content:""}.fa-coins:before{content:""}.fa-khanda:before{content:""}.fa-sliders-h:before,.fa-sliders:before{content:""}.fa-folder-tree:before{content:""}.fa-network-wired:before{content:""}.fa-map-pin:before{content:""}.fa-hamsa:before{content:""}.fa-cent-sign:before{content:""}.fa-flask:before{content:""}.fa-person-pregnant:before{content:""}.fa-wand-sparkles:before{content:""}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:""}.fa-ticket:before{content:""}.fa-power-off:before{content:""}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:""}.fa-flag-usa:before{content:""}.fa-laptop-file:before{content:""}.fa-teletype:before,.fa-tty:before{content:""}.fa-diagram-next:before{content:""}.fa-person-rifle:before{content:""}.fa-house-medical-circle-exclamation:before{content:""}.fa-closed-captioning:before{content:""}.fa-hiking:before,.fa-person-hiking:before{content:""}.fa-venus-double:before{content:""}.fa-images:before{content:""}.fa-calculator:before{content:""}.fa-people-pulling:before{content:""}.fa-n:before{content:"N"}.fa-cable-car:before,.fa-tram:before{content:""}.fa-cloud-rain:before{content:""}.fa-building-circle-xmark:before{content:""}.fa-ship:before{content:""}.fa-arrows-down-to-line:before{content:""}.fa-download:before{content:""}.fa-face-grin:before,.fa-grin:before{content:""}.fa-backspace:before,.fa-delete-left:before{content:""}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:""}.fa-file-circle-check:before{content:""}.fa-forward:before{content:""}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-face-meh:before,.fa-meh:before{content:""}.fa-align-center:before{content:""}.fa-book-dead:before,.fa-book-skull:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-heart-circle-exclamation:before{content:""}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:""}.fa-calendar-week:before{content:""}.fa-laptop-medical:before{content:""}.fa-b:before{content:"B"}.fa-file-medical:before{content:""}.fa-dice-one:before{content:""}.fa-kiwi-bird:before{content:""}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:""}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:""}.fa-cutlery:before,.fa-utensils:before{content:""}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:""}.fa-mill-sign:before{content:""}.fa-bowl-rice:before{content:""}.fa-skull:before{content:""}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:""}.fa-truck-pickup:before{content:""}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:""}.fa-stop:before{content:""}.fa-code-merge:before{content:""}.fa-upload:before{content:""}.fa-hurricane:before{content:""}.fa-mound:before{content:""}.fa-toilet-portable:before{content:""}.fa-compact-disc:before{content:""}.fa-file-arrow-down:before,.fa-file-download:before{content:""}.fa-caravan:before{content:""}.fa-shield-cat:before{content:""}.fa-bolt:before,.fa-zap:before{content:""}.fa-glass-water:before{content:""}.fa-oil-well:before{content:""}.fa-vault:before{content:""}.fa-mars:before{content:""}.fa-toilet:before{content:""}.fa-plane-circle-xmark:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:""}.fa-sun:before{content:""}.fa-guitar:before{content:""}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:""}.fa-horse-head:before{content:""}.fa-bore-hole:before{content:""}.fa-industry:before{content:""}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:""}.fa-arrows-turn-to-dots:before{content:""}.fa-florin-sign:before{content:""}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:""}.fa-less-than:before{content:"\<"}.fa-angle-down:before{content:""}.fa-car-tunnel:before{content:""}.fa-head-side-cough:before{content:""}.fa-grip-lines:before{content:""}.fa-thumbs-down:before{content:""}.fa-user-lock:before{content:""}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:""}.fa-anchor-circle-xmark:before{content:""}.fa-ellipsis-h:before,.fa-ellipsis:before{content:""}.fa-chess-pawn:before{content:""}.fa-first-aid:before,.fa-kit-medical:before{content:""}.fa-person-through-window:before{content:""}.fa-toolbox:before{content:""}.fa-hands-holding-circle:before{content:""}.fa-bug:before{content:""}.fa-credit-card-alt:before,.fa-credit-card:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-hand-holding-hand:before{content:""}.fa-book-open-reader:before,.fa-book-reader:before{content:""}.fa-mountain-sun:before{content:""}.fa-arrows-left-right-to-line:before{content:""}.fa-dice-d20:before{content:""}.fa-truck-droplet:before{content:""}.fa-file-circle-xmark:before{content:""}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:""}.fa-medal:before{content:""}.fa-bed:before{content:""}.fa-h-square:before,.fa-square-h:before{content:""}.fa-podcast:before{content:""}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:""}.fa-bell:before{content:""}.fa-superscript:before{content:""}.fa-plug-circle-xmark:before{content:""}.fa-star-of-life:before{content:""}.fa-phone-slash:before{content:""}.fa-paint-roller:before{content:""}.fa-hands-helping:before,.fa-handshake-angle:before{content:""}.fa-location-dot:before,.fa-map-marker-alt:before{content:""}.fa-file:before{content:""}.fa-greater-than:before{content:"\>"}.fa-person-swimming:before,.fa-swimmer:before{content:""}.fa-arrow-down:before{content:""}.fa-droplet:before,.fa-tint:before{content:""}.fa-eraser:before{content:""}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:""}.fa-person-burst:before{content:""}.fa-dove:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-socks:before{content:""}.fa-inbox:before{content:""}.fa-section:before{content:""}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:""}.fa-envelope-open-text:before{content:""}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:""}.fa-wine-bottle:before{content:""}.fa-chess-rook:before{content:""}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:""}.fa-dharmachakra:before{content:""}.fa-hotdog:before{content:""}.fa-blind:before,.fa-person-walking-with-cane:before{content:""}.fa-drum:before{content:""}.fa-ice-cream:before{content:""}.fa-heart-circle-bolt:before{content:""}.fa-fax:before{content:""}.fa-paragraph:before{content:""}.fa-check-to-slot:before,.fa-vote-yea:before{content:""}.fa-star-half:before{content:""}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:""}.fa-tree-city:before{content:""}.fa-play:before{content:""}.fa-font:before{content:""}.fa-table-cells-row-lock:before{content:""}.fa-rupiah-sign:before{content:""}.fa-magnifying-glass:before,.fa-search:before{content:""}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:""}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:""}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:""}.fa-naira-sign:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-walkie-talkie:before{content:""}.fa-file-edit:before,.fa-file-pen:before{content:""}.fa-receipt:before{content:""}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-person-circle-exclamation:before{content:""}.fa-chevron-down:before{content:""}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-skull-crossbones:before{content:""}.fa-code-compare:before{content:""}.fa-list-dots:before,.fa-list-ul:before{content:""}.fa-school-lock:before{content:""}.fa-tower-cell:before{content:""}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:""}.fa-ranking-star:before{content:""}.fa-chess-king:before{content:""}.fa-person-harassing:before{content:""}.fa-brazilian-real-sign:before{content:""}.fa-landmark-alt:before,.fa-landmark-dome:before{content:""}.fa-arrow-up:before{content:""}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:""}.fa-shrimp:before{content:""}.fa-list-check:before,.fa-tasks:before{content:""}.fa-jug-detergent:before{content:""}.fa-circle-user:before,.fa-user-circle:before{content:""}.fa-user-shield:before{content:""}.fa-wind:before{content:""}.fa-car-burst:before,.fa-car-crash:before{content:""}.fa-y:before{content:"Y"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:""}.fa-shipping-fast:before,.fa-truck-fast:before{content:""}.fa-fish:before{content:""}.fa-user-graduate:before{content:""}.fa-adjust:before,.fa-circle-half-stroke:before{content:""}.fa-clapperboard:before{content:""}.fa-circle-radiation:before,.fa-radiation-alt:before{content:""}.fa-baseball-ball:before,.fa-baseball:before{content:""}.fa-jet-fighter-up:before{content:""}.fa-diagram-project:before,.fa-project-diagram:before{content:""}.fa-copy:before{content:""}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:""}.fa-hand-sparkles:before{content:""}.fa-grip-horizontal:before,.fa-grip:before{content:""}.fa-share-from-square:before,.fa-share-square:before{content:""}.fa-child-combatant:before,.fa-child-rifle:before{content:""}.fa-gun:before{content:""}.fa-phone-square:before,.fa-square-phone:before{content:""}.fa-add:before,.fa-plus:before{content:"\+"}.fa-expand:before{content:""}.fa-computer:before{content:""}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:""}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:""}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:""}.fa-peso-sign:before{content:""}.fa-building-shield:before{content:""}.fa-baby:before{content:""}.fa-users-line:before{content:""}.fa-quote-left-alt:before,.fa-quote-left:before{content:""}.fa-tractor:before{content:""}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:""}.fa-arrow-down-up-lock:before{content:""}.fa-lines-leaning:before{content:""}.fa-ruler-combined:before{content:""}.fa-copyright:before{content:""}.fa-equals:before{content:"\="}.fa-blender:before{content:""}.fa-teeth:before{content:""}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:""}.fa-map:before{content:""}.fa-rocket:before{content:""}.fa-photo-film:before,.fa-photo-video:before{content:""}.fa-folder-minus:before{content:""}.fa-store:before{content:""}.fa-arrow-trend-up:before{content:""}.fa-plug-circle-minus:before{content:""}.fa-sign-hanging:before,.fa-sign:before{content:""}.fa-bezier-curve:before{content:""}.fa-bell-slash:before{content:""}.fa-tablet-android:before,.fa-tablet:before{content:""}.fa-school-flag:before{content:""}.fa-fill:before{content:""}.fa-angle-up:before{content:""}.fa-drumstick-bite:before{content:""}.fa-holly-berry:before{content:""}.fa-chevron-left:before{content:""}.fa-bacteria:before{content:""}.fa-hand-lizard:before{content:""}.fa-notdef:before{content:""}.fa-disease:before{content:""}.fa-briefcase-medical:before{content:""}.fa-genderless:before{content:""}.fa-chevron-right:before{content:""}.fa-retweet:before{content:""}.fa-car-alt:before,.fa-car-rear:before{content:""}.fa-pump-soap:before{content:""}.fa-video-slash:before{content:""}.fa-battery-2:before,.fa-battery-quarter:before{content:""}.fa-radio:before{content:""}.fa-baby-carriage:before,.fa-carriage-baby:before{content:""}.fa-traffic-light:before{content:""}.fa-thermometer:before{content:""}.fa-vr-cardboard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-percent:before,.fa-percentage:before{content:"\%"}.fa-truck-moving:before{content:""}.fa-glass-water-droplet:before{content:""}.fa-display:before{content:""}.fa-face-smile:before,.fa-smile:before{content:""}.fa-thumb-tack:before,.fa-thumbtack:before{content:""}.fa-trophy:before{content:""}.fa-person-praying:before,.fa-pray:before{content:""}.fa-hammer:before{content:""}.fa-hand-peace:before{content:""}.fa-rotate:before,.fa-sync-alt:before{content:""}.fa-spinner:before{content:""}.fa-robot:before{content:""}.fa-peace:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-warehouse:before{content:""}.fa-arrow-up-right-dots:before{content:""}.fa-splotch:before{content:""}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:""}.fa-dice-four:before{content:""}.fa-sim-card:before{content:""}.fa-transgender-alt:before,.fa-transgender:before{content:""}.fa-mercury:before{content:""}.fa-arrow-turn-down:before,.fa-level-down:before{content:""}.fa-person-falling-burst:before{content:""}.fa-award:before{content:""}.fa-ticket-alt:before,.fa-ticket-simple:before{content:""}.fa-building:before{content:""}.fa-angle-double-left:before,.fa-angles-left:before{content:""}.fa-qrcode:before{content:""}.fa-clock-rotate-left:before,.fa-history:before{content:""}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:""}.fa-arrow-right-from-file:before,.fa-file-export:before{content:""}.fa-shield-blank:before,.fa-shield:before{content:""}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:""}.fa-house-medical:before{content:""}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:""}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:""}.fa-house-chimney-window:before{content:""}.fa-pen-nib:before{content:""}.fa-tent-arrow-turn-left:before{content:""}.fa-tents:before{content:""}.fa-magic:before,.fa-wand-magic:before{content:""}.fa-dog:before{content:""}.fa-carrot:before{content:""}.fa-moon:before{content:""}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:""}.fa-cheese:before{content:""}.fa-yin-yang:before{content:""}.fa-music:before{content:""}.fa-code-commit:before{content:""}.fa-temperature-low:before{content:""}.fa-biking:before,.fa-person-biking:before{content:""}.fa-broom:before{content:""}.fa-shield-heart:before{content:""}.fa-gopuram:before{content:""}.fa-earth-oceania:before,.fa-globe-oceania:before{content:""}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:""}.fa-hashtag:before{content:"\#"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:""}.fa-oil-can:before{content:""}.fa-t:before{content:"T"}.fa-hippo:before{content:""}.fa-chart-column:before{content:""}.fa-infinity:before{content:""}.fa-vial-circle-check:before{content:""}.fa-person-arrow-down-to-line:before{content:""}.fa-voicemail:before{content:""}.fa-fan:before{content:""}.fa-person-walking-luggage:before{content:""}.fa-arrows-alt-v:before,.fa-up-down:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-calendar:before{content:""}.fa-trailer:before{content:""}.fa-bahai:before,.fa-haykal:before{content:""}.fa-sd-card:before{content:""}.fa-dragon:before{content:""}.fa-shoe-prints:before{content:""}.fa-circle-plus:before,.fa-plus-circle:before{content:""}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:""}.fa-hand-holding:before{content:""}.fa-plug-circle-exclamation:before{content:""}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:""}.fa-clone:before{content:""}.fa-person-walking-arrow-loop-left:before{content:""}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:""}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:""}.fa-tornado:before{content:""}.fa-file-circle-plus:before{content:""}.fa-book-quran:before,.fa-quran:before{content:""}.fa-anchor:before{content:""}.fa-border-all:before{content:""}.fa-angry:before,.fa-face-angry:before{content:""}.fa-cookie-bite:before{content:""}.fa-arrow-trend-down:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-draw-polygon:before{content:""}.fa-balance-scale:before,.fa-scale-balanced:before{content:""}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:""}.fa-shower:before{content:""}.fa-desktop-alt:before,.fa-desktop:before{content:""}.fa-m:before{content:"M"}.fa-table-list:before,.fa-th-list:before{content:""}.fa-comment-sms:before,.fa-sms:before{content:""}.fa-book:before{content:""}.fa-user-plus:before{content:""}.fa-check:before{content:""}.fa-battery-4:before,.fa-battery-three-quarters:before{content:""}.fa-house-circle-check:before{content:""}.fa-angle-left:before{content:""}.fa-diagram-successor:before{content:""}.fa-truck-arrow-right:before{content:""}.fa-arrows-split-up-and-left:before{content:""}.fa-fist-raised:before,.fa-hand-fist:before{content:""}.fa-cloud-moon:before{content:""}.fa-briefcase:before{content:""}.fa-person-falling:before{content:""}.fa-image-portrait:before,.fa-portrait:before{content:""}.fa-user-tag:before{content:""}.fa-rug:before{content:""}.fa-earth-europe:before,.fa-globe-europe:before{content:""}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:""}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-baht-sign:before{content:""}.fa-book-open:before{content:""}.fa-book-journal-whills:before,.fa-journal-whills:before{content:""}.fa-handcuffs:before{content:""}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:""}.fa-database:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-bottle-droplet:before{content:""}.fa-mask-face:before{content:""}.fa-hill-rockslide:before{content:""}.fa-exchange-alt:before,.fa-right-left:before{content:""}.fa-paper-plane:before{content:""}.fa-road-circle-exclamation:before{content:""}.fa-dungeon:before{content:""}.fa-align-right:before{content:""}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:""}.fa-life-ring:before{content:""}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:""}.fa-calendar-day:before{content:""}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:""}.fa-arrows-up-down:before,.fa-arrows-v:before{content:""}.fa-face-grimace:before,.fa-grimace:before{content:""}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:""}.fa-level-down-alt:before,.fa-turn-down:before{content:""}.fa-person-walking-arrow-right:before{content:""}.fa-envelope-square:before,.fa-square-envelope:before{content:""}.fa-dice:before{content:""}.fa-bowling-ball:before{content:""}.fa-brain:before{content:""}.fa-band-aid:before,.fa-bandage:before{content:""}.fa-calendar-minus:before{content:""}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:""}.fa-gifts:before{content:""}.fa-hotel:before{content:""}.fa-earth-asia:before,.fa-globe-asia:before{content:""}.fa-id-card-alt:before,.fa-id-card-clip:before{content:""}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:""}.fa-thumbs-up:before{content:""}.fa-user-clock:before{content:""}.fa-allergies:before,.fa-hand-dots:before{content:""}.fa-file-invoice:before{content:""}.fa-window-minimize:before{content:""}.fa-coffee:before,.fa-mug-saucer:before{content:""}.fa-brush:before{content:""}.fa-mask:before{content:""}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:""}.fa-ruler-vertical:before{content:""}.fa-user-alt:before,.fa-user-large:before{content:""}.fa-train-tram:before{content:""}.fa-user-nurse:before{content:""}.fa-syringe:before{content:""}.fa-cloud-sun:before{content:""}.fa-stopwatch-20:before{content:""}.fa-square-full:before{content:""}.fa-magnet:before{content:""}.fa-jar:before{content:""}.fa-note-sticky:before,.fa-sticky-note:before{content:""}.fa-bug-slash:before{content:""}.fa-arrow-up-from-water-pump:before{content:""}.fa-bone:before{content:""}.fa-user-injured:before{content:""}.fa-face-sad-tear:before,.fa-sad-tear:before{content:""}.fa-plane:before{content:""}.fa-tent-arrows-down:before{content:""}.fa-exclamation:before{content:"\!"}.fa-arrows-spin:before{content:""}.fa-print:before{content:""}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:""}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\$"}.fa-x:before{content:"X"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:""}.fa-users-cog:before,.fa-users-gear:before{content:""}.fa-person-military-pointing:before{content:""}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:""}.fa-umbrella:before{content:""}.fa-trowel:before{content:""}.fa-d:before{content:"D"}.fa-stapler:before{content:""}.fa-masks-theater:before,.fa-theater-masks:before{content:""}.fa-kip-sign:before{content:""}.fa-hand-point-left:before{content:""}.fa-handshake-alt:before,.fa-handshake-simple:before{content:""}.fa-fighter-jet:before,.fa-jet-fighter:before{content:""}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:""}.fa-barcode:before{content:""}.fa-plus-minus:before{content:""}.fa-video-camera:before,.fa-video:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-person-circle-check:before{content:""}.fa-level-up-alt:before,.fa-turn-up:before{content:""}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}/*! + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:Font Awesome\ 6 Free;font-style:normal;font-weight:900;font-display:block;src:url(/static/fonts/fa-solid-900.0b0cc8a6.woff2) format("woff2"),url(/static/fonts/fa-solid-900.69d3141a.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}/*! + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:Font Awesome\ 6 Free;font-style:normal;font-weight:400;font-display:block;src:url(/static/fonts/fa-regular-400.3ccdbd3d.woff2) format("woff2"),url(/static/fonts/fa-regular-400.81482cd4.ttf) format("truetype")}.fa-regular,.far{font-weight:400}/*! + * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:Font Awesome\ 6 Brands;font-style:normal;font-weight:400;font-display:block;src:url(/static/fonts/fa-brands-400.87587a68.woff2) format("woff2"),url(/static/fonts/fa-brands-400.5d18d427.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:""}.fa-hooli:before{content:""}.fa-yelp:before{content:""}.fa-cc-visa:before{content:""}.fa-lastfm:before{content:""}.fa-shopware:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-aws:before{content:""}.fa-redhat:before{content:""}.fa-yoast:before{content:""}.fa-cloudflare:before{content:""}.fa-ups:before{content:""}.fa-pixiv:before{content:""}.fa-wpexplorer:before{content:""}.fa-dyalog:before{content:""}.fa-bity:before{content:""}.fa-stackpath:before{content:""}.fa-buysellads:before{content:""}.fa-first-order:before{content:""}.fa-modx:before{content:""}.fa-guilded:before{content:""}.fa-vnv:before{content:""}.fa-js-square:before,.fa-square-js:before{content:""}.fa-microsoft:before{content:""}.fa-qq:before{content:""}.fa-orcid:before{content:""}.fa-java:before{content:""}.fa-invision:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-centercode:before{content:""}.fa-glide-g:before{content:""}.fa-drupal:before{content:""}.fa-jxl:before{content:""}.fa-hire-a-helper:before{content:""}.fa-creative-commons-by:before{content:""}.fa-unity:before{content:""}.fa-whmcs:before{content:""}.fa-rocketchat:before{content:""}.fa-vk:before{content:""}.fa-untappd:before{content:""}.fa-mailchimp:before{content:""}.fa-css3-alt:before{content:""}.fa-reddit-square:before,.fa-square-reddit:before{content:""}.fa-vimeo-v:before{content:""}.fa-contao:before{content:""}.fa-square-font-awesome:before{content:""}.fa-deskpro:before{content:""}.fa-brave:before{content:""}.fa-sistrix:before{content:""}.fa-instagram-square:before,.fa-square-instagram:before{content:""}.fa-battle-net:before{content:""}.fa-the-red-yeti:before{content:""}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:""}.fa-edge:before{content:""}.fa-threads:before{content:""}.fa-napster:before{content:""}.fa-snapchat-square:before,.fa-square-snapchat:before{content:""}.fa-google-plus-g:before{content:""}.fa-artstation:before{content:""}.fa-markdown:before{content:""}.fa-sourcetree:before{content:""}.fa-google-plus:before{content:""}.fa-diaspora:before{content:""}.fa-foursquare:before{content:""}.fa-stack-overflow:before{content:""}.fa-github-alt:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-pagelines:before{content:""}.fa-algolia:before{content:""}.fa-red-river:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-safari:before{content:""}.fa-google:before{content:""}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:""}.fa-atlassian:before{content:""}.fa-linkedin-in:before{content:""}.fa-digital-ocean:before{content:""}.fa-nimblr:before{content:""}.fa-chromecast:before{content:""}.fa-evernote:before{content:""}.fa-hacker-news:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-adversal:before{content:""}.fa-creative-commons:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-fonticons:before{content:""}.fa-weixin:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-codepen:before{content:""}.fa-git-alt:before{content:""}.fa-lyft:before{content:""}.fa-rev:before{content:""}.fa-windows:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-square-viadeo:before,.fa-viadeo-square:before{content:""}.fa-meetup:before{content:""}.fa-centos:before{content:""}.fa-adn:before{content:""}.fa-cloudsmith:before{content:""}.fa-opensuse:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-dribbble-square:before,.fa-square-dribbble:before{content:""}.fa-codiepie:before{content:""}.fa-node:before{content:""}.fa-mix:before{content:""}.fa-steam:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-scribd:before{content:""}.fa-debian:before{content:""}.fa-openid:before{content:""}.fa-instalod:before{content:""}.fa-expeditedssl:before{content:""}.fa-sellcast:before{content:""}.fa-square-twitter:before,.fa-twitter-square:before{content:""}.fa-r-project:before{content:""}.fa-delicious:before{content:""}.fa-freebsd:before{content:""}.fa-vuejs:before{content:""}.fa-accusoft:before{content:""}.fa-ioxhost:before{content:""}.fa-fonticons-fi:before{content:""}.fa-app-store:before{content:""}.fa-cc-mastercard:before{content:""}.fa-itunes-note:before{content:""}.fa-golang:before{content:""}.fa-kickstarter:before,.fa-square-kickstarter:before{content:""}.fa-grav:before{content:""}.fa-weibo:before{content:""}.fa-uncharted:before{content:""}.fa-firstdraft:before{content:""}.fa-square-youtube:before,.fa-youtube-square:before{content:""}.fa-wikipedia-w:before{content:""}.fa-rendact:before,.fa-wpressr:before{content:""}.fa-angellist:before{content:""}.fa-galactic-republic:before{content:""}.fa-nfc-directional:before{content:""}.fa-skype:before{content:""}.fa-joget:before{content:""}.fa-fedora:before{content:""}.fa-stripe-s:before{content:""}.fa-meta:before{content:""}.fa-laravel:before{content:""}.fa-hotjar:before{content:""}.fa-bluetooth-b:before{content:""}.fa-square-letterboxd:before{content:""}.fa-sticker-mule:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-hips:before{content:""}.fa-behance:before{content:""}.fa-reddit:before{content:""}.fa-discord:before{content:""}.fa-chrome:before{content:""}.fa-app-store-ios:before{content:""}.fa-cc-discover:before{content:""}.fa-wpbeginner:before{content:""}.fa-confluence:before{content:""}.fa-shoelace:before{content:""}.fa-mdb:before{content:""}.fa-dochub:before{content:""}.fa-accessible-icon:before{content:""}.fa-ebay:before{content:""}.fa-amazon:before{content:""}.fa-unsplash:before{content:""}.fa-yarn:before{content:""}.fa-square-steam:before,.fa-steam-square:before{content:""}.fa-500px:before{content:""}.fa-square-vimeo:before,.fa-vimeo-square:before{content:""}.fa-asymmetrik:before{content:""}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:""}.fa-gratipay:before{content:""}.fa-apple:before{content:""}.fa-hive:before{content:""}.fa-gitkraken:before{content:""}.fa-keybase:before{content:""}.fa-apple-pay:before{content:""}.fa-padlet:before{content:""}.fa-amazon-pay:before{content:""}.fa-github-square:before,.fa-square-github:before{content:""}.fa-stumbleupon:before{content:""}.fa-fedex:before{content:""}.fa-phoenix-framework:before{content:""}.fa-shopify:before{content:""}.fa-neos:before{content:""}.fa-square-threads:before{content:""}.fa-hackerrank:before{content:""}.fa-researchgate:before{content:""}.fa-swift:before{content:""}.fa-angular:before{content:""}.fa-speakap:before{content:""}.fa-angrycreative:before{content:""}.fa-y-combinator:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-google-scholar:before{content:""}.fa-gitlab-square:before,.fa-square-gitlab:before{content:""}.fa-studiovinari:before{content:""}.fa-pied-piper:before{content:""}.fa-wordpress:before{content:""}.fa-product-hunt:before{content:""}.fa-firefox:before{content:""}.fa-linode:before{content:""}.fa-goodreads:before{content:""}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:""}.fa-jsfiddle:before{content:""}.fa-sith:before{content:""}.fa-themeisle:before{content:""}.fa-page4:before{content:""}.fa-hashnode:before{content:""}.fa-react:before{content:""}.fa-cc-paypal:before{content:""}.fa-squarespace:before{content:""}.fa-cc-stripe:before{content:""}.fa-creative-commons-share:before{content:""}.fa-bitcoin:before{content:""}.fa-keycdn:before{content:""}.fa-opera:before{content:""}.fa-itch-io:before{content:""}.fa-umbraco:before{content:""}.fa-galactic-senate:before{content:""}.fa-ubuntu:before{content:""}.fa-draft2digital:before{content:""}.fa-stripe:before{content:""}.fa-houzz:before{content:""}.fa-gg:before{content:""}.fa-dhl:before{content:""}.fa-pinterest-square:before,.fa-square-pinterest:before{content:""}.fa-xing:before{content:""}.fa-blackberry:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-playstation:before{content:""}.fa-quinscape:before{content:""}.fa-less:before{content:""}.fa-blogger-b:before{content:""}.fa-opencart:before{content:""}.fa-vine:before{content:""}.fa-signal-messenger:before{content:""}.fa-paypal:before{content:""}.fa-gitlab:before{content:""}.fa-typo3:before{content:""}.fa-reddit-alien:before{content:""}.fa-yahoo:before{content:""}.fa-dailymotion:before{content:""}.fa-affiliatetheme:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-bootstrap:before{content:""}.fa-odnoklassniki:before{content:""}.fa-nfc-symbol:before{content:""}.fa-mintbit:before{content:""}.fa-ethereum:before{content:""}.fa-speaker-deck:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-patreon:before{content:""}.fa-avianex:before{content:""}.fa-ello:before{content:""}.fa-gofore:before{content:""}.fa-bimobject:before{content:""}.fa-brave-reverse:before{content:""}.fa-facebook-f:before{content:""}.fa-google-plus-square:before,.fa-square-google-plus:before{content:""}.fa-web-awesome:before{content:""}.fa-mandalorian:before{content:""}.fa-first-order-alt:before{content:""}.fa-osi:before{content:""}.fa-google-wallet:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-periscope:before{content:""}.fa-fulcrum:before{content:""}.fa-cloudscale:before{content:""}.fa-forumbee:before{content:""}.fa-mizuni:before{content:""}.fa-schlix:before{content:""}.fa-square-xing:before,.fa-xing-square:before{content:""}.fa-bandcamp:before{content:""}.fa-wpforms:before{content:""}.fa-cloudversify:before{content:""}.fa-usps:before{content:""}.fa-megaport:before{content:""}.fa-magento:before{content:""}.fa-spotify:before{content:""}.fa-optin-monster:before{content:""}.fa-fly:before{content:""}.fa-aviato:before{content:""}.fa-itunes:before{content:""}.fa-cuttlefish:before{content:""}.fa-blogger:before{content:""}.fa-flickr:before{content:""}.fa-viber:before{content:""}.fa-soundcloud:before{content:""}.fa-digg:before{content:""}.fa-tencent-weibo:before{content:""}.fa-letterboxd:before{content:""}.fa-symfony:before{content:""}.fa-maxcdn:before{content:""}.fa-etsy:before{content:""}.fa-facebook-messenger:before{content:""}.fa-audible:before{content:""}.fa-think-peaks:before{content:""}.fa-bilibili:before{content:""}.fa-erlang:before{content:""}.fa-x-twitter:before{content:""}.fa-cotton-bureau:before{content:""}.fa-dashcube:before{content:""}.fa-42-group:before,.fa-innosoft:before{content:""}.fa-stack-exchange:before{content:""}.fa-elementor:before{content:""}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-palfed:before{content:""}.fa-superpowers:before{content:""}.fa-resolving:before{content:""}.fa-xbox:before{content:""}.fa-square-web-awesome-stroke:before{content:""}.fa-searchengin:before{content:""}.fa-tiktok:before{content:""}.fa-facebook-square:before,.fa-square-facebook:before{content:""}.fa-renren:before{content:""}.fa-linux:before{content:""}.fa-glide:before{content:""}.fa-linkedin:before{content:""}.fa-hubspot:before{content:""}.fa-deploydog:before{content:""}.fa-twitch:before{content:""}.fa-ravelry:before{content:""}.fa-mixer:before{content:""}.fa-lastfm-square:before,.fa-square-lastfm:before{content:""}.fa-vimeo:before{content:""}.fa-mendeley:before{content:""}.fa-uniregistry:before{content:""}.fa-figma:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-dropbox:before{content:""}.fa-instagram:before{content:""}.fa-cmplid:before{content:""}.fa-upwork:before{content:""}.fa-facebook:before{content:""}.fa-gripfire:before{content:""}.fa-jedi-order:before{content:""}.fa-uikit:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-phabricator:before{content:""}.fa-ussunnah:before{content:""}.fa-earlybirds:before{content:""}.fa-trade-federation:before{content:""}.fa-autoprefixer:before{content:""}.fa-whatsapp:before{content:""}.fa-square-upwork:before{content:""}.fa-slideshare:before{content:""}.fa-google-play:before{content:""}.fa-viadeo:before{content:""}.fa-line:before{content:""}.fa-google-drive:before{content:""}.fa-servicestack:before{content:""}.fa-simplybuilt:before{content:""}.fa-bitbucket:before{content:""}.fa-imdb:before{content:""}.fa-deezer:before{content:""}.fa-raspberry-pi:before{content:""}.fa-jira:before{content:""}.fa-docker:before{content:""}.fa-screenpal:before{content:""}.fa-bluetooth:before{content:""}.fa-gitter:before{content:""}.fa-d-and-d:before{content:""}.fa-microblog:before{content:""}.fa-cc-diners-club:before{content:""}.fa-gg-circle:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-kickstarter-k:before{content:""}.fa-yandex:before{content:""}.fa-readme:before{content:""}.fa-html5:before{content:""}.fa-sellsy:before{content:""}.fa-square-web-awesome:before{content:""}.fa-sass:before{content:""}.fa-wirsindhandwerk:before,.fa-wsh:before{content:""}.fa-buromobelexperte:before{content:""}.fa-salesforce:before{content:""}.fa-octopus-deploy:before{content:""}.fa-medapps:before{content:""}.fa-ns8:before{content:""}.fa-pinterest-p:before{content:""}.fa-apper:before{content:""}.fa-fort-awesome:before{content:""}.fa-waze:before{content:""}.fa-bluesky:before{content:""}.fa-cc-jcb:before{content:""}.fa-snapchat-ghost:before,.fa-snapchat:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-rust:before{content:""}.fa-wix:before{content:""}.fa-behance-square:before,.fa-square-behance:before{content:""}.fa-supple:before{content:""}.fa-webflow:before{content:""}.fa-rebel:before{content:""}.fa-css3:before{content:""}.fa-staylinked:before{content:""}.fa-kaggle:before{content:""}.fa-space-awesome:before{content:""}.fa-deviantart:before{content:""}.fa-cpanel:before{content:""}.fa-goodreads-g:before{content:""}.fa-git-square:before,.fa-square-git:before{content:""}.fa-square-tumblr:before,.fa-tumblr-square:before{content:""}.fa-trello:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-get-pocket:before{content:""}.fa-perbyte:before{content:""}.fa-grunt:before{content:""}.fa-weebly:before{content:""}.fa-connectdevelop:before{content:""}.fa-leanpub:before{content:""}.fa-black-tie:before{content:""}.fa-themeco:before{content:""}.fa-python:before{content:""}.fa-android:before{content:""}.fa-bots:before{content:""}.fa-free-code-camp:before{content:""}.fa-hornbill:before{content:""}.fa-js:before{content:""}.fa-ideal:before{content:""}.fa-git:before{content:""}.fa-dev:before{content:""}.fa-sketch:before{content:""}.fa-yandex-international:before{content:""}.fa-cc-amex:before{content:""}.fa-uber:before{content:""}.fa-github:before{content:""}.fa-php:before{content:""}.fa-alipay:before{content:""}.fa-youtube:before{content:""}.fa-skyatlas:before{content:""}.fa-firefox-browser:before{content:""}.fa-replyd:before{content:""}.fa-suse:before{content:""}.fa-jenkins:before{content:""}.fa-twitter:before{content:""}.fa-rockrms:before{content:""}.fa-pinterest:before{content:""}.fa-buffer:before{content:""}.fa-npm:before{content:""}.fa-yammer:before{content:""}.fa-btc:before{content:""}.fa-dribbble:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-internet-explorer:before{content:""}.fa-stubber:before{content:""}.fa-telegram-plane:before,.fa-telegram:before{content:""}.fa-old-republic:before{content:""}.fa-odysee:before{content:""}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:""}.fa-node-js:before{content:""}.fa-edge-legacy:before{content:""}.fa-slack-hash:before,.fa-slack:before{content:""}.fa-medrt:before{content:""}.fa-usb:before{content:""}.fa-tumblr:before{content:""}.fa-vaadin:before{content:""}.fa-quora:before{content:""}.fa-square-x-twitter:before{content:""}.fa-reacteurope:before{content:""}.fa-medium-m:before,.fa-medium:before{content:""}.fa-amilia:before{content:""}.fa-mixcloud:before{content:""}.fa-flipboard:before{content:""}.fa-viacoin:before{content:""}.fa-critical-role:before{content:""}.fa-sitrox:before{content:""}.fa-discourse:before{content:""}.fa-joomla:before{content:""}.fa-mastodon:before{content:""}.fa-airbnb:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-buy-n-large:before{content:""}.fa-gulp:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-strava:before{content:""}.fa-ember:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-teamspeak:before{content:""}.fa-pushed:before{content:""}.fa-wordpress-simple:before{content:""}.fa-nutritionix:before{content:""}.fa-wodu:before{content:""}.fa-google-pay:before{content:""}.fa-intercom:before{content:""}.fa-zhihu:before{content:""}.fa-korvue:before{content:""}.fa-pix:before{content:""}.fa-steam-symbol:before{content:""}body,html{margin:0;overflow:auto}#app,#app-container,body,html{width:100%;height:100%}#app{font-family:BlinkMacSystemFont,-apple-system,Avenir,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Verdana,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#2c3e50} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/dashboard.3111af9d.css b/platypush/backend/http/webapp/dist/static/css/dashboard.3111af9d.css new file mode 100644 index 0000000000..991b73ce84 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/dashboard.3111af9d.css @@ -0,0 +1 @@ +.col-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1b4663f2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1b4663f2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1b4663f2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1b4663f2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1b4663f2]:first-child{margin-left:26%!important}.col-offset-3[data-v-1b4663f2]:not(first-child){margin-left:30%!important}.col-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1b4663f2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1b4663f2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1b4663f2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1b4663f2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1b4663f2]:first-child{margin-left:52%!important}.col-offset-6[data-v-1b4663f2]:not(first-child){margin-left:56%!important}.col-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1b4663f2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1b4663f2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1b4663f2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1b4663f2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1b4663f2]:first-child{margin-left:78%!important}.col-offset-9[data-v-1b4663f2]:not(first-child){margin-left:82%!important}.col-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1b4663f2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1b4663f2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1b4663f2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1b4663f2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-s-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-s-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-s-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1b4663f2]{display:none!important}.s-visible[data-v-1b4663f2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-m-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-m-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-m-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1b4663f2]{display:none!important}.m-visible[data-v-1b4663f2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-l-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-l-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-l-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1b4663f2]{display:none!important}.l-visible[data-v-1b4663f2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-xl-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-xl-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-xl-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1b4663f2]{display:none!important}.xl-visible[data-v-1b4663f2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-xxl-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-xxl-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-xxl-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1b4663f2]{display:none!important}.xxl-visible[data-v-1b4663f2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b4663f2]{display:none!important}}.vertical-center[data-v-1b4663f2]{display:flex;align-items:center}.horizontal-center[data-v-1b4663f2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1b4663f2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1b4663f2]{display:none!important}.no-content[data-v-1b4663f2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1b4663f2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1b4663f2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1b4663f2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1b4663f2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1b4663f2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1b4663f2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1b4663f2],.btn[data-v-1b4663f2],button[data-v-1b4663f2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1b4663f2],.btn-default[type=submit][data-v-1b4663f2],.btn.btn-primary[data-v-1b4663f2],.btn[type=submit][data-v-1b4663f2],button.btn-primary[data-v-1b4663f2],button[type=submit][data-v-1b4663f2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-1b4663f2]:hover,.btn[data-v-1b4663f2]:hover,button[data-v-1b4663f2]:hover{color:#35b870}.btn .icon[data-v-1b4663f2],.btn-default .icon[data-v-1b4663f2],button .icon[data-v-1b4663f2]{margin-right:.5em}.btn-default[data-v-1b4663f2]:disabled,.btn-default[disabled][data-v-1b4663f2],.btn[data-v-1b4663f2]:disabled,.btn[disabled][data-v-1b4663f2],button[data-v-1b4663f2]:disabled,button[disabled][data-v-1b4663f2]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-1b4663f2]{cursor:grab!important}.dragged[data-v-1b4663f2]{opacity:.5!important}input[type=password][data-v-1b4663f2],input[type=text][data-v-1b4663f2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1b4663f2]:focus,input[type=text][data-v-1b4663f2]:focus{border:1px solid #35b870}button[data-v-1b4663f2],input[data-v-1b4663f2]{outline:none}input[type=text][data-v-1b4663f2]:hover,textarea[data-v-1b4663f2]:hover{border:1px solid #9cdfb0}ul[data-v-1b4663f2]{margin:0;padding:0;list-style:none}a[data-v-1b4663f2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1b4663f2]:hover{color:#35b870}[data-v-1b4663f2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1b4663f2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1b4663f2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1b4663f2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-1b4663f2]{color:#ad1717}body[data-v-1b4663f2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1b4663f2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1b4663f2] .nav .path{cursor:pointer}.browser[data-v-1b4663f2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1b4663f2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-1b4663f2]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-1b4663f2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1b4663f2],input[type=number][data-v-1b4663f2],input[type=password][data-v-1b4663f2],input[type=search][data-v-1b4663f2],input[type=text][data-v-1b4663f2],input[type=time][data-v-1b4663f2]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-1b4663f2]:hover,input[type=number][data-v-1b4663f2]:hover,input[type=password][data-v-1b4663f2]:hover,input[type=search][data-v-1b4663f2]:hover,input[type=text][data-v-1b4663f2]:hover,input[type=time][data-v-1b4663f2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1b4663f2]:focus,input[type=number][data-v-1b4663f2]:focus,input[type=password][data-v-1b4663f2]:focus,input[type=search][data-v-1b4663f2]:focus,input[type=text][data-v-1b4663f2]:focus,input[type=time][data-v-1b4663f2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1b4663f2],input[type=number].with-icon[data-v-1b4663f2],input[type=password].with-icon[data-v-1b4663f2],input[type=search].with-icon[data-v-1b4663f2],input[type=text].with-icon[data-v-1b4663f2],input[type=time].with-icon[data-v-1b4663f2]{padding-left:.3em}input[type=search][data-v-1b4663f2],input[type=text][data-v-1b4663f2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1b4663f2]{animation-fill-mode:both;animation-name:fadeIn-1b4663f2;-webkit-animation-name:fadeIn-1b4663f2}.fade-in[data-v-1b4663f2],.fade-out[data-v-1b4663f2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1b4663f2]{animation-fill-mode:both;animation-name:fadeOut-1b4663f2;-webkit-animation-name:fadeOut-1b4663f2}.expand[data-v-1b4663f2]{animation-fill-mode:both;animation-name:expand-1b4663f2;-webkit-animation-name:expand-1b4663f2}.expand[data-v-1b4663f2],.shrink[data-v-1b4663f2]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-1b4663f2]{animation-fill-mode:both;animation-name:shrink-1b4663f2;-webkit-animation-name:shrink-1b4663f2}.fold[data-v-1b4663f2]{animation-fill-mode:both;animation-name:fold-1b4663f2;-webkit-animation-name:fold-1b4663f2}.fold[data-v-1b4663f2],.unfold[data-v-1b4663f2]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-1b4663f2]{animation-fill-mode:both;animation-name:unfold-1b4663f2;-webkit-animation-name:unfold-1b4663f2}.dim[data-v-1b4663f2]{animation-fill-mode:both;animation-name:dim-1b4663f2;-webkit-animation-name:dim-1b4663f2}.brighten[data-v-1b4663f2],.dim[data-v-1b4663f2]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-1b4663f2]{animation-fill-mode:both;animation-name:brighten-1b4663f2;-webkit-animation-name:brighten-1b4663f2}@keyframes fadeIn-1b4663f2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1b4663f2{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-1b4663f2{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-1b4663f2{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-1b4663f2{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-1b4663f2{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-1b4663f2{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-1b4663f2{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-1b4663f2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1b4663f2;-webkit-animation-name:glow-1b4663f2}.loop[data-v-1b4663f2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1b4663f2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1b4663f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1b4663f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1b4663f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.row[data-v-1b4663f2]{width:100%;height:49%}.row[data-v-1b4663f2]:not(:last-child){margin-bottom:1%}.col-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5df52982]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5df52982]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5df52982]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5df52982]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5df52982]:first-child{margin-left:26%!important}.col-offset-3[data-v-5df52982]:not(first-child){margin-left:30%!important}.col-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5df52982]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5df52982]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5df52982]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5df52982]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5df52982]:first-child{margin-left:52%!important}.col-offset-6[data-v-5df52982]:not(first-child){margin-left:56%!important}.col-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5df52982]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5df52982]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5df52982]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5df52982]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5df52982]:first-child{margin-left:78%!important}.col-offset-9[data-v-5df52982]:not(first-child){margin-left:82%!important}.col-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5df52982]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5df52982]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5df52982]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5df52982]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-3[data-v-5df52982]{margin-left:26%}.col-no-margin-s-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-6[data-v-5df52982]{margin-left:52%}.col-no-margin-s-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-9[data-v-5df52982]{margin-left:78%}.col-no-margin-s-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5df52982]{display:none!important}.s-visible[data-v-5df52982]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-3[data-v-5df52982]{margin-left:26%}.col-no-margin-m-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-6[data-v-5df52982]{margin-left:52%}.col-no-margin-m-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-9[data-v-5df52982]{margin-left:78%}.col-no-margin-m-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5df52982]{display:none!important}.m-visible[data-v-5df52982]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-3[data-v-5df52982]{margin-left:26%}.col-no-margin-l-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-6[data-v-5df52982]{margin-left:52%}.col-no-margin-l-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-9[data-v-5df52982]{margin-left:78%}.col-no-margin-l-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5df52982]{display:none!important}.l-visible[data-v-5df52982]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-3[data-v-5df52982]{margin-left:26%}.col-no-margin-xl-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-6[data-v-5df52982]{margin-left:52%}.col-no-margin-xl-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-9[data-v-5df52982]{margin-left:78%}.col-no-margin-xl-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5df52982]{display:none!important}.xl-visible[data-v-5df52982]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5df52982]{margin-left:26%}.col-no-margin-xxl-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5df52982]{margin-left:52%}.col-no-margin-xxl-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5df52982]{margin-left:78%}.col-no-margin-xxl-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5df52982]{display:none!important}.xxl-visible[data-v-5df52982]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5df52982]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5df52982]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5df52982]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5df52982]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5df52982]{display:none!important}}.vertical-center[data-v-5df52982]{display:flex;align-items:center}.horizontal-center[data-v-5df52982]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5df52982]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5df52982]{display:none!important}.no-content[data-v-5df52982]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5df52982]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5df52982]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5df52982]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5df52982]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5df52982]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5df52982]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5df52982],.btn[data-v-5df52982],button[data-v-5df52982]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5df52982],.btn-default[type=submit][data-v-5df52982],.btn.btn-primary[data-v-5df52982],.btn[type=submit][data-v-5df52982],button.btn-primary[data-v-5df52982],button[type=submit][data-v-5df52982]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-5df52982]:hover,.btn[data-v-5df52982]:hover,button[data-v-5df52982]:hover{color:#35b870}.btn .icon[data-v-5df52982],.btn-default .icon[data-v-5df52982],button .icon[data-v-5df52982]{margin-right:.5em}.btn-default[data-v-5df52982]:disabled,.btn-default[disabled][data-v-5df52982],.btn[data-v-5df52982]:disabled,.btn[disabled][data-v-5df52982],button[data-v-5df52982]:disabled,button[disabled][data-v-5df52982]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-5df52982]{cursor:grab!important}.dragged[data-v-5df52982]{opacity:.5!important}input[type=password][data-v-5df52982],input[type=text][data-v-5df52982]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5df52982]:focus,input[type=text][data-v-5df52982]:focus{border:1px solid #35b870}button[data-v-5df52982],input[data-v-5df52982]{outline:none}input[type=text][data-v-5df52982]:hover,textarea[data-v-5df52982]:hover{border:1px solid #9cdfb0}ul[data-v-5df52982]{margin:0;padding:0;list-style:none}a[data-v-5df52982]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5df52982]:hover{color:#35b870}[data-v-5df52982]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5df52982]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5df52982]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5df52982]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-5df52982]{color:#ad1717}body[data-v-5df52982]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5df52982] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5df52982] .nav .path{cursor:pointer}.browser[data-v-5df52982] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5df52982] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-5df52982]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-5df52982]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5df52982],input[type=number][data-v-5df52982],input[type=password][data-v-5df52982],input[type=search][data-v-5df52982],input[type=text][data-v-5df52982],input[type=time][data-v-5df52982]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-5df52982]:hover,input[type=number][data-v-5df52982]:hover,input[type=password][data-v-5df52982]:hover,input[type=search][data-v-5df52982]:hover,input[type=text][data-v-5df52982]:hover,input[type=time][data-v-5df52982]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5df52982]:focus,input[type=number][data-v-5df52982]:focus,input[type=password][data-v-5df52982]:focus,input[type=search][data-v-5df52982]:focus,input[type=text][data-v-5df52982]:focus,input[type=time][data-v-5df52982]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5df52982],input[type=number].with-icon[data-v-5df52982],input[type=password].with-icon[data-v-5df52982],input[type=search].with-icon[data-v-5df52982],input[type=text].with-icon[data-v-5df52982],input[type=time].with-icon[data-v-5df52982]{padding-left:.3em}input[type=search][data-v-5df52982],input[type=text][data-v-5df52982]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5df52982]{animation-fill-mode:both;animation-name:fadeIn-5df52982;-webkit-animation-name:fadeIn-5df52982}.fade-in[data-v-5df52982],.fade-out[data-v-5df52982]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5df52982]{animation-fill-mode:both;animation-name:fadeOut-5df52982;-webkit-animation-name:fadeOut-5df52982}.expand[data-v-5df52982]{animation-fill-mode:both;animation-name:expand-5df52982;-webkit-animation-name:expand-5df52982}.expand[data-v-5df52982],.shrink[data-v-5df52982]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-5df52982]{animation-fill-mode:both;animation-name:shrink-5df52982;-webkit-animation-name:shrink-5df52982}.fold[data-v-5df52982]{animation-fill-mode:both;animation-name:fold-5df52982;-webkit-animation-name:fold-5df52982}.fold[data-v-5df52982],.unfold[data-v-5df52982]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-5df52982]{animation-fill-mode:both;animation-name:unfold-5df52982;-webkit-animation-name:unfold-5df52982}.dim[data-v-5df52982]{animation-fill-mode:both;animation-name:dim-5df52982;-webkit-animation-name:dim-5df52982}.brighten[data-v-5df52982],.dim[data-v-5df52982]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-5df52982]{animation-fill-mode:both;animation-name:brighten-5df52982;-webkit-animation-name:brighten-5df52982}@keyframes fadeIn-5df52982{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5df52982{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-5df52982{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-5df52982{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-5df52982{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-5df52982{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-5df52982{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-5df52982{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-5df52982]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5df52982;-webkit-animation-name:glow-5df52982}.loop[data-v-5df52982]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5df52982{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5df52982]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5df52982]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5df52982]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.widget[data-v-5df52982]{height:calc(100% - 1em);background:#fff;border-radius:5px;display:flex;justify-content:center;align-content:center;position:relative;overflow:hidden;box-shadow:0 3px 3px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.08)}.col-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-462fad8c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-462fad8c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-462fad8c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-462fad8c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-462fad8c]:first-child{margin-left:26%!important}.col-offset-3[data-v-462fad8c]:not(first-child){margin-left:30%!important}.col-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-462fad8c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-462fad8c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-462fad8c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-462fad8c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-462fad8c]:first-child{margin-left:52%!important}.col-offset-6[data-v-462fad8c]:not(first-child){margin-left:56%!important}.col-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-462fad8c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-462fad8c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-462fad8c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-462fad8c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-462fad8c]:first-child{margin-left:78%!important}.col-offset-9[data-v-462fad8c]:not(first-child){margin-left:82%!important}.col-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-462fad8c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-462fad8c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-462fad8c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-462fad8c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-s-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-s-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-s-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-462fad8c]{display:none!important}.s-visible[data-v-462fad8c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-m-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-m-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-m-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-462fad8c]{display:none!important}.m-visible[data-v-462fad8c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-l-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-l-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-l-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-462fad8c]{display:none!important}.l-visible[data-v-462fad8c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-xl-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-xl-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-xl-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-462fad8c]{display:none!important}.xl-visible[data-v-462fad8c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-xxl-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-xxl-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-xxl-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-462fad8c]{display:none!important}.xxl-visible[data-v-462fad8c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-462fad8c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-462fad8c]{display:none!important}}.vertical-center[data-v-462fad8c]{display:flex;align-items:center}.horizontal-center[data-v-462fad8c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-462fad8c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-462fad8c]{display:none!important}.no-content[data-v-462fad8c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-462fad8c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-462fad8c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-462fad8c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-462fad8c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-462fad8c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-462fad8c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-462fad8c],.btn[data-v-462fad8c],button[data-v-462fad8c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-462fad8c],.btn-default[type=submit][data-v-462fad8c],.btn.btn-primary[data-v-462fad8c],.btn[type=submit][data-v-462fad8c],button.btn-primary[data-v-462fad8c],button[type=submit][data-v-462fad8c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-462fad8c]:hover,.btn[data-v-462fad8c]:hover,button[data-v-462fad8c]:hover{color:#35b870}.btn .icon[data-v-462fad8c],.btn-default .icon[data-v-462fad8c],button .icon[data-v-462fad8c]{margin-right:.5em}.btn-default[data-v-462fad8c]:disabled,.btn-default[disabled][data-v-462fad8c],.btn[data-v-462fad8c]:disabled,.btn[disabled][data-v-462fad8c],button[data-v-462fad8c]:disabled,button[disabled][data-v-462fad8c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-462fad8c]{cursor:grab!important}.dragged[data-v-462fad8c]{opacity:.5!important}input[type=password][data-v-462fad8c],input[type=text][data-v-462fad8c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-462fad8c]:focus,input[type=text][data-v-462fad8c]:focus{border:1px solid #35b870}button[data-v-462fad8c],input[data-v-462fad8c]{outline:none}input[type=text][data-v-462fad8c]:hover,textarea[data-v-462fad8c]:hover{border:1px solid #9cdfb0}ul[data-v-462fad8c]{margin:0;padding:0;list-style:none}a[data-v-462fad8c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-462fad8c]:hover{color:#35b870}[data-v-462fad8c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-462fad8c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-462fad8c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-462fad8c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-462fad8c]{color:#ad1717}body[data-v-462fad8c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-462fad8c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-462fad8c] .nav .path{cursor:pointer}.browser[data-v-462fad8c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-462fad8c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-462fad8c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-462fad8c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-462fad8c],input[type=number][data-v-462fad8c],input[type=password][data-v-462fad8c],input[type=search][data-v-462fad8c],input[type=text][data-v-462fad8c],input[type=time][data-v-462fad8c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-462fad8c]:hover,input[type=number][data-v-462fad8c]:hover,input[type=password][data-v-462fad8c]:hover,input[type=search][data-v-462fad8c]:hover,input[type=text][data-v-462fad8c]:hover,input[type=time][data-v-462fad8c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-462fad8c]:focus,input[type=number][data-v-462fad8c]:focus,input[type=password][data-v-462fad8c]:focus,input[type=search][data-v-462fad8c]:focus,input[type=text][data-v-462fad8c]:focus,input[type=time][data-v-462fad8c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-462fad8c],input[type=number].with-icon[data-v-462fad8c],input[type=password].with-icon[data-v-462fad8c],input[type=search].with-icon[data-v-462fad8c],input[type=text].with-icon[data-v-462fad8c],input[type=time].with-icon[data-v-462fad8c]{padding-left:.3em}input[type=search][data-v-462fad8c],input[type=text][data-v-462fad8c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-462fad8c]{animation-fill-mode:both;animation-name:fadeIn-462fad8c;-webkit-animation-name:fadeIn-462fad8c}.fade-in[data-v-462fad8c],.fade-out[data-v-462fad8c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-462fad8c]{animation-fill-mode:both;animation-name:fadeOut-462fad8c;-webkit-animation-name:fadeOut-462fad8c}.expand[data-v-462fad8c]{animation-fill-mode:both;animation-name:expand-462fad8c;-webkit-animation-name:expand-462fad8c}.expand[data-v-462fad8c],.shrink[data-v-462fad8c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-462fad8c]{animation-fill-mode:both;animation-name:shrink-462fad8c;-webkit-animation-name:shrink-462fad8c}.fold[data-v-462fad8c]{animation-fill-mode:both;animation-name:fold-462fad8c;-webkit-animation-name:fold-462fad8c}.fold[data-v-462fad8c],.unfold[data-v-462fad8c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-462fad8c]{animation-fill-mode:both;animation-name:unfold-462fad8c;-webkit-animation-name:unfold-462fad8c}.dim[data-v-462fad8c]{animation-fill-mode:both;animation-name:dim-462fad8c;-webkit-animation-name:dim-462fad8c}.brighten[data-v-462fad8c],.dim[data-v-462fad8c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-462fad8c]{animation-fill-mode:both;animation-name:brighten-462fad8c;-webkit-animation-name:brighten-462fad8c}@keyframes fadeIn-462fad8c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-462fad8c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-462fad8c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-462fad8c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-462fad8c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-462fad8c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-462fad8c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-462fad8c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-462fad8c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-462fad8c;-webkit-animation-name:glow-462fad8c}.loop[data-v-462fad8c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-462fad8c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-462fad8c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-462fad8c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-462fad8c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@font-face{font-family:Lato Medium;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;src:url(/static/fonts/lato-medium.13fcde4c.woff2) format("woff2"),url(/static/fonts/lato-medium.b41c3821.woff) format("woff")}@font-face{font-family:Lato Medium;font-weight:400;font-style:italic;text-rendering:optimizeLegibility;src:url(/static/fonts/lato-medium-italic.1e312dd9.woff2) format("woff2"),url(/static/fonts/lato-medium-italic.1996cc15.woff) format("woff")}#dashboard[data-v-462fad8c]{width:100%;height:100%;display:flex;flex-direction:column;margin:0;padding:1em 1em 0 1em;background:url(/static/img/dashboard-bg-light.06da6eab.jpg);background-size:cover;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}#dashboard .blurred[data-v-462fad8c]{filter:blur(.075em)}html{overflow:auto!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/dashboard.ce0fe60f.css b/platypush/backend/http/webapp/dist/static/css/dashboard.ce0fe60f.css deleted file mode 100644 index ca158d02d9..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/dashboard.ce0fe60f.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1b4663f2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1b4663f2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1b4663f2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1b4663f2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1b4663f2]:first-child{margin-left:26%!important}.col-offset-3[data-v-1b4663f2]:not(first-child){margin-left:30%!important}.col-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1b4663f2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1b4663f2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1b4663f2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1b4663f2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1b4663f2]:first-child{margin-left:52%!important}.col-offset-6[data-v-1b4663f2]:not(first-child){margin-left:56%!important}.col-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1b4663f2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1b4663f2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1b4663f2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1b4663f2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1b4663f2]:first-child{margin-left:78%!important}.col-offset-9[data-v-1b4663f2]:not(first-child){margin-left:82%!important}.col-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1b4663f2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1b4663f2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1b4663f2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1b4663f2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-s-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-s-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-s-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-s-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1b4663f2]{display:none!important}.s-visible[data-v-1b4663f2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-m-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-m-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-m-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-m-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1b4663f2]{display:none!important}.m-visible[data-v-1b4663f2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-l-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-l-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-l-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-l-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1b4663f2]{display:none!important}.l-visible[data-v-1b4663f2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-xl-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-xl-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-xl-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xl-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1b4663f2]{display:none!important}.xl-visible[data-v-1b4663f2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1b4663f2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1b4663f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1b4663f2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1b4663f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1b4663f2]{margin-left:26%}.col-no-margin-xxl-3[data-v-1b4663f2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1b4663f2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1b4663f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1b4663f2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1b4663f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1b4663f2]{margin-left:52%}.col-no-margin-xxl-6[data-v-1b4663f2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1b4663f2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1b4663f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1b4663f2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1b4663f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1b4663f2]{margin-left:78%}.col-no-margin-xxl-9[data-v-1b4663f2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1b4663f2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1b4663f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1b4663f2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1b4663f2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1b4663f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1b4663f2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1b4663f2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1b4663f2]{display:none!important}.xxl-visible[data-v-1b4663f2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b4663f2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1b4663f2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b4663f2]{display:none!important}}.vertical-center[data-v-1b4663f2]{display:flex;align-items:center}.horizontal-center[data-v-1b4663f2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1b4663f2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1b4663f2]{display:none!important}.no-content[data-v-1b4663f2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1b4663f2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1b4663f2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1b4663f2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1b4663f2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1b4663f2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1b4663f2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1b4663f2],.btn[data-v-1b4663f2],button[data-v-1b4663f2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1b4663f2],.btn-default[type=submit][data-v-1b4663f2],.btn.btn-primary[data-v-1b4663f2],.btn[type=submit][data-v-1b4663f2],button.btn-primary[data-v-1b4663f2],button[type=submit][data-v-1b4663f2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1b4663f2],.btn-default .icon[data-v-1b4663f2],button .icon[data-v-1b4663f2]{margin-right:.5em}input[type=password][data-v-1b4663f2],input[type=text][data-v-1b4663f2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1b4663f2]:focus,input[type=text][data-v-1b4663f2]:focus{border:1px solid #35b870}button[data-v-1b4663f2],input[data-v-1b4663f2]{outline:none}input[type=text][data-v-1b4663f2]:hover,textarea[data-v-1b4663f2]:hover{border:1px solid #9cdfb0}ul[data-v-1b4663f2]{margin:0;padding:0;list-style:none}a[data-v-1b4663f2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1b4663f2]:hover{color:#35b870}[data-v-1b4663f2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1b4663f2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1b4663f2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1b4663f2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1b4663f2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1b4663f2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1b4663f2] .nav .path{cursor:pointer}.browser[data-v-1b4663f2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1b4663f2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1b4663f2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1b4663f2],input[type=number][data-v-1b4663f2],input[type=password][data-v-1b4663f2],input[type=search][data-v-1b4663f2],input[type=text][data-v-1b4663f2],input[type=time][data-v-1b4663f2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1b4663f2]:hover,input[type=number][data-v-1b4663f2]:hover,input[type=password][data-v-1b4663f2]:hover,input[type=search][data-v-1b4663f2]:hover,input[type=text][data-v-1b4663f2]:hover,input[type=time][data-v-1b4663f2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1b4663f2]:focus,input[type=number][data-v-1b4663f2]:focus,input[type=password][data-v-1b4663f2]:focus,input[type=search][data-v-1b4663f2]:focus,input[type=text][data-v-1b4663f2]:focus,input[type=time][data-v-1b4663f2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1b4663f2],input[type=number].with-icon[data-v-1b4663f2],input[type=password].with-icon[data-v-1b4663f2],input[type=search].with-icon[data-v-1b4663f2],input[type=text].with-icon[data-v-1b4663f2],input[type=time].with-icon[data-v-1b4663f2]{padding-left:.3em}input[type=search][data-v-1b4663f2],input[type=text][data-v-1b4663f2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1b4663f2]{animation-fill-mode:both;animation-name:fadeIn-1b4663f2;-webkit-animation-name:fadeIn-1b4663f2}.fade-in[data-v-1b4663f2],.fade-out[data-v-1b4663f2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1b4663f2]{animation-fill-mode:both;animation-name:fadeOut-1b4663f2;-webkit-animation-name:fadeOut-1b4663f2}@keyframes fadeIn-1b4663f2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1b4663f2{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-1b4663f2]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-1b4663f2;-webkit-animation-name:glow-1b4663f2}.loop[data-v-1b4663f2]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-1b4663f2{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-1b4663f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1b4663f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1b4663f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.row[data-v-1b4663f2]{width:100%;height:49%}.row[data-v-1b4663f2]:not(:last-child){margin-bottom:1%}.col-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5df52982]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5df52982]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5df52982]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5df52982]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5df52982]:first-child{margin-left:26%!important}.col-offset-3[data-v-5df52982]:not(first-child){margin-left:30%!important}.col-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5df52982]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5df52982]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5df52982]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5df52982]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5df52982]:first-child{margin-left:52%!important}.col-offset-6[data-v-5df52982]:not(first-child){margin-left:56%!important}.col-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5df52982]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5df52982]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5df52982]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5df52982]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5df52982]:first-child{margin-left:78%!important}.col-offset-9[data-v-5df52982]:not(first-child){margin-left:82%!important}.col-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5df52982]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5df52982]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5df52982]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5df52982]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-3[data-v-5df52982]{margin-left:26%}.col-no-margin-s-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-6[data-v-5df52982]{margin-left:52%}.col-no-margin-s-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-9[data-v-5df52982]{margin-left:78%}.col-no-margin-s-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-s-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5df52982]{display:none!important}.s-visible[data-v-5df52982]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-3[data-v-5df52982]{margin-left:26%}.col-no-margin-m-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-6[data-v-5df52982]{margin-left:52%}.col-no-margin-m-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-9[data-v-5df52982]{margin-left:78%}.col-no-margin-m-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-m-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5df52982]{display:none!important}.m-visible[data-v-5df52982]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-3[data-v-5df52982]{margin-left:26%}.col-no-margin-l-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-6[data-v-5df52982]{margin-left:52%}.col-no-margin-l-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-9[data-v-5df52982]{margin-left:78%}.col-no-margin-l-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-l-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5df52982]{display:none!important}.l-visible[data-v-5df52982]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-3[data-v-5df52982]{margin-left:26%}.col-no-margin-xl-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-6[data-v-5df52982]{margin-left:52%}.col-no-margin-xl-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-9[data-v-5df52982]{margin-left:78%}.col-no-margin-xl-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-xl-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5df52982]{display:none!important}.xl-visible[data-v-5df52982]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5df52982]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5df52982]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5df52982]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5df52982]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5df52982]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5df52982]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5df52982]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5df52982]{margin-left:26%}.col-no-margin-xxl-3[data-v-5df52982]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5df52982]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5df52982]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5df52982]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5df52982]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5df52982]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5df52982]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5df52982]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5df52982]{margin-left:52%}.col-no-margin-xxl-6[data-v-5df52982]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5df52982]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5df52982]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5df52982]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5df52982]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5df52982]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5df52982]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5df52982]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5df52982]{margin-left:78%}.col-no-margin-xxl-9[data-v-5df52982]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5df52982]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5df52982]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5df52982]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5df52982]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5df52982]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5df52982]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5df52982]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5df52982]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5df52982]{display:none!important}.xxl-visible[data-v-5df52982]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-5df52982]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5df52982]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5df52982]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5df52982]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-5df52982]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-5df52982]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5df52982]{display:none!important}}.vertical-center[data-v-5df52982]{display:flex;align-items:center}.horizontal-center[data-v-5df52982]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5df52982]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5df52982]{display:none!important}.no-content[data-v-5df52982]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-5df52982]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-5df52982]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-5df52982]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-5df52982]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-5df52982]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-5df52982]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-5df52982],.btn[data-v-5df52982],button[data-v-5df52982]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5df52982],.btn-default[type=submit][data-v-5df52982],.btn.btn-primary[data-v-5df52982],.btn[type=submit][data-v-5df52982],button.btn-primary[data-v-5df52982],button[type=submit][data-v-5df52982]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5df52982],.btn-default .icon[data-v-5df52982],button .icon[data-v-5df52982]{margin-right:.5em}input[type=password][data-v-5df52982],input[type=text][data-v-5df52982]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5df52982]:focus,input[type=text][data-v-5df52982]:focus{border:1px solid #35b870}button[data-v-5df52982],input[data-v-5df52982]{outline:none}input[type=text][data-v-5df52982]:hover,textarea[data-v-5df52982]:hover{border:1px solid #9cdfb0}ul[data-v-5df52982]{margin:0;padding:0;list-style:none}a[data-v-5df52982]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5df52982]:hover{color:#35b870}[data-v-5df52982]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-5df52982]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-5df52982]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5df52982]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5df52982]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-5df52982] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-5df52982] .nav .path{cursor:pointer}.browser[data-v-5df52982] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-5df52982] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-5df52982]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-5df52982],input[type=number][data-v-5df52982],input[type=password][data-v-5df52982],input[type=search][data-v-5df52982],input[type=text][data-v-5df52982],input[type=time][data-v-5df52982]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-5df52982]:hover,input[type=number][data-v-5df52982]:hover,input[type=password][data-v-5df52982]:hover,input[type=search][data-v-5df52982]:hover,input[type=text][data-v-5df52982]:hover,input[type=time][data-v-5df52982]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-5df52982]:focus,input[type=number][data-v-5df52982]:focus,input[type=password][data-v-5df52982]:focus,input[type=search][data-v-5df52982]:focus,input[type=text][data-v-5df52982]:focus,input[type=time][data-v-5df52982]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-5df52982],input[type=number].with-icon[data-v-5df52982],input[type=password].with-icon[data-v-5df52982],input[type=search].with-icon[data-v-5df52982],input[type=text].with-icon[data-v-5df52982],input[type=time].with-icon[data-v-5df52982]{padding-left:.3em}input[type=search][data-v-5df52982],input[type=text][data-v-5df52982]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5df52982]{animation-fill-mode:both;animation-name:fadeIn-5df52982;-webkit-animation-name:fadeIn-5df52982}.fade-in[data-v-5df52982],.fade-out[data-v-5df52982]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5df52982]{animation-fill-mode:both;animation-name:fadeOut-5df52982;-webkit-animation-name:fadeOut-5df52982}@keyframes fadeIn-5df52982{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5df52982{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-5df52982]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-5df52982;-webkit-animation-name:glow-5df52982}.loop[data-v-5df52982]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-5df52982{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-5df52982]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5df52982]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5df52982]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.widget[data-v-5df52982]{height:calc(100% - 1em);background:#fff;border-radius:5px;display:flex;justify-content:center;align-content:center;position:relative;overflow:hidden;box-shadow:0 3px 3px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.08)}.col-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-462fad8c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-462fad8c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-462fad8c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-462fad8c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-462fad8c]:first-child{margin-left:26%!important}.col-offset-3[data-v-462fad8c]:not(first-child){margin-left:30%!important}.col-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-462fad8c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-462fad8c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-462fad8c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-462fad8c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-462fad8c]:first-child{margin-left:52%!important}.col-offset-6[data-v-462fad8c]:not(first-child){margin-left:56%!important}.col-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-462fad8c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-462fad8c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-462fad8c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-462fad8c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-462fad8c]:first-child{margin-left:78%!important}.col-offset-9[data-v-462fad8c]:not(first-child){margin-left:82%!important}.col-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-462fad8c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-462fad8c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-462fad8c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-462fad8c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-s-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-s-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-s-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-s-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-462fad8c]{display:none!important}.s-visible[data-v-462fad8c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-m-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-m-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-m-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-m-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-462fad8c]{display:none!important}.m-visible[data-v-462fad8c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-l-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-l-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-l-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-l-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-462fad8c]{display:none!important}.l-visible[data-v-462fad8c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-xl-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-xl-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-xl-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xl-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-462fad8c]{display:none!important}.xl-visible[data-v-462fad8c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-462fad8c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-462fad8c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-462fad8c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-462fad8c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-462fad8c]{margin-left:26%}.col-no-margin-xxl-3[data-v-462fad8c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-462fad8c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-462fad8c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-462fad8c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-462fad8c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-462fad8c]{margin-left:52%}.col-no-margin-xxl-6[data-v-462fad8c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-462fad8c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-462fad8c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-462fad8c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-462fad8c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-462fad8c]{margin-left:78%}.col-no-margin-xxl-9[data-v-462fad8c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-462fad8c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-462fad8c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-462fad8c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-462fad8c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-462fad8c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-462fad8c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-462fad8c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-462fad8c]{display:none!important}.xxl-visible[data-v-462fad8c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-462fad8c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-462fad8c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-462fad8c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-462fad8c]{display:none!important}}.vertical-center[data-v-462fad8c]{display:flex;align-items:center}.horizontal-center[data-v-462fad8c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-462fad8c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-462fad8c]{display:none!important}.no-content[data-v-462fad8c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-462fad8c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-462fad8c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-462fad8c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-462fad8c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-462fad8c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-462fad8c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-462fad8c],.btn[data-v-462fad8c],button[data-v-462fad8c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-462fad8c],.btn-default[type=submit][data-v-462fad8c],.btn.btn-primary[data-v-462fad8c],.btn[type=submit][data-v-462fad8c],button.btn-primary[data-v-462fad8c],button[type=submit][data-v-462fad8c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-462fad8c],.btn-default .icon[data-v-462fad8c],button .icon[data-v-462fad8c]{margin-right:.5em}input[type=password][data-v-462fad8c],input[type=text][data-v-462fad8c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-462fad8c]:focus,input[type=text][data-v-462fad8c]:focus{border:1px solid #35b870}button[data-v-462fad8c],input[data-v-462fad8c]{outline:none}input[type=text][data-v-462fad8c]:hover,textarea[data-v-462fad8c]:hover{border:1px solid #9cdfb0}ul[data-v-462fad8c]{margin:0;padding:0;list-style:none}a[data-v-462fad8c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-462fad8c]:hover{color:#35b870}[data-v-462fad8c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-462fad8c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-462fad8c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-462fad8c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-462fad8c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-462fad8c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-462fad8c] .nav .path{cursor:pointer}.browser[data-v-462fad8c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-462fad8c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-462fad8c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-462fad8c],input[type=number][data-v-462fad8c],input[type=password][data-v-462fad8c],input[type=search][data-v-462fad8c],input[type=text][data-v-462fad8c],input[type=time][data-v-462fad8c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-462fad8c]:hover,input[type=number][data-v-462fad8c]:hover,input[type=password][data-v-462fad8c]:hover,input[type=search][data-v-462fad8c]:hover,input[type=text][data-v-462fad8c]:hover,input[type=time][data-v-462fad8c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-462fad8c]:focus,input[type=number][data-v-462fad8c]:focus,input[type=password][data-v-462fad8c]:focus,input[type=search][data-v-462fad8c]:focus,input[type=text][data-v-462fad8c]:focus,input[type=time][data-v-462fad8c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-462fad8c],input[type=number].with-icon[data-v-462fad8c],input[type=password].with-icon[data-v-462fad8c],input[type=search].with-icon[data-v-462fad8c],input[type=text].with-icon[data-v-462fad8c],input[type=time].with-icon[data-v-462fad8c]{padding-left:.3em}input[type=search][data-v-462fad8c],input[type=text][data-v-462fad8c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-462fad8c]{animation-fill-mode:both;animation-name:fadeIn-462fad8c;-webkit-animation-name:fadeIn-462fad8c}.fade-in[data-v-462fad8c],.fade-out[data-v-462fad8c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-462fad8c]{animation-fill-mode:both;animation-name:fadeOut-462fad8c;-webkit-animation-name:fadeOut-462fad8c}@keyframes fadeIn-462fad8c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-462fad8c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-462fad8c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-462fad8c;-webkit-animation-name:glow-462fad8c}.loop[data-v-462fad8c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-462fad8c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-462fad8c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-462fad8c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-462fad8c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}@font-face{font-family:Lato Medium;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;src:url(/static/fonts/lato-medium.13fcde4c.woff2) format("woff2"),url(/static/fonts/lato-medium.b41c3821.woff) format("woff")}@font-face{font-family:Lato Medium;font-weight:400;font-style:italic;text-rendering:optimizeLegibility;src:url(/static/fonts/lato-medium-italic.1e312dd9.woff2) format("woff2"),url(/static/fonts/lato-medium-italic.1996cc15.woff) format("woff")}#dashboard[data-v-462fad8c]{width:100%;height:100%;display:flex;flex-direction:column;margin:0;padding:1em 1em 0 1em;background:url(/static/img/dashboard-bg-light.06da6eab.jpg);background-size:cover;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}#dashboard .blurred[data-v-462fad8c]{filter:blur(.075em)}html{overflow:auto!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/panel.2a411b59.css b/platypush/backend/http/webapp/dist/static/css/panel.2a411b59.css deleted file mode 100644 index c3407d6de1..0000000000 --- a/platypush/backend/http/webapp/dist/static/css/panel.2a411b59.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-871fbba0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-871fbba0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-871fbba0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-871fbba0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-871fbba0]:first-child{margin-left:26%!important}.col-offset-3[data-v-871fbba0]:not(first-child){margin-left:30%!important}.col-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-871fbba0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-871fbba0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-871fbba0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-871fbba0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-871fbba0]:first-child{margin-left:52%!important}.col-offset-6[data-v-871fbba0]:not(first-child){margin-left:56%!important}.col-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-871fbba0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-871fbba0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-871fbba0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-871fbba0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-871fbba0]:first-child{margin-left:78%!important}.col-offset-9[data-v-871fbba0]:not(first-child){margin-left:82%!important}.col-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-871fbba0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-871fbba0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-871fbba0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-871fbba0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-1[data-v-871fbba0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-2[data-v-871fbba0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-3[data-v-871fbba0]{margin-left:26%}.col-no-margin-s-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-4[data-v-871fbba0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-5[data-v-871fbba0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-6[data-v-871fbba0]{margin-left:52%}.col-no-margin-s-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-7[data-v-871fbba0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-8[data-v-871fbba0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-9[data-v-871fbba0]{margin-left:78%}.col-no-margin-s-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-10[data-v-871fbba0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-871fbba0]:first-child{margin-left:0}.col-offset-s-11[data-v-871fbba0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-871fbba0]{display:none!important}.s-visible[data-v-871fbba0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-1[data-v-871fbba0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-2[data-v-871fbba0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-3[data-v-871fbba0]{margin-left:26%}.col-no-margin-m-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-4[data-v-871fbba0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-5[data-v-871fbba0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-6[data-v-871fbba0]{margin-left:52%}.col-no-margin-m-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-7[data-v-871fbba0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-8[data-v-871fbba0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-9[data-v-871fbba0]{margin-left:78%}.col-no-margin-m-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-10[data-v-871fbba0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-871fbba0]:first-child{margin-left:0}.col-offset-m-11[data-v-871fbba0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-871fbba0]{display:none!important}.m-visible[data-v-871fbba0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-1[data-v-871fbba0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-2[data-v-871fbba0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-3[data-v-871fbba0]{margin-left:26%}.col-no-margin-l-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-4[data-v-871fbba0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-5[data-v-871fbba0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-6[data-v-871fbba0]{margin-left:52%}.col-no-margin-l-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-7[data-v-871fbba0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-8[data-v-871fbba0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-9[data-v-871fbba0]{margin-left:78%}.col-no-margin-l-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-10[data-v-871fbba0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-871fbba0]:first-child{margin-left:0}.col-offset-l-11[data-v-871fbba0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-871fbba0]{display:none!important}.l-visible[data-v-871fbba0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-1[data-v-871fbba0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-2[data-v-871fbba0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-3[data-v-871fbba0]{margin-left:26%}.col-no-margin-xl-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-4[data-v-871fbba0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-5[data-v-871fbba0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-6[data-v-871fbba0]{margin-left:52%}.col-no-margin-xl-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-7[data-v-871fbba0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-8[data-v-871fbba0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-9[data-v-871fbba0]{margin-left:78%}.col-no-margin-xl-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-10[data-v-871fbba0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xl-11[data-v-871fbba0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-871fbba0]{display:none!important}.xl-visible[data-v-871fbba0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-871fbba0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-871fbba0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-871fbba0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-871fbba0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-871fbba0]{margin-left:26%}.col-no-margin-xxl-3[data-v-871fbba0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-871fbba0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-871fbba0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-871fbba0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-871fbba0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-871fbba0]{margin-left:52%}.col-no-margin-xxl-6[data-v-871fbba0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-871fbba0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-871fbba0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-871fbba0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-871fbba0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-871fbba0]{margin-left:78%}.col-no-margin-xxl-9[data-v-871fbba0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-871fbba0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-871fbba0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-871fbba0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-871fbba0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-871fbba0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-871fbba0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-871fbba0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-871fbba0]{display:none!important}.xxl-visible[data-v-871fbba0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-871fbba0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-871fbba0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-871fbba0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-871fbba0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-871fbba0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-871fbba0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-871fbba0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-871fbba0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-871fbba0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-871fbba0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-871fbba0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-871fbba0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-871fbba0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-871fbba0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-871fbba0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-871fbba0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-871fbba0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-871fbba0]{display:none!important}}.vertical-center[data-v-871fbba0]{display:flex;align-items:center}.horizontal-center[data-v-871fbba0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-871fbba0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-871fbba0]{display:none!important}.no-content[data-v-871fbba0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-871fbba0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-871fbba0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-871fbba0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-871fbba0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-871fbba0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-871fbba0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-871fbba0],.btn[data-v-871fbba0],button[data-v-871fbba0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-871fbba0],.btn-default[type=submit][data-v-871fbba0],.btn.btn-primary[data-v-871fbba0],.btn[type=submit][data-v-871fbba0],button.btn-primary[data-v-871fbba0],button[type=submit][data-v-871fbba0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-871fbba0],.btn-default .icon[data-v-871fbba0],button .icon[data-v-871fbba0]{margin-right:.5em}input[type=password][data-v-871fbba0],input[type=text][data-v-871fbba0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-871fbba0]:focus,input[type=text][data-v-871fbba0]:focus{border:1px solid #35b870}button[data-v-871fbba0],input[data-v-871fbba0]{outline:none}input[type=text][data-v-871fbba0]:hover,textarea[data-v-871fbba0]:hover{border:1px solid #9cdfb0}ul[data-v-871fbba0]{margin:0;padding:0;list-style:none}a[data-v-871fbba0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-871fbba0]:hover{color:#35b870}[data-v-871fbba0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-871fbba0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-871fbba0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-871fbba0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-871fbba0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-871fbba0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-871fbba0] .nav .path{cursor:pointer}.browser[data-v-871fbba0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-871fbba0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-871fbba0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-871fbba0],input[type=number][data-v-871fbba0],input[type=password][data-v-871fbba0],input[type=search][data-v-871fbba0],input[type=text][data-v-871fbba0],input[type=time][data-v-871fbba0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-871fbba0]:hover,input[type=number][data-v-871fbba0]:hover,input[type=password][data-v-871fbba0]:hover,input[type=search][data-v-871fbba0]:hover,input[type=text][data-v-871fbba0]:hover,input[type=time][data-v-871fbba0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-871fbba0]:focus,input[type=number][data-v-871fbba0]:focus,input[type=password][data-v-871fbba0]:focus,input[type=search][data-v-871fbba0]:focus,input[type=text][data-v-871fbba0]:focus,input[type=time][data-v-871fbba0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-871fbba0],input[type=number].with-icon[data-v-871fbba0],input[type=password].with-icon[data-v-871fbba0],input[type=search].with-icon[data-v-871fbba0],input[type=text].with-icon[data-v-871fbba0],input[type=time].with-icon[data-v-871fbba0]{padding-left:.3em}input[type=search][data-v-871fbba0],input[type=text][data-v-871fbba0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-871fbba0]{animation-fill-mode:both;animation-name:fadeIn-871fbba0;-webkit-animation-name:fadeIn-871fbba0}.fade-in[data-v-871fbba0],.fade-out[data-v-871fbba0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-871fbba0]{animation-fill-mode:both;animation-name:fadeOut-871fbba0;-webkit-animation-name:fadeOut-871fbba0}@keyframes fadeIn-871fbba0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-871fbba0{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-871fbba0]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-871fbba0;-webkit-animation-name:glow-871fbba0}.loop[data-v-871fbba0]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-871fbba0{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-871fbba0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-871fbba0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-871fbba0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-871fbba0]{height:100%;display:flex}@media screen and (max-width:calc(769px - 1px)){main[data-v-871fbba0]{flex-direction:column}}main .canvas[data-v-871fbba0]{display:flex;flex-grow:100;background:#e0eae8;overflow:auto;z-index:1}main .canvas .panel[data-v-871fbba0]{width:100%;height:100%;display:flex;margin:0!important;box-shadow:none!important;overflow:auto}html{overflow:auto!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/panel.486b493e.css b/platypush/backend/http/webapp/dist/static/css/panel.486b493e.css new file mode 100644 index 0000000000..9b3d90740b --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/panel.486b493e.css @@ -0,0 +1 @@ +.col-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-56cac3a6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-56cac3a6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-56cac3a6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-56cac3a6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-56cac3a6]:first-child{margin-left:26%!important}.col-offset-3[data-v-56cac3a6]:not(first-child){margin-left:30%!important}.col-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-56cac3a6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-56cac3a6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-56cac3a6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-56cac3a6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-56cac3a6]:first-child{margin-left:52%!important}.col-offset-6[data-v-56cac3a6]:not(first-child){margin-left:56%!important}.col-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-56cac3a6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-56cac3a6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-56cac3a6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-56cac3a6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-56cac3a6]:first-child{margin-left:78%!important}.col-offset-9[data-v-56cac3a6]:not(first-child){margin-left:82%!important}.col-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-56cac3a6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-56cac3a6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-56cac3a6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-56cac3a6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-1[data-v-56cac3a6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-2[data-v-56cac3a6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-3[data-v-56cac3a6]{margin-left:26%}.col-no-margin-s-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-4[data-v-56cac3a6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-5[data-v-56cac3a6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-6[data-v-56cac3a6]{margin-left:52%}.col-no-margin-s-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-7[data-v-56cac3a6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-8[data-v-56cac3a6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-9[data-v-56cac3a6]{margin-left:78%}.col-no-margin-s-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-10[data-v-56cac3a6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-s-11[data-v-56cac3a6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-56cac3a6]{display:none!important}.s-visible[data-v-56cac3a6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-1[data-v-56cac3a6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-2[data-v-56cac3a6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-3[data-v-56cac3a6]{margin-left:26%}.col-no-margin-m-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-4[data-v-56cac3a6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-5[data-v-56cac3a6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-6[data-v-56cac3a6]{margin-left:52%}.col-no-margin-m-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-7[data-v-56cac3a6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-8[data-v-56cac3a6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-9[data-v-56cac3a6]{margin-left:78%}.col-no-margin-m-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-10[data-v-56cac3a6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-m-11[data-v-56cac3a6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-56cac3a6]{display:none!important}.m-visible[data-v-56cac3a6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-1[data-v-56cac3a6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-2[data-v-56cac3a6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-3[data-v-56cac3a6]{margin-left:26%}.col-no-margin-l-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-4[data-v-56cac3a6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-5[data-v-56cac3a6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-6[data-v-56cac3a6]{margin-left:52%}.col-no-margin-l-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-7[data-v-56cac3a6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-8[data-v-56cac3a6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-9[data-v-56cac3a6]{margin-left:78%}.col-no-margin-l-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-10[data-v-56cac3a6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-l-11[data-v-56cac3a6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-56cac3a6]{display:none!important}.l-visible[data-v-56cac3a6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-1[data-v-56cac3a6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-2[data-v-56cac3a6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-3[data-v-56cac3a6]{margin-left:26%}.col-no-margin-xl-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-4[data-v-56cac3a6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-5[data-v-56cac3a6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-6[data-v-56cac3a6]{margin-left:52%}.col-no-margin-xl-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-7[data-v-56cac3a6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-8[data-v-56cac3a6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-9[data-v-56cac3a6]{margin-left:78%}.col-no-margin-xl-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-10[data-v-56cac3a6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xl-11[data-v-56cac3a6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-56cac3a6]{display:none!important}.xl-visible[data-v-56cac3a6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-56cac3a6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-56cac3a6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-56cac3a6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-56cac3a6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-56cac3a6]{margin-left:26%}.col-no-margin-xxl-3[data-v-56cac3a6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-56cac3a6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-56cac3a6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-56cac3a6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-56cac3a6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-56cac3a6]{margin-left:52%}.col-no-margin-xxl-6[data-v-56cac3a6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-56cac3a6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-56cac3a6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-56cac3a6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-56cac3a6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-56cac3a6]{margin-left:78%}.col-no-margin-xxl-9[data-v-56cac3a6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-56cac3a6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-56cac3a6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-56cac3a6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-56cac3a6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-56cac3a6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-56cac3a6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-56cac3a6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-56cac3a6]{display:none!important}.xxl-visible[data-v-56cac3a6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-56cac3a6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-56cac3a6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-56cac3a6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-56cac3a6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-56cac3a6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-56cac3a6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-56cac3a6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-56cac3a6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-56cac3a6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-56cac3a6]{display:none!important}}.vertical-center[data-v-56cac3a6]{display:flex;align-items:center}.horizontal-center[data-v-56cac3a6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-56cac3a6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-56cac3a6]{display:none!important}.no-content[data-v-56cac3a6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-56cac3a6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-56cac3a6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-56cac3a6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-56cac3a6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-56cac3a6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-56cac3a6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-56cac3a6],.btn[data-v-56cac3a6],button[data-v-56cac3a6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-56cac3a6],.btn-default[type=submit][data-v-56cac3a6],.btn.btn-primary[data-v-56cac3a6],.btn[type=submit][data-v-56cac3a6],button.btn-primary[data-v-56cac3a6],button[type=submit][data-v-56cac3a6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-56cac3a6]:hover,.btn[data-v-56cac3a6]:hover,button[data-v-56cac3a6]:hover{color:#35b870}.btn .icon[data-v-56cac3a6],.btn-default .icon[data-v-56cac3a6],button .icon[data-v-56cac3a6]{margin-right:.5em}.btn-default[data-v-56cac3a6]:disabled,.btn-default[disabled][data-v-56cac3a6],.btn[data-v-56cac3a6]:disabled,.btn[disabled][data-v-56cac3a6],button[data-v-56cac3a6]:disabled,button[disabled][data-v-56cac3a6]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-56cac3a6]{cursor:grab!important}.dragged[data-v-56cac3a6]{opacity:.5!important}input[type=password][data-v-56cac3a6],input[type=text][data-v-56cac3a6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-56cac3a6]:focus,input[type=text][data-v-56cac3a6]:focus{border:1px solid #35b870}button[data-v-56cac3a6],input[data-v-56cac3a6]{outline:none}input[type=text][data-v-56cac3a6]:hover,textarea[data-v-56cac3a6]:hover{border:1px solid #9cdfb0}ul[data-v-56cac3a6]{margin:0;padding:0;list-style:none}a[data-v-56cac3a6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-56cac3a6]:hover{color:#35b870}[data-v-56cac3a6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-56cac3a6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-56cac3a6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-56cac3a6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-56cac3a6]{color:#ad1717}body[data-v-56cac3a6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-56cac3a6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-56cac3a6] .nav .path{cursor:pointer}.browser[data-v-56cac3a6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-56cac3a6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-56cac3a6]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-56cac3a6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-56cac3a6],input[type=number][data-v-56cac3a6],input[type=password][data-v-56cac3a6],input[type=search][data-v-56cac3a6],input[type=text][data-v-56cac3a6],input[type=time][data-v-56cac3a6]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-56cac3a6]:hover,input[type=number][data-v-56cac3a6]:hover,input[type=password][data-v-56cac3a6]:hover,input[type=search][data-v-56cac3a6]:hover,input[type=text][data-v-56cac3a6]:hover,input[type=time][data-v-56cac3a6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-56cac3a6]:focus,input[type=number][data-v-56cac3a6]:focus,input[type=password][data-v-56cac3a6]:focus,input[type=search][data-v-56cac3a6]:focus,input[type=text][data-v-56cac3a6]:focus,input[type=time][data-v-56cac3a6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-56cac3a6],input[type=number].with-icon[data-v-56cac3a6],input[type=password].with-icon[data-v-56cac3a6],input[type=search].with-icon[data-v-56cac3a6],input[type=text].with-icon[data-v-56cac3a6],input[type=time].with-icon[data-v-56cac3a6]{padding-left:.3em}input[type=search][data-v-56cac3a6],input[type=text][data-v-56cac3a6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-56cac3a6]{animation-fill-mode:both;animation-name:fadeIn-56cac3a6;-webkit-animation-name:fadeIn-56cac3a6}.fade-in[data-v-56cac3a6],.fade-out[data-v-56cac3a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-56cac3a6]{animation-fill-mode:both;animation-name:fadeOut-56cac3a6;-webkit-animation-name:fadeOut-56cac3a6}.expand[data-v-56cac3a6]{animation-fill-mode:both;animation-name:expand-56cac3a6;-webkit-animation-name:expand-56cac3a6}.expand[data-v-56cac3a6],.shrink[data-v-56cac3a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-56cac3a6]{animation-fill-mode:both;animation-name:shrink-56cac3a6;-webkit-animation-name:shrink-56cac3a6}.fold[data-v-56cac3a6]{animation-fill-mode:both;animation-name:fold-56cac3a6;-webkit-animation-name:fold-56cac3a6}.fold[data-v-56cac3a6],.unfold[data-v-56cac3a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-56cac3a6]{animation-fill-mode:both;animation-name:unfold-56cac3a6;-webkit-animation-name:unfold-56cac3a6}.dim[data-v-56cac3a6]{animation-fill-mode:both;animation-name:dim-56cac3a6;-webkit-animation-name:dim-56cac3a6}.brighten[data-v-56cac3a6],.dim[data-v-56cac3a6]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-56cac3a6]{animation-fill-mode:both;animation-name:brighten-56cac3a6;-webkit-animation-name:brighten-56cac3a6}@keyframes fadeIn-56cac3a6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-56cac3a6{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-56cac3a6{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-56cac3a6{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-56cac3a6{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-56cac3a6{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-56cac3a6{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-56cac3a6{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-56cac3a6]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-56cac3a6;-webkit-animation-name:glow-56cac3a6}.loop[data-v-56cac3a6]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-56cac3a6{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-56cac3a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-56cac3a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-56cac3a6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-56cac3a6]{height:100%;display:flex}@media screen and (max-width:calc(769px - 1px)){main[data-v-56cac3a6]{flex-direction:column}}main .canvas[data-v-56cac3a6]{display:flex;flex-grow:100;background:#e0eae8;overflow:auto;z-index:1}main .canvas .panel[data-v-56cac3a6]{width:100%;height:100%;display:flex;margin:0!important;box-shadow:none!important;overflow:auto}html{overflow:auto!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/plugin.7646c315.css b/platypush/backend/http/webapp/dist/static/css/plugin.12cf4736.css similarity index 78% rename from platypush/backend/http/webapp/dist/static/css/plugin.7646c315.css rename to platypush/backend/http/webapp/dist/static/css/plugin.12cf4736.css index c9d01725ca..3a8d9248a1 100644 --- a/platypush/backend/http/webapp/dist/static/css/plugin.7646c315.css +++ b/platypush/backend/http/webapp/dist/static/css/plugin.12cf4736.css @@ -1 +1 @@ -.col-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e339182c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e339182c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e339182c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e339182c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e339182c]:first-child{margin-left:26%!important}.col-offset-3[data-v-e339182c]:not(first-child){margin-left:30%!important}.col-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e339182c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e339182c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e339182c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e339182c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e339182c]:first-child{margin-left:52%!important}.col-offset-6[data-v-e339182c]:not(first-child){margin-left:56%!important}.col-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e339182c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e339182c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e339182c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e339182c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e339182c]:first-child{margin-left:78%!important}.col-offset-9[data-v-e339182c]:not(first-child){margin-left:82%!important}.col-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e339182c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e339182c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e339182c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e339182c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-3[data-v-e339182c]{margin-left:26%}.col-no-margin-s-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-6[data-v-e339182c]{margin-left:52%}.col-no-margin-s-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-9[data-v-e339182c]{margin-left:78%}.col-no-margin-s-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e339182c]{display:none!important}.s-visible[data-v-e339182c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-3[data-v-e339182c]{margin-left:26%}.col-no-margin-m-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-6[data-v-e339182c]{margin-left:52%}.col-no-margin-m-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-9[data-v-e339182c]{margin-left:78%}.col-no-margin-m-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e339182c]{display:none!important}.m-visible[data-v-e339182c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-3[data-v-e339182c]{margin-left:26%}.col-no-margin-l-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-6[data-v-e339182c]{margin-left:52%}.col-no-margin-l-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-9[data-v-e339182c]{margin-left:78%}.col-no-margin-l-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e339182c]{display:none!important}.l-visible[data-v-e339182c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-3[data-v-e339182c]{margin-left:26%}.col-no-margin-xl-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-6[data-v-e339182c]{margin-left:52%}.col-no-margin-xl-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-9[data-v-e339182c]{margin-left:78%}.col-no-margin-xl-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e339182c]{display:none!important}.xl-visible[data-v-e339182c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e339182c]{margin-left:26%}.col-no-margin-xxl-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e339182c]{margin-left:52%}.col-no-margin-xxl-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e339182c]{margin-left:78%}.col-no-margin-xxl-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e339182c]{display:none!important}.xxl-visible[data-v-e339182c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e339182c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e339182c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e339182c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e339182c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e339182c]{display:none!important}}.vertical-center[data-v-e339182c]{display:flex;align-items:center}.horizontal-center[data-v-e339182c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e339182c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e339182c]{display:none!important}.no-content[data-v-e339182c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e339182c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e339182c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e339182c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e339182c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e339182c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e339182c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e339182c],.btn[data-v-e339182c],button[data-v-e339182c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e339182c],.btn-default[type=submit][data-v-e339182c],.btn.btn-primary[data-v-e339182c],.btn[type=submit][data-v-e339182c],button.btn-primary[data-v-e339182c],button[type=submit][data-v-e339182c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-e339182c],.btn-default .icon[data-v-e339182c],button .icon[data-v-e339182c]{margin-right:.5em}input[type=password][data-v-e339182c],input[type=text][data-v-e339182c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e339182c]:focus,input[type=text][data-v-e339182c]:focus{border:1px solid #35b870}button[data-v-e339182c],input[data-v-e339182c]{outline:none}input[type=text][data-v-e339182c]:hover,textarea[data-v-e339182c]:hover{border:1px solid #9cdfb0}ul[data-v-e339182c]{margin:0;padding:0;list-style:none}a[data-v-e339182c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e339182c]:hover{color:#35b870}[data-v-e339182c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e339182c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e339182c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e339182c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-e339182c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e339182c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e339182c] .nav .path{cursor:pointer}.browser[data-v-e339182c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e339182c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-e339182c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e339182c],input[type=number][data-v-e339182c],input[type=password][data-v-e339182c],input[type=search][data-v-e339182c],input[type=text][data-v-e339182c],input[type=time][data-v-e339182c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-e339182c]:hover,input[type=number][data-v-e339182c]:hover,input[type=password][data-v-e339182c]:hover,input[type=search][data-v-e339182c]:hover,input[type=text][data-v-e339182c]:hover,input[type=time][data-v-e339182c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e339182c]:focus,input[type=number][data-v-e339182c]:focus,input[type=password][data-v-e339182c]:focus,input[type=search][data-v-e339182c]:focus,input[type=text][data-v-e339182c]:focus,input[type=time][data-v-e339182c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e339182c],input[type=number].with-icon[data-v-e339182c],input[type=password].with-icon[data-v-e339182c],input[type=search].with-icon[data-v-e339182c],input[type=text].with-icon[data-v-e339182c],input[type=time].with-icon[data-v-e339182c]{padding-left:.3em}input[type=search][data-v-e339182c],input[type=text][data-v-e339182c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e339182c]{animation-fill-mode:both;animation-name:fadeIn-e339182c;-webkit-animation-name:fadeIn-e339182c}.fade-in[data-v-e339182c],.fade-out[data-v-e339182c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e339182c]{animation-fill-mode:both;animation-name:fadeOut-e339182c;-webkit-animation-name:fadeOut-e339182c}@keyframes fadeIn-e339182c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e339182c{0%{opacity:1}to{opacity:0;display:none}}.glow[data-v-e339182c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-e339182c;-webkit-animation-name:glow-e339182c}.loop[data-v-e339182c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-e339182c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-e339182c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e339182c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e339182c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-e339182c]{height:100%;display:flex}@media screen and (max-width:769px){main[data-v-e339182c]{flex-direction:column}}main .canvas[data-v-e339182c]{display:flex;flex-grow:100;background:#e0eae8;overflow:auto}main .canvas .panel[data-v-e339182c]{width:100%;height:100%;display:flex;margin:0!important;box-shadow:none!important;overflow:auto}html{overflow:auto!important} \ No newline at end of file +.col-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e339182c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e339182c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e339182c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e339182c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e339182c]:first-child{margin-left:26%!important}.col-offset-3[data-v-e339182c]:not(first-child){margin-left:30%!important}.col-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e339182c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e339182c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e339182c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e339182c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e339182c]:first-child{margin-left:52%!important}.col-offset-6[data-v-e339182c]:not(first-child){margin-left:56%!important}.col-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e339182c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e339182c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e339182c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e339182c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e339182c]:first-child{margin-left:78%!important}.col-offset-9[data-v-e339182c]:not(first-child){margin-left:82%!important}.col-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e339182c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e339182c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e339182c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e339182c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-3[data-v-e339182c]{margin-left:26%}.col-no-margin-s-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-6[data-v-e339182c]{margin-left:52%}.col-no-margin-s-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-9[data-v-e339182c]{margin-left:78%}.col-no-margin-s-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-s-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e339182c]{display:none!important}.s-visible[data-v-e339182c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-3[data-v-e339182c]{margin-left:26%}.col-no-margin-m-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-6[data-v-e339182c]{margin-left:52%}.col-no-margin-m-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-9[data-v-e339182c]{margin-left:78%}.col-no-margin-m-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-m-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e339182c]{display:none!important}.m-visible[data-v-e339182c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-3[data-v-e339182c]{margin-left:26%}.col-no-margin-l-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-6[data-v-e339182c]{margin-left:52%}.col-no-margin-l-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-9[data-v-e339182c]{margin-left:78%}.col-no-margin-l-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-l-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e339182c]{display:none!important}.l-visible[data-v-e339182c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-3[data-v-e339182c]{margin-left:26%}.col-no-margin-xl-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-6[data-v-e339182c]{margin-left:52%}.col-no-margin-xl-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-9[data-v-e339182c]{margin-left:78%}.col-no-margin-xl-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-xl-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e339182c]{display:none!important}.xl-visible[data-v-e339182c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e339182c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e339182c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e339182c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e339182c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e339182c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e339182c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e339182c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e339182c]{margin-left:26%}.col-no-margin-xxl-3[data-v-e339182c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e339182c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e339182c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e339182c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e339182c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e339182c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e339182c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e339182c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e339182c]{margin-left:52%}.col-no-margin-xxl-6[data-v-e339182c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e339182c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e339182c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e339182c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e339182c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e339182c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e339182c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e339182c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e339182c]{margin-left:78%}.col-no-margin-xxl-9[data-v-e339182c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e339182c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e339182c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e339182c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e339182c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e339182c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e339182c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e339182c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e339182c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e339182c]{display:none!important}.xxl-visible[data-v-e339182c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e339182c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e339182c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e339182c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e339182c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e339182c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e339182c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e339182c]{display:none!important}}.vertical-center[data-v-e339182c]{display:flex;align-items:center}.horizontal-center[data-v-e339182c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e339182c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e339182c]{display:none!important}.no-content[data-v-e339182c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e339182c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e339182c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e339182c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e339182c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e339182c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e339182c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e339182c],.btn[data-v-e339182c],button[data-v-e339182c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e339182c],.btn-default[type=submit][data-v-e339182c],.btn.btn-primary[data-v-e339182c],.btn[type=submit][data-v-e339182c],button.btn-primary[data-v-e339182c],button[type=submit][data-v-e339182c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn-default[data-v-e339182c]:hover,.btn[data-v-e339182c]:hover,button[data-v-e339182c]:hover{color:#35b870}.btn .icon[data-v-e339182c],.btn-default .icon[data-v-e339182c],button .icon[data-v-e339182c]{margin-right:.5em}.btn-default[data-v-e339182c]:disabled,.btn-default[disabled][data-v-e339182c],.btn[data-v-e339182c]:disabled,.btn[disabled][data-v-e339182c],button[data-v-e339182c]:disabled,button[disabled][data-v-e339182c]{background:none!important;color:#9b9b9b!important;cursor:not-allowed}[draggable][data-v-e339182c]{cursor:grab!important}.dragged[data-v-e339182c]{opacity:.5!important}input[type=password][data-v-e339182c],input[type=text][data-v-e339182c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e339182c]:focus,input[type=text][data-v-e339182c]:focus{border:1px solid #35b870}button[data-v-e339182c],input[data-v-e339182c]{outline:none}input[type=text][data-v-e339182c]:hover,textarea[data-v-e339182c]:hover{border:1px solid #9cdfb0}ul[data-v-e339182c]{margin:0;padding:0;list-style:none}a[data-v-e339182c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e339182c]:hover{color:#35b870}[data-v-e339182c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e339182c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e339182c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e339182c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}.text-danger[data-v-e339182c]{color:#ad1717}body[data-v-e339182c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e339182c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e339182c] .nav .path{cursor:pointer}.browser[data-v-e339182c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e339182c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}code[data-v-e339182c]{font-family:Hack,Fira Code,Noto Sans Mono,Ubuntu Mono,"Recursive",Inconsolata,Consolas,Courier New,monospace}.input-icon[data-v-e339182c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e339182c],input[type=number][data-v-e339182c],input[type=password][data-v-e339182c],input[type=search][data-v-e339182c],input[type=text][data-v-e339182c],input[type=time][data-v-e339182c]{border:1px solid #ddd;border-radius:1em;padding:.25em}input[type=datetime-local][data-v-e339182c]:hover,input[type=number][data-v-e339182c]:hover,input[type=password][data-v-e339182c]:hover,input[type=search][data-v-e339182c]:hover,input[type=text][data-v-e339182c]:hover,input[type=time][data-v-e339182c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e339182c]:focus,input[type=number][data-v-e339182c]:focus,input[type=password][data-v-e339182c]:focus,input[type=search][data-v-e339182c]:focus,input[type=text][data-v-e339182c]:focus,input[type=time][data-v-e339182c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e339182c],input[type=number].with-icon[data-v-e339182c],input[type=password].with-icon[data-v-e339182c],input[type=search].with-icon[data-v-e339182c],input[type=text].with-icon[data-v-e339182c],input[type=time].with-icon[data-v-e339182c]{padding-left:.3em}input[type=search][data-v-e339182c],input[type=text][data-v-e339182c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e339182c]{animation-fill-mode:both;animation-name:fadeIn-e339182c;-webkit-animation-name:fadeIn-e339182c}.fade-in[data-v-e339182c],.fade-out[data-v-e339182c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e339182c]{animation-fill-mode:both;animation-name:fadeOut-e339182c;-webkit-animation-name:fadeOut-e339182c}.expand[data-v-e339182c]{animation-fill-mode:both;animation-name:expand-e339182c;-webkit-animation-name:expand-e339182c}.expand[data-v-e339182c],.shrink[data-v-e339182c]{animation-duration:.5s;-webkit-animation-duration:.5s}.shrink[data-v-e339182c]{animation-fill-mode:both;animation-name:shrink-e339182c;-webkit-animation-name:shrink-e339182c}.fold[data-v-e339182c]{animation-fill-mode:both;animation-name:fold-e339182c;-webkit-animation-name:fold-e339182c}.fold[data-v-e339182c],.unfold[data-v-e339182c]{animation-duration:.5s;-webkit-animation-duration:.5s}.unfold[data-v-e339182c]{animation-fill-mode:both;animation-name:unfold-e339182c;-webkit-animation-name:unfold-e339182c}.dim[data-v-e339182c]{animation-fill-mode:both;animation-name:dim-e339182c;-webkit-animation-name:dim-e339182c}.brighten[data-v-e339182c],.dim[data-v-e339182c]{animation-duration:.5s;-webkit-animation-duration:.5s}.brighten[data-v-e339182c]{animation-fill-mode:both;animation-name:brighten-e339182c;-webkit-animation-name:brighten-e339182c}@keyframes fadeIn-e339182c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e339182c{0%{opacity:1}to{opacity:0;display:none}}@keyframes expand-e339182c{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes shrink-e339182c{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes fold-e339182c{0%{transform:scale(1)}to{transform:scaleY(0)}}@keyframes unfold-e339182c{0%{transform:scaleY(0)}to{transform:scale(1)}}@keyframes dim-e339182c{0%{filter:brightness(1)}to{filter:brightness(.5)}}@keyframes brighten-e339182c{0%{filter:brightness(.5)}to{filter:brightness(1)}}.glow[data-v-e339182c]{animation-duration:2s;-webkit-animation-duration:2s;animation-fill-mode:both;animation-name:glow-e339182c;-webkit-animation-name:glow-e339182c}.loop[data-v-e339182c]{animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}@keyframes glow-e339182c{0%{opacity:1;box-shadow:0 0 5px #fff}10%{opacity:.9;box-shadow:0 0 10px #32b646}20%{opacity:.8;box-shadow:0 0 20px #32b646}30%{opacity:.7;box-shadow:0 0 30px #32b646}40%{opacity:.6;box-shadow:0 0 40px #32b646}50%{opacity:.5;box-shadow:0 0 50px #32b646}60%{opacity:.6;box-shadow:0 0 40px #32b646}70%{opacity:.7;box-shadow:0 0 30px #32b646}80%{opacity:.8;box-shadow:0 0 20px #32b646}90%{opacity:.9;box-shadow:0 0 10px #32b646}to{opacity:1;box-shadow:0 0 5px #fff}}.fa.fa-kodi[data-v-e339182c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e339182c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e339182c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-e339182c]{height:100%;display:flex}@media screen and (max-width:769px){main[data-v-e339182c]{flex-direction:column}}main .canvas[data-v-e339182c]{display:flex;flex-grow:100;background:#e0eae8;overflow:auto}main .canvas .panel[data-v-e339182c]{width:100%;height:100%;display:flex;margin:0!important;box-shadow:none!important;overflow:auto}html{overflow:auto!important} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1019.d219f976.js b/platypush/backend/http/webapp/dist/static/js/1019.d219f976.js new file mode 100644 index 0000000000..f609d73506 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1019.d219f976.js @@ -0,0 +1,2 @@ +"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1019],{1080:function(e,t,n){n.r(t),n.d(t,{default:function(){return Gn}});var a=n(6252),i=n(3577),s=n(9963);const o=e=>((0,a.dD)("data-v-74ca2010"),e=e(),(0,a.Cn)(),e),r={class:"actions-list"},l={key:0,class:"indent-spacers"},d=o((()=>(0,a._)("div",{class:"left side"},null,-1))),c=o((()=>(0,a._)("div",{class:"right side"},null,-1))),u=[d,c],p={key:0,class:"row item action add-action-container"},h={key:1,class:"add-buttons-expander"},g={key:2,class:"extra-add-buttons fade-in"},m={key:0,class:"row item action add-return-container"},v={key:1,class:"row item action add-if-container"},y={key:2,class:"row item action add-else-container"},f={key:3,class:"row item action add-for-container"},w={key:4,class:"row item action add-while-container"},b={key:5,class:"row item action add-break-container"},D={key:6,class:"row item action add-continue-container"},k={key:7,class:"row item action add-set-container"};function x(e,t,n,o,d,c){const x=(0,a.up)("ConditionBlock"),C=(0,a.up)("LoopBlock"),_=(0,a.up)("SetVariablesTile"),$=(0,a.up)("BreakTile"),B=(0,a.up)("ContinueTile"),E=(0,a.up)("ReturnTile"),O=(0,a.up)("ActionsListItem"),T=(0,a.up)("ActionTile"),I=(0,a.up)("ListItem"),S=(0,a.up)("AddTile");return(0,a.wg)(),(0,a.iD)("div",r,[n.indent>0?((0,a.wg)(),(0,a.iD)("div",l,[(0,a._)("div",{class:"indent-spacer",onClick:t[0]||(t[0]=(...e)=>c.onCollapse&&c.onCollapse(...e))},u)])):(0,a.kq)("",!0),(0,a._)("div",{class:(0,i.C_)(["actions",{dragging:c.isDragging}])},[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(c.visibleActions,((i,s)=>((0,a.wg)(),(0,a.iD)("div",{class:"row item action",key:s},[c.conditions[s]?((0,a.wg)(),(0,a.j4)(x,(0,a.dG)({key:0,ref_for:!0},c.componentsData[s].props,(0,a.mx)(c.componentsData[s].on),{collapsed:c.collapsedBlocks[s],dragging:c.isDragging,onAddElse:c.addElse}),null,16,["collapsed","dragging","onAddElse"])):c.elses[s]?((0,a.wg)(),(0,a.j4)(x,(0,a.dG)({key:1,ref_for:!0},c.componentsData[s].props,(0,a.mx)(c.componentsData[s].on),{collapsed:c.collapsedBlocks[s],dragging:c.isDragging,"is-else":!0}),null,16,["collapsed","dragging"])):c.loops[s]?((0,a.wg)(),(0,a.j4)(C,(0,a.dG)({key:2,ref_for:!0},c.componentsData[s].props,(0,a.mx)(c.componentsData[s].on),{collapsed:c.collapsedBlocks[s],dragging:c.isDragging}),null,16,["collapsed","dragging"])):c.sets[s]?((0,a.wg)(),(0,a.j4)(_,(0,a.dG)({key:3,ref_for:!0},c.componentsData[s].props,(0,a.mx)(c.componentsData[s].on),{collapsed:c.collapsedBlocks[s],dragging:c.isDragging}),null,16,["collapsed","dragging"])):e.isBreak(i)?((0,a.wg)(),(0,a.j4)($,{key:4,active:c.isDragging,readOnly:n.readOnly,spacerTop:c.componentsData[s].props.spacerTop,onDelete:e=>c.deleteAction(s)},null,8,["active","readOnly","spacerTop","onDelete"])):e.isContinue(i)?((0,a.wg)(),(0,a.j4)(B,{key:5,active:c.isDragging,readOnly:n.readOnly,spacerTop:c.componentsData[s].props.spacerTop,onDelete:e=>c.deleteAction(s)},null,8,["active","readOnly","spacerTop","onDelete"])):e.isReturn(i)?((0,a.wg)(),(0,a.j4)(E,(0,a.dG)({key:6,ref_for:!0},c.componentsData[s].props,{value:c.returnValue,onChange:t[1]||(t[1]=e=>c.editReturn(e)),onDelete:e=>c.deleteAction(s)}),null,16,["value","onDelete"])):e.isAction(i)&&!n.collapsed?((0,a.wg)(),(0,a.j4)(O,(0,a.dG)({key:7,ref_for:!0},c.componentsData[s].props,(0,a.mx)(c.componentsData[s].on)),null,16)):(0,a.kq)("",!0)])))),128)),c.visibleAddButtons.action?((0,a.wg)(),(0,a.iD)("div",p,[(0,a.Wm)(I,{active:c.isDragging,readOnly:!1,spacerBottom:!1,spacerTop:!d.newValue.length,value:d.newAction,onDrop:t[2]||(t[2]=e=>c.onDrop(0,e))},{default:(0,a.w5)((()=>[(0,a.Wm)(T,{value:d.newAction,context:c.contexts[Object.keys(c.contexts).length-1],draggable:!1,onInput:c.addAction},null,8,["value","context","onInput"])])),_:1},8,["active","spacerTop","value"])])):(0,a.kq)("",!0),c.showAddButtonsExpander?((0,a.wg)(),(0,a.iD)("div",h,[(0,a._)("button",{onClick:t[3]||(t[3]=(0,s.iM)((e=>d.collapseAddButtons=!d.collapseAddButtons),["stop","prevent"]))},[(0,a._)("i",{class:(0,i.C_)(["fas",d.collapseAddButtons?"fa-angle-down":"fa-angle-up"])},null,2)])])):(0,a.kq)("",!0),c.showAddButtons?((0,a.wg)(),(0,a.iD)("div",g,[c.visibleAddButtons.return?((0,a.wg)(),(0,a.iD)("div",m,[(0,a.Wm)(S,{icon:"fas fa-angle-right",title:"Add Return",onClick:c.addReturn},null,8,["onClick"])])):(0,a.kq)("",!0),c.visibleAddButtons.condition?((0,a.wg)(),(0,a.iD)("div",v,[(0,a.Wm)(S,{icon:"fas fa-question",title:"Add Condition",onClick:c.addCondition},null,8,["onClick"])])):(0,a.kq)("",!0),c.visibleAddButtons.else?((0,a.wg)(),(0,a.iD)("div",y,[(0,a.Wm)(S,{icon:"fas fa-question",title:"Add Else",onClick:t[4]||(t[4]=t=>e.$emit("add-else"))})])):(0,a.kq)("",!0),c.visibleAddButtons.for?((0,a.wg)(),(0,a.iD)("div",f,[(0,a.Wm)(S,{icon:"fas fa-arrow-rotate-left",title:"Add For Loop",onClick:c.addForLoop},null,8,["onClick"])])):(0,a.kq)("",!0),c.visibleAddButtons.while?((0,a.wg)(),(0,a.iD)("div",w,[(0,a.Wm)(S,{icon:"fas fa-arrow-rotate-left",title:"Add While Loop",onClick:c.addWhileLoop},null,8,["onClick"])])):(0,a.kq)("",!0),c.visibleAddButtons.break?((0,a.wg)(),(0,a.iD)("div",b,[(0,a.Wm)(S,{icon:"fas fa-hand",title:"Add Break",onClick:c.addBreak},null,8,["onClick"])])):(0,a.kq)("",!0),c.visibleAddButtons.continue?((0,a.wg)(),(0,a.iD)("div",D,[(0,a.Wm)(S,{icon:"fas fa-rotate",title:"Add Continue",onClick:c.addContinue},null,8,["onClick"])])):(0,a.kq)("",!0),c.visibleAddButtons.set?((0,a.wg)(),(0,a.iD)("div",k,[(0,a.Wm)(S,{icon:"fas fa-square-root-variable",title:"Set Variables",onClick:c.addSet},null,8,["onClick"])])):(0,a.kq)("",!0)])):(0,a.kq)("",!0)],2)])}n(560);function C(e,t,n,i,o,r){const l=(0,a.up)("ActionTile"),d=(0,a.up)("ListItem");return(0,a.wg)(),(0,a.j4)(d,(0,a.dG)({class:"action",active:n.active,dragging:o.dragging,"spacer-bottom":n.spacerBottom,"spacer-top":n.spacerTop,value:n.value},(0,a.mx)(r.componentsData.on)),{default:(0,a.w5)((()=>[(0,a.Wm)(l,(0,a.dG)({value:n.value,context:n.context,draggable:!n.readOnly,"read-only":n.readOnly,"with-delete":!n.readOnly},(0,a.mx)(r.componentsData.on),{onContextmenu:t[0]||(t[0]=t=>e.$emit("contextmenu",t)),onDrag:(0,s.iM)(r.onDragStart,["stop"]),onDelete:t[1]||(t[1]=t=>e.$emit("delete",t))}),null,16,["value","context","draggable","read-only","with-delete","onDrag"])])),_:1},16,["active","dragging","spacer-bottom","spacer-top","value"])}const _=e=>((0,a.dD)("data-v-49487886"),e=e(),(0,a.Cn)(),e),$={class:"action-tile-container"},B=_((()=>(0,a._)("i",{class:"icon fas fa-xmark"},null,-1))),E=[B],O={key:1,class:"action-name"},T={class:"icon"},I={class:"name"},S={key:2,class:"new-action"},V=_((()=>(0,a._)("i",{class:"icon fas fa-plus"},null,-1))),A={key:3,class:"action-args"},L={class:"arg-name"},j={class:"arg-value"},q={class:"action-editor-container"};function M(e,t,n,o,r,l){const d=(0,a.up)("ExtensionIcon"),c=(0,a.up)("Draggable"),u=(0,a.up)("Droppable"),p=(0,a.up)("ActionEditor"),h=(0,a.up)("Modal");return(0,a.wg)(),(0,a.iD)("div",$,[(0,a._)("div",{class:(0,i.C_)(["action-tile",{new:l.isNew}]),ref:"tile",onClick:t[1]||(t[1]=(...t)=>e.$refs.actionEditor.show&&e.$refs.actionEditor.show(...t))},[n.withDelete&&!n.readOnly?((0,a.wg)(),(0,a.iD)("div",{key:0,class:"action-delete",title:"Remove",onClick:t[0]||(t[0]=(0,s.iM)((t=>e.$emit("delete")),["stop"]))},E)):(0,a.kq)("",!0),l.name?.length?((0,a.wg)(),(0,a.iD)("div",O,[(0,a._)("span",T,[(0,a.Wm)(d,{name:l.name.split(".")[0],size:"1.5em"},null,8,["name"])]),(0,a._)("span",I,(0,i.zw)(l.name),1)])):((0,a.wg)(),(0,a.iD)("div",S,[V,(0,a.Uk)("  Add Action ")])),Object.keys(n.value.args||{})?.length?((0,a.wg)(),(0,a.iD)("div",A,[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(n.value.args,((e,t)=>((0,a.wg)(),(0,a.iD)("div",{class:"arg",key:t},[(0,a._)("div",L,(0,i.zw)(t),1),(0,a._)("div",j,(0,i.zw)(e),1)])))),128))])):(0,a.kq)("",!0)],2),n.draggable?((0,a.wg)(),(0,a.j4)(c,{key:0,element:r.tile,disabled:n.readOnly,value:n.value,onDrag:t[2]||(t[2]=t=>e.$emit("drag",t)),onDragend:t[3]||(t[3]=t=>e.$emit("dragend",t)),onDrop:t[4]||(t[4]=t=>e.$emit("drop",t))},null,8,["element","disabled","value"])):(0,a.kq)("",!0),n.draggable?((0,a.wg)(),(0,a.j4)(u,{key:1,element:r.tile,disabled:n.readOnly,onDragenter:t[5]||(t[5]=t=>e.$emit("dragenter",t)),onDragleave:t[6]||(t[6]=t=>e.$emit("dragleave",t)),onDragover:t[7]||(t[7]=t=>e.$emit("dragover",t)),onDrop:t[8]||(t[8]=t=>e.$emit("drop",t))},null,8,["element","disabled"])):(0,a.kq)("",!0),(0,a._)("div",q,[(0,a.Wm)(h,{ref:"actionEditor",title:"Edit Action"},{default:(0,a.w5)((()=>[this.$refs.actionEditor?.$data?.isVisible?((0,a.wg)(),(0,a.j4)(p,{key:0,value:n.value,context:n.context,"with-save":!n.readOnly,onInput:l.onInput},null,8,["value","context","with-save","onInput"])):(0,a.kq)("",!0)])),_:1},512)])])}var W=n(7617);const Z=["innerHTML"];function N(e,t,n,s,o,r){return(0,a.wg)(),(0,a.iD)("div",{class:(0,i.C_)(["dragged",{hidden:!r.draggingVisible}]),style:(0,i.j5)({top:`${o.top}px`,left:`${o.left}px`})},[r.draggingVisible?((0,a.wg)(),(0,a.iD)("div",{key:0,class:"content",innerHTML:n.element?.outerHTML||"..."},null,8,Z)):(0,a.kq)("",!0)],6)}var H={emits:["contextmenu","drag","dragend","drop"],props:{disabled:{type:Boolean,default:!1},element:{type:Object},touchDragStartThreshold:{type:Number,default:500},touchDragMoveCancelDistance:{type:Number,default:10},value:{type:[Object,String,Number,Boolean,Array],default:()=>({})}},data(){return{dragging:!1,draggingHTML:null,eventsHandlers:{contextmenu:this.onContextMenu,drag:this.onDrag,dragend:this.onDragEnd,dragstart:this.onDragStart,drop:this.onDragEnd,touchcancel:this.onDragEnd,touchend:this.onTouchEnd,touchmove:this.onTouchMove,touchstart:this.onTouchStart},initialCursorOffset:null,left:0,top:0,touchDragStartTimer:null,touchScrollDirection:[0,0],touchScrollSpeed:10,touchScrollTimer:null,touchStart:null,touchOverElement:null}},computed:{draggingVisible(){return this.dragging&&this.touchStart},shouldScroll(){return this.touchScrollDirection[0]||this.touchScrollDirection[1]}},methods:{onContextMenu(e){!this.disabled&&this.touchStart?(e.preventDefault(),e.stopPropagation(),this.onDragStart(e)):this.$emit("contextmenu",e)},onDragStart(e){this.disabled||(this.dragging=!0,this.draggingHTML=this.$slots.default?.()?.el?.outerHTML,e.value=this.value,e.dataTransfer&&(e.dataTransfer.dropEffect="move",e.dataTransfer.effectAllowed="move",e.dataTransfer.setData("application/json",JSON.stringify(this.value))),this.cancelTouchDragStart(),this.$emit("drag",e))},onDragEnd(e){this.disabled||(this.reset(),this.$emit("dragend",e))},onTouchStart(e){if(this.disabled)return;const t=e.touches?.[0];t&&(this.touchStart=[t.clientX,t.clientY],this.cancelTouchDragStart(),this.touchDragStartTimer=setTimeout((()=>{this.onDragStart(e)}),this.touchDragStartThreshold))},onTouchMove(e){if(this.disabled)return;const t=e.touches?.[0];if(!t||!this.touchStart)return;if(this.touchDragStartTimer){const n=Math.hypot(t.clientX-this.touchStart[0],t.clientY-this.touchStart[1]);if(n>this.touchDragMoveCancelDistance)return void this.reset();this.onDragStart(e)}e.preventDefault();const{clientX:n,clientY:a}=t;this.left=n,this.top=a,this.left=n-this.touchStart[0],this.top=a-this.touchStart[1],this.touchScroll(e);let i=document.elementsFromPoint(n,a).filter((e=>e.dataset?.droppable&&!e.classList.contains("dragged")))?.[0];i?(this.dispatchEvent("dragenter",i),this.touchOverElement=i):this.touchOverElement=null},touchScroll(e){if(this.disabled)return;const t=this.getScrollableParent();if(!t)return;const n=e.touches?.[0];if(!n)return;const{clientX:a,clientY:i}=n,s=t.getBoundingClientRect(),o=[(a-s.left)/s.width,(i-s.top)/s.height],r=[0,0];o[0]<0?r[0]=-1:o[0]>1&&(r[0]=1),o[1]<0?r[1]=-1:o[1]>1&&(r[1]=1),this.handleTouchScroll(r,t)},onTouchEnd(e){if(this.disabled)return;const t=this.touchOverElement;t&&this.dispatchEvent("drop",t),this.onDragEnd(e)},handleTouchScroll(e,t){this.touchScrollDirection=e,e[0]||e[1]?this.touchScrollTimer||(this.touchScrollTimer=setInterval((()=>{if(!t)return;const[n,a]=e;t.scrollBy(n*this.touchScrollSpeed,a*this.touchScrollSpeed)}),1e3/60)):this.cancelScroll()},getScrollableParent(){let e=this.element?.parentElement;while(e){if(e.scrollHeight>e.clientHeight||e.scrollWidth>e.clientWidth){const t=window.getComputedStyle(e);if(["scroll","auto"].includes(t.overflowY)||["scroll","auto"].includes(t.overflowX))return e}e=e.parentElement}return null},dispatchEvent(e,t){t.dispatchEvent(new DragEvent(e,{target:{...t,value:this.value}}))},cancelScroll(){this.touchScrollDirection=[0,0],this.touchScrollTimer&&(clearInterval(this.touchScrollTimer),this.touchScrollTimer=null)},cancelTouchDragStart(){this.touchDragStartTimer&&(clearTimeout(this.touchDragStartTimer),this.touchDragStartTimer=null)},reset(){this.cancelTouchDragStart(),this.cancelScroll(),this.dragging=!1,this.touchStart=null,this.touchOverElement=null,this.left=0,this.top=0,this.initialCursorOffset=null},installHandlers(){console.debug("Installing drag handlers on",this.element),this.element?.setAttribute("draggable",!0),Object.entries(this.eventsHandlers).forEach((([e,t])=>{this.element?.addEventListener(e,t)}))},uninstallHandlers(){console.debug("Uninstalling drag handlers from",this.element),this.element?.setAttribute("draggable",!1),Object.entries(this.eventsHandlers).forEach((([e,t])=>{this.element?.removeEventListener(e,t)}))}},watch:{dragging(){this.dragging?(this.element?.classList.add("dragged"),this.$nextTick((()=>{this.touchStart&&(this.initialCursorOffset=[this.element?.offsetLeft-this.touchStart[0],this.element?.offsetTop-this.touchStart[1]])}))):this.element?.classList.remove("dragged")},disabled(e){e?(this.reset(),this.uninstallHandlers()):this.installHandlers()},element(){this.uninstallHandlers(),this.installHandlers()},touchOverElement(e,t){e!==t&&(t&&this.dispatchEvent("dragleave",t),e&&this.dispatchEvent("dragenter",e))}},mounted(){this.installHandlers()},unmounted(){this.uninstallHandlers()}},U=n(3744);const G=(0,U.Z)(H,[["render",N],["__scopeId","data-v-dd2759da"]]);var z=G;const R={class:"droppable"};function P(e,t,n,i,s,o){return(0,a.wg)(),(0,a.iD)("div",R)}var F={emits:["dragenter","dragleave","dragover","drop"],props:{element:{type:Object},active:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},data(){return{eventsHandlers:{dragenter:this.onDragEnter,dragleave:this.onDragLeave,dragover:this.onDragOver,drop:this.onDrop},selected:!1}},methods:{onDragEnter(e){this.disabled||this.selected||(this.selected=!0,this.$emit("dragenter",e))},onDragLeave(e){if(this.disabled||!this.selected)return;const t=this.element.getBoundingClientRect();e.clientX>=t.left&&e.clientX<=t.right&&e.clientY>=t.top&&e.clientY<=t.bottom||(this.selected=!1,this.$emit("dragleave",e))},onDragOver(e){this.disabled||(e.preventDefault(),this.selected=!0,this.$emit("dragover",e))},onDrop(e){this.disabled||(this.selected=!1,this.$emit("drop",e))},installHandlers(){const e=this.element;e&&(console.debug("Installing drop handlers on",this.element),e.dataset&&(e.dataset.droppable=!0),e.addEventListener&&Object.entries(this.eventsHandlers).forEach((([t,n])=>{e.addEventListener(t,n)})))},uninstallHandlers(){const e=this.element;e&&(console.debug("Uninstalling drop handlers from",this.element),e.dataset?.droppable&&delete e.dataset.droppable,e.removeEventListener&&Object.entries(this.eventsHandlers).forEach((([t,n])=>{e.removeEventListener(t,n)})))}},watch:{active(){this.active?this.element?.classList.add("active"):this.element?.classList.remove("active")},disabled:{handler(){this.disabled?this.element?.classList.add("disabled"):this.element?.classList.remove("disabled")}},element:{handler(){this.uninstallHandlers(),this.installHandlers()}},selected:{handler(e,t){e&&!t?this.element?.classList.add("selected"):!e&&t&&this.element?.classList.remove("selected")}}},mounted(){this.$nextTick((()=>{this.installHandlers()}))},unmounted(){this.uninstallHandlers()}};const Y=(0,U.Z)(F,[["render",P]]);var K=Y,X=n(2126),J=n(8399),Q=n(2918),ee={mixins:[J.Z],emits:["delete","drag","dragenter","dragleave","dragover","drop","input"],components:{ActionEditor:W.Z,Draggable:z,Droppable:K,ExtensionIcon:X.Z,Modal:Q.Z},props:{context:{type:Object,default:()=>({})},draggable:{type:Boolean,default:!0},value:{type:Object,default:()=>({name:void 0,args:{},extraArgs:[],supportsExtraArgs:!0})},withDelete:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1}},data(){return{tile:null}},computed:{isNew(){return!this.readOnly&&!this.name?.length},name(){return this.value.name||this.value.action}},methods:{onInput(e){e&&!this.readOnly&&(this.$emit("input",{...this.value,name:e.action,args:e.args,extraArgs:e.extraArgs,supportsExtraArgs:e.supportsExtraArgs}),this.$refs.actionEditor.close())}},mounted(){this.tile=this.$refs.tile}};const te=(0,U.Z)(ee,[["render",M],["__scopeId","data-v-49487886"]]);var ne=te;const ae=e=>((0,a.dD)("data-v-7d0cf109"),e=e(),(0,a.Cn)(),e),ie=ae((()=>(0,a._)("div",{class:"droppable-wrapper"},[(0,a._)("div",{class:"droppable-container"},[(0,a._)("div",{class:"droppable-frame"},[(0,a._)("div",{class:"droppable"})])])],-1))),se=[ie],oe={key:0,class:"spacer top"},re={key:1,class:"spacer bottom"},le=ae((()=>(0,a._)("div",{class:"droppable-wrapper"},[(0,a._)("div",{class:"droppable-container"},[(0,a._)("div",{class:"droppable-frame"},[(0,a._)("div",{class:"droppable"})])])],-1))),de=[le];function ce(e,t,n,s,o,r){const l=(0,a.up)("Droppable");return(0,a.wg)(),(0,a.iD)("div",{class:(0,i.C_)(["row item list-item",r.itemClass])},[(0,a._)("div",{class:(0,i.C_)(["spacer-wrapper",{hidden:!n.spacerTop}])},[(0,a._)("div",{class:(0,i.C_)(["spacer top",{active:n.active}]),ref:"dropTargetTop"},se,2),(0,a.Wm)(l,(0,a.dG)({element:e.$refs.dropTargetTop,disabled:n.readOnly},(0,a.mx)(r.droppableData.top.on)),null,16,["element","disabled"])],2),n.dragging?((0,a.wg)(),(0,a.iD)("div",oe)):(0,a.kq)("",!0),(0,a.WI)(e.$slots,"default",{},void 0,!0),n.dragging?((0,a.wg)(),(0,a.iD)("div",re)):(0,a.kq)("",!0),(0,a._)("div",{class:(0,i.C_)(["spacer-wrapper",{hidden:!n.spacerBottom}])},[(0,a._)("div",{class:(0,i.C_)(["spacer bottom",{active:n.active}]),ref:"dropTargetBottom"},de,2),(0,a.Wm)(l,(0,a.dG)({element:e.$refs.dropTargetBottom,disabled:n.readOnly},(0,a.mx)(r.droppableData.bottom.on)),null,16,["element","disabled"])],2)],2)}var ue=n(8637),pe={mixins:[ue.Z],emits:["contextmenu","dragend","dragenter","dragleave","dragover","drop"],components:{Droppable:K},props:{active:{type:Boolean,default:!1},className:{type:[String,Object],default:""},dragging:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!1},spacerTop:{type:Boolean,default:!0},value:{type:[String,Number,Boolean,Object,Array],required:!0}},computed:{droppableData(){return["bottom","top"].reduce(((e,t)=>(e[t]={on:{dragend:this.onDragEnd,dragenter:this.onDragEnter,dragleave:this.onDragLeave,dragover:this.onDragOver,drop:this.onDrop}},e)),{})},itemClass(){return{dragging:this.dragging,...this.className?.trim?{[this.className]:!0}:this.className||{}}}},methods:{onDragEnd(e){this.$emit("dragend",e)},onDragEnter(e){this.$emit("dragenter",e)},onDragLeave(e){this.$emit("dragleave",e)},onDragOver(e){this.$emit("dragover",e)},onDrop(e){this.$emit("drop",e)}}};const he=(0,U.Z)(pe,[["render",ce],["__scopeId","data-v-7d0cf109"]]);var ge=he,me={mixins:[ue.Z],emits:["contextmenu","delete","drag","dragend","dragenter","dragleave","dragover","drop","input"],components:{ActionTile:ne,ListItem:ge},props:{active:{type:Boolean,default:!1},context:{type:Object,default:()=>({})},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!1},spacerTop:{type:Boolean,default:!0},value:{type:Object,required:!0}},data(){return{dragging:!1}},computed:{componentsData(){return{on:{dragend:this.onDragEnd,dragover:this.onDragOver,drop:this.onDrop,input:this.onInput}}}},methods:{onDragStart(e){this.readOnly||(this.dragging=!0,this.$emit("drag",e))},onDragEnd(e){e.stopPropagation(),this.dragging=!1,this.$emit("dragend",e)},onDragOver(e){e.stopPropagation(),this.$emit("dragover",e)},onDrop(e){this.readOnly||(e.stopPropagation(),this.dragging=!1,this.$emit("drop",e))},onInput(e){this.$emit("input",e)}}};const ve=(0,U.Z)(me,[["render",C]]);var ye=ve;const fe={class:"add-tile-container"},we={class:"add-tile"},be={class:"icon"},De={class:"name"};function ke(e,t,n,s,o,r){const l=(0,a.up)("Tile");return(0,a.wg)(),(0,a.iD)("div",fe,[(0,a.Wm)(l,{class:"add",draggable:!1,"read-only":!0,onClick:t[0]||(t[0]=t=>e.$emit("click"))},{default:(0,a.w5)((()=>[(0,a._)("div",we,[(0,a._)("span",be,[(0,a._)("i",{class:(0,i.C_)(n.icon)},null,2)]),(0,a._)("span",De,(0,i.zw)(n.title),1)])])),_:1})])}const xe=e=>((0,a.dD)("data-v-9354cf66"),e=e(),(0,a.Cn)(),e),Ce=xe((()=>(0,a._)("i",{class:"icon fas fa-xmark"},null,-1))),_e=[Ce];function $e(e,t,n,o,r,l){const d=(0,a.up)("Draggable"),c=(0,a.up)("Droppable");return(0,a.wg)(),(0,a.iD)("div",{class:(0,i.C_)(["tile-container",n.className])},[(0,a._)("div",{class:"tile",ref:"tile",onClick:t[1]||(t[1]=t=>e.$emit("click",t))},[n.withDelete?((0,a.wg)(),(0,a.iD)("div",{key:0,class:"delete",title:"Remove",onClick:t[0]||(t[0]=(0,s.iM)((t=>e.$emit("delete")),["stop"]))},_e)):(0,a.kq)("",!0),(0,a.WI)(e.$slots,"default",{},void 0,!0)],512),n.draggable?((0,a.wg)(),(0,a.j4)(d,{key:0,element:r.tile,disabled:n.readOnly,value:n.value,onDrag:t[2]||(t[2]=t=>e.$emit("drag",t)),onDragend:t[3]||(t[3]=t=>e.$emit("dragend",t)),onDrop:t[4]||(t[4]=t=>e.$emit("drop",t))},null,8,["element","disabled","value"])):(0,a.kq)("",!0),n.readOnly?(0,a.kq)("",!0):((0,a.wg)(),(0,a.j4)(c,{key:1,element:r.tile,onDragenter:t[5]||(t[5]=t=>e.$emit("dragenter",t)),onDragleave:t[6]||(t[6]=t=>e.$emit("dragleave",t)),onDragover:t[7]||(t[7]=t=>e.$emit("dragover",t)),onDrop:t[8]||(t[8]=t=>e.$emit("drop",t))},null,8,["element"]))],2)}var Be={emits:["click","delete","drag","dragenter","dragleave","dragover","drop"],components:{Draggable:z,Droppable:K},props:{className:{type:[String,Object],default:""},draggable:{type:Boolean,default:!0},readOnly:{type:Boolean,default:!1},value:{type:[Object,String,Number,Boolean,Array]},withDelete:{type:Boolean,default:!1}},data(){return{tile:void 0}},mounted(){this.tile=this.$refs.tile}};const Ee=(0,U.Z)(Be,[["render",$e],["__scopeId","data-v-9354cf66"]]);var Oe=Ee,Te={emits:["click"],components:{Tile:Oe},props:{icon:{type:String,default:"fas fa-plus"},title:{type:String,required:!0}}};const Ie=(0,U.Z)(Te,[["render",ke],["__scopeId","data-v-2ff09bb6"]]);var Se=Ie;const Ve=(0,a._)("div",{class:"tile-name"},[(0,a._)("span",{class:"icon"},[(0,a._)("i",{class:"fas fa-hand"})]),(0,a._)("span",{class:"name"},[(0,a._)("span",{class:"keyword"},"break")])],-1);function Ae(e,t,n,i,o,r){const l=(0,a.up)("Tile"),d=(0,a.up)("ListItem");return(0,a.wg)(),(0,a.j4)(d,{class:"break-tile",value:"break",active:n.active,"read-only":n.readOnly,"spacer-bottom":n.spacerBottom,"spacer-top":n.spacerTop},{default:(0,a.w5)((()=>[(0,a.Wm)(l,{value:n.value,class:"keyword",draggable:!1,"read-only":n.readOnly,"with-delete":!n.readOnly,onClick:t[0]||(t[0]=(0,s.iM)((()=>{}),["stop"])),onDelete:t[1]||(t[1]=t=>e.$emit("delete"))},{default:(0,a.w5)((()=>[Ve])),_:1},8,["value","read-only","with-delete"])])),_:1},8,["active","read-only","spacer-bottom","spacer-top"])}var Le={emits:["delete"],components:{ListItem:ge,Tile:Oe},props:{value:{type:String,default:"break"},active:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!0},spacerTop:{type:Boolean,default:!0}}};const je=(0,U.Z)(Le,[["render",Ae]]);var qe=je;const Me={class:"condition-block"};function We(e,t,n,i,o,r){const l=(0,a.up)("ConditionTile"),d=(0,a.up)("EndBlockTile"),c=(0,a.up)("ActionsBlock");return(0,a.wg)(),(0,a.iD)("div",Me,[(0,a.Wm)(c,{value:n.value,collapsed:n.collapsed,context:e.context,dragging:r.isDragging,"has-else":n.hasElse,"is-inside-loop":n.isInsideLoop,indent:n.indent,"read-only":n.readOnly,onInput:r.onActionsChange,onAddElse:t[1]||(t[1]=t=>e.$emit("add-else")),onDrag:t[2]||(t[2]=t=>e.$emit("drag",t)),onDragend:t[3]||(t[3]=t=>e.$emit("dragend",t)),onDragenter:t[4]||(t[4]=t=>e.$emit("dragenter",t)),onDragleave:t[5]||(t[5]=t=>e.$emit("dragleave",t)),onDragover:t[6]||(t[6]=t=>e.$emit("dragover",t)),onDrop:t[7]||(t[7]=t=>e.$emit("drop",t))},{before:(0,a.w5)((()=>[r.condition&&!n.isElse?((0,a.wg)(),(0,a.j4)(l,(0,a.dG)({key:0,value:r.condition},r.conditionTileConf.props,(0,a.mx)(r.conditionTileConf.on),{onInput:t[0]||(t[0]=(0,s.iM)((()=>{}),["prevent","stop"])),"spacer-top":n.spacerTop,"spacer-bottom":!1}),null,16,["value","spacer-top"])):n.isElse?((0,a.wg)(),(0,a.j4)(l,(0,a.dG)({key:1,value:"else"},r.conditionTileConf.props,(0,a.mx)(r.conditionTileConf.on),{"is-else":!0,"spacer-top":n.spacerTop,"spacer-bottom":!1}),null,16,["spacer-top"])):(0,a.kq)("",!0)])),after:(0,a.w5)((()=>[n.isElse||!n.hasElse?((0,a.wg)(),(0,a.j4)(d,{key:0,value:"end if",icon:"fas fa-question",active:n.active,"spacer-bottom":n.spacerBottom||o.dragging_,onDrop:r.onDrop},null,8,["active","spacer-bottom","onDrop"])):(0,a.kq)("",!0)])),_:1},8,["value","collapsed","context","dragging","has-else","is-inside-loop","indent","read-only","onInput"])])}const Ze=e=>((0,a.dD)("data-v-505af250"),e=e(),(0,a.Cn)(),e),Ne={class:"actions-list-container",ref:"actionsListContainer"},He=Ze((()=>(0,a._)("i",{class:"fas fa-ellipsis-h"},null,-1))),Ue=[He];function Ge(e,t,n,s,o,r){const l=(0,a.up)("ActionsList"),d=(0,a.up)("Droppable");return(0,a.wg)(),(0,a.iD)("div",{class:(0,i.C_)(["actions-block",{hover:o.hover}])},[(0,a.WI)(e.$slots,"before",{},void 0,!0),(0,a._)("div",Ne,[r.isCollapsed?((0,a.wg)(),(0,a.iD)("button",{key:0,class:"collapse-button",onClick:t[0]||(t[0]=e=>o.collapsed_=!o.collapsed_)},Ue)):(0,a.kq)("",!0),(0,a._)("div",{class:(0,i.C_)(["actions-list",r.actionListClasses])},[(0,a.Wm)(l,{value:n.value[r.key],context:e.context,dragging:n.dragging,"has-else":n.hasElse,indent:n.indent,"is-inside-loop":n.isInsideLoop,parent:n.value,"read-only":n.readOnly,onAddElse:t[1]||(t[1]=t=>e.$emit("add-else")),onCollapse:t[2]||(t[2]=e=>o.collapsed_=!o.collapsed_),onDrag:t[3]||(t[3]=t=>e.$emit("drag",t)),onDragend:t[4]||(t[4]=t=>{e.$emit("dragend",t),o.hover=!1}),onDragenter:t[5]||(t[5]=t=>e.$emit("dragenter",t)),onDragleave:t[6]||(t[6]=t=>{e.$emit("dragleave",t),o.hover=!1}),onDragover:t[7]||(t[7]=t=>e.$emit("dragover",t)),onDrop:t[8]||(t[8]=t=>{e.$emit("drop",t),o.hover=!1}),onInput:t[9]||(t[9]=t=>{e.$emit("input",t),o.hover=!1})},null,8,["value","context","dragging","has-else","indent","is-inside-loop","parent","read-only"])],2)],512),(0,a.WI)(e.$slots,"after",{},void 0,!0),n.readOnly?(0,a.kq)("",!0):((0,a.wg)(),(0,a.j4)(d,{key:0,element:e.$refs.actionsListContainer,onDragenter:r.onDragEnter,onDragleave:r.onDragLeave,onDrop:t[10]||(t[10]=e=>o.hover=!1)},null,8,["element","onDragenter","onDragleave"]))],2)}var ze={name:"ActionsBlock",mixins:[J.Z],emits:["add-else","drag","dragend","dragenter","dragleave","dragover","drop","input"],components:{ActionsList:(0,a.RC)((()=>Promise.resolve().then(n.bind(n,1080)))),Droppable:K},props:{value:{type:Object,required:!0},collapsed:{type:Boolean,default:!1},dragging:{type:Boolean,default:!1},indent:{type:Number,default:0},isInsideLoop:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},hasElse:{type:Boolean,default:!1}},computed:{actionListClasses(){return{hidden:this.isCollapsed,fold:this.folding,unfold:this.unfolding}},condition(){return this.getCondition(this.key)},isCollapsed(){const e=this.hover||this.folding||this.unfolding;return!e&&(!!this.collapsed_||this.collapsed)},key(){return this.getKey(this.value)}},data(){return{collapsed_:!1,folding:!1,hover:!1,hoverTimeout:null,unfolding:!1}},watch:{collapsed_(e){e?(this.folding=!0,setTimeout((()=>{this.folding=!1}),300)):(this.unfolding=!0,setTimeout((()=>{this.unfolding=!1}),300))}},methods:{onDragEnter(){this.hoverTimeout||(this.hoverTimeout=setTimeout((()=>{this.hover=!0}),500))},onDragLeave(){this.hoverTimeout&&(clearTimeout(this.hoverTimeout),this.hoverTimeout=null),this.hover=!1}}};const Re=(0,U.Z)(ze,[["render",Ge],["__scopeId","data-v-505af250"]]);var Pe=Re;const Fe=e=>((0,a.dD)("data-v-7d017735"),e=e(),(0,a.Cn)(),e),Ye={key:0,class:"drag-spacer"},Ke={class:"tile-name"},Xe=Fe((()=>(0,a._)("span",{class:"icon"},[(0,a._)("i",{class:"fas fa-question"})],-1))),Je={class:"name"},Qe=Fe((()=>(0,a._)("span",{class:"keyword"},"if",-1))),et=["textContent"],tt=Fe((()=>(0,a._)("div",{class:"tile-name"},[(0,a._)("span",{class:"icon"},[(0,a._)("i",{class:"fas fa-question"})]),(0,a._)("span",{class:"name"},[(0,a._)("span",{class:"keyword"},"else")])],-1))),nt={key:3,class:"condition-editor-container"},at=Fe((()=>(0,a._)("div",{class:"header"}," Condition ",-1)));function it(e,t,n,o,r,l){const d=(0,a.up)("Tile"),c=(0,a.up)("ExpressionEditor"),u=(0,a.up)("Modal"),p=(0,a.up)("ListItem");return(0,a.wg)(),(0,a.j4)(p,(0,a.dG)({class:"condition-tile",value:n.value,active:n.active,"read-only":n.readOnly,"spacer-bottom":n.spacerBottom,"spacer-top":n.spacerTop},(0,a.mx)(l.dragListeners),{onInput:t[3]||(t[3]=t=>e.$emit("input",t))}),{default:(0,a.w5)((()=>[r.dragging&&!n.spacerTop?((0,a.wg)(),(0,a.iD)("div",Ye," ")):(0,a.kq)("",!0),n.isElse?((0,a.wg)(),(0,a.j4)(d,(0,a.dG)({key:2},l.tileConf.props,(0,a.mx)(l.tileConf.on),{draggable:!1,"read-only":!0,onClick:t[1]||(t[1]=t=>e.$emit("click"))}),{default:(0,a.w5)((()=>[tt])),_:1},16)):((0,a.wg)(),(0,a.j4)(d,(0,a.dG)({key:1},l.tileConf.props,(0,a.mx)(l.tileConf.on),{draggable:!n.readOnly,onClick:t[0]||(t[0]=(0,s.iM)((e=>r.showConditionEditor=!0),["stop"]))}),{default:(0,a.w5)((()=>[(0,a._)("div",Ke,[Xe,(0,a._)("span",Je,[Qe,(0,a.Uk)(" [ "),(0,a._)("span",{class:"code",textContent:(0,i.zw)(n.value)},null,8,et),(0,a.Uk)(" ] ")])])])),_:1},16,["draggable"])),r.showConditionEditor&&!n.readOnly?((0,a.wg)(),(0,a.iD)("div",nt,[(0,a.Wm)(u,{title:"Edit Condition",visible:!0,onClose:t[2]||(t[2]=e=>r.showConditionEditor=!1)},{default:(0,a.w5)((()=>[r.showConditionEditor?((0,a.wg)(),(0,a.j4)(c,{key:0,value:n.value,context:e.context,ref:"conditionEditor",onInput:(0,s.iM)(l.onConditionChange,["prevent","stop"])},{default:(0,a.w5)((()=>[at])),_:1},8,["value","context","onInput"])):(0,a.kq)("",!0)])),_:1})])):(0,a.kq)("",!0)])),_:1},16,["value","active","read-only","spacer-bottom","spacer-top"])}const st=e=>((0,a.dD)("data-v-cfcbaedc"),e=e(),(0,a.Cn)(),e),ot={for:"expression"},rt=["disabled"],lt=st((()=>(0,a._)("i",{class:"fas fa-check"},null,-1)));function dt(e,t,n,i,o,r){const l=(0,a.up)("ContextAutocomplete");return(0,a.wg)(),(0,a.iD)("form",{class:"expression-editor",onSubmit:t[0]||(t[0]=(0,s.iM)(((...e)=>r.onSubmit&&r.onSubmit(...e)),["prevent","stop"]))},[(0,a._)("label",ot,[(0,a.WI)(e.$slots,"default",{},void 0,!0),(0,a.Wm)(l,{value:o.newValue,items:e.contextAutocompleteItems,quote:n.quote,onInput:(0,s.iM)(r.onInput,["stop"]),ref:"input"},null,8,["value","items","quote","onInput"])]),(0,a._)("label",null,[(0,a._)("button",{type:"submit",disabled:!o.hasChanges},[lt,(0,a.Uk)(" Save ")],8,rt)])],32)}var ct=n(2782),ut={emits:["input"],mixins:[J.Z],components:{ContextAutocomplete:ct.Z},props:{value:{type:[String,Number,Boolean,Object,Array],default:""},allowEmpty:{type:Boolean,default:!1},placeholder:{type:String,default:""},quote:{type:Boolean,default:!1}},data(){return{hasChanges:!1,newValue:null}},methods:{onSubmit(e){const t=this.newValue?.trim();(t.length||this.allowEmpty)&&(e.target.value=t,this.$emit("input",e))},onInput(e){if(null==e?.detail)return;const t=""+e.detail;t?.trim()?.length?this.hasChanges=t!==this.value:this.hasChanges=this.allowEmpty,this.$nextTick((()=>{this.newValue=t}))}},watch:{value(){this.hasChanges=!1}},mounted(){this.hasChanges=!1,this.newValue=this.value,this.value?.trim?.()?.length||(this.hasChanges=this.allowEmpty),this.$nextTick((()=>{this.textInput?.focus()}))}};const pt=(0,U.Z)(ut,[["render",dt],["__scopeId","data-v-cfcbaedc"]]);var ht=pt,gt={emits:["change","click","delete","drag","dragend","dragenter","dragleave","dragover","drop","input"],mixins:[J.Z],components:{ExpressionEditor:ht,ListItem:ge,Modal:Q.Z,Tile:Oe},props:{value:{type:String,required:!0},active:{type:Boolean,default:!1},isElse:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!0},spacerTop:{type:Boolean,default:!0}},computed:{dragListeners(){return this.readOnly?{}:{drag:this.onDragStart,dragend:this.onDragEnd,dragenter:e=>this.$emit("dragenter",e),dragleave:e=>this.$emit("dragleave",e),dragover:e=>this.$emit("dragover",e),drop:this.onDrop}},tileConf(){return{props:{value:this.value,class:"keyword",readOnly:this.readOnly,withDelete:!this.readOnly},on:{...this.dragListeners,delete:()=>this.$emit("delete"),input:this.onInput}}}},data(){return{dragging:!1,showConditionEditor:!1}},methods:{onConditionChange(e){if(this.showConditionEditor=!1,this.readOnly)return;const t=e.target.value?.trim();t?.length&&(e.target.value=t,this.$emit("change",t))},onInput(e){e&&!this.readOnly&&this.$emit("input",e)},onDragStart(e){this.readOnly||(this.dragging=!0,this.$emit("drag",e))},onDragEnd(e){this.dragging=!1,this.$emit("dragend",e)},onDrop(e){this.dragging=!1,this.readOnly||this.$emit("drop",e)}}};const mt=(0,U.Z)(gt,[["render",it],["__scopeId","data-v-7d017735"]]);var vt=mt;const yt={class:"tile-name"},ft={class:"icon"},wt={class:"name"},bt=["textContent"];function Dt(e,t,n,s,o,r){const l=(0,a.up)("Tile"),d=(0,a.up)("ListItem");return(0,a.wg)(),(0,a.j4)(d,{class:"end-block-container",active:n.active,value:{},"read-only":!1,"spacer-bottom":n.spacerBottom,"spacer-top":n.spacerTop,onDragenter:t[0]||(t[0]=t=>e.$emit("dragenter",t)),onDragleave:t[1]||(t[1]=t=>e.$emit("dragleave",t)),onDragover:t[2]||(t[2]=t=>e.$emit("dragover",t)),onDrop:t[3]||(t[3]=t=>e.$emit("drop",t))},{default:(0,a.w5)((()=>[(0,a.Wm)(l,{class:"keyword",draggable:!1,"read-only":!0},{default:(0,a.w5)((()=>[(0,a._)("div",yt,[(0,a._)("span",ft,[(0,a._)("i",{class:(0,i.C_)(n.icon)},null,2)]),(0,a._)("span",wt,[(0,a._)("span",{class:"keyword",textContent:(0,i.zw)(n.value)},null,8,bt)])])])),_:1})])),_:1},8,["active","spacer-bottom","spacer-top"])}var kt={mixins:[J.Z],components:{ListItem:ge,Tile:Oe},props:{value:{type:String,required:!0},icon:{type:String,required:!0},active:{type:Boolean,default:!1},spacerTop:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!1}}};const xt=(0,U.Z)(kt,[["render",Dt]]);var Ct=xt,_t={name:"ConditionBlock",mixins:[J.Z],emits:["add-else","delete","drag","dragend","dragenter","dragleave","dragover","drop","input"],components:{ActionsBlock:Pe,ConditionTile:vt,EndBlockTile:Ct},props:{value:{type:Object,required:!0},active:{type:Boolean,default:!1},collapsed:{type:Boolean,default:!1},dragging:{type:Boolean,default:!1},hasElse:{type:Boolean,default:!1},indent:{type:Number,default:0},isElse:{type:Boolean,default:!1},isInsideLoop:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!1},spacerTop:{type:Boolean,default:!1}},data(){return{dragging_:!1}},computed:{condition(){return this.getCondition(this.key)},conditionTileConf(){return{props:{active:this.active,context:this.context,readOnly:this.readOnly,spacerBottom:this.spacerBottom,spacerTop:this.spacerTop},on:{change:this.onConditionChange,delete:e=>this.$emit("delete",e),drag:this.onDragStart,dragend:this.onDragEnd,dragenterspacer:e=>this.$emit("dragenter",e),dragleavespacer:e=>this.$emit("dragleave",e),dragover:e=>this.$emit("dragover",e),dragoverspacer:e=>this.$emit("dragoverspacer",e),drop:this.onDrop}}},isDragging(){return this.dragging_||this.dragging},key(){return this.getKey(this.value)}},methods:{onActionsChange(e){this.key&&!this.readOnly&&this.$emit("input",{[this.key]:e})},onConditionChange(e){this.key&&!this.readOnly&&e?.length&&(e=`if \${${e.trim()}}`,this.$emit("input",{[e]:this.value[this.key]}))},onDragStart(e){this.readOnly||(this.dragging_=!0,this.$emit("drag",e))},onDragEnd(e){this.dragging_=!1,this.$emit("dragend",e)},onDrop(e){this.readOnly||(this.dragging_=!1,this.$emit("drop",e))}}};const $t=(0,U.Z)(_t,[["render",We],["__scopeId","data-v-79ae696c"]]);var Bt=$t;const Et=(0,a._)("div",{class:"tile-name"},[(0,a._)("span",{class:"icon"},[(0,a._)("i",{class:"fas fa-rotate"})]),(0,a._)("span",{class:"name"},[(0,a._)("span",{class:"keyword"},"continue")])],-1);function Ot(e,t,n,i,o,r){const l=(0,a.up)("Tile"),d=(0,a.up)("ListItem");return(0,a.wg)(),(0,a.j4)(d,{class:"continue-tile",value:"continue",active:n.active,"read-only":n.readOnly,"spacer-bottom":n.spacerBottom,"spacer-top":n.spacerTop},{default:(0,a.w5)((()=>[(0,a.Wm)(l,{value:n.value,class:"keyword",draggable:!1,"read-only":n.readOnly,"with-delete":!n.readOnly,onClick:t[0]||(t[0]=(0,s.iM)((()=>{}),["stop"])),onDelete:t[1]||(t[1]=t=>e.$emit("delete"))},{default:(0,a.w5)((()=>[Et])),_:1},8,["value","read-only","with-delete"])])),_:1},8,["active","read-only","spacer-bottom","spacer-top"])}var Tt={emits:["delete"],components:{ListItem:ge,Tile:Oe},props:{value:{type:String,default:"continue"},active:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!0},spacerTop:{type:Boolean,default:!0}}};const It=(0,U.Z)(Tt,[["render",Ot]]);var St=It;const Vt={class:"loop-block"};function At(e,t,n,i,o,r){const l=(0,a.up)("LoopTile"),d=(0,a.up)("EndBlockTile"),c=(0,a.up)("ActionsBlock");return(0,a.wg)(),(0,a.iD)("div",Vt,[(0,a.Wm)(c,{value:n.value,collapsed:n.collapsed,context:r.context_,dragging:r.isDragging,indent:n.indent,"is-inside-loop":!0,"read-only":n.readOnly,onInput:r.onActionsChange,onDrag:t[1]||(t[1]=t=>e.$emit("drag",t)),onDragend:t[2]||(t[2]=t=>e.$emit("dragend",t)),onDragenter:t[3]||(t[3]=t=>e.$emit("dragenter",t)),onDragleave:t[4]||(t[4]=t=>e.$emit("dragleave",t)),onDragover:t[5]||(t[5]=t=>e.$emit("dragover",t)),onDrop:t[6]||(t[6]=t=>e.$emit("drop",t))},{before:(0,a.w5)((()=>[(0,a.Wm)(l,(0,a.dG)(r.loopTileConf.props,(0,a.mx)(r.loopTileConf.on),{onInput:t[0]||(t[0]=(0,s.iM)((()=>{}),["prevent","stop"])),"spacer-top":n.spacerTop,"spacer-bottom":!1}),null,16,["spacer-top"])])),after:(0,a.w5)((()=>[(0,a.Wm)(d,{value:`end ${n.type}`,icon:"fas fa-arrow-rotate-right",active:n.active,"spacer-bottom":n.spacerBottom||n.dragging,onDrop:r.onDrop},null,8,["value","active","spacer-bottom","onDrop"])])),_:1},8,["value","collapsed","context","dragging","indent","read-only","onInput"])])}const Lt=e=>((0,a.dD)("data-v-54198b35"),e=e(),(0,a.Cn)(),e),jt={key:0,class:"drag-spacer"},qt={class:"tile-name"},Mt=Lt((()=>(0,a._)("span",{class:"icon"},[(0,a._)("i",{class:"fas fa-arrow-rotate-left"})],-1))),Wt={key:0,class:"name"},Zt={class:"keyword"},Nt={key:0},Ht=["textContent"],Ut=Lt((()=>(0,a._)("span",{class:"keyword"}," in ",-1))),Gt=["textContent"],zt={key:1,class:"name"},Rt=Lt((()=>(0,a._)("span",{class:"keyword"},"while",-1))),Pt=["textContent"],Ft={key:1,class:"editor-container"};function Yt(e,t,n,o,r,l){const d=(0,a.up)("Tile"),c=(0,a.up)("LoopEditor"),u=(0,a.up)("ExpressionEditor"),p=(0,a.up)("Modal"),h=(0,a.up)("ListItem");return(0,a.wg)(),(0,a.j4)(h,(0,a.dG)({class:"loop-tile",value:l.value,active:n.active,"read-only":n.readOnly,"spacer-bottom":n.spacerBottom,"spacer-top":n.spacerTop},(0,a.mx)(l.dragListeners),{onInput:t[2]||(t[2]=t=>e.$emit("input",t))}),{default:(0,a.w5)((()=>[r.dragging&&!n.spacerTop?((0,a.wg)(),(0,a.iD)("div",jt," ")):(0,a.kq)("",!0),(0,a.Wm)(d,(0,a.dG)(l.tileConf.props,(0,a.mx)(l.tileConf.on),{draggable:!n.readOnly,onClick:t[0]||(t[0]=(0,s.iM)((e=>r.showLoopEditor=!0),["stop"]))}),{default:(0,a.w5)((()=>[(0,a._)("div",qt,[Mt,"for"===n.type?((0,a.wg)(),(0,a.iD)("span",Wt,[(0,a._)("span",Zt,[(0,a.Uk)("for"),n.async?((0,a.wg)(),(0,a.iD)("span",Nt,"k")):(0,a.kq)("",!0)]),(0,a.Uk)(),(0,a._)("span",{class:"code",textContent:(0,i.zw)(n.iterator)},null,8,Ht),Ut,(0,a.Uk)(" [ "),(0,a._)("span",{class:"code",textContent:(0,i.zw)(n.iterable)},null,8,Gt),(0,a.Uk)(" ] ")])):"while"===n.type?((0,a.wg)(),(0,a.iD)("span",zt,[Rt,(0,a.Uk)(" [ "),(0,a._)("span",{class:"code",textContent:(0,i.zw)(n.condition)},null,8,Pt),(0,a.Uk)(" ] ")])):(0,a.kq)("",!0)])])),_:1},16,["draggable"]),r.showLoopEditor&&!n.readOnly?((0,a.wg)(),(0,a.iD)("div",Ft,[(0,a.Wm)(p,{title:"Edit Loop",visible:!0,onClose:t[1]||(t[1]=e=>r.showLoopEditor=!1)},{default:(0,a.w5)((()=>[r.showLoopEditor&&"for"===n.type?((0,a.wg)(),(0,a.j4)(c,{key:0,iterator:n.iterator,iterable:n.iterable,async:n.async,context:e.context,onChange:l.onLoopChange},{default:(0,a.w5)((()=>[(0,a.Uk)(" Loop ")])),_:1},8,["iterator","iterable","async","context","onChange"])):r.showLoopEditor&&"while"===n.type?((0,a.wg)(),(0,a.j4)(u,{key:1,value:n.condition,context:e.context,onInput:(0,s.iM)(l.onConditionChange,["prevent","stop"])},{default:(0,a.w5)((()=>[(0,a.Uk)(" Loop Condition ")])),_:1},8,["value","context","onInput"])):(0,a.kq)("",!0)])),_:1})])):(0,a.kq)("",!0)])),_:1},16,["value","active","read-only","spacer-bottom","spacer-top"])}const Kt=e=>((0,a.dD)("data-v-f2db70a8"),e=e(),(0,a.Cn)(),e),Xt={for:"iterator"},Jt=["value"],Qt={for:"iterable"},en={class:"async"},tn=["checked"],nn=["disabled"],an=Kt((()=>(0,a._)("i",{class:"fas fa-check"},null,-1)));function sn(e,t,n,i,o,r){const l=(0,a.up)("ContextAutocomplete");return(0,a.wg)(),(0,a.iD)("form",{class:"loop-editor",onSubmit:t[3]||(t[3]=(0,s.iM)(((...e)=>r.onSubmit&&r.onSubmit(...e)),["prevent","stop"]))},[(0,a.Uk)(" for "),(0,a._)("label",Xt,[(0,a._)("input",{type:"text",name:"iterator",autocomplete:"off",autofocus:!0,placeholder:"Iterator",value:o.newValue.iterator,ref:"iterator",onInput:t[0]||(t[0]=(0,s.iM)((e=>r.onInput("iterator",e)),["stop"]))},null,40,Jt)]),(0,a.Uk)(" in "),(0,a._)("label",Qt,[(0,a.Wm)(l,{value:o.newValue.iterable,items:e.contextAutocompleteItems,placeholder:"Iterable",onInput:t[1]||(t[1]=(0,s.iM)((e=>r.onInput("iterable",e)),["stop"])),ref:"iterable"},null,8,["value","items"])]),(0,a._)("label",en,[(0,a._)("input",{class:"checkbox",type:"checkbox",name:"async",ref:"async",checked:n.async,onInput:t[2]||(t[2]=(0,s.iM)((e=>r.onInput("async",e)),["stop"]))},null,40,tn),(0,a.Uk)("  Run in parallel ")]),(0,a._)("label",null,[(0,a._)("button",{type:"submit",disabled:!o.hasChanges},[an,(0,a.Uk)(" Save ")],8,nn)])],32)}var on={emits:["change","input"],mixins:[J.Z],components:{ContextAutocomplete:ct.Z},props:{async:{type:Boolean,default:!1},iterable:{type:String,default:""},iterator:{type:String,default:""}},data(){return{hasChanges:!0,newValue:{iterator:null,iterable:null,async:null}}},methods:{onSubmit(){const e=this.$refs.iterator.value.trim(),t=this.$refs.iterable.value.trim(),n=this.$refs.async.checked;e.length&&t.length&&this.$emit("change",{iterator:e,iterable:t,async:n})},onInput(e,t){const n=""+(t.target?.value||t.detail);n?.trim()?.length?("iterator"===e&&(this.hasChanges=n!==this.iterator),this.hasChanges||"iterable"!==e||(this.hasChanges=n!==this.iterable),this.hasChanges||"async"!==e||(this.hasChanges=n!==this.async)):this.hasChanges=!1,this.$nextTick((()=>{this.newValue[e]=n}))}},watch:{value(){this.hasChanges=!1,this.newValue={iterator:this.iterator,iterable:this.iterable,async:this.async}}},mounted(){this.newValue={iterator:this.iterator,iterable:this.iterable,async:this.async},this.$nextTick((()=>{this.$refs.iterator.focus()}))}};const rn=(0,U.Z)(on,[["render",sn],["__scopeId","data-v-f2db70a8"]]);var ln=rn,dn={mixins:[J.Z],emits:["change","click","delete","drag","dragend","dragenter","dragleave","dragover","drop","input"],components:{ExpressionEditor:ht,LoopEditor:ln,ListItem:ge,Modal:Q.Z,Tile:Oe},props:{active:{type:Boolean,default:!1},async:{type:Boolean,default:!1},condition:{type:String},iterator:{type:String},iterable:{type:String},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!0},spacerTop:{type:Boolean,default:!0},type:{type:String,required:!0}},computed:{dragListeners(){return this.readOnly?{}:{drag:this.onDragStart,dragend:this.onDragEnd,dragenter:e=>this.$emit("dragenter",e),dragleave:e=>this.$emit("dragleave",e),dragover:e=>this.$emit("dragover",e),drop:this.onDrop}},tileConf(){return{props:{value:this.value,class:"keyword",readOnly:this.readOnly,withDelete:!this.readOnly},on:{...this.dragListeners,delete:()=>this.$emit("delete"),input:this.onInput}}},value(){return`for ${this.iterator} in ${this.iterable}`}},data(){return{dragging:!1,showLoopEditor:!1}},methods:{onConditionChange(e){if(this.showLoopEditor=!1,this.readOnly)return;const t=e.target.value?.trim();t?.length&&(e.target.value=t,this.$emit("change",t))},onLoopChange(e){this.showLoopEditor=!1,this.readOnly||this.$emit("change",e)},onInput(e){e&&!this.readOnly&&this.$emit("input",e)},onDragStart(e){this.readOnly||(this.dragging=!0,this.$emit("drag",e))},onDragEnd(e){this.dragging=!1,this.$emit("dragend",e)},onDrop(e){this.dragging=!1,this.readOnly||this.$emit("drop",e)}}};const cn=(0,U.Z)(dn,[["render",Yt],["__scopeId","data-v-54198b35"]]);var un=cn,pn={name:"LoopBlock",mixins:[J.Z],emits:["delete","drag","dragend","dragenter","dragleave","dragover","drop","input"],components:{ActionsBlock:Pe,LoopTile:un,EndBlockTile:Ct},props:{value:{type:Object,required:!0},type:{type:String,required:!0},active:{type:Boolean,default:!1},async:{type:Boolean,default:!1},collapsed:{type:Boolean,default:!1},dragging:{type:Boolean,default:!1},indent:{type:Number,default:0},isInsideLoop:{type:Boolean,default:!0},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!1},spacerTop:{type:Boolean,default:!1}},data(){return{dragging_:!1}},computed:{changeHandler(){return"for"===this.type?this.onForChange:"while"===this.type?this.onWhileChange:()=>{}},context_(){const e={...this.context},t=this.loop?.iterator?.trim();return t?.length&&(e[t]={source:"for"}),e},isDragging(){return this.dragging_||this.dragging},key(){return this.getKey(this.value)},loop(){return"for"===this.type?this.getFor(this.key):"while"===this.type?{condition:this.getWhile(this.key)}:{}},loopTileConf(){return{props:{...this.loop,active:this.active,context:this.context_,readOnly:this.readOnly,spacerBottom:this.spacerBottom,spacerTop:this.spacerTop,type:this.type},on:{change:this.changeHandler,delete:e=>this.$emit("delete",e),drag:this.onDragStart,dragend:this.onDragEnd,dragenterspacer:e=>this.$emit("dragenter",e),dragleavespacer:e=>this.$emit("dragleave",e),dragover:e=>this.$emit("dragover",e),dragoverspacer:e=>this.$emit("dragoverspacer",e),drop:this.onDrop}}}},methods:{onActionsChange(e){this.key&&!this.readOnly&&this.$emit("input",{[this.key]:e})},onForChange(e){const t=e?.iterable?.trim(),n=e?.iterator?.trim(),a=e?.async||!1;if(!this.key||this.readOnly||!t?.length||!n?.length)return;const i="for"+(a?"k":"");e=`${i} ${n} in \${${t}}`,this.$emit("input",{[e]:this.value[this.key]})},onWhileChange(e){if(e=e?.trim(),!this.key||this.readOnly||!e?.length)return;const t=`while \${${e}}`;this.$emit("input",{[t]:this.value[this.key]})},onDragStart(e){this.readOnly||(this.dragging_=!0,this.$emit("drag",e))},onDragEnd(e){this.dragging_=!1,this.$emit("dragend",e)},onDrop(e){this.readOnly||(this.dragging_=!1,this.$emit("drop",e))}}};const hn=(0,U.Z)(pn,[["render",At]]);var gn=hn;const mn={class:"tile-name"},vn=(0,a._)("span",{class:"icon"},[(0,a._)("i",{class:"fas fa-angle-right"})],-1),yn={class:"name"},fn=(0,a._)("span",{class:"keyword"},"return",-1),wn=["textContent"],bn={key:0,class:"editor-container"};function Dn(e,t,n,o,r,l){const d=(0,a.up)("Tile"),c=(0,a.up)("ExpressionEditor"),u=(0,a.up)("Modal"),p=(0,a.up)("ListItem");return(0,a.wg)(),(0,a.j4)(p,{class:"return-tile",value:n.value,active:n.active,"read-only":n.readOnly,"spacer-bottom":n.spacerBottom,"spacer-top":n.spacerTop,onInput:t[2]||(t[2]=t=>e.$emit("input",t))},{default:(0,a.w5)((()=>[(0,a.Wm)(d,(0,a.dG)(l.tileConf.props,(0,a.mx)(l.tileConf.on),{onClick:t[0]||(t[0]=(0,s.iM)((e=>r.showExprEditor=!0),["stop"]))}),{default:(0,a.w5)((()=>[(0,a._)("div",mn,[vn,(0,a._)("span",yn,[fn,(0,a.Uk)(),(0,a._)("span",{class:"code",textContent:(0,i.zw)(n.value)},null,8,wn)])])])),_:1},16),r.showExprEditor&&!n.readOnly?((0,a.wg)(),(0,a.iD)("div",bn,[(0,a.Wm)(u,{title:"Edit Return",visible:!0,onClose:t[1]||(t[1]=e=>r.showExprEditor=!1)},{default:(0,a.w5)((()=>[r.showExprEditor?((0,a.wg)(),(0,a.j4)(c,{key:0,value:n.value,"allow-empty":!0,context:e.context,quote:!0,placeholder:"Optional return value",ref:"exprEditor",onInput:(0,s.iM)(l.onExprChange,["prevent","stop"])},{default:(0,a.w5)((()=>[(0,a.Uk)(" Value or Expression ")])),_:1},8,["value","context","onInput"])):(0,a.kq)("",!0)])),_:1})])):(0,a.kq)("",!0)])),_:1},8,["value","active","read-only","spacer-bottom","spacer-top"])}var kn={mixins:[J.Z],emits:["change","click","delete","input"],components:{ExpressionEditor:ht,ListItem:ge,Modal:Q.Z,Tile:Oe},props:{value:{type:[String,Number,Boolean,Object,Array],default:""},active:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!0},spacerTop:{type:Boolean,default:!0}},computed:{tileConf(){return{props:{value:this.value,class:"keyword",draggable:!1,readOnly:this.readOnly,withDelete:!this.readOnly},on:{delete:()=>this.$emit("delete"),input:this.onInput}}}},data(){return{showExprEditor:!1}},methods:{onExprChange(e){if(this.showExprEditor=!1,this.readOnly)return;const t=e.target.value?.trim();e.target.value=t,this.$emit("change",t)},onInput(e){e&&!this.readOnly&&this.$emit("input",e)}}};const xn=(0,U.Z)(kn,[["render",Dn]]);var Cn=xn;const _n=e=>((0,a.dD)("data-v-73c595c1"),e=e(),(0,a.Cn)(),e),$n=_n((()=>(0,a._)("div",{class:"tile-name"},[(0,a._)("span",{class:"icon"},[(0,a._)("i",{class:"fas fa-square-root-variable"})]),(0,a._)("span",{class:"name"},[(0,a._)("div",{class:"keyword"},"set")])],-1))),Bn={class:"variables"},En=["textContent"],On=["textContent"],Tn={key:0,class:"editor-container"},In={class:"name"},Sn=["onBlur","onUpdate:modelValue"],Vn={class:"value"},An={class:"variable"},Ln={class:"name"},jn={class:"value"},qn=_n((()=>(0,a._)("div",{class:"buttons"},[(0,a._)("button",{type:"submit",class:"btn btn-primary"}," Save ")],-1)));function Mn(e,t,n,o,r,l){const d=(0,a.up)("Tile"),c=(0,a.up)("ContextAutocomplete"),u=(0,a.up)("Modal"),p=(0,a.up)("ListItem");return(0,a.wg)(),(0,a.j4)(p,(0,a.dG)({class:["set-variables-tile",{active:n.active}],dragging:r.dragging_,value:n.value,active:n.active,"read-only":n.readOnly,"spacer-bottom":n.spacerBottom,"spacer-top":n.spacerTop},(0,a.mx)(l.dragListeners),{onInput:t[8]||(t[8]=t=>e.$emit("input",t))}),{default:(0,a.w5)((()=>[(0,a.Wm)(d,(0,a.dG)(l.tileConf.props,(0,a.mx)(l.tileConf.on),{draggable:!n.readOnly,onClick:t[0]||(t[0]=(0,s.iM)((e=>r.showEditor=!0),["stop"]))}),{default:(0,a.w5)((()=>[$n,(0,a._)("div",Bn,[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(n.value,((e,t)=>((0,a.wg)(),(0,a.iD)("div",{class:"variable",key:t},[(0,a._)("span",{class:"code name",textContent:(0,i.zw)(t)},null,8,En),(0,a.Uk)(" = "),(0,a._)("span",{class:"code value",textContent:(0,i.zw)(e)},null,8,On)])))),128))])])),_:1},16,["draggable"]),r.showEditor&&!n.readOnly?((0,a.wg)(),(0,a.iD)("div",Tn,[(0,a.Wm)(u,{title:"Set Variables",visible:!0,onClose:t[7]||(t[7]=e=>r.showEditor=!1)},{default:(0,a.w5)((()=>[(0,a._)("form",{class:"editor",onSubmit:t[6]||(t[6]=(0,s.iM)(((...e)=>l.onChange&&l.onChange(...e)),["prevent"]))},[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(r.newValue,((n,i)=>((0,a.wg)(),(0,a.iD)("div",{class:"variable",key:i},[(0,a._)("span",In,[(0,a.wy)((0,a._)("input",{type:"text",placeholder:"Variable Name",onBlur:e=>l.onBlur(i),onInput:t[1]||(t[1]=(0,s.iM)((()=>{}),["prevent","stop"])),"onUpdate:modelValue":e=>r.newValue[i][0]=e},null,40,Sn),[[s.nr,r.newValue[i][0]]]),(0,a.Uk)(" = ")]),(0,a._)("span",Vn,[(0,a.Wm)(c,{value:r.newValue[i][1],items:e.contextAutocompleteItems,quote:!0,"select-on-tab":!1,placeholder:"Value",onInput:(0,s.iM)((e=>r.newValue[i][1]=e.detail),["prevent","stop"])},null,8,["value","items","onInput"])])])))),128)),(0,a._)("div",An,[(0,a._)("span",Ln,[(0,a.wy)((0,a._)("input",{type:"text",placeholder:"Variable Name",ref:"newVarName",onInput:t[2]||(t[2]=(0,s.iM)((()=>{}),["prevent","stop"])),"onUpdate:modelValue":t[3]||(t[3]=e=>r.newVariable.name=e)},null,544),[[s.nr,r.newVariable.name]]),(0,a.Uk)(" = ")]),(0,a._)("span",jn,[(0,a.Wm)(c,{value:r.newVariable.value,items:e.contextAutocompleteItems,quote:!0,"select-on-tab":!1,placeholder:"Value",onInput:t[4]||(t[4]=(0,s.iM)((e=>r.newVariable.value=e.detail),["prevent","stop"])),onBlur:t[5]||(t[5]=e=>l.onBlur(null))},null,8,["value","items"])])]),qn],32)])),_:1})])):(0,a.kq)("",!0)])),_:1},16,["class","dragging","value","active","read-only","spacer-bottom","spacer-top"])}var Wn={mixins:[J.Z],emits:["click","delete","drag","dragend","dragenter","dragleave","dragover","drop","input"],components:{ContextAutocomplete:ct.Z,ListItem:ge,Modal:Q.Z,Tile:Oe},props:{active:{type:Boolean,default:!1},dragging:{type:Boolean,default:!1},readOnly:{type:Boolean,default:!1},spacerBottom:{type:Boolean,default:!0},spacerTop:{type:Boolean,default:!0},value:{type:Object,default:()=>({})}},computed:{dragListeners(){return this.readOnly?{}:{drag:this.onDragStart,dragend:this.onDragEnd,dragenter:e=>this.$emit("dragenter",e),dragleave:e=>this.$emit("dragleave",e),dragover:e=>this.$emit("dragover",e),drop:this.onDrop}},tileConf(){return{props:{value:this.value,class:"keyword",readOnly:this.readOnly,withDelete:!this.readOnly},on:{...this.dragListeners,delete:()=>this.$emit("delete"),input:this.onInput}}}},data(){return{dragging_:!1,newValue:[],newVariable:{name:"",value:""},showEditor:!1}},methods:{onChange(){if(this.showEditor=!1,this.readOnly)return;const e=this.newValue;this.newVariable.name?.trim?.()?.length&&e.push([this.newVariable.name,this.newVariable.value]);const t=e.map((([e,t])=>{e=this.sanitizeName(e);try{t=JSON.parse(t)}catch(n){t=t?.trim()}return[e,t]})).reduce(((e,[t,n])=>t?.length?(e[t]=n,e):e),{});Object.keys(t).length&&this.onInput(t)},onInput(e){e&&!this.readOnly&&this.$emit("input",{set:e})},onBlur(e){if(!this.readOnly)if(null!=e){const t=this.sanitizeName(this.newValue[e][0]);t?.length?this.newValue[e][0]=t:this.newValue.splice(e,1)}else{const e=this.sanitizeName(this.newVariable.name),t=this.newVariable.value;e?.length&&(this.newValue.push([e,t]),this.newVariable={name:"",value:""},this.$nextTick((()=>{this.$refs.newVarName?.focus()})))}},onDragStart(e){this.readOnly||(this.dragging_=!0,this.$emit("drag",e))},onDragEnd(e){this.dragging_=!1,this.$emit("dragend",e)},onDrop(e){this.dragging_=!1,this.readOnly||this.$emit("drop",e)},sanitizeName(e){return e?.trim()?.replace(/[^\w_]/g,"_")},syncValue(){this.newValue=Object.entries(this.value)}},watch:{showEditor(e){e?this.$nextTick((()=>{this.$refs.newVarName?.focus()})):this.newVariable={name:"",value:""}},value:{immediate:!0,handler(){this.syncValue()}}},mounted(){this.syncValue(),this.$nextTick((()=>{this.$refs.newVarName?.focus()}))}};const Zn=(0,U.Z)(Wn,[["render",Mn],["__scopeId","data-v-73c595c1"]]);var Nn=Zn,Hn={name:"ActionsList",mixins:[J.Z,ue.Z],emits:["add-else","change","collapse","drag","dragend","dragenter","dragleave","dragover","drop","input","reset","update"],components:{ActionsListItem:ye,ActionTile:ne,AddTile:Se,BreakTile:qe,ConditionBlock:Bt,ContinueTile:St,ListItem:ge,LoopBlock:gn,ReturnTile:Cn,SetVariablesTile:Nn},props:{collapsed:{type:Boolean,default:!1},dragging:{type:Boolean,default:!1},hasElse:{type:Boolean,default:!1},indent:{type:Number,default:0},isInsideLoop:{type:Boolean,default:!1},parent:{type:Object,default:null},readOnly:{type:Boolean,default:!1},value:{type:Object,default:()=>({name:void 0,actions:[]})}},data(){return{collapseAddButtons:!0,newValue:[],dragIndices:void 0,initialValue:void 0,newAction:{},spacerElements:{}}},computed:{collapsedBlocks(){return this.newValue.reduce(((e,t,n)=>this.isActionsBlock(t)?this.isDragging?(this.elses[n]?e[n]=this.dragBlockIndex===n-1:e[n]=this.dragBlockIndex===n,e):(e[n]=this.collapsed,e):e),{})},componentsData(){return this.newValue.map(((e,t)=>{let n={props:{value:e,active:this.isDragging,context:this.contexts[t],isInsideLoop:!!(this.isInsideLoop||this.getFor(e)||this.getWhile(e)),readOnly:this.readOnly,ref:`action-tile-${t}`,spacerBottom:this.visibleBottomSpacers[t],spacerTop:this.visibleTopSpacers[t]},on:{delete:()=>this.deleteAction(t),drag:e=>this.onDragStart(t,e),dragend:e=>this.onDragEnd(e),dragenter:e=>this.onDragEnter(t,e),dragleave:e=>this.onDragLeave(t,e),dragover:e=>this.onDragOver(e),drop:e=>{try{this.onDrop(t,e)}finally{this.isDragging=!1}},input:e=>this.editAction(e,t)}};this.getCondition(e)&&this.newValue[t+1]&&this.isElse(this.newValue[t+1])&&(n.props.hasElse=!0),this.isActionsBlock(e)&&(n.props.indent=this.indent+1);const a=this.getFor(e);a&&(n.props.async=a.async,n.props.type="for");const i=this.getWhile(e);return i&&(n.props.type="while"),this.isSet(e)&&(n.props.value=e.set),n}))},conditions(){return this.newValue?.reduce?.(((e,t,n)=>{const a=this.getCondition(t);return a&&(e[n]={condition:a,actions:t[Object.keys(t)[0]]}),e}),{})||{}},contexts(){const e={...this.context},t=this.newValue?.reduce?.(((t,n,a)=>(t[a]=this.getContext(n,a,e),t)),{})||{},n=Object.keys(t).length;return n>0?(t[n]=this.getContext(null,n,t[n-1]),t[n]={...this.context,...e,...t[n-1],...t[n]}):t[0]={...this.context},t},dragBlockIndex(){if(null!=this.dragIndex&&1===this.dragIndices?.length&&this.dragIndices[0]===this.dragIndex&&this.isActionsBlock(this.newValue[this.dragIndex]))return this.dragIndex},isDragging:{get(){return this.dragging||(this.dragIndices?.length||0)>0},set(e){e||(this.dragIndices=null)}},elses(){return this.newValue?.reduce?.(((e,t,n)=>(this.isElse(t)&&this.conditions[n-1]&&(e[n]=t[Object.keys(t)[0]]),e)),{})||{}},fors(){return this.newValue?.reduce?.(((e,t,n)=>(this.getFor(t)&&(e[n]=t),e)),{})||{}},whiles(){return this.newValue?.reduce?.(((e,t,n)=>(this.getWhile(t)&&(e[n]=t),e)),{})||{}},loops(){return[...Object.keys(this.fors),...Object.keys(this.whiles)].reduce(((e,t)=>(e[t]=this.newValue[t],e)),{})},sets(){return this.newValue?.reduce?.(((e,t,n)=>(this.isSet(t)&&(e[n]=t),e)),{})||{}},hasChanges(){return this.newStringValue!==this.stringValue},stringValue(){return JSON.stringify(this.value)},newStringValue(){return JSON.stringify(this.newValue)},dragIndex(){if(this.isDragging)return this.dragIndices?.[0]},breakIndex(){return this.getTileIndex((e=>this.isBreak(e)))},continueIndex(){return this.getTileIndex((e=>this.isContinue(e)))},returnIndex(){return this.getTileIndex((e=>this.isReturn(e)))},returnValue(){if(null==this.returnIndex)return"";const e=this.newValue[this.returnIndex];if(null==e)return"";let t=null;return t=Array.isArray(e)?1===e.length?e[0].match(/^return\s*(.*)$/)?.[1]:e:e.return,t||""},showAddButtons(){return 0===this.indent&&0===this.newValue.length||!this.collapseAddButtons},showAddButtonsExpander(){return!this.readOnly&&(this.newValue?.length>0||this.indent>0)&&Object.entries(this.visibleAddButtons).filter((([e,t])=>t&&"action"!=e)).length>1},stopIndex(){return null!=this.breakIndex?this.breakIndex:null!=this.continueIndex?this.continueIndex:null!=this.returnIndex?this.returnIndex:null},allowAddButtons(){return!this.readOnly&&!this.collapsed&&null==this.stopIndex},visibleActions(){return this.newValue.reduce(((e,t,n)=>(null!=this.stopIndex&&n>this.stopIndex||(this.conditions[n]||this.elses[n]||this.fors[n]||this.whiles[n]||this.isAction(t)||this.isBreak(t)||this.isContinue(t)||this.isReturn(t)||this.isSet(t))&&(e[n]=t),e)),{})},visibleAddButtons(){return{action:this.allowAddButtons,return:this.allowAddButtons,condition:this.allowAddButtons,for:this.allowAddButtons,while:this.allowAddButtons,set:this.allowAddButtons,else:this.allowAddButtons&&this.parent&&this.getCondition(this.parent)&&!this.hasElse,break:this.allowAddButtons&&this.isInsideLoop,continue:this.allowAddButtons&&this.isInsideLoop}},visibleTopSpacers(){const e=this.dragIndex;return this.newValue.reduce(((t,n,a)=>(t[a]=!this.isElse(n)&&(null==e||e>a||e===a&&this.dragIndices.length>1),t)),{})},visibleBottomSpacers(){const e=this.dragIndex;return this.newValue.reduce(((t,n,a)=>(t[a]=null!=e&&(e1)||null==e&&a===this.newValue.length-1,t)),{})}},methods:{onDragStart(e,t){this.readOnly||(t=Array.isArray(t)?[e,...t]:[e],this.dragIndices=t,this.$emit("drag",t))},onDragEnd(){this.isDragging=!1,this.$emit("dragend")},onDragEnter(e,t){this.isDragging&&!this.readOnly&&(t.stopPropagation?.(),this.$emit("dragenter",e))},onDragLeave(e,t){this.isDragging&&!this.readOnly&&(t.stopPropagation?.(),this.$emit("dragleave",e))},onDragOver(e){this.$emit("dragover",e)},onDrop(e,t){if(!this.isDragging||null==t||null==e||this.readOnly)return;t.stopPropagation?.();let n=[];if(n=t.detail?.length?[e,...t.detail]:[e],t=new CustomEvent("drop",{bubbles:!1,cancelable:!0,detail:n}),this.indent>0)return void this.$emit("drop",t);const a=this.dragIndices.slice(-1)[0];e=t.detail.slice(-1)[0];const i=this.getParentBlock(this.dragIndices),s=this.getParentBlock(n);if(!i||!s)return;const o=i?.[a],r=s?.[e];if(!o)return;const l=this.getCondition(o)&&this.isElse(i[a+1])?2:1;this.isElse(r)&&(e+=1),s.splice(e,0,...i.splice(a,l)),this.$emit("input",this.newValue)},onCollapse(){this.$emit("collapse")},getContext(e,t,n){const a={...n||this.context||{}};t>0&&(a.output={source:"action",action:this.newValue[t-1]}),this.isSet(e)&&Object.keys(e.set).forEach((e=>{e?.length&&(n[e]={source:"local"})}));const i=this.getFor(e)?.iterator;return i?.length&&(n[i]={source:"for"}),a},getParentBlock(e){e=[...e];let t=this.newValue;while(t&&e.length>1)if(t=t[e.shift()],t){const e=this.getKey(t);e&&(t=t[e])}return t},editAction(e,t){e?.target&&e.stopPropagation?e.stopPropagation?.():(this.newValue[t]=e,this.$emit("input",this.newValue))},addAction(e){this.newValue.push({...e,action:e.name||e.action})},addCondition(){this.newValue.push({"if ${True}":[]}),this.selectLastExprEditor()},addForLoop(){this.newValue.push({"for _ in ${range(10)}":[]}),this.selectLastExprEditor()},addWhileLoop(){this.newValue.push({"while ${True}":[]}),this.selectLastExprEditor()},addBreak(){this.newValue.push("break")},addContinue(){this.newValue.push("continue")},addSet(){this.newValue.push({set:{}}),this.selectLastExprEditor()},addReturn(){this.newValue.push({return:null}),this.selectLastExprEditor()},editReturn(e){this.newValue[this.returnIndex]={return:e?.length?e:null}},selectLastExprEditor(){this.$nextTick((()=>{const e=this.$refs["action-tile-"+(this.newValue.length-1)]?.[0];if(!e)return;const t=e.$el?.querySelector(".tile");t&&(t.click(),this.$nextTick((()=>{const t=e.$el?.querySelector(".editor-container");if(!t)return;const n=t.querySelector('input[type="text"]');n&&(n.value="",n.focus())})))}))},addElse(){this.newValue.push({else:[]})},deleteAction(e){const t=this.getCondition(this.newValue[e])&&this.isElse(this.newValue?.[e+1])?2:1,n=this.$refs[`action-tile-${e}`]?.[0]?.$el;n?(n.classList.add("shrink"),setTimeout((()=>{n.classList.remove("shrink"),this.newValue.splice(e,t)}),300)):this.newValue.splice(e,t)},getTileIndex(e){const t=this.newValue?.reduce?.(((t,n,a)=>t>=0?t:e(n)?a:t),-1);return t>=0?t:null},syncSpacers(){this.$nextTick((()=>{this.spacerElements=Object.keys(this.newValue).reduce(((e,t)=>(e[t]=this.$refs[`dropTarget_${t}`]?.[0],e)),{})}))},syncValue(){this.value&&this.hasChanges&&(this.newValue=this.value)}},watch:{newValue:{deep:!0,handler(e){this.$emit("input",e),this.syncSpacers()}},dragIndices(){this.syncSpacers()},value:{immediate:!0,deep:!0,handler(){this.syncValue()}}},mounted(){this.syncValue(),this.syncSpacers()},updated(){this.hasChanges&&this.$emit("update",this.newValue)}};const Un=(0,U.Z)(Hn,[["render",x],["__scopeId","data-v-74ca2010"]]);var Gn=Un},2544:function(e,t,n){n.d(t,{Z:function(){return h}});var a=n(6252),i=n(9963);const s=e=>((0,a.dD)("data-v-0bc64e95"),e=e(),(0,a.Cn)(),e),o=s((()=>(0,a._)("i",{class:"fas fa-clipboard"},null,-1))),r=[o];function l(e,t,n,s,o,l){return(0,a.wg)(),(0,a.iD)("button",{class:"copy-button",ref:"copyButton",title:"Copy to clipboard",onClick:t[0]||(t[0]=(0,i.iM)(((...e)=>l.copy&&l.copy(...e)),["prevent"])),onInput:t[1]||(t[1]=(0,i.iM)(((...e)=>l.copy&&l.copy(...e)),["prevent"]))},r,544)}var d=n(8637),c={name:"CopyButton",emits:["input","click"],mixins:[d.Z],props:{text:{type:String}},methods:{async copy(e){this.text?.length&&await this.copyToClipboard(this.text),this.$emit(e.type,e)}}},u=n(3744);const p=(0,u.Z)(c,[["render",l],["__scopeId","data-v-0bc64e95"]]);var h=p},2126:function(e,t,n){n.d(t,{Z:function(){return p}});var a=n(6252),i=n(3577);const s=["href"],o=["src","alt","title"],r=["src","alt","title"];function l(e,t,n,l,d,c){return(0,a.wg)(),(0,a.iD)("div",{class:"extension-icon",style:(0,i.j5)({width:`${n.size}`,height:`${n.size}`})},[n.withDocsLink?((0,a.wg)(),(0,a.iD)("a",{key:0,href:c.docsUrl,target:"_blank"},[(0,a._)("img",{src:c.iconUrl,alt:c.extensionName,title:c.extensionName},null,8,o)],8,s)):((0,a.wg)(),(0,a.iD)("img",{key:1,src:c.iconUrl,alt:c.extensionName,title:c.extensionName},null,8,r))],4)}var d={props:{name:{type:String,required:!0},size:{type:String,default:"1.75em"},withDocsLink:{type:Boolean,default:!1}},computed:{iconUrl(){return`https://static.platypush.tech/icons/${this.extensionName}-64.png`},extensionType(){return"backend"==this.name.split(".")[0]?"backend":"plugin"},extensionName(){const e=this.name.split(".");return e.length<1?this.name:("backend"==e[0]&&e.shift(),e.join("."))},docsUrl(){return`https://docs.platypush.tech/platypush/${this.extensionType}s/${this.extensionName}.html`}}},c=n(3744);const u=(0,c.Z)(d,[["render",l],["__scopeId","data-v-0353c248"]]);var p=u}}]); +//# sourceMappingURL=1019.d219f976.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1019.d219f976.js.map b/platypush/backend/http/webapp/dist/static/js/1019.d219f976.js.map new file mode 100644 index 0000000000..48a4b9a684 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1019.d219f976.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1019.d219f976.js","mappings":"iQACOA,MAAM,gB,SACJA,MAAM,kB,UAEPC,EAAAA,EAAAA,GAAyB,OAApBD,MAAM,aAAW,W,UACtBC,EAAAA,EAAAA,GAA0B,OAArBD,MAAM,cAAY,W,GADvBE,EACAC,G,SAyDGH,MAAM,wC,SAcNA,MAAM,wB,SAMNA,MAAM,6B,SACJA,MAAM,wC,SAINA,MAAM,oC,SAINA,MAAM,sC,SAINA,MAAM,qC,SAINA,MAAM,uC,SAINA,MAAM,uC,SAINA,MAAM,0C,SAINA,MAAM,qC,oTA9GjBI,EAAAA,EAAAA,IAmHM,MAnHNC,EAmHM,CAlH8BC,EAAAC,OAAS,IAAH,WAAxCH,EAAAA,EAAAA,IAKM,MALNI,EAKM,EAJJP,EAAAA,EAAAA,GAGM,OAHDD,MAAM,gBAAiBS,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAEC,EAAAC,YAAAD,EAAAC,cAAAF,K,uBAMrCV,EAAAA,EAAAA,GA0GM,OA1GDD,OAAKc,EAAAA,EAAAA,IAAA,CAAC,UAAS,CAAAC,SAAoBH,EAAAI,e,gBACtCZ,EAAAA,EAAAA,IAkDMa,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAjDyBN,EAAAO,gBAAc,CAAhCC,EAAQC,M,WADrBjB,EAAAA,EAAAA,IAkDM,OAlDDJ,MAAM,kBAELsB,IAAKD,G,CAMaT,EAAAW,WAAWF,KAAK,WALtCG,EAAAA,EAAAA,IAK2CC,GAL3CC,EAAAA,EAAAA,IAK2C,C,kBALnBd,EAAAe,eAAeN,GAAOO,OAC9BC,EAAAA,EAAAA,IAAMjB,EAAyBe,eAAVN,GAAOS,IAAE,CAC7BC,UAAWnB,EAAAoB,gBAAgBX,GAC3BN,SAAUH,EAAAI,WACViB,UAAUrB,EAAAsB,U,+CAQAtB,EAAAuB,MAAMd,KAAK,WALtCG,EAAAA,EAAAA,IAK2CC,GAL3CC,EAAAA,EAAAA,IAK2C,C,kBALnBd,EAAAe,eAAeN,GAAOO,OAC9BC,EAAAA,EAAAA,IAAMjB,EAAyBe,eAAVN,GAAOS,IAAE,CAC7BC,UAAWnB,EAAAoB,gBAAgBX,GAC3BN,SAAUH,EAAAI,WACV,WAAS,I,mCAOJJ,EAAAwB,MAAMf,KAAK,WAJjCG,EAAAA,EAAAA,IAIsCa,GAJtCX,EAAAA,EAAAA,IAIsC,C,kBAJnBd,EAAAe,eAAeN,GAAOO,OAC9BC,EAAAA,EAAAA,IAAMjB,EAAyBe,eAAVN,GAAOS,IAAE,CAC7BC,UAAWnB,EAAAoB,gBAAgBX,GAC3BN,SAAUH,EAAAI,a,mCAOOJ,EAAA0B,KAAKjB,KAAK,WAJvCG,EAAAA,EAAAA,IAI4Ce,GAJ5Cb,EAAAA,EAAAA,IAI4C,C,kBAJlBd,EAAAe,eAAeN,GAAOO,OAC9BC,EAAAA,EAAAA,IAAMjB,EAAyBe,eAAVN,GAAOS,IAAE,CAC7BC,UAAWnB,EAAAoB,gBAAgBX,GAC3BN,SAAUH,EAAAI,a,mCAOPwB,EAAAC,QAAQrB,KAAM,WAJpCI,EAAAA,EAAAA,IAIyCkB,EAAA,C,MAJ7BC,OAAQ/B,EAAAI,WACR4B,SAAUtC,EAAAsC,SACVC,UAAWjC,EAAAe,eAAeN,GAAOO,MAAMiB,UACvCC,SAAMC,GAAEnC,EAAAoC,aAAa3B,I,sDAORmB,EAAAS,WAAW7B,KAAM,WAJ1CI,EAAAA,EAAAA,IAI+C0B,EAAA,C,MAJhCP,OAAQ/B,EAAAI,WACR4B,SAAUtC,EAAAsC,SACVC,UAAWjC,EAAAe,eAAeN,GAAOO,MAAMiB,UACvCC,SAAMC,GAAEnC,EAAAoC,aAAa3B,I,sDAObmB,EAAAW,SAAS/B,KAAM,WAJtCI,EAAAA,EAAAA,IAI2C4B,GAJ3C1B,EAAAA,EAAAA,IAI2C,C,kBAJvBd,EAAAe,eAAeN,GAAOO,MAAK,CAClCyB,MAAOzC,EAAA0C,YACPC,SAAM7C,EAAA,KAAAA,EAAA,GAAAqC,GAAEnC,EAAA4C,WAAWT,IACnBD,SAAMC,GAAEnC,EAAAoC,aAAa3B,K,+BAKNmB,EAAAiB,SAASrC,KAAYd,EAAAyB,YAAS,WAF1DP,EAAAA,EAAAA,IAE8DkC,GAF9DhC,EAAAA,EAAAA,IAE8D,C,kBAFrCd,EAAAe,eAAeN,GAAOO,OAC9BC,EAAAA,EAAAA,IAAMjB,EAAyBe,eAAVN,GAAOS,KAAE,+B,MAIOlB,EAAA+C,kBAAkBvC,SAAM,WAAhFhB,EAAAA,EAAAA,IAYM,MAZNwD,EAYM,EAXJC,EAAAA,EAAAA,IAUWC,EAAA,CAVAnB,OAAQ/B,EAAAI,WACR4B,UAAU,EACVmB,cAAc,EACdlB,WAAYmB,EAAAC,SAASC,OACrBb,MAAOW,EAAAG,UACPC,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,GAAEnC,EAAAwD,OAAO,EAAGrB,K,mBACzB,IAGiC,EAHjCc,EAAAA,EAAAA,IAGiCQ,EAAA,CAHpBhB,MAAOW,EAAAG,UACPG,QAAS1D,EAAA2D,SAASC,OAAOC,KAAK7D,EAAA2D,UAAUL,OAAS,GACjDQ,WAAW,EACXC,QAAO/D,EAAAgE,W,mGAIgBhE,EAAAiE,yBAAsB,WAA9DzE,EAAAA,EAAAA,IAIM,MAJN0E,EAIM,EAHJ7E,EAAAA,EAAAA,GAES,UAFAQ,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAeiB,EAAAgB,oBAAsBhB,EAAAgB,oBAAkB,sB,EACnE/E,EAAAA,EAAAA,GAA+E,KAA5ED,OAAKc,EAAAA,EAAAA,IAAA,CAAC,MAAckD,EAAAgB,mBAAqB,gBAAkB,iB,6BAIrBpE,EAAAqE,iBAAc,WAA3D7E,EAAAA,EAAAA,IAgCM,MAhCN8E,EAgCM,CA/BoDtE,EAAA+C,kBAAkBwB,SAAM,WAAhF/E,EAAAA,EAAAA,IAEM,MAFNgF,EAEM,EADJvB,EAAAA,EAAAA,IAA2EwB,EAAA,CAAlEC,KAAK,qBAAqBC,MAAM,aAAc9E,QAAOG,EAAA4E,W,uCAGZ5E,EAAA+C,kBAAkB8B,YAAS,WAA/ErF,EAAAA,EAAAA,IAEM,MAFNsF,EAEM,EADJ7B,EAAAA,EAAAA,IAA8EwB,EAAA,CAArEC,KAAK,kBAAkBC,MAAM,gBAAiB9E,QAAOG,EAAA+E,c,uCAGV/E,EAAA+C,kBAAkBiC,OAAI,WAA5ExF,EAAAA,EAAAA,IAEM,MAFNyF,EAEM,EADJhC,EAAAA,EAAAA,IAA8EwB,EAAA,CAArEC,KAAK,kBAAkBC,MAAM,WAAY9E,QAAKC,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,mB,eAGZlF,EAAA+C,kBAAkBoC,MAAG,WAA1E3F,EAAAA,EAAAA,IAEM,MAFN4F,EAEM,EADJnC,EAAAA,EAAAA,IAAoFwB,EAAA,CAA3EC,KAAK,2BAA2BC,MAAM,eAAgB9E,QAAOG,EAAAqF,Y,uCAGjBrF,EAAA+C,kBAAkBuC,QAAK,WAA9E9F,EAAAA,EAAAA,IAEM,MAFN+F,EAEM,EADJtC,EAAAA,EAAAA,IAAwFwB,EAAA,CAA/EC,KAAK,2BAA2BC,MAAM,iBAAkB9E,QAAOG,EAAAwF,c,uCAGnBxF,EAAA+C,kBAAkB0C,QAAK,WAA9EjG,EAAAA,EAAAA,IAEM,MAFNkG,EAEM,EADJzC,EAAAA,EAAAA,IAAkEwB,EAAA,CAAzDC,KAAK,cAAcC,MAAM,YAAa9E,QAAOG,EAAA2F,U,uCAGE3F,EAAA+C,kBAAkB6C,WAAQ,WAApFpG,EAAAA,EAAAA,IAEM,MAFNqG,EAEM,EADJ5C,EAAAA,EAAAA,IAA0EwB,EAAA,CAAjEC,KAAK,gBAAgBC,MAAM,eAAgB9E,QAAOG,EAAA8F,a,uCAGR9F,EAAA+C,kBAAkBgD,MAAG,WAA1EvG,EAAAA,EAAAA,IAEM,MAFNwG,EAEM,EADJ/C,EAAAA,EAAAA,IAAoFwB,EAAA,CAA3EC,KAAK,8BAA8BC,MAAM,gBAAiB9E,QAAOG,EAAAiG,Q,uKC/GlFrF,EAAAA,EAAAA,IAgBWsC,GAhBXpC,EAAAA,EAAAA,IAgBW,CAhBD1B,MAAM,SACL2C,OAAQrC,EAAAqC,OACR5B,SAAUiD,EAAAjD,SACV,gBAAeT,EAAAyD,aACf,aAAYzD,EAAAuC,UACZQ,MAAO/C,EAAA+C,QACRxB,EAAAA,EAAAA,IAAMjB,EAAkBe,eAAHG,KAAE,C,kBAC/B,IAQgD,EARhD+B,EAAAA,EAAAA,IAQgDQ,GARhD3C,EAAAA,EAAAA,IAQgD,CARnC2B,MAAO/C,EAAA+C,MACPiB,QAAShE,EAAAgE,QACTI,WAAYpE,EAAAsC,SACZ,YAAWtC,EAAAsC,SACX,eAActC,EAAAsC,WACff,EAAAA,EAAAA,IAAMjB,EAAkBe,eAAHG,IAAE,CACtBgF,cAAWpG,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,cAAe/C,IAClCgE,QAAIhC,EAAAA,EAAAA,IAAOnE,EAAAoG,YAAW,UACtBlE,SAAMpC,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,SAAU/C,M,kNCflC/C,MAAM,yB,UASLC,EAAAA,EAAAA,GAA+B,KAA5BD,MAAM,qBAAmB,W,GAA5BQ,G,SAGGR,MAAM,e,GACHA,MAAM,Q,GAGNA,MAAM,Q,SAKTA,MAAM,c,UACTC,EAAAA,EAAAA,GAA8B,KAA3BD,MAAM,oBAAkB,W,SAGxBA,MAAM,e,GAEFA,MAAM,Y,GAINA,MAAM,a,GAuBZA,MAAM,2B,2KAtDbI,EAAAA,EAAAA,IA+DM,MA/DNC,EA+DM,EA9DJJ,EAAAA,EAAAA,GAmCM,OAnCDD,OAAKc,EAAAA,EAAAA,IAAA,CAAC,cAAa,CAAAmG,IACJrG,EAAAsG,SACfC,IAAI,OACH1G,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAE6B,EAAA4E,MAAMC,aAAaC,MAAnB9E,EAAA4E,MAAMC,aAAaC,QAAI3G,K,CAGvBL,EAAAiH,aAAejH,EAAAsC,WAAQ,WAFlCxC,EAAAA,EAAAA,IAKM,O,MALDJ,MAAM,gBACNuF,MAAM,SAEL9E,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOP,EAAAsD,MAAM,WAAD,Y,oBAIQlF,EAAA4G,MAAMtD,SAAM,WAA3C9D,EAAAA,EAAAA,IAOM,MAPND,EAOM,EANJF,EAAAA,EAAAA,GAEO,OAFPwH,EAEO,EADL5D,EAAAA,EAAAA,IAAyD6D,EAAA,CAAzCF,KAAM5G,EAAA4G,KAAKG,MAAM,KAAK,GAAIC,KAAK,S,oBAEjD3H,EAAAA,EAAAA,GAEO,OAFP2D,GAEOiE,EAAAA,EAAAA,IADFjH,EAAA4G,MAAI,mBAIXpH,EAAAA,EAAAA,IAEM,MAFN0E,EAEM,CADJI,GAA8B,4BAGDV,OAAOC,KAAKnE,EAAA+C,MAAM1C,MAAQ,CAAC,IAAIuD,SAAM,WAApE9D,EAAAA,EAAAA,IAUM,MAVNgF,EAUM,gBATJhF,EAAAA,EAAAA,IAQMa,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IARiCZ,EAAA+C,MAAM1C,MAAI,CAAxBmH,EAAKN,M,WAA9BpH,EAAAA,EAAAA,IAQM,OARDJ,MAAM,MAAyCsB,IAAKkG,G,EACvDvH,EAAAA,EAAAA,GAEM,MAFNyF,GAEMmC,EAAAA,EAAAA,IADDL,GAAI,IAGTvH,EAAAA,EAAAA,GAEM,MAFN4F,GAEMgC,EAAAA,EAAAA,IADDC,GAAG,Q,6BAYGxH,EAAAoE,YAAS,WAN1BlD,EAAAA,EAAAA,IAM8BuG,EAAA,C,MANlBC,QAAShE,EAAAiE,KACTC,SAAU5H,EAAAsC,SACVS,MAAO/C,EAAA+C,MACP0D,OAAIrG,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,IACpBoF,UAAOzH,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,UAAW/C,IAC1BqB,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,K,wDASfzC,EAAAoE,YAAS,WAN1BlD,EAAAA,EAAAA,IAM8B4G,EAAA,C,MANlBJ,QAAShE,EAAAiE,KACTC,SAAU5H,EAAAsC,SACVyF,YAAS3H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BuF,YAAS5H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BwF,WAAQ7H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,WAAY/C,IAC5BqB,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,K,iDAGhC9C,EAAAA,EAAAA,GAQM,MARN+F,EAQM,EAPJnC,EAAAA,EAAAA,IAMQ2E,EAAA,CANDrB,IAAI,eAAe5B,MAAM,e,mBAC9B,IAIiE,MAAxC6B,MAAMC,cAAcrD,OAAOyE,YAAS,WAJ7DjH,EAAAA,EAAAA,IAIiEkH,EAAA,C,MAJlDrF,MAAO/C,EAAA+C,MACPiB,QAAShE,EAAAgE,QACT,aAAYhE,EAAAsC,SACZ+B,QAAO/D,EAAA+D,S,kKC3D5BvE,EAAAA,EAAAA,IAMM,OANDJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,UAAS,CAAA6H,QACI/H,EAAAgI,mBAClBC,OAAKC,EAAAA,EAAAA,IAAA,CAAAC,IAAA,GAAY/E,EAAA+E,QAAGC,KAAA,GAAehF,EAAAgF,Y,CAG5BpI,EAAAgI,kBAAe,WAF1BxI,EAAAA,EAAAA,IAE8B,O,MAFzBJ,MAAM,UACNiJ,UAAQ3I,EAAA0H,SAASkB,WAAa,O,+BAMvC,OACEC,MAAO,CACL,cACA,OACA,UACA,QAGFvH,MAAO,CACLsG,SAAU,CACRkB,KAAMC,QACNC,SAAS,GAGXtB,QAAS,CACPoB,KAAM5E,QAGR+E,wBAAyB,CACvBH,KAAMI,OACNF,QAAS,KAGXG,4BAA6B,CAC3BL,KAAMI,OACNF,QAAS,IAGXjG,MAAO,CACL+F,KAAM,CAAC5E,OAAQkF,OAAQF,OAAQH,QAASM,OACxCL,QAASA,KAAA,CAAS,KAItBM,IAAAA,GACE,MAAO,CACL7I,UAAU,EACV8I,aAAc,KACdC,eAAgB,CACdC,YAAaC,KAAKC,cAClBC,KAAMF,KAAKjD,OACXoD,QAASH,KAAKI,UACdC,UAAWL,KAAKhD,YAChBsD,KAAMN,KAAKI,UACXG,YAAaP,KAAKI,UAClBI,SAAUR,KAAKS,WACfC,UAAWV,KAAKW,YAChBC,WAAYZ,KAAKa,cAEnBC,oBAAqB,KACrB9B,KAAM,EACND,IAAK,EACLgC,oBAAqB,KACrBC,qBAAsB,CAAC,EAAG,GAC1BC,iBAAkB,GAClBC,iBAAkB,KAClBC,WAAY,KACZC,iBAAkB,KAEtB,EAEAC,SAAU,CACRzC,eAAAA,GACE,OAAOoB,KAAKjJ,UAAYiJ,KAAKmB,UAC/B,EAEAG,YAAAA,GACE,OAAOtB,KAAKgB,qBAAqB,IAAMhB,KAAKgB,qBAAqB,EACnE,GAGFO,QAAS,CACPtB,aAAAA,CAAcuB,IAGRxB,KAAK9B,UAAa8B,KAAKmB,YAQ3BK,EAAMC,iBACND,EAAME,kBACN1B,KAAKhD,YAAYwE,IATfxB,KAAKlE,MAAM,cAAe0F,EAU9B,EAEAxE,WAAAA,CAAYwE,GACNxB,KAAK9B,WAIT8B,KAAKjJ,UAAW,EAChBiJ,KAAKH,aAAeG,KAAK2B,OAAOrC,aAAasC,IAAI1C,UACjDsC,EAAMnI,MAAQ2G,KAAK3G,MAEfmI,EAAMK,eACRL,EAAMK,aAAaC,WAAa,OAChCN,EAAMK,aAAaE,cAAgB,OACnCP,EAAMK,aAAaG,QAAQ,mBAAoBC,KAAKC,UAAUlC,KAAK3G,SAGrE2G,KAAKmC,uBACLnC,KAAKlE,MAAM,OAAQ0F,GACrB,EAEApB,SAAAA,CAAUoB,GACJxB,KAAK9B,WAIT8B,KAAKoC,QACLpC,KAAKlE,MAAM,UAAW0F,GACxB,EAEAX,YAAAA,CAAaW,GACX,GAAIxB,KAAK9B,SACP,OAGF,MAAMmE,EAAQb,EAAMc,UAAU,GACzBD,IAILrC,KAAKmB,WAAa,CAACkB,EAAME,QAASF,EAAMG,SACxCxC,KAAKmC,uBACLnC,KAAKe,oBAAsB0B,YAAW,KACpCzC,KAAKhD,YAAYwE,EAAM,GACtBxB,KAAKT,yBACV,EAEAoB,WAAAA,CAAYa,GACV,GAAIxB,KAAK9B,SACP,OAGF,MAAMmE,EAAQb,EAAMc,UAAU,GAC9B,IAAMD,IAASrC,KAAKmB,WAClB,OAMF,GAAInB,KAAKe,oBAAqB,CAC5B,MAAM2B,EAAWC,KAAKC,MACpBP,EAAME,QAAUvC,KAAKmB,WAAW,GAChCkB,EAAMG,QAAUxC,KAAKmB,WAAW,IAGlC,GAAIuB,EAAW1C,KAAKP,4BAElB,YADAO,KAAKoC,QAIPpC,KAAKhD,YAAYwE,EACnB,CAEAA,EAAMC,iBACN,MAAM,QAAEc,EAAO,QAAEC,GAAYH,EAC7BrC,KAAKhB,KAAOuD,EACZvC,KAAKjB,IAAMyD,EACXxC,KAAKhB,KAAOuD,EAAUvC,KAAKmB,WAAW,GACtCnB,KAAKjB,IAAMyD,EAAUxC,KAAKmB,WAAW,GACrCnB,KAAK6C,YAAYrB,GAGjB,IAAIsB,EAAYC,SAASC,kBAAkBT,EAASC,GAASS,QAC3DrB,GAAMA,EAAGsB,SAASJ,YAAclB,EAAGuB,UAAUC,SAAS,eACpD,GAECN,GAKL9C,KAAKqD,cAAc,YAAaP,GAChC9C,KAAKoB,iBAAmB0B,GALtB9C,KAAKoB,iBAAmB,IAM5B,EAEAyB,WAAAA,CAAYrB,GACV,GAAIxB,KAAK9B,SACP,OAGF,MAAMoF,EAAStD,KAAKuD,sBACpB,IAAKD,EACH,OAGF,MAAMjB,EAAQb,EAAMc,UAAU,GAC9B,IAAKD,EACH,OAGF,MAAM,QAAEE,EAAO,QAAEC,GAAYH,EACvBmB,EAAOF,EAAOG,wBACdC,EAAc,EACjBnB,EAAUiB,EAAKxE,MAAQwE,EAAKG,OAC5BnB,EAAUgB,EAAKzE,KAAOyE,EAAKI,QAGxBC,EAAkB,CAAC,EAAG,GAExBH,EAAY,GAAK,EACnBG,EAAgB,IAAM,EACbH,EAAY,GAAK,IAC1BG,EAAgB,GAAK,GAGnBH,EAAY,GAAK,EACnBG,EAAgB,IAAM,EACbH,EAAY,GAAK,IAC1BG,EAAgB,GAAK,GAGvB7D,KAAK8D,kBAAkBD,EAAiBP,EAC1C,EAEA7C,UAAAA,CAAWe,GACT,GAAIxB,KAAK9B,SACP,OAGF,MAAM4E,EAAY9C,KAAKoB,iBACnB0B,GACF9C,KAAKqD,cAAc,OAAQP,GAG7B9C,KAAKI,UAAUoB,EACjB,EAEAsC,iBAAAA,CAAkBzK,EAAOiK,GACvBtD,KAAKgB,qBAAuB3H,EACtBA,EAAM,IAAMA,EAAM,GAKpB2G,KAAKkB,mBAITlB,KAAKkB,iBAAmB6C,aAAY,KAClC,IAAKT,EACH,OAGF,MAAOU,EAAGC,GAAK5K,EACfiK,EAAOY,SAASF,EAAIhE,KAAKiB,iBAAkBgD,EAAIjE,KAAKiB,iBAAiB,GACpE,IAAO,KAfRjB,KAAKmE,cAgBT,EAEAZ,mBAAAA,GACE,IAAID,EAAStD,KAAKhC,SAASoG,cAC3B,MAAOd,EAAQ,CACb,GACEA,EAAOe,aAAef,EAAOgB,cAC7BhB,EAAOiB,YAAcjB,EAAOkB,YAC5B,CACA,MAAM3F,EAAQ4F,OAAOC,iBAAiBpB,GACtC,GAAI,CAAC,SAAU,QAAQqB,SAAS9F,EAAM+F,YAAc,CAAC,SAAU,QAAQD,SAAS9F,EAAMgG,WACpF,OAAOvB,CAEX,CAEAA,EAASA,EAAOc,aAClB,CACA,OAAO,IACT,EAEAf,aAAAA,CAAcjE,EAAM0D,GAClBA,EAAUO,cACR,IAAIyB,UACF1F,EAAM,CACJ2F,OAAQ,IACHjC,EACHzJ,MAAO2G,KAAK3G,SAKtB,EAEA8K,YAAAA,GACEnE,KAAKgB,qBAAuB,CAAC,EAAG,GAE5BhB,KAAKkB,mBACP8D,cAAchF,KAAKkB,kBACnBlB,KAAKkB,iBAAmB,KAE5B,EAEAiB,oBAAAA,GACMnC,KAAKe,sBACPkE,aAAajF,KAAKe,qBAClBf,KAAKe,oBAAsB,KAE/B,EAEAqB,KAAAA,GACEpC,KAAKmC,uBACLnC,KAAKmE,eACLnE,KAAKjJ,UAAW,EAChBiJ,KAAKmB,WAAa,KAClBnB,KAAKoB,iBAAmB,KACxBpB,KAAKhB,KAAO,EACZgB,KAAKjB,IAAM,EACXiB,KAAKc,oBAAsB,IAC7B,EAEAoE,eAAAA,GACEC,QAAQC,MAAM,8BAA+BpF,KAAKhC,SAClDgC,KAAKhC,SAASqH,aAAa,aAAa,GACxC7K,OAAO8K,QAAQtF,KAAKF,gBAAgByF,SAAQ,EAAE/D,EAAOgE,MACnDxF,KAAKhC,SAASyH,iBAAiBjE,EAAOgE,EAAQ,GAElD,EAEAE,iBAAAA,GACEP,QAAQC,MAAM,kCAAmCpF,KAAKhC,SACtDgC,KAAKhC,SAASqH,aAAa,aAAa,GACxC7K,OAAO8K,QAAQtF,KAAKF,gBAAgByF,SAAQ,EAAE/D,EAAOgE,MACnDxF,KAAKhC,SAAS2H,oBAAoBnE,EAAOgE,EAAQ,GAErD,GAGFI,MAAO,CACL7O,QAAAA,GACMiJ,KAAKjJ,UACPiJ,KAAKhC,SAASmF,UAAU0C,IAAI,WAC5B7F,KAAK8F,WAAU,KACR9F,KAAKmB,aAIVnB,KAAKc,oBAAsB,CACzBd,KAAKhC,SAAS+H,WAAa/F,KAAKmB,WAAW,GAC3CnB,KAAKhC,SAASgI,UAAYhG,KAAKmB,WAAW,IAC5C,KAGFnB,KAAKhC,SAASmF,UAAU8C,OAAO,UAEnC,EAEA/H,QAAAA,CAAS7E,GACHA,GACF2G,KAAKoC,QACLpC,KAAK0F,qBAEL1F,KAAKkF,iBAET,EAEAlH,OAAAA,GACEgC,KAAK0F,oBACL1F,KAAKkF,iBACP,EAEA9D,gBAAAA,CAAiB/H,EAAO6M,GAClB7M,IAAU6M,IAIVA,GACFlG,KAAKqD,cAAc,YAAa6C,GAG9B7M,GACF2G,KAAKqD,cAAc,YAAahK,GAEpC,GAGF8M,OAAAA,GACEnG,KAAKkF,iBACP,EAEAkB,SAAAA,GACEpG,KAAK0F,mBACP,G,UCpYF,MAAMW,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,Q,SCROrQ,MAAM,a,0CAAXI,EAAAA,EAAAA,IAAyB,MAAzBC,E,CAIF,OACE8I,MAAO,CACL,YACA,YACA,WACA,QAGFvH,MAAO,CACLoG,QAAS,CACPoB,KAAM5E,QAGR7B,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGXpB,SAAU,CACRkB,KAAMC,QACNC,SAAS,IAIbM,IAAAA,GACE,MAAO,CACLE,eAAgB,CACdwG,UAAWtG,KAAKuG,YAChBC,UAAWxG,KAAKyG,YAChBC,SAAU1G,KAAK2G,WACfrG,KAAMN,KAAK5F,QAEbwM,UAAU,EAEd,EAEArF,QAAS,CACPgF,WAAAA,CAAY/E,GACNxB,KAAK9B,UAAY8B,KAAK4G,WAI1B5G,KAAK4G,UAAW,EAChB5G,KAAKlE,MAAM,YAAa0F,GAC1B,EAEAiF,WAAAA,CAAYjF,GACV,GAAIxB,KAAK9B,WAAa8B,KAAK4G,SACzB,OAGF,MAAMpD,EAAOxD,KAAKhC,QAAQyF,wBAExBjC,EAAMe,SAAWiB,EAAKxE,MACtBwC,EAAMe,SAAWiB,EAAKqD,OACtBrF,EAAMgB,SAAWgB,EAAKzE,KACtByC,EAAMgB,SAAWgB,EAAKsD,SAKxB9G,KAAK4G,UAAW,EAChB5G,KAAKlE,MAAM,YAAa0F,GAC1B,EAEAmF,UAAAA,CAAWnF,GACLxB,KAAK9B,WAITsD,EAAMC,iBACNzB,KAAK4G,UAAW,EAChB5G,KAAKlE,MAAM,WAAY0F,GACzB,EAEApH,MAAAA,CAAOoH,GACDxB,KAAK9B,WAIT8B,KAAK4G,UAAW,EAChB5G,KAAKlE,MAAM,OAAQ0F,GACrB,EAEA0D,eAAAA,GACE,MAAMtD,EAAK5B,KAAKhC,QACX4D,IAILuD,QAAQC,MAAM,8BAA+BpF,KAAKhC,SAC9C4D,EAAGsB,UACLtB,EAAGsB,QAAQJ,WAAY,GAGrBlB,EAAG6D,kBACLjL,OAAO8K,QAAQtF,KAAKF,gBAAgByF,SAAQ,EAAE/D,EAAOgE,MACnD5D,EAAG6D,iBAAiBjE,EAAOgE,EAAQ,IAGzC,EAEAE,iBAAAA,GACE,MAAM9D,EAAK5B,KAAKhC,QACX4D,IAILuD,QAAQC,MAAM,kCAAmCpF,KAAKhC,SAClD4D,EAAGsB,SAASJ,kBACPlB,EAAGsB,QAAQJ,UAGhBlB,EAAG+D,qBACLnL,OAAO8K,QAAQtF,KAAKF,gBAAgByF,SAAQ,EAAE/D,EAAOgE,MACnD5D,EAAG+D,oBAAoBnE,EAAOgE,EAAQ,IAG5C,GAGFI,MAAO,CACLjN,MAAAA,GACMqH,KAAKrH,OACPqH,KAAKhC,SAASmF,UAAU0C,IAAI,UAE5B7F,KAAKhC,SAASmF,UAAU8C,OAAO,SAEnC,EAEA/H,SAAU,CACRsH,OAAAA,GACMxF,KAAK9B,SACP8B,KAAKhC,SAASmF,UAAU0C,IAAI,YAE5B7F,KAAKhC,SAASmF,UAAU8C,OAAO,WAEnC,GAGFjI,QAAS,CACPwH,OAAAA,GACExF,KAAK0F,oBACL1F,KAAKkF,iBACP,GAGF0B,SAAU,CACRpB,OAAAA,CAAQnM,EAAO6M,GACT7M,IAAU6M,EACZlG,KAAKhC,SAASmF,UAAU0C,IAAI,aAClBxM,GAAS6M,GACnBlG,KAAKhC,SAASmF,UAAU8C,OAAO,WAEnC,IAIJE,OAAAA,GACEnG,KAAK8F,WAAU,KACb9F,KAAKkF,iBAAiB,GAE1B,EAEAkB,SAAAA,GACEpG,KAAK0F,mBACP,GCtKF,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,KAEpE,Q,8BJoEA,IACEqB,OAAQ,CAACC,EAAAA,GACT7H,MAAO,CACL,SACA,OACA,YACA,YACA,WACA,OACA,SAGF8H,WAAY,CACVC,aAAY,IACZC,UAAS,EACTC,UAAS,EACTC,cAAa,IACbC,MAAKA,EAAAA,GAGP1P,MAAO,CACL0C,QAAS,CACP8E,KAAM5E,OACN8E,QAASA,KAAA,CAAS,IAGpB5E,UAAW,CACT0E,KAAMC,QACNC,SAAS,GAGXjG,MAAO,CACL+F,KAAM5E,OACN8E,QAASA,KAAA,CACP9B,UAAM+J,EACN5Q,KAAM,CAAC,EACP6Q,UAAW,GACXC,mBAAmB,KAIvBlK,WAAY,CACV6B,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,IAIbM,IAAAA,GACE,MAAO,CACL3B,KAAM,KAEV,EAEAoD,SAAU,CACRnE,KAAAA,GACE,OAAQ8C,KAAKpH,WAAaoH,KAAKxC,MAAMtD,MACvC,EAEAsD,IAAAA,GACE,OAAOwC,KAAK3G,MAAMmE,MAAQwC,KAAK3G,MAAMjC,MACvC,GAGFmK,QAAS,CACP5G,OAAAA,CAAQtB,GACDA,IAAS2G,KAAKpH,WAInBoH,KAAKlE,MAAM,QAAS,IACfkE,KAAK3G,MACRmE,KAAMnE,EAAMjC,OACZT,KAAM0C,EAAM1C,KACZ6Q,UAAWnO,EAAMmO,UACjBC,kBAAmBpO,EAAMoO,oBAG3BzH,KAAK5C,MAAMC,aAAaqK,QAC1B,GAGFvB,OAAAA,GACEnG,KAAK/B,KAAO+B,KAAK5C,MAAMa,IACzB,GK5JF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,U,yECLQhI,EAAAA,EAAAA,GAMM,OANDD,MAAM,qBAAmB,EAC5BC,EAAAA,EAAAA,GAIM,OAJDD,MAAM,uBAAqB,EAC9BC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,mBAAiB,EAC1BC,EAAAA,EAAAA,GAAyB,OAApBD,MAAM,oBAAW,K,IAH5BK,I,UAYCL,MAAM,c,UAINA,MAAM,iB,YAIPC,EAAAA,EAAAA,GAMM,OANDD,MAAM,qBAAmB,EAC5BC,EAAAA,EAAAA,GAIM,OAJDD,MAAM,uBAAqB,EAC9BC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,mBAAiB,EAC1BC,EAAAA,EAAAA,GAAyB,OAApBD,MAAM,oBAAW,K,IAH5ByH,I,yEAvBNrH,EAAAA,EAAAA,IAkCM,OAlCDJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,qBAA6BF,EAAA+Q,a,EACtC1R,EAAAA,EAAAA,GAYM,OAZDD,OAAKc,EAAAA,EAAAA,IAAA,CAAC,iBAAgB,CAAA6H,QAAoBrI,EAAAuC,c,EAC7C5C,EAAAA,EAAAA,GAQM,OARDD,OAAKc,EAAAA,EAAAA,IAAA,CAAC,aAAY,CAAA6B,OAAWrC,EAAAqC,UAAUwE,IAAI,iB,OAUhDtD,EAAAA,EAAAA,IAA6FuE,GAA7F1G,EAAAA,EAAAA,IAA6F,CAAjFsG,QAASxF,EAAA4E,MAAMwK,cAAgB1J,SAAU5H,EAAAsC,WAAUf,EAAAA,EAAAA,IAAMjB,EAAqBiR,cAAP9I,IAAIjH,KAAE,oCAG7DxB,EAAAS,WAAQ,WAAtCX,EAAAA,EAAAA,IAA0C,MAA1CF,MAA0C,gBAE1C4R,EAAAA,EAAAA,IAAQtP,EAAAmJ,OAAA,kBAAA4F,GAAA,GAEyBjR,EAAAS,WAAQ,WAAzCX,EAAAA,EAAAA,IAA6C,MAA7CD,MAA6C,gBAE7CF,EAAAA,EAAAA,GAYM,OAZDD,OAAKc,EAAAA,EAAAA,IAAA,CAAC,iBAAgB,CAAA6H,QAAoBrI,EAAAyD,iB,EAC7C9D,EAAAA,EAAAA,GAQM,OARDD,OAAKc,EAAAA,EAAAA,IAAA,CAAC,gBAAe,CAAA6B,OAAWrC,EAAAqC,UAAUwE,IAAI,oB,OAUnDtD,EAAAA,EAAAA,IAAmGuE,GAAnG1G,EAAAA,EAAAA,IAAmG,CAAvFsG,QAASxF,EAAA4E,MAAM2K,iBAAmB7J,SAAU5H,EAAAsC,WAAUf,EAAAA,EAAAA,IAAMjB,EAAwBiR,cAAVf,OAAOhP,KAAE,uC,gBASrG,IACEiP,OAAQ,CAACiB,GAAAA,GACT7I,MAAO,CACL,cACA,UACA,YACA,YACA,WACA,QAGF8H,WAAY,CACVG,UAASA,GAGXxP,MAAO,CACLe,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGX2I,UAAW,CACT7I,KAAM,CAACM,OAAQlF,QACf8E,QAAS,IAGXvI,SAAU,CACRqI,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,GAGXjG,MAAO,CACL+F,KAAM,CAACM,OAAQF,OAAQH,QAAS7E,OAAQmF,OACxCuI,UAAU,IAId7G,SAAU,CACRwG,aAAAA,GACE,MAAO,CAAC,SAAU,OAAOM,QAAO,CAACC,EAAK9Q,KACpC8Q,EAAI9Q,GAAO,CACTQ,GAAI,CACFqI,QAASH,KAAKI,UACdkG,UAAWtG,KAAKuG,YAChBC,UAAWxG,KAAKyG,YAChBC,SAAU1G,KAAK2G,WACfrG,KAAMN,KAAK5F,SAIRgO,IACN,CAAC,EACN,EAEAT,SAAAA,GACE,MAAO,CACL5Q,SAAUiJ,KAAKjJ,YACXiJ,KAAKiI,WAAWI,KAAO,CAAE,CAACrI,KAAKiI,YAAY,GAAUjI,KAAKiI,WAAa,CAAC,EAEhF,GAGF1G,QAAS,CACPnB,SAAAA,CAAUoB,GACRxB,KAAKlE,MAAM,UAAW0F,EACxB,EAEA+E,WAAAA,CAAY/E,GACVxB,KAAKlE,MAAM,YAAa0F,EAC1B,EAEAiF,WAAAA,CAAYjF,GACVxB,KAAKlE,MAAM,YAAa0F,EAC1B,EAEAmF,UAAAA,CAAWnF,GACTxB,KAAKlE,MAAM,WAAY0F,EACzB,EAEApH,MAAAA,CAAOoH,GACLxB,KAAKlE,MAAM,OAAQ0F,EACrB,ICnIJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,URgBA,IACEuF,OAAQ,CAACiB,GAAAA,GACT7I,MAAO,CACL,cACA,SACA,OACA,UACA,YACA,YACA,WACA,OACA,SAGF8H,WAAY,CACVqB,WAAU,GACVC,SAAQA,IAGV3Q,MAAO,CACLe,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGXhF,QAAS,CACP8E,KAAM5E,OACN8E,QAASA,KAAA,CAAS,IAGpB1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,GAGXjG,MAAO,CACL+F,KAAM5E,OACN0N,UAAU,IAIdtI,IAAAA,GACE,MAAO,CACL7I,UAAU,EAEd,EAEAsK,SAAU,CACR1J,cAAAA,GACE,MAAO,CACLG,GAAI,CACFqI,QAASH,KAAKI,UACdsG,SAAU1G,KAAK2G,WACfrG,KAAMN,KAAK5F,OACXoO,MAAOxI,KAAKrF,SAGlB,GAGF4G,QAAS,CACPvE,WAAAA,CAAYwE,GACNxB,KAAKpH,WAIToH,KAAKjJ,UAAW,EAChBiJ,KAAKlE,MAAM,OAAQ0F,GACrB,EAEApB,SAAAA,CAAUoB,GACRA,EAAME,kBACN1B,KAAKjJ,UAAW,EAChBiJ,KAAKlE,MAAM,UAAW0F,EACxB,EAEAmF,UAAAA,CAAWnF,GACTA,EAAME,kBACN1B,KAAKlE,MAAM,WAAY0F,EACzB,EAEApH,MAAAA,CAAOoH,GACDxB,KAAKpH,WAIT4I,EAAME,kBACN1B,KAAKjJ,UAAW,EAChBiJ,KAAKlE,MAAM,OAAQ0F,GACrB,EAEA7G,OAAAA,CAAQtB,GACN2G,KAAKlE,MAAM,QAASzC,EACtB,IS3HJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,KAEpE,U,UCNOrD,MAAM,sB,IAKFA,MAAM,Y,IACHA,MAAM,Q,IAGNA,MAAM,Q,oEATlBI,EAAAA,EAAAA,IAcM,MAdNC,GAcM,EAbJwD,EAAAA,EAAAA,IAYO4O,EAAA,CAZDzS,MAAM,MACL0E,WAAW,EACX,aAAW,EACXjE,QAAKC,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,W,mBAClB,IAOM,EAPN7F,EAAAA,EAAAA,GAOM,MAPNO,GAOM,EANJP,EAAAA,EAAAA,GAEO,OAFPC,GAEO,EADLD,EAAAA,EAAAA,GAAmB,KAAfD,OAAKc,EAAAA,EAAAA,IAAER,EAAAgF,O,WAEbrF,EAAAA,EAAAA,GAEO,OAFPE,IAEO0H,EAAAA,EAAAA,IADFvH,EAAAiF,OAAK,Q,iFCJVtF,EAAAA,EAAAA,GAA+B,KAA5BD,MAAM,qBAAmB,W,IAA5BK,I,iGANND,EAAAA,EAAAA,IA0BM,OA1BDJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,iBAAyBR,EAAA2R,a,EAClChS,EAAAA,EAAAA,GASM,OATDD,MAAM,OAAOmH,IAAI,OAAQ1G,QAAKC,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,QAAS/C,K,CAGvCzC,EAAAiH,aAAU,WAFrBnH,EAAAA,EAAAA,IAKM,O,MALDJ,MAAM,SACNuF,MAAM,SAEL9E,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOP,EAAAsD,MAAM,WAAD,Y,sBAIvBgM,EAAAA,EAAAA,IAAQtP,EAAAmJ,OAAA,kBAAA4F,GAAA,SASOjR,EAAAoE,YAAS,WAN1BlD,EAAAA,EAAAA,IAM8BuG,EAAA,C,MANlBC,QAAShE,EAAAiE,KACTC,SAAU5H,EAAAsC,SACVS,MAAO/C,EAAA+C,MACP0D,OAAIrG,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,IACpBoF,UAAOzH,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,UAAW/C,IAC1BqB,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,K,wDAQdzC,EAAAsC,U,iBAAQ,WAL1BpB,EAAAA,EAAAA,IAK8B4G,EAAA,C,MALlBJ,QAAShE,EAAAiE,KACTI,YAAS3H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BuF,YAAS5H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BwF,WAAQ7H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,WAAY/C,IAC5BqB,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,K,yBASpC,QACEoG,MAAO,CACL,QACA,SACA,OACA,YACA,YACA,WACA,QAGF8H,WAAY,CACVE,UAAS,EACTC,UAASA,GAGXxP,MAAO,CACLqQ,UAAW,CACT7I,KAAM,CAACM,OAAQlF,QACf8E,QAAS,IAGX5E,UAAW,CACT0E,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXjG,MAAO,CACL+F,KAAM,CAAC5E,OAAQkF,OAAQF,OAAQH,QAASM,QAG1CpC,WAAY,CACV6B,KAAMC,QACNC,SAAS,IAIbM,IAAAA,GACE,MAAO,CACL3B,UAAMsJ,EAEV,EAEApB,OAAAA,GACEnG,KAAK/B,KAAO+B,KAAK5C,MAAMa,IACzB,GC7EF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UFYA,IACEkB,MAAO,CAAC,SACR8H,WAAY,CAAEyB,KAAIA,IAElB9Q,MAAO,CACL0D,KAAM,CACJ8D,KAAMM,OACNJ,QAAS,eAGX/D,MAAO,CACL6D,KAAMM,OACNwI,UAAU,KG1BhB,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,UCKMjS,EAAAA,EAAAA,GAOM,OAPDD,MAAM,aAAW,EACpBC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,mBAEXC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAAkC,QAA5BD,MAAM,WAAU,aAAK,G,2FAlBnCwB,EAAAA,EAAAA,IAsBWsC,EAAA,CAtBD9D,MAAM,aACNqD,MAAM,QACLV,OAAQrC,EAAAqC,OACR,YAAWrC,EAAAsC,SACX,gBAAetC,EAAAyD,aACf,aAAYzD,EAAAuC,W,mBACrB,IAeO,EAfPgB,EAAAA,EAAAA,IAeO4O,EAAA,CAfApP,MAAO/C,EAAA+C,MACRrD,MAAM,UACL0E,WAAW,EACX,YAAWpE,EAAAsC,SACX,eAActC,EAAAsC,SACdnC,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAN,QAAW,WACVjC,SAAMpC,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,Y,mBACnB,IAOM,CAPNzF,M,2GAgBN,QACE8I,MAAO,CAAC,UAER8H,WAAY,CACVsB,SAAQ,GACRG,KAAIA,IAGN9Q,MAAO,CACLyB,MAAO,CACL+F,KAAMM,OACNJ,QAAS,SAGX3G,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,KCxDf,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,UCNOtJ,MAAM,mB,mIAAXI,EAAAA,EAAAA,IA4CM,MA5CNC,GA4CM,EA3CJwD,EAAAA,EAAAA,IA0Ce8O,EAAA,CA1CAtP,MAAO/C,EAAA+C,MACPtB,UAAWzB,EAAAyB,UACXuC,QAAS9B,EAAA8B,QACTvD,SAAUH,EAAAI,WACV,WAAUV,EAAAsS,QACV,iBAAgBtS,EAAAuS,aAChBtS,OAAQD,EAAAC,OACR,YAAWD,EAAAsC,SACX+B,QAAO/D,EAAAkS,gBACP7Q,UAAQvB,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,aAChBiB,OAAIrG,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,IACpBoF,UAAOzH,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,UAAW/C,IAC1BsF,YAAS3H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BuF,YAAS5H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BwF,WAAQ7H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,WAAY/C,IAC5BqB,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,K,CACtBgQ,QAAMC,EAAAA,EAAAA,KACf,IAM6C,CAAxBpS,EAAA6E,YAAcnF,EAAA2S,SAAM,WANzCzR,EAAAA,EAAAA,IAM6C0R,GAN7CxR,EAAAA,EAAAA,IAM6C,C,MAN7B2B,MAAOzC,EAAA6E,WACA7E,EAAAuS,kBAAkBvR,OAC1BC,EAAAA,EAAAA,IAAMjB,EAAqBuS,kBAAHrR,IAAE,CACzB6C,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAN,QAAmB,qBAClB,aAAYzE,EAAAuC,UACZ,iBAAe,I,iCASLvC,EAAA2S,SAAM,WANhCzR,EAAAA,EAAAA,IAMoC0R,GANpCxR,EAAAA,EAAAA,IAMoC,C,MANrB2B,MAAM,QACEzC,EAAAuS,kBAAkBvR,OAC1BC,EAAAA,EAAAA,IAAMjB,EAAqBuS,kBAAHrR,IAAE,CACzB,WAAS,EACT,aAAYxB,EAAAuC,UACZ,iBAAe,I,4CAItBuQ,OAAKJ,EAAAA,EAAAA,KACd,IAK0C,CAAtB1S,EAAA2S,SAAW3S,EAAAsS,UAAO,WALtCpR,EAAAA,EAAAA,IAK0C6R,EAAA,C,MAL5BhQ,MAAM,SACNiC,KAAK,kBACJ3C,OAAQrC,EAAAqC,OACR,gBAAerC,EAAAyD,cAAgBC,EAAAsP,UAC/BlP,OAAMxD,EAAAwD,Q,iPCrCpBpE,MAAM,yBAAyBmH,IAAI,wB,YAIpClH,EAAAA,EAAAA,GAA+B,KAA5BD,MAAM,qBAAmB,W,IAA5BQ,I,mGAPNJ,EAAAA,EAAAA,IAsCM,OAtCDJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,gBAAe,CAAAyS,MAAWvP,EAAAuP,U,EACnCzB,EAAAA,EAAAA,IAAsBtP,EAAAmJ,OAAA,iBAAA4F,GAAA,IAEtBtR,EAAAA,EAAAA,GA0BM,MA1BNI,GA0BM,CAvBUO,EAAA4S,cAAW,WAFzBpT,EAAAA,EAAAA,IAIS,U,MAJDJ,MAAM,kBACLS,QAAKC,EAAA,KAAAA,EAAA,GAAAqC,GAAEiB,EAAAyP,YAAczP,EAAAyP,a,sBAK9BxT,EAAAA,EAAAA,GAkBM,OAlBDD,OAAKc,EAAAA,EAAAA,IAAA,CAAC,eAAuBF,EAAA8S,qB,EAChC7P,EAAAA,EAAAA,IAgB8D8P,EAAA,CAhBhDtQ,MAAO/C,EAAA+C,MAAMzC,EAAAU,KACbgD,QAAS9B,EAAA8B,QACTvD,SAAUT,EAAAS,SACV,WAAUT,EAAAsS,QACVrS,OAAQD,EAAAC,OACR,iBAAgBD,EAAAuS,aAChBvF,OAAQhN,EAAA+C,MACR,YAAW/C,EAAAsC,SACXX,UAAQvB,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,aAChBjF,WAAQH,EAAA,KAAAA,EAAA,GAAAqC,GAAEiB,EAAAyP,YAAczP,EAAAyP,YACxB1M,OAAIrG,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,IACpBoF,UAAOzH,EAAA,KAAAA,EAAA,GAAAqC,IAAEP,EAAAsD,MAAM,UAAW/C,GAASiB,EAAAuP,OAAQ,CAAK,GAChDlL,YAAS3H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BuF,YAAS5H,EAAA,KAAAA,EAAA,GAAAqC,IAAEP,EAAAsD,MAAM,YAAa/C,GAASiB,EAAAuP,OAAQ,CAAK,GACpDhL,WAAQ7H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,WAAY/C,IAC5BqB,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,IAAEP,EAAAsD,MAAM,OAAQ/C,GAASiB,EAAAuP,OAAQ,CAAK,GAC1C5O,QAAKjE,EAAA,KAAAA,EAAA,GAAAqC,IAAEP,EAAAsD,MAAM,QAAS/C,GAASiB,EAAAuP,OAAQ,CAAK,I,4GAI9DzB,EAAAA,EAAAA,IAAqBtP,EAAAmJ,OAAA,gBAAA4F,GAAA,GAMHjR,EAAAsC,U,iBAAQ,WAJ1BpB,EAAAA,EAAAA,IAI8B4G,EAAA,C,MAJlBJ,QAASxF,EAAA4E,MAAMwM,qBACfvL,YAAWzH,EAAA2P,YACXjI,YAAW1H,EAAA6P,YACXrM,OAAI1D,EAAA,MAAAA,EAAA,IAAAqC,GAAEiB,EAAAuP,OAAQ,I,qDAU9B,QACE/L,KAAM,eACNuJ,OAAQ,CAACC,EAAAA,GACT7H,MAAO,CACL,WACA,OACA,UACA,YACA,YACA,WACA,OACA,SAGF8H,WAAY,CAEV4C,aAAaC,EAAAA,EAAAA,KAAqB,IAAM,yCACxC1C,UAASA,GAGXxP,MAAO,CACLyB,MAAO,CACL+F,KAAM5E,OACN0N,UAAU,GAGZnQ,UAAW,CACTqH,KAAMC,QACNC,SAAS,GAGXvI,SAAU,CACRqI,KAAMC,QACNC,SAAS,GAGX/I,OAAQ,CACN6I,KAAMI,OACNF,QAAS,GAGXuJ,aAAc,CACZzJ,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXsJ,QAAS,CACPxJ,KAAMC,QACNC,SAAS,IAIb+B,SAAU,CACRqI,iBAAAA,GACE,MAAO,CACL/K,OAAQqB,KAAKwJ,YACbO,KAAM/J,KAAKgK,QACXC,OAAQjK,KAAKkK,UAEjB,EAEAzO,SAAAA,GACE,OAAOuE,KAAKmK,aAAanK,KAAK1I,IAChC,EAEAkS,WAAAA,GACE,MAAMY,EAAgBpK,KAAKuJ,OAASvJ,KAAKgK,SAAWhK,KAAKkK,UACzD,OAAIE,MAIApK,KAAKyJ,YAIFzJ,KAAKjI,UACd,EAEAT,GAAAA,GACE,OAAO0I,KAAKqK,OAAOrK,KAAK3G,MAC1B,GAGFuG,IAAAA,GACE,MAAO,CACL6J,YAAY,EACZO,SAAS,EACTT,OAAO,EACPe,aAAc,KACdJ,WAAW,EAEf,EAEAtE,MAAO,CACL6D,UAAAA,CAAWpQ,GACLA,GACF2G,KAAKgK,SAAU,EACfvH,YAAW,KACTzC,KAAKgK,SAAU,CAAI,GAClB,OAEHhK,KAAKkK,WAAY,EACjBzH,YAAW,KACTzC,KAAKkK,WAAY,CAAI,GACpB,KAEP,GAGF3I,QAAS,CACPgF,WAAAA,GACMvG,KAAKsK,eAITtK,KAAKsK,aAAe7H,YAAW,KAC7BzC,KAAKuJ,OAAQ,CAAG,GACf,KACL,EAEA9C,WAAAA,GACMzG,KAAKsK,eACPrF,aAAajF,KAAKsK,cAClBtK,KAAKsK,aAAe,MAGtBtK,KAAKuJ,OAAQ,CACf,IC5KJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,uECASvT,MAAM,e,IAOJA,MAAM,a,YACTC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAA6B,KAA1BD,MAAM,sBAAiB,K,IAEtBA,MAAM,Q,YACVC,EAAAA,EAAAA,GAA+B,QAAzBD,MAAM,WAAU,MAAE,K,+BAY5BC,EAAAA,EAAAA,GAOM,OAPDD,MAAM,aAAW,EACpBC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAA6B,KAA1BD,MAAM,uBAEXC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAAiC,QAA3BD,MAAM,WAAU,YAAI,K,UAK3BA,MAAM,8B,YASLC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,UAAS,eAEpB,K,8IArDRwB,EAAAA,EAAAA,IAyDWsC,GAzDXpC,EAAAA,EAAAA,IAyDW,CAzDD1B,MAAM,iBACLqD,MAAO/C,EAAA+C,MACPV,OAAQrC,EAAAqC,OACR,YAAWrC,EAAAsC,SACX,gBAAetC,EAAAyD,aACf,aAAYzD,EAAAuC,YACbhB,EAAAA,EAAAA,IAAMjB,EAAc2T,eAAD,CAClB5P,QAAKjE,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,QAAS/C,M,mBAC/B,IAAmE,CAApCiB,EAAAjD,WAAaT,EAAAuC,YAAS,WAArDzC,EAAAA,EAAAA,IAAmE,MAAnEC,GAAuD,OAAM,eAMhDC,EAAA2S,S,WAYbzR,EAAAA,EAAAA,IAcOiR,GAdP/Q,EAAAA,EAAAA,IAcO,CAAAJ,IAAA,GAdOV,EAAA4T,SAAS5S,OACjBC,EAAAA,EAAAA,IAAMjB,EAAY4T,SAAH1S,IAAE,CAChB4C,WAAW,EACX,aAAW,EACXjE,QAAKC,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,Y,mBAElB,IAOM,CAPNhB,M,YAlBiB,WAJnBtD,EAAAA,EAAAA,IAcOiR,GAdP/Q,EAAAA,EAAAA,IAcO,CAAAJ,IAAA,GAdOV,EAAA4T,SAAS5S,OACjBC,EAAAA,EAAAA,IAAMjB,EAAY4T,SAAH1S,IAAE,CAChB4C,WAAYpE,EAAAsC,SACZnC,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOiB,EAAAyQ,qBAAsB,GAAH,a,mBAEpC,IAQM,EARNxU,EAAAA,EAAAA,GAQM,MARNO,GAQM,CAPJN,IAGAD,EAAAA,EAAAA,GAGO,OAHPE,GAGO,CAFLsH,IAA+B,gBAC/BxH,EAAAA,EAAAA,GAAoC,QAA9BD,MAAM,O,aAAO6H,EAAAA,EAAAA,IAAQvH,EAAM+C,Q,oBAAG,c,wBAqBIW,EAAAyQ,sBAAwBnU,EAAAsC,WAAQ,WAA9ExC,EAAAA,EAAAA,IAcM,MAdN8E,GAcM,EAbJrB,EAAAA,EAAAA,IAYQ2E,EAAA,CAZDjD,MAAM,iBACLmP,SAAS,EACTC,QAAKjU,EAAA,KAAAA,EAAA,GAAAqC,GAAEiB,EAAAyQ,qBAAsB,I,mBACnC,IAQmB,CAJKzQ,EAAAyQ,sBAAmB,WAJ3CjT,EAAAA,EAAAA,IAQmBoT,EAAA,C,MARAvR,MAAO/C,EAAA+C,MACPiB,QAAS9B,EAAA8B,QACV6C,IAAI,kBACHxC,SAAKI,EAAAA,EAAAA,IAAenE,EAAAiU,kBAAiB,qB,mBAEtD,IAEM,CAFNzP,M,4NClDCW,IAAI,c,4BAYP9F,EAAAA,EAAAA,GAA0B,KAAvBD,MAAM,gBAAc,W,mFAb7BI,EAAAA,EAAAA,IAgBO,QAhBDJ,MAAM,oBAAqB8U,SAAMpU,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAA,IAAApE,IAAeC,EAAAkU,UAAAlU,EAAAkU,YAAAnU,IAAQ,sB,EAC5DV,EAAAA,EAAAA,GAQQ,QARRI,GAQQ,EAPNyR,EAAAA,EAAAA,IAAQtP,EAAAmJ,OAAA,kBAAA4F,GAAA,IAER1N,EAAAA,EAAAA,IAImCkR,EAAA,CAJb1R,MAAOW,EAAAC,SACP+Q,MAAOxS,EAAAyS,yBACPC,MAAO5U,EAAA4U,MACPvQ,SAAKI,EAAAA,EAAAA,IAAOnE,EAAA+D,QAAO,UACpBwC,IAAI,S,+CAG3BlH,EAAAA,EAAAA,GAIQ,eAHNA,EAAAA,EAAAA,GAES,UAFDmJ,KAAK,SAAUlB,UAAWlE,EAAAmR,Y,CAChCjV,IAA0B,mBAC5B,Y,gBASN,IACEiJ,MAAO,CAAC,SACR4H,OAAQ,CAACC,EAAAA,GACTC,WAAY,CAAEmE,oBAAmBA,GAAAA,GAEjCxT,MAAO,CACLyB,MAAO,CACL+F,KAAM,CAACM,OAAQF,OAAQH,QAAS7E,OAAQmF,OACxCL,QAAS,IAGX+L,WAAY,CACVjM,KAAMC,QACNC,SAAS,GAGXgM,YAAa,CACXlM,KAAMM,OACNJ,QAAS,IAGX4L,MAAO,CACL9L,KAAMC,QACNC,SAAS,IAIbM,IAAAA,GACE,MAAO,CACLuL,YAAY,EACZlR,SAAU,KAEd,EAEAsH,QAAS,CACPuJ,QAAAA,CAAStJ,GACP,MAAMnI,EAAQ2G,KAAK/F,UAAUoO,QACxBhP,EAAMa,QAAW8F,KAAKqL,cAI3B7J,EAAMuD,OAAO1L,MAAQA,EACrB2G,KAAKlE,MAAM,QAAS0F,GACtB,EAEA7G,OAAAA,CAAQ6G,GACN,GAAqB,MAAjBA,GAAO+J,OACT,OAEF,MAAMlS,EAAQ,GAAKmI,EAAM+J,OACpBlS,GAAOgP,QAAQnO,OAGlB8F,KAAKmL,WAAa9R,IAAU2G,KAAK3G,MAFjC2G,KAAKmL,WAAanL,KAAKqL,WAKzBrL,KAAK8F,WAAU,KACb9F,KAAK/F,SAAWZ,CAAI,GAExB,GAGFuM,MAAO,CACLvM,KAAAA,GACE2G,KAAKmL,YAAa,CACpB,GAGFhF,OAAAA,GACEnG,KAAKmL,YAAa,EAClBnL,KAAK/F,SAAW+F,KAAK3G,MAEhB2G,KAAK3G,OAAOgP,UAAUnO,SACzB8F,KAAKmL,WAAanL,KAAKqL,YAGzBrL,KAAK8F,WAAU,KACb9F,KAAKwL,WAAWC,OAAO,GAE3B,GChGF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UF2DA,IACEtM,MAAO,CACL,SACA,QACA,SACA,OACA,UACA,YACA,YACA,WACA,OACA,SAGF4H,OAAQ,CAACC,EAAAA,GACTC,WAAY,CACVyE,iBAAgB,GAChBnD,SAAQ,GACRjB,MAAK,IACLoB,KAAIA,IAGN9Q,MAAO,CACLyB,MAAO,CACL+F,KAAMM,OACNwI,UAAU,GAGZvP,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGX2J,OAAQ,CACN7J,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,IAIb+B,SAAU,CACRkJ,aAAAA,GACE,OAAOvK,KAAKpH,SAAW,CAAC,EAAI,CACxBsH,KAAMF,KAAKhD,YACXmD,QAASH,KAAKI,UACdkG,UAAY9E,GAAUxB,KAAKlE,MAAM,YAAa0F,GAC9CgF,UAAYhF,GAAUxB,KAAKlE,MAAM,YAAa0F,GAC9CkF,SAAWlF,GAAUxB,KAAKlE,MAAM,WAAY0F,GAC5ClB,KAAMN,KAAK5F,OAEjB,EAEAoQ,QAAAA,GACE,MAAO,CACL5S,MAAO,CACLyB,MAAO2G,KAAK3G,MACZrD,MAAO,UACP4C,SAAUoH,KAAKpH,SACf2E,YAAayC,KAAKpH,UAGpBd,GAAI,IACCkI,KAAKuK,cACRoB,OAAQA,IAAM3L,KAAKlE,MAAM,UACzB0M,MAAOxI,KAAKrF,SAGlB,GAGFiF,IAAAA,GACE,MAAO,CACL7I,UAAU,EACV0T,qBAAqB,EAEzB,EAEAlJ,QAAS,CACPsJ,iBAAAA,CAAkBrJ,GAEhB,GADAxB,KAAKyK,qBAAsB,EACvBzK,KAAKpH,SACP,OAGF,MAAM6C,EAAY+F,EAAMuD,OAAO1L,OAAOgP,OACjC5M,GAAWvB,SAIhBsH,EAAMuD,OAAO1L,MAAQoC,EACrBuE,KAAKlE,MAAM,SAAUL,GACvB,EAEAd,OAAAA,CAAQtB,GACDA,IAAS2G,KAAKpH,UAInBoH,KAAKlE,MAAM,QAASzC,EACtB,EAEA2D,WAAAA,CAAYwE,GACNxB,KAAKpH,WAIToH,KAAKjJ,UAAW,EAChBiJ,KAAKlE,MAAM,OAAQ0F,GACrB,EAEApB,SAAAA,CAAUoB,GACRxB,KAAKjJ,UAAW,EAChBiJ,KAAKlE,MAAM,UAAW0F,EACxB,EAEApH,MAAAA,CAAOoH,GACLxB,KAAKjJ,UAAW,EACZiJ,KAAKpH,UAIToH,KAAKlE,MAAM,OAAQ0F,EACrB,IGrMJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,UCGWxL,MAAM,a,IACHA,MAAM,Q,IAGNA,MAAM,Q,8GAflBwB,EAAAA,EAAAA,IAoBWsC,EAAA,CApBD9D,MAAM,sBACL2C,OAAQrC,EAAAqC,OACRU,MAAO,CAAC,EACR,aAAW,EACX,gBAAe/C,EAAAyD,aACf,aAAYzD,EAAAuC,UACZwF,YAAS3H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BuF,YAAS5H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BwF,WAAQ7H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,WAAY/C,IAC5BqB,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,K,mBAC7B,IASO,EATPc,EAAAA,EAAAA,IASO4O,EAAA,CATDzS,MAAM,UAAW0E,WAAW,EAAQ,aAAW,G,mBACnD,IAOM,EAPNzE,EAAAA,EAAAA,GAOM,MAPNI,GAOM,EANJJ,EAAAA,EAAAA,GAEO,OAFPO,GAEO,EADLP,EAAAA,EAAAA,GAAmB,KAAfD,OAAKc,EAAAA,EAAAA,IAAER,EAAAgF,O,WAEbrF,EAAAA,EAAAA,GAEO,OAFPC,GAEO,EADLD,EAAAA,EAAAA,GAAuC,QAAjCD,MAAM,U,aAAU6H,EAAAA,EAAAA,IAAQvH,EAAM+C,Q,2EAY9C,QACE0N,OAAQ,CAACC,EAAAA,GACTC,WAAY,CACVsB,SAAQ,GACRG,KAAIA,IAGN9Q,MAAO,CACLyB,MAAO,CACL+F,KAAMM,OACNwI,UAAU,GAGZ5M,KAAM,CACJ8D,KAAMM,OACNwI,UAAU,GAGZvP,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,KCtDf,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,UR+CA,IACE9B,KAAM,iBACNuJ,OAAQ,CAACC,EAAAA,GACT7H,MAAO,CACL,WACA,SACA,OACA,UACA,YACA,YACA,WACA,OACA,SAGF8H,WAAY,CACV2E,aAAY,GACZC,cAAa,GACbC,aAAYA,IAGdlU,MAAO,CACLyB,MAAO,CACL+F,KAAM5E,OACN0N,UAAU,GAGZvP,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGXvH,UAAW,CACTqH,KAAMC,QACNC,SAAS,GAGXvI,SAAU,CACRqI,KAAMC,QACNC,SAAS,GAGXsJ,QAAS,CACPxJ,KAAMC,QACNC,SAAS,GAGX/I,OAAQ,CACN6I,KAAMI,OACNF,QAAS,GAGX2J,OAAQ,CACN7J,KAAMC,QACNC,SAAS,GAGXuJ,aAAc,CACZzJ,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,IAIbM,IAAAA,GACE,MAAO,CACL0J,WAAW,EAEf,EAEAjI,SAAU,CACR5F,SAAAA,GACE,OAAOuE,KAAKmK,aAAanK,KAAK1I,IAChC,EAEA6R,iBAAAA,GACE,MAAO,CACLvR,MAAO,CACLe,OAAQqH,KAAKrH,OACb2B,QAAS0F,KAAK1F,QACd1B,SAAUoH,KAAKpH,SACfmB,aAAciG,KAAKjG,aACnBlB,UAAWmH,KAAKnH,WAGlBf,GAAI,CACFiU,OAAQ/L,KAAK6K,kBACbc,OAASnK,GAAUxB,KAAKlE,MAAM,SAAU0F,GACxCtB,KAAMF,KAAKhD,YACXmD,QAASH,KAAKI,UACd4L,gBAAkBxK,GAAUxB,KAAKlE,MAAM,YAAa0F,GACpDyK,gBAAkBzK,GAAUxB,KAAKlE,MAAM,YAAa0F,GACpDkF,SAAWlF,GAAUxB,KAAKlE,MAAM,WAAY0F,GAC5C0K,eAAiB1K,GAAUxB,KAAKlE,MAAM,iBAAkB0F,GACxDlB,KAAMN,KAAK5F,QAGjB,EAEApD,UAAAA,GACE,OAAOgJ,KAAKsJ,WAAatJ,KAAKjJ,QAChC,EAEAO,GAAAA,GACE,OAAO0I,KAAKqK,OAAOrK,KAAK3G,MAC1B,GAGFkI,QAAS,CACPuH,eAAAA,CAAgBzP,GACT2G,KAAK1I,MAAO0I,KAAKpH,UAItBoH,KAAKlE,MAAM,QAAS,CAAE,CAACkE,KAAK1I,KAAM+B,GACpC,EAEAwR,iBAAAA,CAAkBpP,GACXuE,KAAK1I,MAAO0I,KAAKpH,UAAa6C,GAAWvB,SAI9CuB,EAAa,SAAQA,EAAU4M,UAC/BrI,KAAKlE,MAAM,QAAS,CAAE,CAACL,GAAYuE,KAAK3G,MAAM2G,KAAK1I,OACrD,EAEA0F,WAAAA,CAAYwE,GACNxB,KAAKpH,WAIToH,KAAKsJ,WAAY,EACjBtJ,KAAKlE,MAAM,OAAQ0F,GACrB,EAEApB,SAAAA,CAAUoB,GACRxB,KAAKsJ,WAAY,EACjBtJ,KAAKlE,MAAM,UAAW0F,EACxB,EAEApH,MAAAA,CAAOoH,GACDxB,KAAKpH,WAIToH,KAAKsJ,WAAY,EACjBtJ,KAAKlE,MAAM,OAAQ0F,GACrB,IShNJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,UCKMvL,EAAAA,EAAAA,GAOM,OAPDD,MAAM,aAAW,EACpBC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAA2B,KAAxBD,MAAM,qBAEXC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAAqC,QAA/BD,MAAM,WAAU,gBAAQ,G,2FAlBtCwB,EAAAA,EAAAA,IAsBWsC,EAAA,CAtBD9D,MAAM,gBACNqD,MAAM,WACLV,OAAQrC,EAAAqC,OACR,YAAWrC,EAAAsC,SACX,gBAAetC,EAAAyD,aACf,aAAYzD,EAAAuC,W,mBACrB,IAeO,EAfPgB,EAAAA,EAAAA,IAeO4O,EAAA,CAfApP,MAAO/C,EAAA+C,MACRrD,MAAM,UACL0E,WAAW,EACX,YAAWpE,EAAAsC,SACX,eAActC,EAAAsC,SACdnC,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAN,QAAW,WACVjC,SAAMpC,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,Y,mBACnB,IAOM,CAPNzF,M,2GAgBN,QACE8I,MAAO,CAAC,UAER8H,WAAY,CACVsB,SAAQ,GACRG,KAAIA,IAGN9Q,MAAO,CACLyB,MAAO,CACL+F,KAAMM,OACNJ,QAAS,YAGX3G,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,KCxDf,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,UCNOtJ,MAAM,c,8HAAXI,EAAAA,EAAAA,IA+BM,MA/BNC,GA+BM,EA9BJwD,EAAAA,EAAAA,IA6Be8O,EAAA,CA7BAtP,MAAO/C,EAAA+C,MACPtB,UAAWzB,EAAAyB,UACXuC,QAAS1D,EAAAuV,SACTpV,SAAUH,EAAAI,WACVT,OAAQD,EAAAC,OACR,kBAAgB,EAChB,YAAWD,EAAAsC,SACX+B,QAAO/D,EAAAkS,gBACP/L,OAAIrG,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,IACpBoF,UAAOzH,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,UAAW/C,IAC1BsF,YAAS3H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BuF,YAAS5H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,YAAa/C,IAC9BwF,WAAQ7H,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,WAAY/C,IAC5BqB,OAAI1D,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,OAAQ/C,K,CACtBgQ,QAAMC,EAAAA,EAAAA,KACf,IAImC,EAJnCnP,EAAAA,EAAAA,IAImCuS,GAJnC1U,EAAAA,EAAAA,IAAkBd,EAIiByV,aAJJzU,OACrBC,EAAAA,EAAAA,IAAMjB,EAAgByV,aAAHvU,IAAE,CACpB6C,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAN,QAAmB,qBAClB,aAAYzE,EAAAuC,UACZ,iBAAe,I,2BAGjBuQ,OAAKJ,EAAAA,EAAAA,KACd,IAI+B,EAJ/BnP,EAAAA,EAAAA,IAI+BwP,EAAA,CAJhBhQ,MAAK,OAAS/C,EAAA8I,OACf9D,KAAK,4BACJ3C,OAAQrC,EAAAqC,OACR,gBAAerC,EAAAyD,cAAgBzD,EAAAS,SAC/BqD,OAAMxD,EAAAwD,Q,kNCpBpBpE,MAAM,e,IAMJA,MAAM,a,YACTC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAAsC,KAAnCD,MAAM,+BAA0B,K,UAE/BA,MAAM,Q,IACJA,MAAM,W,0CACZC,EAAAA,EAAAA,GAAiC,QAA3BD,MAAM,WAAU,QAAI,K,6BAItBA,MAAM,Q,YACVC,EAAAA,EAAAA,GAAkC,QAA5BD,MAAM,WAAU,SAAK,K,6BAM5BA,MAAM,oB,uKA/BbwB,EAAAA,EAAAA,IAoDWsC,GApDXpC,EAAAA,EAAAA,IAoDW,CApDD1B,MAAM,YACLqD,MAAOzC,EAAAyC,MACPV,OAAQrC,EAAAqC,OACR,YAAWrC,EAAAsC,SACX,gBAAetC,EAAAyD,aACf,aAAYzD,EAAAuC,YACbhB,EAAAA,EAAAA,IAAMjB,EAAc2T,eAAD,CAClB5P,QAAKjE,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,QAAS/C,M,mBAC/B,IAAmE,CAApCiB,EAAAjD,WAAaT,EAAAuC,YAAS,WAArDzC,EAAAA,EAAAA,IAAmE,MAAnEC,GAAuD,OAAM,gBAE7DwD,EAAAA,EAAAA,IAmBO4O,GAnBP/Q,EAAAA,EAAAA,IAAcd,EAmBP4T,SAnBgB5S,OACjBC,EAAAA,EAAAA,IAAMjB,EAAY4T,SAAH1S,IAAE,CAChB4C,WAAYpE,EAAAsC,SACZnC,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOiB,EAAAsS,gBAAiB,GAAH,a,mBAC/B,IAcM,EAdNrW,EAAAA,EAAAA,GAcM,MAdNO,GAcM,CAbJN,GAGkC,QAATI,EAAA8I,OAAI,WAA7BhJ,EAAAA,EAAAA,IAIO,OAJPD,GAIO,EAHLF,EAAAA,EAAAA,GAA2D,OAA3DwH,GAA2D,UAArC,OAAenH,EAAAiW,QAAK,WAAjBnW,EAAAA,EAAAA,IAA2B,OAAAwD,GAAR,OAAC,6BAAe3D,EAAAA,EAAAA,GAAuC,QAAjCD,MAAM,O,aAAO6H,EAAAA,EAAAA,IAAQvH,EAASkW,W,WAChGtR,IAAiC,gBACjCjF,EAAAA,EAAAA,GAAuC,QAAjCD,MAAM,O,aAAO6H,EAAAA,EAAAA,IAAQvH,EAASmW,W,oBAAG,UAGF,UAATnW,EAAA8I,OAAI,WAAlChJ,EAAAA,EAAAA,IAGO,OAHPsF,GAGO,CAFLG,IAAkC,gBAClC5F,EAAAA,EAAAA,GAAwC,QAAlCD,MAAM,O,aAAO6H,EAAAA,EAAAA,IAAQvH,EAAUmF,Y,oBAAG,WAC1C,oB,uBAIgCzB,EAAAsS,iBAAmBhW,EAAAsC,WAAQ,WAA/DxC,EAAAA,EAAAA,IAoBM,MApBN+F,GAoBM,EAnBJtC,EAAAA,EAAAA,IAkBQ2E,EAAA,CAlBDjD,MAAM,YACLmP,SAAS,EACTC,QAAKjU,EAAA,KAAAA,EAAA,GAAAqC,GAAEiB,EAAAsS,gBAAiB,I,mBAC9B,IAOa,CAFKtS,EAAAsS,gBAA2B,QAAThW,EAAA8I,OAAI,WALxC5H,EAAAA,EAAAA,IAOakV,EAAA,C,MAPAF,SAAUlW,EAAAkW,SACVC,SAAUnW,EAAAmW,SACVF,MAAOjW,EAAAiW,MACPjS,QAAS9B,EAAA8B,QACTf,SAAQ3C,EAAA+V,c,mBAC+B,IAEpD,UAFoD,a,8DAOvB3S,EAAAsS,gBAA2B,UAAThW,EAAA8I,OAAI,WAHnD5H,EAAAA,EAAAA,IAKmBoT,EAAA,C,MALAvR,MAAO/C,EAAAmF,UACPnB,QAAS9B,EAAA8B,QACTK,SAAKI,EAAAA,EAAAA,IAAenE,EAAAiU,kBAAiB,qB,mBACS,IAEjE,UAFiE,uB,4NC7C9D9O,IAAI,Y,iBAaJA,IAAI,Y,IASJ/F,MAAM,S,2CAYTC,EAAAA,EAAAA,GAA0B,KAAvBD,MAAM,gBAAc,W,mFApC7BI,EAAAA,EAAAA,IAuCO,QAvCDJ,MAAM,cAAe8U,SAAMpU,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAA,IAAApE,IAAeC,EAAAkU,UAAAlU,EAAAkU,YAAAnU,IAAQ,sB,UAAE,UAExDV,EAAAA,EAAAA,GASQ,QATRI,GASQ,EARNJ,EAAAA,EAAAA,GAOmD,SAP5CmJ,KAAK,OACL5B,KAAK,WACLoP,aAAa,MACZC,WAAW,EACZvB,YAAY,WACXjS,MAAOW,EAAAC,SAASuS,SACjBrP,IAAI,WACHxC,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOnC,EAAA+D,QAAQ,WAAY5B,IAAM,Y,uBACxC,SAIR9C,EAAAA,EAAAA,GAOQ,QAPRC,GAOQ,EANN2D,EAAAA,EAAAA,IAIsCkR,EAAA,CAJhB1R,MAAOW,EAAAC,SAASwS,SAChBzB,MAAOxS,EAAAyS,yBACRK,YAAY,WACX3Q,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOnC,EAAA+D,QAAQ,WAAY5B,IAAM,WACvCoE,IAAI,Y,6BAI3BlH,EAAAA,EAAAA,GAQQ,QARRE,GAQQ,EAPNF,EAAAA,EAAAA,GAKgD,SALzCD,MAAM,WACNoJ,KAAK,WACL5B,KAAK,QACLL,IAAI,QACH2P,QAASxW,EAAAiW,MACT5R,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOnC,EAAA+D,QAAQ,QAAS5B,IAAM,Y,qBAAK,yBAIlD9C,EAAAA,EAAAA,GAIQ,eAHNA,EAAAA,EAAAA,GAES,UAFDmJ,KAAK,SAAUlB,UAAWlE,EAAAmR,Y,CAChCrQ,IAA0B,mBAC5B,Y,CASN,QACEqE,MAAO,CAAC,SAAU,SAClB4H,OAAQ,CAACC,EAAAA,GACTC,WAAY,CAAEmE,oBAAmBA,GAAAA,GACjCxT,MAAO,CACL2U,MAAO,CACLnN,KAAMC,QACNC,SAAS,GAGXmN,SAAU,CACRrN,KAAMM,OACNJ,QAAS,IAGXkN,SAAU,CACRpN,KAAMM,OACNJ,QAAS,KAIbM,IAAAA,GACE,MAAO,CACLuL,YAAY,EACZlR,SAAU,CACRuS,SAAU,KACVC,SAAU,KACVF,MAAO,MAGb,EAEAhL,QAAS,CACPuJ,QAAAA,GACE,MAAM0B,EAAWxM,KAAK5C,MAAMoP,SAASnT,MAAMgP,OACrCoE,EAAWzM,KAAK5C,MAAMqP,SAASpT,MAAMgP,OACrC0E,EAAS/M,KAAK5C,MAAMmP,MAAMO,QAC3BN,EAAStS,QAAWuS,EAASvS,QAIlC8F,KAAKlE,MAAM,SAAU,CAAE0Q,WAAUC,WAAUF,MAAOQ,GACpD,EAEApS,OAAAA,CAAQoK,EAAQvD,GACd,MAAMnI,EAAQ,IAAMmI,EAAMuD,QAAQ1L,OAASmI,EAAM+J,QAC5ClS,GAAOgP,QAAQnO,QAGH,aAAX6K,IACF/E,KAAKmL,WAAa9R,IAAU2G,KAAKwM,UAG9BxM,KAAKmL,YAAyB,aAAXpG,IACtB/E,KAAKmL,WAAa9R,IAAU2G,KAAKyM,UAG9BzM,KAAKmL,YAAyB,UAAXpG,IACtB/E,KAAKmL,WAAa9R,IAAU2G,KAAKuM,QAXnCvM,KAAKmL,YAAa,EAepBnL,KAAK8F,WAAU,KACb9F,KAAK/F,SAAS8K,GAAU1L,CAAI,GAEhC,GAGFuM,MAAO,CACLvM,KAAAA,GACE2G,KAAKmL,YAAa,EAClBnL,KAAK/F,SAAW,CACduS,SAAUxM,KAAKwM,SACfC,SAAUzM,KAAKyM,SACfF,MAAOvM,KAAKuM,MAEhB,GAGFpG,OAAAA,GACEnG,KAAK/F,SAAW,CACduS,SAAUxM,KAAKwM,SACfC,SAAUzM,KAAKyM,SACfF,MAAOvM,KAAKuM,OAGdvM,KAAK8F,WAAU,KACb9F,KAAK5C,MAAMoP,SAASf,OAAO,GAE/B,GCjIF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UFuDA,IACE1E,OAAQ,CAACC,EAAAA,GACT7H,MAAO,CACL,SACA,QACA,SACA,OACA,UACA,YACA,YACA,WACA,OACA,SAGF8H,WAAY,CACVyE,iBAAgB,GAChBsB,WAAU,GACVzE,SAAQ,GACRjB,MAAK,IACLoB,KAAIA,IAGN9Q,MAAO,CACLe,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGXiN,MAAO,CACLnN,KAAMC,QACNC,SAAS,GAGX7D,UAAW,CACT2D,KAAMM,QAGR8M,SAAU,CACRpN,KAAMM,QAGR+M,SAAU,CACRrN,KAAMM,QAGR9G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,GAGXF,KAAM,CACJA,KAAMM,OACNwI,UAAU,IAId7G,SAAU,CACRkJ,aAAAA,GACE,OAAOvK,KAAKpH,SAAW,CAAC,EAAI,CACxBsH,KAAMF,KAAKhD,YACXmD,QAASH,KAAKI,UACdkG,UAAY9E,GAAUxB,KAAKlE,MAAM,YAAa0F,GAC9CgF,UAAYhF,GAAUxB,KAAKlE,MAAM,YAAa0F,GAC9CkF,SAAWlF,GAAUxB,KAAKlE,MAAM,WAAY0F,GAC5ClB,KAAMN,KAAK5F,OAEjB,EAEAoQ,QAAAA,GACE,MAAO,CACL5S,MAAO,CACLyB,MAAO2G,KAAK3G,MACZrD,MAAO,UACP4C,SAAUoH,KAAKpH,SACf2E,YAAayC,KAAKpH,UAGpBd,GAAI,IACCkI,KAAKuK,cACRoB,OAAQA,IAAM3L,KAAKlE,MAAM,UACzB0M,MAAOxI,KAAKrF,SAGlB,EAEAtB,KAAAA,GACE,MAAQ,OAAM2G,KAAKwM,eAAexM,KAAKyM,UACzC,GAGF7M,IAAAA,GACE,MAAO,CACL7I,UAAU,EACVuV,gBAAgB,EAEpB,EAEA/K,QAAS,CACPsJ,iBAAAA,CAAkBrJ,GAEhB,GADAxB,KAAKsM,gBAAiB,EAClBtM,KAAKpH,SACP,OAGF,MAAM6C,EAAY+F,EAAMuD,OAAO1L,OAAOgP,OACjC5M,GAAWvB,SAIhBsH,EAAMuD,OAAO1L,MAAQoC,EACrBuE,KAAKlE,MAAM,SAAUL,GACvB,EAEAkR,YAAAA,CAAanL,GACXxB,KAAKsM,gBAAiB,EAClBtM,KAAKpH,UAIToH,KAAKlE,MAAM,SAAU0F,EACvB,EAEA7G,OAAAA,CAAQtB,GACDA,IAAS2G,KAAKpH,UAInBoH,KAAKlE,MAAM,QAASzC,EACtB,EAEA2D,WAAAA,CAAYwE,GACNxB,KAAKpH,WAIToH,KAAKjJ,UAAW,EAChBiJ,KAAKlE,MAAM,OAAQ0F,GACrB,EAEApB,SAAAA,CAAUoB,GACRxB,KAAKjJ,UAAW,EAChBiJ,KAAKlE,MAAM,UAAW0F,EACxB,EAEApH,MAAAA,CAAOoH,GACLxB,KAAKjJ,UAAW,EACZiJ,KAAKpH,UAIToH,KAAKlE,MAAM,OAAQ0F,EACrB,IG3NJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UJgCA,IACEhE,KAAM,YACNuJ,OAAQ,CAACC,EAAAA,GACT7H,MAAO,CACL,SACA,OACA,UACA,YACA,YACA,WACA,OACA,SAGF8H,WAAY,CACV2E,aAAY,GACZqB,SAAQ,GACRnB,aAAYA,IAGdlU,MAAO,CACLyB,MAAO,CACL+F,KAAM5E,OACN0N,UAAU,GAGZ9I,KAAM,CACJA,KAAMM,OACNwI,UAAU,GAGZvP,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGXiN,MAAO,CACLnN,KAAMC,QACNC,SAAS,GAGXvH,UAAW,CACTqH,KAAMC,QACNC,SAAS,GAGXvI,SAAU,CACRqI,KAAMC,QACNC,SAAS,GAGX/I,OAAQ,CACN6I,KAAMI,OACNF,QAAS,GAGXuJ,aAAc,CACZzJ,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,IAIbM,IAAAA,GACE,MAAO,CACL0J,WAAW,EAEf,EAEAjI,SAAU,CACR6L,aAAAA,GACE,MAAkB,QAAdlN,KAAKZ,KACAY,KAAKmN,YAGI,UAAdnN,KAAKZ,KACAY,KAAKoN,cAGP,MACT,EAEAjB,QAAAA,GACE,MAAMkB,EAAM,IAAIrN,KAAK1F,SACfkS,EAAWxM,KAAKsN,MAAMd,UAAUnE,OAOtC,OANImE,GAAUtS,SACZmT,EAAIb,GAAY,CACde,OAAQ,QAILF,CACT,EAEArW,UAAAA,GACE,OAAOgJ,KAAKsJ,WAAatJ,KAAKjJ,QAChC,EAEAO,GAAAA,GACE,OAAO0I,KAAKqK,OAAOrK,KAAK3G,MAC1B,EAEAiU,IAAAA,GACE,MAAkB,QAAdtN,KAAKZ,KACAY,KAAKwN,OAAOxN,KAAK1I,KAGR,UAAd0I,KAAKZ,KACA,CAAC3D,UAAWuE,KAAKyN,SAASzN,KAAK1I,MAGjC,CAAC,CACV,EAEA+U,YAAAA,GACE,MAAO,CACLzU,MAAO,IACFoI,KAAKsN,KACR3U,OAAQqH,KAAKrH,OACb2B,QAAS0F,KAAKmM,SACdvT,SAAUoH,KAAKpH,SACfmB,aAAciG,KAAKjG,aACnBlB,UAAWmH,KAAKnH,UAChBuG,KAAMY,KAAKZ,MAGbtH,GAAI,CACFiU,OAAQ/L,KAAKkN,cACbvB,OAASnK,GAAUxB,KAAKlE,MAAM,SAAU0F,GACxCtB,KAAMF,KAAKhD,YACXmD,QAASH,KAAKI,UACd4L,gBAAkBxK,GAAUxB,KAAKlE,MAAM,YAAa0F,GACpDyK,gBAAkBzK,GAAUxB,KAAKlE,MAAM,YAAa0F,GACpDkF,SAAWlF,GAAUxB,KAAKlE,MAAM,WAAY0F,GAC5C0K,eAAiB1K,GAAUxB,KAAKlE,MAAM,iBAAkB0F,GACxDlB,KAAMN,KAAK5F,QAGjB,GAGFmH,QAAS,CACPuH,eAAAA,CAAgBzP,GACT2G,KAAK1I,MAAO0I,KAAKpH,UAItBoH,KAAKlE,MAAM,QAAS,CAAE,CAACkE,KAAK1I,KAAM+B,GACpC,EAEA8T,WAAAA,CAAYG,GACV,MAAMb,EAAWa,GAAMb,UAAUpE,OAC3BmE,EAAWc,GAAMd,UAAUnE,OAC3B0E,EAASO,GAAMf,QAAS,EAE9B,IAAKvM,KAAK1I,KAAO0I,KAAKpH,WAAa6T,GAAUvS,SAAWsS,GAAUtS,OAChE,OAGF,MAAMwT,EAAU,OAASX,EAAS,IAAM,IACxCO,EAAQ,GAAEI,KAAWlB,WAAkBC,KACvCzM,KAAKlE,MAAM,QAAS,CAAE,CAACwR,GAAOtN,KAAK3G,MAAM2G,KAAK1I,MAChD,EAEA8V,aAAAA,CAAc3R,GAEZ,GADAA,EAAYA,GAAW4M,QAClBrI,KAAK1I,KAAO0I,KAAKpH,WAAa6C,GAAWvB,OAC5C,OAGF,MAAMoT,EAAQ,YAAW7R,KACzBuE,KAAKlE,MAAM,QAAS,CAAE,CAACwR,GAAOtN,KAAK3G,MAAM2G,KAAK1I,MAChD,EAEA0F,WAAAA,CAAYwE,GACNxB,KAAKpH,WAIToH,KAAKsJ,WAAY,EACjBtJ,KAAKlE,MAAM,OAAQ0F,GACrB,EAEApB,SAAAA,CAAUoB,GACRxB,KAAKsJ,WAAY,EACjBtJ,KAAKlE,MAAM,UAAW0F,EACxB,EAEApH,MAAAA,CAAOoH,GACDxB,KAAKpH,WAIToH,KAAKsJ,WAAY,EACjBtJ,KAAKlE,MAAM,OAAQ0F,GACrB,IKrPJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,UCIWxL,MAAM,a,IACTC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAAgC,KAA7BD,MAAM,yBAAoB,G,IAEzBA,MAAM,Q,IACVC,EAAAA,EAAAA,GAAmC,QAA7BD,MAAM,WAAU,UAAM,G,6BAK7BA,MAAM,oB,8IApBbwB,EAAAA,EAAAA,IAoCWsC,EAAA,CApCD9D,MAAM,cACLqD,MAAO/C,EAAA+C,MACPV,OAAQrC,EAAAqC,OACR,YAAWrC,EAAAsC,SACX,gBAAetC,EAAAyD,aACf,aAAYzD,EAAAuC,UACZ8B,QAAKjE,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,QAAS/C,K,mBAC/B,IAWO,EAXPc,EAAAA,EAAAA,IAWO4O,GAXP/Q,EAAAA,EAAAA,IAAcd,EAWP4T,SAXgB5S,OACjBC,EAAAA,EAAAA,IAAMjB,EAAY4T,SAAH1S,IAAE,CAChBrB,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOiB,EAAA2T,gBAAiB,GAAH,a,mBAC/B,IAOM,EAPN1X,EAAAA,EAAAA,GAOM,MAPNI,GAOM,CANJG,IAGAP,EAAAA,EAAAA,GAEO,OAFPC,GAEO,CADLC,IAAmC,WAACF,EAAAA,EAAAA,GAAoC,QAA9BD,MAAM,O,aAAO6H,EAAAA,EAAAA,IAAQvH,EAAM+C,Q,2BAKvCW,EAAA2T,iBAAmBrX,EAAAsC,WAAQ,WAA/DxC,EAAAA,EAAAA,IAeM,MAfNwD,GAeM,EAdJC,EAAAA,EAAAA,IAaQ2E,EAAA,CAbDjD,MAAM,cACLmP,SAAS,EACTC,QAAKjU,EAAA,KAAAA,EAAA,GAAAqC,GAAEiB,EAAA2T,gBAAiB,I,mBAC9B,IASmB,CAFK3T,EAAA2T,iBAAc,WAPtCnW,EAAAA,EAAAA,IASmBoT,EAAA,C,MATAvR,MAAO/C,EAAA+C,MACP,eAAa,EACbiB,QAAS9B,EAAA8B,QACT4Q,OAAO,EACRI,YAAY,wBACZnO,IAAI,aACHxC,SAAKI,EAAAA,EAAAA,IAAenE,EAAAgX,aAAY,qB,mBACX,IAExC,UAFwC,4B,0JAehD,QACE7G,OAAQ,CAACC,EAAAA,GACT7H,MAAO,CACL,SACA,QACA,SACA,SAGF8H,WAAY,CACVyE,iBAAgB,GAChBnD,SAAQ,GACRjB,MAAK,IACLoB,KAAIA,IAGN9Q,MAAO,CACLyB,MAAO,CACL+F,KAAM,CAACM,OAAQF,OAAQH,QAAS7E,OAAQmF,OACxCL,QAAS,IAGX3G,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,IAIb+B,SAAU,CACRmJ,QAAAA,GACE,MAAO,CACL5S,MAAO,CACLyB,MAAO2G,KAAK3G,MACZrD,MAAO,UACP0E,WAAW,EACX9B,SAAUoH,KAAKpH,SACf2E,YAAayC,KAAKpH,UAGpBd,GAAI,CACF6T,OAAQA,IAAM3L,KAAKlE,MAAM,UACzB0M,MAAOxI,KAAKrF,SAGlB,GAGFiF,IAAAA,GACE,MAAO,CACL+N,gBAAgB,EAEpB,EAEApM,QAAS,CACPqM,YAAAA,CAAapM,GAEX,GADAxB,KAAK2N,gBAAiB,EAClB3N,KAAKpH,SACP,OAGF,MAAMiV,EAAOrM,EAAMuD,OAAO1L,OAAOgP,OACjC7G,EAAMuD,OAAO1L,MAAQwU,EACrB7N,KAAKlE,MAAM,SAAU+R,EACvB,EAEAlT,OAAAA,CAAQtB,GACDA,IAAS2G,KAAKpH,UAInBoH,KAAKlE,MAAM,QAASzC,EACtB,IChIJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,yECQMpD,EAAAA,EAAAA,GAOM,OAPDD,MAAM,aAAW,EACpBC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAAyC,KAAtCD,MAAM,mCAEXC,EAAAA,EAAAA,GAEO,QAFDD,MAAM,QAAM,EAChBC,EAAAA,EAAAA,GAA8B,OAAzBD,MAAM,WAAU,WAAG,K,IAIvBA,MAAM,a,gDAQRA,MAAM,oB,IAMGA,MAAM,Q,wCAONA,MAAM,S,IAUTA,MAAM,Y,IACHA,MAAM,Q,IAONA,MAAM,S,YAWdC,EAAAA,EAAAA,GAIM,OAJDD,MAAM,WAAS,EAClBC,EAAAA,EAAAA,GAES,UAFDmJ,KAAK,SAASpJ,MAAM,mBAAkB,YAE9C,K,iJA5EVwB,EAAAA,EAAAA,IAiFWsC,GAjFXpC,EAAAA,EAAAA,IAiFW,CAjFD1B,MAAK,CAAC,qBAAoB,CAAA2C,OACjBrC,EAAAqC,SACR5B,SAAUiD,EAAAsP,UACVjQ,MAAO/C,EAAA+C,MACPV,OAAQrC,EAAAqC,OACR,YAAWrC,EAAAsC,SACX,gBAAetC,EAAAyD,aACf,aAAYzD,EAAAuC,YACbhB,EAAAA,EAAAA,IAAMjB,EAAc2T,eAAD,CAClB5P,QAAKjE,EAAA,KAAAA,EAAA,GAAAqC,GAAEP,EAAAsD,MAAM,QAAS/C,M,mBAC/B,IAmBO,EAnBPc,EAAAA,EAAAA,IAmBO4O,GAnBP/Q,EAAAA,EAAAA,IAAcd,EAmBP4T,SAnBgB5S,OACjBC,EAAAA,EAAAA,IAAMjB,EAAY4T,SAAH1S,IAAE,CAChB4C,WAAYpE,EAAAsC,SACZnC,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAOiB,EAAA8T,YAAa,GAAH,a,mBAC3B,IAOM,CAPNzX,IASAJ,EAAAA,EAAAA,GAKM,MALNO,GAKM,gBAJJJ,EAAAA,EAAAA,IAGMa,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHwCZ,EAAA+C,OAAK,CAArBA,EAAOmE,M,WAArCpH,EAAAA,EAAAA,IAGM,OAHDJ,MAAM,WAA2CsB,IAAKkG,G,EACzDvH,EAAAA,EAAAA,GAAwC,QAAlCD,MAAM,Y,aAAY6H,EAAAA,EAAAA,IAAQL,I,oBAAQ,QACxCvH,EAAAA,EAAAA,GAA0C,QAApCD,MAAM,a,aAAa6H,EAAAA,EAAAA,IAAQxE,I,kDAKHW,EAAA8T,aAAexX,EAAAsC,WAAQ,WAA3DxC,EAAAA,EAAAA,IAiDM,MAjDNqH,GAiDM,EAhDJ5D,EAAAA,EAAAA,IA+CQ2E,EAAA,CA/CDjD,MAAM,gBACLmP,SAAS,EACTC,QAAKjU,EAAA,KAAAA,EAAA,GAAAqC,GAAEiB,EAAA8T,YAAa,I,mBAC1B,IA2CO,EA3CP7X,EAAAA,EAAAA,GA2CO,QA3CDD,MAAM,SAAU8U,SAAMpU,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAA,IAAApE,IAAUC,EAAA2C,UAAA3C,EAAA2C,YAAA5C,IAAQ,e,gBAC5CP,EAAAA,EAAAA,IAgBMa,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAhBiC8C,EAAAC,UAAQ,CAAjB8T,EAAGC,M,WAAjC5X,EAAAA,EAAAA,IAgBM,OAhBDJ,MAAM,WAAuCsB,IAAK0W,G,EACrD/X,EAAAA,EAAAA,GAMO,OANP2D,GAMO,WALL3D,EAAAA,EAAAA,GAIgC,SAJzBmJ,KAAK,OACLkM,YAAY,gBACX2C,OAAIlV,GAAEnC,EAAAqX,OAAOD,GACbrT,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAN,QAAmB,qB,yBACVf,EAAAC,SAAS+T,GAAG,GAAFjV,G,mBAAViB,EAAAC,SAAS+T,GAAG,OAAF,QAAM,UAElC/X,EAAAA,EAAAA,GAOO,OAPPiF,GAOO,EANLrB,EAAAA,EAAAA,IAK4EkR,EAAA,CALtD1R,MAAOW,EAAAC,SAAS+T,GAAG,GACnBhD,MAAOxS,EAAAyS,yBACPC,OAAO,EACP,iBAAe,EAChBI,YAAY,QACX3Q,SAAKI,EAAAA,EAAAA,KAAAhC,GAAeiB,EAAAC,SAAS+T,GAAG,GAAKjV,EAAOwS,QAAM,qB,kDAI5EtV,EAAAA,EAAAA,GAiBM,MAjBNmF,GAiBM,EAhBJnF,EAAAA,EAAAA,GAMO,OANPyF,GAMO,WALLzF,EAAAA,EAAAA,GAIkC,SAJ3BmJ,KAAK,OACLkM,YAAY,gBACZnO,IAAI,aACHxC,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAN,QAAmB,qB,qCACVf,EAAAkU,YAAY1Q,KAAIzE,I,iBAAhBiB,EAAAkU,YAAY1Q,SAAI,QAAE,UAEpCvH,EAAAA,EAAAA,GAQO,OARP4F,GAQO,EAPLhC,EAAAA,EAAAA,IAM4CkR,EAAA,CANtB1R,MAAOW,EAAAkU,YAAY7U,MACnB2R,MAAOxS,EAAAyS,yBACPC,OAAO,EACP,iBAAe,EAChBI,YAAY,QACX3Q,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAAhC,GAAeiB,EAAAkU,YAAY7U,MAAQN,EAAOwS,QAAM,qBACrD0C,OAAIvX,EAAA,KAAAA,EAAA,GAAAqC,GAAEnC,EAAAqX,OAAO,Q,8BAIvCjS,IAIM,O,oHAchB,QACE+K,OAAQ,CAACC,EAAAA,GACT7H,MAAO,CACL,QACA,SACA,OACA,UACA,YACA,YACA,WACA,OACA,SAGF8H,WAAY,CACVmE,oBAAmB,KACnB7C,SAAQ,GACRjB,MAAK,IACLoB,KAAIA,IAGN9Q,MAAO,CACLe,OAAQ,CACNyG,KAAMC,QACNC,SAAS,GAGXvI,SAAU,CACRqI,KAAMC,QACNC,SAAS,GAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXvF,aAAc,CACZqF,KAAMC,QACNC,SAAS,GAGXzG,UAAW,CACTuG,KAAMC,QACNC,SAAS,GAGXjG,MAAO,CACL+F,KAAM5E,OACN8E,QAASA,KAAA,CAAS,KAItB+B,SAAU,CACRkJ,aAAAA,GACE,OAAOvK,KAAKpH,SAAW,CAAC,EAAI,CACxBsH,KAAMF,KAAKhD,YACXmD,QAASH,KAAKI,UACdkG,UAAY9E,GAAUxB,KAAKlE,MAAM,YAAa0F,GAC9CgF,UAAYhF,GAAUxB,KAAKlE,MAAM,YAAa0F,GAC9CkF,SAAWlF,GAAUxB,KAAKlE,MAAM,WAAY0F,GAC5ClB,KAAMN,KAAK5F,OAEjB,EAEAoQ,QAAAA,GACE,MAAO,CACL5S,MAAO,CACLyB,MAAO2G,KAAK3G,MACZrD,MAAO,UACP4C,SAAUoH,KAAKpH,SACf2E,YAAayC,KAAKpH,UAGpBd,GAAI,IACCkI,KAAKuK,cACRoB,OAAQA,IAAM3L,KAAKlE,MAAM,UACzB0M,MAAOxI,KAAKrF,SAGlB,GAGFiF,IAAAA,GACE,MAAO,CACL0J,WAAW,EACXrP,SAAU,GACViU,YAAa,CACX1Q,KAAM,GACNnE,MAAO,IAETyU,YAAY,EAEhB,EAEAvM,QAAS,CACPhI,QAAAA,GAEE,GADAyG,KAAK8N,YAAa,EACd9N,KAAKpH,SACP,OAGF,MAAMuV,EAAYnO,KAAK/F,SACnB+F,KAAKkO,YAAY1Q,MAAM6K,UAAUnO,QACnCiU,EAAUC,KAAK,CAACpO,KAAKkO,YAAY1Q,KAAMwC,KAAKkO,YAAY7U,QAG1D,MAAM1C,EAAOwX,EAAUE,KAAI,EAAE7Q,EAAMnE,MAC/BmE,EAAOwC,KAAKsO,aAAa9Q,GACzB,IACEnE,EAAQ4I,KAAKsM,MAAMlV,EACrB,CAAE,MAAOmV,GACPnV,EAAQA,GAAOgP,MACjB,CAEA,MAAO,CAAC7K,EAAMnE,EAAM,IAErB8O,QAAO,CAACC,GAAM5K,EAAMnE,KACdmE,GAAMtD,QAIXkO,EAAI5K,GAAQnE,EACL+O,GAJEA,GAKR,CAAC,GAED5N,OAAOC,KAAK9D,GAAMuD,QAIvB8F,KAAKrF,QAAQhE,EACf,EAEAgE,OAAAA,CAAQtB,GACDA,IAAS2G,KAAKpH,UAInBoH,KAAKlE,MAAM,QAAS,CAACa,IAAKtD,GAC5B,EAEA4U,MAAAA,CAAO5W,GACL,IAAI2I,KAAKpH,SAIT,GAAa,MAATvB,EAAe,CACjB,MAAMmG,EAAOwC,KAAKsO,aAAatO,KAAK/F,SAAS5C,GAAO,IAC/CmG,GAAMtD,OAGT8F,KAAK/F,SAAS5C,GAAO,GAAKmG,EAF1BwC,KAAK/F,SAASwU,OAAOpX,EAAO,EAIhC,KAAO,CACL,MAAMmG,EAAOwC,KAAKsO,aAAatO,KAAKkO,YAAY1Q,MAC1CnE,EAAQ2G,KAAKkO,YAAY7U,MAE3BmE,GAAMtD,SACR8F,KAAK/F,SAASmU,KAAK,CAAC5Q,EAAMnE,IAC1B2G,KAAKkO,YAAc,CACjB1Q,KAAM,GACNnE,MAAO,IAGT2G,KAAK8F,WAAU,KACb9F,KAAK5C,MAAMsR,YAAYjD,OAAO,IAGpC,CACF,EAEAzO,WAAAA,CAAYwE,GACNxB,KAAKpH,WAIToH,KAAKsJ,WAAY,EACjBtJ,KAAKlE,MAAM,OAAQ0F,GACrB,EAEApB,SAAAA,CAAUoB,GACRxB,KAAKsJ,WAAY,EACjBtJ,KAAKlE,MAAM,UAAW0F,EACxB,EAEApH,MAAAA,CAAOoH,GACLxB,KAAKsJ,WAAY,EACbtJ,KAAKpH,UAIToH,KAAKlE,MAAM,OAAQ0F,EACrB,EAEA8M,YAAAA,CAAa9Q,GACX,OAAOA,GAAM6K,QAAQsG,QAAQ,UAAW,IAC1C,EAEAC,SAAAA,GACE5O,KAAK/F,SAAWO,OAAO8K,QAAQtF,KAAK3G,MACtC,GAGFuM,MAAO,CACLkI,UAAAA,CAAWzU,GACJA,EAMH2G,KAAK8F,WAAU,KACb9F,KAAK5C,MAAMsR,YAAYjD,OAAO,IANhCzL,KAAKkO,YAAc,CACjB1Q,KAAM,GACNnE,MAAO,GAOb,EAEAA,MAAO,CACLwV,WAAW,EACXrJ,OAAAA,GACExF,KAAK4O,WACP,IAIJzI,OAAAA,GACEnG,KAAK4O,YACL5O,KAAK8F,WAAU,KACb9F,KAAK5C,MAAMsR,YAAYjD,OAAO,GAElC,GC3TF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UtC4HA,IACEjO,KAAM,cACNuJ,OAAQ,CAACC,EAAAA,EAAOgB,GAAAA,GAChB7I,MAAO,CACL,WACA,SACA,WACA,OACA,UACA,YACA,YACA,WACA,OACA,QACA,QACA,UAGF8H,WAAY,CACV6H,gBAAe,GACfxG,WAAU,GACVyG,QAAO,GACPC,UAAS,GACTC,eAAc,GACdC,aAAY,GACZ3G,SAAQ,GACR4G,UAAS,GACTC,WAAU,GACVC,iBAAgBA,IAGlBzX,MAAO,CACLG,UAAW,CACTqH,KAAMC,QACNC,SAAS,GAGXvI,SAAU,CACRqI,KAAMC,QACNC,SAAS,GAGXsJ,QAAS,CACPxJ,KAAMC,QACNC,SAAS,GAGX/I,OAAQ,CACN6I,KAAMI,OACNF,QAAS,GAGXuJ,aAAc,CACZzJ,KAAMC,QACNC,SAAS,GAGXgE,OAAQ,CACNlE,KAAM5E,OACN8E,QAAS,MAGX1G,SAAU,CACRwG,KAAMC,QACNC,SAAS,GAGXjG,MAAO,CACL+F,KAAM5E,OACN8E,QAASA,KAAA,CACP9B,UAAM+J,EACN+H,QAAS,OAKf1P,IAAAA,GACE,MAAO,CACL5E,oBAAoB,EACpBf,SAAU,GACVsV,iBAAahI,EACbiI,kBAAcjI,EACdpN,UAAW,CAAC,EACZsV,eAAgB,CAAC,EAErB,EAEApO,SAAU,CACRrJ,eAAAA,GACE,OAAOgI,KAAK/F,SAASkO,QAAO,CAACC,EAAKhR,EAAQC,IACnC2I,KAAK0P,eAAetY,GAIpB4I,KAAKhJ,YAKNgJ,KAAK7H,MAAMd,GACb+Q,EAAI/Q,GAAS2I,KAAK2P,iBAAmBtY,EAAQ,EAE7C+Q,EAAI/Q,GAAS2I,KAAK2P,iBAAmBtY,EAGhC+Q,IAVLA,EAAI/Q,GAAS2I,KAAKjI,UACXqQ,GALAA,GAeR,CAAC,EACN,EAEAzQ,cAAAA,GACE,OAAOqI,KAAK/F,SAASoU,KAAI,CAACjX,EAAQC,KAChC,IAAIuI,EAAO,CACThI,MAAO,CACLyB,MAAOjC,EACPuB,OAAQqH,KAAKhJ,WACbsD,QAAS0F,KAAKzF,SAASlD,GACvBwR,gBAAiB7I,KAAK6I,cAAgB7I,KAAKwN,OAAOpW,IAAW4I,KAAKyN,SAASrW,IAC3EwB,SAAUoH,KAAKpH,SACfuE,IAAM,eAAc9F,IACpB0C,aAAciG,KAAK4P,qBAAqBvY,GACxCwB,UAAWmH,KAAK6P,kBAAkBxY,IAGpCS,GAAI,CACF6T,OAAQA,IAAM3L,KAAKhH,aAAa3B,GAChC6I,KAAOsB,GAAUxB,KAAKhD,YAAY3F,EAAOmK,GACzCrB,QAAUqB,GAAUxB,KAAKI,UAAUoB,GACnC8E,UAAY9E,GAAUxB,KAAKuG,YAAYlP,EAAOmK,GAC9CgF,UAAYhF,GAAUxB,KAAKyG,YAAYpP,EAAOmK,GAC9CkF,SAAWlF,GAAUxB,KAAK2G,WAAWnF,GACrClB,KAAOkB,IACL,IACExB,KAAK5F,OAAO/C,EAAOmK,EACrB,CAAE,QACAxB,KAAKhJ,YAAa,CACpB,GAEFwR,MAAQnP,GAAU2G,KAAK8P,WAAWzW,EAAOhC,KAK3C2I,KAAKmK,aAAa/S,IAClB4I,KAAK/F,SAAS5C,EAAQ,IACtB2I,KAAKiJ,OAAOjJ,KAAK/F,SAAS5C,EAAQ,MAElCuI,EAAKhI,MAAMgR,SAAU,GAGnB5I,KAAK0P,eAAetY,KACtBwI,EAAKhI,MAAMrB,OAASyJ,KAAKzJ,OAAS,GAGpC,MAAMwZ,EAAU/P,KAAKwN,OAAOpW,GACxB2Y,IACFnQ,EAAKhI,MAAM2U,MAAQwD,EAAQxD,MAC3B3M,EAAKhI,MAAMwH,KAAO,OAGpB,MAAM4Q,EAAYhQ,KAAKyN,SAASrW,GAShC,OARI4Y,IACFpQ,EAAKhI,MAAMwH,KAAO,SAGhBY,KAAKiQ,MAAM7Y,KACbwI,EAAKhI,MAAMyB,MAAQjC,EAAOuF,KAGrBiD,CAAG,GAEd,EAEArI,UAAAA,GACE,OAAOyI,KAAK/F,UAAUkO,UAAS,CAACC,EAAKhR,EAAQC,KAC3C,MAAMoE,EAAYuE,KAAKmK,aAAa/S,GAQpC,OAPIqE,IACF2M,EAAI/Q,GAAS,CACXoE,YACA6T,QAASlY,EAAOoD,OAAOC,KAAKrD,GAAQ,MAIjCgR,CAAE,GACR,CAAC,IAAM,CAAC,CACb,EAEA7N,QAAAA,GACE,MAAM2V,EAAY,IAAIlQ,KAAK1F,SACrBC,EAAWyF,KAAK/F,UAAUkO,UAAS,CAACC,EAAKhR,EAAQC,KACrD+Q,EAAI/Q,GAAS2I,KAAKmQ,WAAW/Y,EAAQC,EAAO6Y,GACrC9H,IACN,CAAC,IAAM,CAAC,EAELgI,EAAY5V,OAAOC,KAAKF,GAAUL,OAkBxC,OAjBIkW,EAAY,GACd7V,EAAS6V,GAAapQ,KAAKmQ,WACzB,KACAC,EACA7V,EAAS6V,EAAY,IAGvB7V,EAAS6V,GAAa,IACjBpQ,KAAK1F,WACL4V,KACA3V,EAAS6V,EAAY,MACrB7V,EAAS6V,KAGd7V,EAAS,GAAK,IAAIyF,KAAK1F,SAGlBC,CACT,EAEAoV,cAAAA,GACE,GAAsB,MAAlB3P,KAAKqQ,WAM0B,IAA7BrQ,KAAKuP,aAAarV,QAAgB8F,KAAKuP,YAAY,KAAOvP,KAAKqQ,WAKhErQ,KAAK0P,eAAe1P,KAAK/F,SAAS+F,KAAKqQ,YAI5C,OAAOrQ,KAAKqQ,SACd,EAEArZ,WAAY,CACVsZ,GAAAA,GACE,OAAOtQ,KAAKjJ,WAAaiJ,KAAKuP,aAAarV,QAAU,GAAK,CAC5D,EACAyC,GAAAA,CAAItD,GACGA,IACH2G,KAAKuP,YAAc,KAEvB,GAGFpX,KAAAA,GACE,OAAO6H,KAAK/F,UAAUkO,UAAS,CAACC,EAAKhR,EAAQC,KACvC2I,KAAKiJ,OAAO7R,IAAW4I,KAAKzI,WAAWF,EAAQ,KACjD+Q,EAAI/Q,GAASD,EAAOoD,OAAOC,KAAKrD,GAAQ,KAGnCgR,IACN,CAAC,IAAM,CAAC,CACb,EAEAmI,IAAAA,GACE,OAAOvQ,KAAK/F,UAAUkO,UAAS,CAACC,EAAKhR,EAAQC,KACvC2I,KAAKwN,OAAOpW,KACdgR,EAAI/Q,GAASD,GAGRgR,IACN,CAAC,IAAM,CAAC,CACb,EAEAoI,MAAAA,GACE,OAAOxQ,KAAK/F,UAAUkO,UAAS,CAACC,EAAKhR,EAAQC,KACvC2I,KAAKyN,SAASrW,KAChBgR,EAAI/Q,GAASD,GAGRgR,IACN,CAAC,IAAM,CAAC,CACb,EAEAhQ,KAAAA,GACE,MAAO,IAAIoC,OAAOC,KAAKuF,KAAKuQ,SAAU/V,OAAOC,KAAKuF,KAAKwQ,SAASrI,QAAO,CAACC,EAAK/Q,KAC3E+Q,EAAI/Q,GAAS2I,KAAK/F,SAAS5C,GACpB+Q,IACN,CAAC,EACN,EAEA9P,IAAAA,GACE,OAAO0H,KAAK/F,UAAUkO,UAAS,CAACC,EAAKhR,EAAQC,KACvC2I,KAAKiQ,MAAM7Y,KACbgR,EAAI/Q,GAASD,GAGRgR,IACN,CAAC,IAAM,CAAC,CACb,EAEA+C,UAAAA,GACE,OAAOnL,KAAKyQ,iBAAmBzQ,KAAK0Q,WACtC,EAEAA,WAAAA,GACE,OAAOzO,KAAKC,UAAUlC,KAAK3G,MAC7B,EAEAoX,cAAAA,GACE,OAAOxO,KAAKC,UAAUlC,KAAK/F,SAC7B,EAEAoW,SAAAA,GACE,GAAKrQ,KAAKhJ,WAIV,OAAOgJ,KAAKuP,cAAc,EAC5B,EAEAoB,UAAAA,GACE,OAAO3Q,KAAK4Q,cAAcxZ,GAAW4I,KAAKvH,QAAQrB,IACpD,EAEAyZ,aAAAA,GACE,OAAO7Q,KAAK4Q,cAAcxZ,GAAW4I,KAAK/G,WAAW7B,IACvD,EAEA0Z,WAAAA,GACE,OAAO9Q,KAAK4Q,cAAcxZ,GAAW4I,KAAK7G,SAAS/B,IACrD,EAEAkC,WAAAA,GACE,GAAwB,MAApB0G,KAAK8Q,YACP,MAAO,GAET,MAAMC,EAAM/Q,KAAK/F,SAAS+F,KAAK8Q,aAC/B,GAAW,MAAPC,EACF,MAAO,GAET,IAAIC,EAAW,KAMf,OAJEA,EADErR,MAAMsR,QAAQF,GACU,IAAfA,EAAI7W,OAAe6W,EAAI,GAAGG,MAAM,qBAAqB,GAAKH,EAE1DA,EAAI5V,OAEV6V,GAAY,EACrB,EAEA/V,cAAAA,GACE,OACmB,IAAhB+E,KAAKzJ,QAAyC,IAAzByJ,KAAK/F,SAASC,SAAkB8F,KAAKhF,kBAE/D,EAEAH,sBAAAA,GACE,OACGmF,KAAKpH,WAEJoH,KAAK/F,UAAUC,OAAS,GACxB8F,KAAKzJ,OAAS,IAEhBiE,OAAO8K,QAAQtF,KAAKrG,mBAAmBsJ,QACrC,EAAE3L,EAAK+B,KAAWA,GAAgB,UAAP/B,IAC3B4C,OAAS,CAEf,EAEAiX,SAAAA,GACE,OAAuB,MAAnBnR,KAAK2Q,WACA3Q,KAAK2Q,WACY,MAAtB3Q,KAAK6Q,cACA7Q,KAAK6Q,cACU,MAApB7Q,KAAK8Q,YACA9Q,KAAK8Q,YAEP,IACT,EAEAM,eAAAA,GACE,OACGpR,KAAKpH,WACLoH,KAAKjI,WACY,MAAlBiI,KAAKmR,SAET,EAEAha,cAAAA,GACE,OAAO6I,KAAK/F,SAASkO,QAAO,CAACC,EAAKhR,EAAQC,KAClB,MAAlB2I,KAAKmR,WAAqB9Z,EAAQ2I,KAAKmR,YAIzCnR,KAAKzI,WAAWF,IAChB2I,KAAK7H,MAAMd,IACX2I,KAAKuQ,KAAKlZ,IACV2I,KAAKwQ,OAAOnZ,IACZ2I,KAAKvG,SAASrC,IACd4I,KAAKvH,QAAQrB,IACb4I,KAAK/G,WAAW7B,IAChB4I,KAAK7G,SAAS/B,IACd4I,KAAKiQ,MAAM7Y,MAEXgR,EAAI/Q,GAASD,GAbNgR,IAiBR,CAAC,EACN,EAEAzO,iBAAAA,GACE,MAAO,CACLvC,OAAQ4I,KAAKoR,gBACbjW,OAAQ6E,KAAKoR,gBACb3V,UAAWuE,KAAKoR,gBAChBrV,IAAKiE,KAAKoR,gBACVlV,MAAO8D,KAAKoR,gBACZzU,IAAKqD,KAAKoR,gBACVxV,KACEoE,KAAKoR,iBACLpR,KAAKsD,QACLtD,KAAKmK,aAAanK,KAAKsD,UACtBtD,KAAK4I,QAERvM,MACE2D,KAAKoR,iBACLpR,KAAK6I,aAEPrM,SACEwD,KAAKoR,iBACLpR,KAAK6I,aAGX,EAEAgH,iBAAAA,GACE,MAAMQ,EAAYrQ,KAAKqQ,UACvB,OAAOrQ,KAAK/F,SAASkO,QAAO,CAACC,EAAKnK,EAAM5G,KACtC+Q,EAAI/Q,IACD2I,KAAKiJ,OAAOhL,KACE,MAAboS,GACAA,EAAYhZ,GACVgZ,IAAchZ,GACd2I,KAAKuP,YAAYrV,OAAS,GAKzBkO,IACN,CAAC,EACN,EAEAwH,oBAAAA,GACE,MAAMS,EAAYrQ,KAAKqQ,UACvB,OAAOrQ,KAAK/F,SAASkO,QAAO,CAACC,EAAKiJ,EAAGha,KACnC+Q,EAAI/Q,GAEa,MAAbgZ,IACEA,EAAYhZ,GACVgZ,IAAchZ,GACd2I,KAAKuP,YAAYrV,OAAS,IAIjB,MAAbmW,GACAhZ,IAAU2I,KAAK/F,SAASC,OAAS,EAI9BkO,IACN,CAAC,EACN,GAGF7G,QAAS,CACPvE,WAAAA,CAAY3F,EAAOmK,GACbxB,KAAKpH,WAIP4I,EADE7B,MAAMsR,QAAQzP,GACR,CAACnK,KAAUmK,GAEX,CAACnK,GAGX2I,KAAKuP,YAAc/N,EACnBxB,KAAKlE,MAAM,OAAQ0F,GACrB,EAEApB,SAAAA,GACEJ,KAAKhJ,YAAa,EAClBgJ,KAAKlE,MAAM,UACb,EAEAyK,WAAAA,CAAYlP,EAAOmK,GACZxB,KAAKhJ,aAAcgJ,KAAKpH,WAI7B4I,EAAME,oBACN1B,KAAKlE,MAAM,YAAazE,GAC1B,EAEAoP,WAAAA,CAAYpP,EAAOmK,GACZxB,KAAKhJ,aAAcgJ,KAAKpH,WAI7B4I,EAAME,oBACN1B,KAAKlE,MAAM,YAAazE,GAC1B,EAEAsP,UAAAA,CAAWnF,GACTxB,KAAKlE,MAAM,WAAY0F,EACzB,EAEApH,MAAAA,CAAOkX,EAAW9P,GAChB,IAAKxB,KAAKhJ,YAAuB,MAATwK,GAA8B,MAAb8P,GAAqBtR,KAAKpH,SACjE,OAGF4I,EAAME,oBACN,IAAI6P,EAAc,GAgBlB,GAXEA,EAHG/P,EAAM+J,QAAQrR,OAGH,CAACoX,KAAc9P,EAAM+J,QAFrB,CAAC+F,GAKjB9P,EAAQ,IAAIgQ,YACV,OAAQ,CACNC,SAAS,EACTC,YAAY,EACZnG,OAAQgG,IAIRvR,KAAKzJ,OAAS,EAIhB,YADAyJ,KAAKlE,MAAM,OAAQ0F,GAMrB,MAAM6O,EAAYrQ,KAAKuP,YAAYoC,OAAO,GAAG,GAC7CL,EAAY9P,EAAM+J,OAAOoG,OAAO,GAAG,GAGnC,MAAMC,EAAa5R,KAAK6R,eAAe7R,KAAKuP,aACtCuC,EAAa9R,KAAK6R,eAAeN,GACvC,IAAMK,IAAcE,EAClB,OAGF,MAAMC,EAAWH,IAAavB,GACxB2B,EAAWF,IAAaR,GAC9B,IAAKS,EACH,OAIF,MAAME,EACJjS,KAAKmK,aAAa4H,IAAa/R,KAAKiJ,OAAO2I,EAAWvB,EAAY,IAAM,EAAI,EAK1ErQ,KAAKiJ,OAAO+I,KACdV,GAAa,GAGfQ,EAAWrD,OACT6C,EAAW,KAAMM,EAAWnD,OAAO4B,EAAW4B,IAKhDjS,KAAKlE,MAAM,QAASkE,KAAK/F,SAC3B,EAEApD,UAAAA,GACEmJ,KAAKlE,MAAM,WACb,EAEAqU,UAAAA,CAAW/Y,EAAQC,EAAOiD,GACxB,MAAM+S,EAAM,IAAK/S,GAAW0F,KAAK1F,SAAW,CAAC,GACzCjD,EAAQ,IACVgW,EAAI6E,OAAS,CACX3E,OAAQ,SACRnW,OAAQ4I,KAAK/F,SAAS5C,EAAQ,KAI9B2I,KAAKiQ,MAAM7Y,IACboD,OAAOC,KAAKrD,EAAOuF,KAAK4I,SAAS/H,IAC1BA,GAAMtD,SAIXI,EAAQkD,GAAQ,CAAE+P,OAAQ,SAAS,IAIvC,MAAMf,EAAWxM,KAAKwN,OAAOpW,IAASoV,SAKtC,OAJIA,GAAUtS,SACZI,EAAQkS,GAAY,CAAEe,OAAQ,QAGzBF,CACT,EAEAwE,cAAAA,CAAeM,GACbA,EAAU,IAAIA,GACd,IAAI7O,EAAStD,KAAK/F,SAClB,MAAOqJ,GAAU6O,EAAQjY,OAAS,EAGhC,GAFAoJ,EAASA,EAAO6O,EAAQC,SAEpB9O,EAAQ,CACV,MAAM+O,EAAWrS,KAAKqK,OAAO/G,GACzB+O,IACF/O,EAASA,EAAO+O,GAEpB,CAGF,OAAO/O,CACT,EAEAwM,UAAAA,CAAWtO,EAAOnK,GACZmK,GAAOuD,QAAUvD,EAAME,gBAKzBF,EAAME,qBAIR1B,KAAK/F,SAAS5C,GAASmK,EACvBxB,KAAKlE,MAAM,QAASkE,KAAK/F,UAC3B,EAEAW,SAAAA,CAAUxD,GACR4I,KAAK/F,SAASmU,KACZ,IACKhX,EACHA,OAAQA,EAAOoG,MAAQpG,EAAOA,QAGpC,EAEAuE,YAAAA,GACEqE,KAAK/F,SAASmU,KAAK,CAAE,aAAc,KACnCpO,KAAKsS,sBACP,EAEArW,UAAAA,GACE+D,KAAK/F,SAASmU,KAAK,CAAE,wBAAyB,KAC9CpO,KAAKsS,sBACP,EAEAlW,YAAAA,GACE4D,KAAK/F,SAASmU,KAAK,CAAE,gBAAiB,KACtCpO,KAAKsS,sBACP,EAEA/V,QAAAA,GACEyD,KAAK/F,SAASmU,KAAK,QACrB,EAEA1R,WAAAA,GACEsD,KAAK/F,SAASmU,KAAK,WACrB,EAEAvR,MAAAA,GACEmD,KAAK/F,SAASmU,KAAK,CAAE,IAAO,CAAC,IAC7BpO,KAAKsS,sBACP,EAEA9W,SAAAA,GACEwE,KAAK/F,SAASmU,KAAK,CAAE,OAAU,OAC/BpO,KAAKsS,sBACP,EAEA9Y,UAAAA,CAAWH,GACT2G,KAAK/F,SAAS+F,KAAK8Q,aAAe,CAAE,OAAUzX,GAAOa,OAASb,EAAQ,KACxE,EAEAiZ,oBAAAA,GACEtS,KAAK8F,WAAU,KACb,MAAMyM,EAAUvS,KAAK5C,MAAO,gBAAc4C,KAAK/F,SAASC,OAAS,MAAO,GACxE,IAAKqY,EACH,OAGF,MAAMC,EAAiBD,EAAQE,KAAKC,cAAc,SAC7CF,IAILA,EAAeG,QACf3S,KAAK8F,WAAU,KACb,MAAM8M,EAAaL,EAAQE,KAAKC,cAAc,qBAC9C,IAAKE,EACH,OAGF,MAAMpK,EAAQoK,EAAWF,cAAc,sBAClClK,IAILA,EAAMnP,MAAQ,GACdmP,EAAMiD,QAAO,IACb,GAEN,EAEAvT,OAAAA,GACE8H,KAAK/F,SAASmU,KAAK,CAAE,KAAQ,IAC/B,EAEApV,YAAAA,CAAa3B,GAEX,MAAM2T,EACJhL,KAAKmK,aAAanK,KAAK/F,SAAS5C,KAAW2I,KAAKiJ,OAAOjJ,KAAK/F,WAAW5C,EAAQ,IAC7E,EAAI,EAEFuK,EAAK5B,KAAK5C,MAAO,eAAc/F,OAAW,IAAIob,IAChD7Q,GACFA,EAAGuB,UAAU0C,IAAI,UACjBpD,YAAW,KACTb,EAAGuB,UAAU8C,OAAO,UACpBjG,KAAK/F,SAASwU,OAAOpX,EAAO2T,EAAM,GACjC,MAEHhL,KAAK/F,SAASwU,OAAOpX,EAAO2T,EAEhC,EAEA4F,YAAAA,CAAaiC,GACX,MAAM9B,EAAM/Q,KAAK/F,UAAUkO,UAAS,CAACC,EAAKhR,EAAQC,IAC5C+Q,GAAO,EACFA,EAELyK,EAASzb,GACJC,EAEF+Q,IACL,GAEJ,OAAO2I,GAAO,EAAIA,EAAM,IAC1B,EAEA+B,WAAAA,GACE9S,KAAK8F,WAAU,KACb9F,KAAKyP,eAAiBjV,OAAOC,KAAKuF,KAAK/F,UAAUkO,QAAO,CAACC,EAAK/Q,KAC5D+Q,EAAI/Q,GAAS2I,KAAK5C,MAAO,cAAa/F,OAAW,GAC1C+Q,IACN,CAAC,EAAE,GAEV,EAEAwG,SAAAA,GACO5O,KAAK3G,OAAU2G,KAAKmL,aAGzBnL,KAAK/F,SAAW+F,KAAK3G,MACvB,GAGFuM,MAAO,CACL3L,SAAU,CACR8Y,MAAM,EACNvN,OAAAA,CAAQnM,GACN2G,KAAKlE,MAAM,QAASzC,GACpB2G,KAAK8S,aACP,GAGFvD,WAAAA,GACEvP,KAAK8S,aACP,EAEAzZ,MAAO,CACLwV,WAAW,EACXkE,MAAM,EACNvN,OAAAA,GACExF,KAAK4O,WACP,IAIJzI,OAAAA,GACEnG,KAAK4O,YACL5O,KAAK8S,aACP,EAEAE,OAAAA,GACOhT,KAAKmL,YAIVnL,KAAKlE,MAAM,SAAUkE,KAAK/F,SAC5B,GuC55BF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAASgZ,GAAQ,CAAC,YAAY,qBAEzF,S,qJCHIhd,EAAAA,EAAAA,GAA8B,KAA3BD,MAAM,oBAAkB,W,GAA3BK,G,0CALFD,EAAAA,EAAAA,IAMS,UANDJ,MAAM,cACNmH,IAAI,aACJ5B,MAAM,oBACL9E,QAAKC,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAA,IAAApE,IAAUC,EAAAsc,MAAAtc,EAAAsc,QAAAvc,IAAI,cACnBgE,QAAKjE,EAAA,KAAAA,EAAA,IAAAqE,EAAAA,EAAAA,KAAA,IAAApE,IAAUC,EAAAsc,MAAAtc,EAAAsc,QAAAvc,IAAI,e,qBAQ9B,GACE6G,KAAM,aACN2B,MAAO,CAAC,QAAS,SACjB4H,OAAQ,CAACiB,EAAAA,GACTpQ,MAAO,CACLub,KAAM,CACJ/T,KAAMM,SAIV6B,QAAS,CACP,UAAM2R,CAAK1R,GACLxB,KAAKmT,MAAMjZ,cACP8F,KAAKoT,gBAAgBpT,KAAKmT,MAElCnT,KAAKlE,MAAM0F,EAAMpC,KAAMoC,EACzB,I,UCtBJ,MAAM6E,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS4M,GAAQ,CAAC,YAAY,qBAEzF,O,0LCRE7c,EAAAA,EAAAA,IAKM,OALDJ,MAAM,iBAAkB6I,OAAKC,EAAAA,EAAAA,IAAA,CAAA6E,MAAA,GAAcrN,EAAAsH,OAAIgG,OAAA,GAAetN,EAAAsH,U,CACxBtH,EAAA+c,eAAY,WAArDjd,EAAAA,EAAAA,IAEI,K,MAFAkd,KAAM1c,EAAA2c,QAASxO,OAAO,U,EACxB9O,EAAAA,EAAAA,GAAkE,OAA5Dud,IAAK5c,EAAA6c,QAAUC,IAAK9c,EAAA+c,cAAgBpY,MAAO3E,EAAA+c,e,8BAEnDvd,EAAAA,EAAAA,IAAyE,O,MAAnEod,IAAK5c,EAAA6c,QAAUC,IAAK9c,EAAA+c,cAAgBpY,MAAO3E,EAAA+c,e,eAKrD,OACE/b,MAAO,CACL4F,KAAM,CACJ4B,KAAMM,OACNwI,UAAU,GAGZtK,KAAM,CACJwB,KAAMM,OACNJ,QAAS,UAGX+T,aAAc,CACZjU,KAAMC,QACNC,SAAS,IAIb+B,SAAU,CACRoS,OAAAA,GACE,MAAQ,uCAAsCzT,KAAK2T,sBACrD,EAEAC,aAAAA,GACE,MAAkC,WAA3B5T,KAAKxC,KAAKG,MAAM,KAAK,GAAkB,UAAY,QAC5D,EAEAgW,aAAAA,GACE,MAAME,EAAQ7T,KAAKxC,KAAKG,MAAM,KAC9B,OAAIkW,EAAM3Z,OAAS,EACV8F,KAAKxC,MAEE,WAAZqW,EAAM,IACRA,EAAMzB,QAEDyB,EAAMC,KAAK,KACpB,EAEAP,OAAAA,GACE,MAAQ,yCAAwCvT,KAAK4T,kBAAkB5T,KAAK2T,oBAC9E,I,UC3CJ,MAAMtN,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS4M,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/Action/ActionsList.vue","webpack://platypush/./src/components/Action/ActionsListItem.vue","webpack://platypush/./src/components/Action/ActionTile.vue","webpack://platypush/./src/components/elements/Draggable.vue","webpack://platypush/./src/components/elements/Draggable.vue?4734","webpack://platypush/./src/components/elements/Droppable.vue","webpack://platypush/./src/components/elements/Droppable.vue?cc37","webpack://platypush/./src/components/Action/ActionTile.vue?b875","webpack://platypush/./src/components/Action/ListItem.vue","webpack://platypush/./src/components/Action/ListItem.vue?60ed","webpack://platypush/./src/components/Action/ActionsListItem.vue?c6d3","webpack://platypush/./src/components/Action/AddTile.vue","webpack://platypush/./src/components/elements/Tile.vue","webpack://platypush/./src/components/elements/Tile.vue?e817","webpack://platypush/./src/components/Action/AddTile.vue?7ba4","webpack://platypush/./src/components/Action/BreakTile.vue","webpack://platypush/./src/components/Action/BreakTile.vue?2db5","webpack://platypush/./src/components/Action/ConditionBlock.vue","webpack://platypush/./src/components/Action/ActionsBlock.vue","webpack://platypush/./src/components/Action/ActionsBlock.vue?4f92","webpack://platypush/./src/components/Action/ConditionTile.vue","webpack://platypush/./src/components/Action/ExpressionEditor.vue","webpack://platypush/./src/components/Action/ExpressionEditor.vue?8365","webpack://platypush/./src/components/Action/ConditionTile.vue?0ad1","webpack://platypush/./src/components/Action/EndBlockTile.vue","webpack://platypush/./src/components/Action/EndBlockTile.vue?b46c","webpack://platypush/./src/components/Action/ConditionBlock.vue?cdb1","webpack://platypush/./src/components/Action/ContinueTile.vue","webpack://platypush/./src/components/Action/ContinueTile.vue?4356","webpack://platypush/./src/components/Action/LoopBlock.vue","webpack://platypush/./src/components/Action/LoopTile.vue","webpack://platypush/./src/components/Action/LoopEditor.vue","webpack://platypush/./src/components/Action/LoopEditor.vue?b50f","webpack://platypush/./src/components/Action/LoopTile.vue?f665","webpack://platypush/./src/components/Action/LoopBlock.vue?be0b","webpack://platypush/./src/components/Action/ReturnTile.vue","webpack://platypush/./src/components/Action/ReturnTile.vue?7767","webpack://platypush/./src/components/Action/SetVariablesTile.vue","webpack://platypush/./src/components/Action/SetVariablesTile.vue?65fe","webpack://platypush/./src/components/Action/ActionsList.vue?08cc","webpack://platypush/./src/components/elements/CopyButton.vue","webpack://platypush/./src/components/elements/CopyButton.vue?0778","webpack://platypush/./src/components/elements/ExtensionIcon.vue","webpack://platypush/./src/components/elements/ExtensionIcon.vue?84d5"],"sourcesContent":["\n\n\n\n\n","\n\n\n","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./Draggable.vue?vue&type=template&id=dd2759da&scoped=true\"\nimport script from \"./Draggable.vue?vue&type=script&lang=js\"\nexport * from \"./Draggable.vue?vue&type=script&lang=js\"\n\nimport \"./Draggable.vue?vue&type=style&index=0&id=dd2759da&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-dd2759da\"]])\n\nexport default __exports__","\n\n\n","import { render } from \"./Droppable.vue?vue&type=template&id=6555265e\"\nimport script from \"./Droppable.vue?vue&type=script&lang=js\"\nexport * from \"./Droppable.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { render } from \"./ActionTile.vue?vue&type=template&id=49487886&scoped=true\"\nimport script from \"./ActionTile.vue?vue&type=script&lang=js\"\nexport * from \"./ActionTile.vue?vue&type=script&lang=js\"\n\nimport \"./ActionTile.vue?vue&type=style&index=0&id=49487886&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-49487886\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./ListItem.vue?vue&type=template&id=7d0cf109&scoped=true\"\nimport script from \"./ListItem.vue?vue&type=script&lang=js\"\nexport * from \"./ListItem.vue?vue&type=script&lang=js\"\n\nimport \"./ListItem.vue?vue&type=style&index=0&id=7d0cf109&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-7d0cf109\"]])\n\nexport default __exports__","import { render } from \"./ActionsListItem.vue?vue&type=template&id=68b72aac\"\nimport script from \"./ActionsListItem.vue?vue&type=script&lang=js\"\nexport * from \"./ActionsListItem.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./Tile.vue?vue&type=template&id=9354cf66&scoped=true\"\nimport script from \"./Tile.vue?vue&type=script&lang=js\"\nexport * from \"./Tile.vue?vue&type=script&lang=js\"\n\nimport \"./Tile.vue?vue&type=style&index=0&id=9354cf66&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-9354cf66\"]])\n\nexport default __exports__","import { render } from \"./AddTile.vue?vue&type=template&id=2ff09bb6&scoped=true\"\nimport script from \"./AddTile.vue?vue&type=script&lang=js\"\nexport * from \"./AddTile.vue?vue&type=script&lang=js\"\n\nimport \"./AddTile.vue?vue&type=style&index=0&id=2ff09bb6&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-2ff09bb6\"]])\n\nexport default __exports__","\n\n\n","import { render } from \"./BreakTile.vue?vue&type=template&id=b15661f8\"\nimport script from \"./BreakTile.vue?vue&type=script&lang=js\"\nexport * from \"./BreakTile.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./ActionsBlock.vue?vue&type=template&id=505af250&scoped=true\"\nimport script from \"./ActionsBlock.vue?vue&type=script&lang=js\"\nexport * from \"./ActionsBlock.vue?vue&type=script&lang=js\"\n\nimport \"./ActionsBlock.vue?vue&type=style&index=0&id=505af250&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-505af250\"]])\n\nexport default __exports__","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./ExpressionEditor.vue?vue&type=template&id=cfcbaedc&scoped=true\"\nimport script from \"./ExpressionEditor.vue?vue&type=script&lang=js\"\nexport * from \"./ExpressionEditor.vue?vue&type=script&lang=js\"\n\nimport \"./ExpressionEditor.vue?vue&type=style&index=0&id=cfcbaedc&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-cfcbaedc\"]])\n\nexport default __exports__","import { render } from \"./ConditionTile.vue?vue&type=template&id=7d017735&scoped=true\"\nimport script from \"./ConditionTile.vue?vue&type=script&lang=js\"\nexport * from \"./ConditionTile.vue?vue&type=script&lang=js\"\n\nimport \"./ConditionTile.vue?vue&type=style&index=0&id=7d017735&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-7d017735\"]])\n\nexport default __exports__","\n\n\n","import { render } from \"./EndBlockTile.vue?vue&type=template&id=7ee32db6\"\nimport script from \"./EndBlockTile.vue?vue&type=script&lang=js\"\nexport * from \"./EndBlockTile.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { render } from \"./ConditionBlock.vue?vue&type=template&id=79ae696c&scoped=true\"\nimport script from \"./ConditionBlock.vue?vue&type=script&lang=js\"\nexport * from \"./ConditionBlock.vue?vue&type=script&lang=js\"\n\nimport \"./ConditionBlock.vue?vue&type=style&index=0&id=79ae696c&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-79ae696c\"]])\n\nexport default __exports__","\n\n\n","import { render } from \"./ContinueTile.vue?vue&type=template&id=a1c40c18\"\nimport script from \"./ContinueTile.vue?vue&type=script&lang=js\"\nexport * from \"./ContinueTile.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n\n\n","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./LoopEditor.vue?vue&type=template&id=f2db70a8&scoped=true\"\nimport script from \"./LoopEditor.vue?vue&type=script&lang=js\"\nexport * from \"./LoopEditor.vue?vue&type=script&lang=js\"\n\nimport \"./LoopEditor.vue?vue&type=style&index=0&id=f2db70a8&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-f2db70a8\"]])\n\nexport default __exports__","import { render } from \"./LoopTile.vue?vue&type=template&id=54198b35&scoped=true\"\nimport script from \"./LoopTile.vue?vue&type=script&lang=js\"\nexport * from \"./LoopTile.vue?vue&type=script&lang=js\"\n\nimport \"./LoopTile.vue?vue&type=style&index=0&id=54198b35&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-54198b35\"]])\n\nexport default __exports__","import { render } from \"./LoopBlock.vue?vue&type=template&id=21e21875\"\nimport script from \"./LoopBlock.vue?vue&type=script&lang=js\"\nexport * from \"./LoopBlock.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n\n\n","import { render } from \"./ReturnTile.vue?vue&type=template&id=705a6ab8\"\nimport script from \"./ReturnTile.vue?vue&type=script&lang=js\"\nexport * from \"./ReturnTile.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./SetVariablesTile.vue?vue&type=template&id=73c595c1&scoped=true\"\nimport script from \"./SetVariablesTile.vue?vue&type=script&lang=js\"\nexport * from \"./SetVariablesTile.vue?vue&type=script&lang=js\"\n\nimport \"./SetVariablesTile.vue?vue&type=style&index=0&id=73c595c1&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-73c595c1\"]])\n\nexport default __exports__","import { render } from \"./ActionsList.vue?vue&type=template&id=74ca2010&scoped=true\"\nimport script from \"./ActionsList.vue?vue&type=script&lang=js\"\nexport * from \"./ActionsList.vue?vue&type=script&lang=js\"\n\nimport \"./ActionsList.vue?vue&type=style&index=0&id=74ca2010&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-74ca2010\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./CopyButton.vue?vue&type=template&id=0bc64e95&scoped=true\"\nimport script from \"./CopyButton.vue?vue&type=script&lang=js\"\nexport * from \"./CopyButton.vue?vue&type=script&lang=js\"\n\nimport \"./CopyButton.vue?vue&type=style&index=0&id=0bc64e95&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-0bc64e95\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./ExtensionIcon.vue?vue&type=template&id=0353c248&scoped=true\"\nimport script from \"./ExtensionIcon.vue?vue&type=script&lang=js\"\nexport * from \"./ExtensionIcon.vue?vue&type=script&lang=js\"\n\nimport \"./ExtensionIcon.vue?vue&type=style&index=0&id=0353c248&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-0353c248\"]])\n\nexport default __exports__"],"names":["class","_createElementVNode","_hoisted_3","_hoisted_4","_createElementBlock","_hoisted_1","$props","indent","_hoisted_2","onClick","_cache","args","$options","onCollapse","_normalizeClass","dragging","isDragging","_Fragment","_renderList","visibleActions","action","index","key","conditions","_createBlock","_component_ConditionBlock","_mergeProps","componentsData","props","_toHandlers","on","collapsed","collapsedBlocks","onAddElse","addElse","elses","loops","_component_LoopBlock","sets","_component_SetVariablesTile","_ctx","isBreak","_component_BreakTile","active","readOnly","spacerTop","onDelete","$event","deleteAction","isContinue","_component_ContinueTile","isReturn","_component_ReturnTile","value","returnValue","onChange","editReturn","isAction","_component_ActionsListItem","visibleAddButtons","_hoisted_6","_createVNode","_component_ListItem","spacerBottom","$data","newValue","length","newAction","onDrop","_component_ActionTile","context","contexts","Object","keys","draggable","onInput","addAction","showAddButtonsExpander","_hoisted_7","_withModifiers","collapseAddButtons","showAddButtons","_hoisted_8","return","_hoisted_9","_component_AddTile","icon","title","addReturn","condition","_hoisted_10","addCondition","else","_hoisted_11","$emit","for","_hoisted_12","addForLoop","while","_hoisted_13","addWhileLoop","break","_hoisted_14","addBreak","continue","_hoisted_15","addContinue","set","_hoisted_16","addSet","onContextmenu","onDrag","onDragStart","new","isNew","ref","$refs","actionEditor","show","withDelete","name","_hoisted_5","_component_ExtensionIcon","split","size","_toDisplayString","arg","_component_Draggable","element","tile","disabled","onDragend","_component_Droppable","onDragenter","onDragleave","onDragover","_component_Modal","isVisible","_component_ActionEditor","hidden","draggingVisible","style","_normalizeStyle","top","left","innerHTML","outerHTML","emits","type","Boolean","default","touchDragStartThreshold","Number","touchDragMoveCancelDistance","String","Array","data","draggingHTML","eventsHandlers","contextmenu","this","onContextMenu","drag","dragend","onDragEnd","dragstart","drop","touchcancel","touchend","onTouchEnd","touchmove","onTouchMove","touchstart","onTouchStart","initialCursorOffset","touchDragStartTimer","touchScrollDirection","touchScrollSpeed","touchScrollTimer","touchStart","touchOverElement","computed","shouldScroll","methods","event","preventDefault","stopPropagation","$slots","el","dataTransfer","dropEffect","effectAllowed","setData","JSON","stringify","cancelTouchDragStart","reset","touch","touches","clientX","clientY","setTimeout","distance","Math","hypot","touchScroll","droppable","document","elementsFromPoint","filter","dataset","classList","contains","dispatchEvent","parent","getScrollableParent","rect","getBoundingClientRect","touchOffset","width","height","scrollDirection","handleTouchScroll","setInterval","x","y","scrollBy","cancelScroll","parentElement","scrollHeight","clientHeight","scrollWidth","clientWidth","window","getComputedStyle","includes","overflowY","overflowX","DragEvent","target","clearInterval","clearTimeout","installHandlers","console","debug","setAttribute","entries","forEach","handler","addEventListener","uninstallHandlers","removeEventListener","watch","add","$nextTick","offsetLeft","offsetTop","remove","oldValue","mounted","unmounted","__exports__","dragenter","onDragEnter","dragleave","onDragLeave","dragover","onDragOver","selected","right","bottom","mixins","Mixin","components","ActionEditor","Draggable","Droppable","ExtensionIcon","Modal","undefined","extraArgs","supportsExtraArgs","close","itemClass","dropTargetTop","droppableData","_renderSlot","dropTargetBottom","Utils","className","required","reduce","acc","trim","ActionTile","ListItem","input","_component_Tile","Tile","_component_ActionsBlock","hasElse","isInsideLoop","onActionsChange","before","_withCtx","isElse","_component_ConditionTile","conditionTileConf","after","_component_EndBlockTile","dragging_","hover","isCollapsed","collapsed_","actionListClasses","_component_ActionsList","actionsListContainer","ActionsList","defineAsyncComponent","fold","folding","unfold","unfolding","getCondition","transitioning","getKey","hoverTimeout","dragListeners","tileConf","showConditionEditor","visible","onClose","_component_ExpressionEditor","onConditionChange","onSubmit","_component_ContextAutocomplete","items","contextAutocompleteItems","quote","hasChanges","ContextAutocomplete","allowEmpty","placeholder","detail","textInput","focus","ExpressionEditor","delete","ActionsBlock","ConditionTile","EndBlockTile","change","dragenterspacer","dragleavespacer","dragoverspacer","context_","_component_LoopTile","loopTileConf","showLoopEditor","async","iterator","iterable","_component_LoopEditor","onLoopChange","autocomplete","autofocus","checked","async_","LoopEditor","LoopTile","changeHandler","onForChange","onWhileChange","ctx","loop","source","getFor","getWhile","keyword","showExprEditor","onExprChange","expr","showEditor","v","i","onBlur","newVariable","variables","push","map","sanitizeName","parse","e","splice","newVarName","replace","syncValue","immediate","ActionsListItem","AddTile","BreakTile","ConditionBlock","ContinueTile","LoopBlock","ReturnTile","SetVariablesTile","actions","dragIndices","initialValue","spacerElements","isActionsBlock","dragBlockIndex","visibleBottomSpacers","visibleTopSpacers","editAction","forLoop","whileLoop","isSet","commonCtx","getContext","nContexts","dragIndex","get","fors","whiles","newStringValue","stringValue","breakIndex","getTileIndex","continueIndex","returnIndex","ret","retValue","isArray","match","stopIndex","allowAddButtons","_","dropIndex","dropIndices","CustomEvent","bubbles","cancelable","slice","dragParent","getParentBlock","dropParent","dragItem","dropItem","draggedItems","output","indices","shift","blockKey","selectLastExprEditor","newTile","newTileElement","$el","querySelector","click","exprEditor","callback","syncSpacers","deep","updated","render","copy","text","copyToClipboard","withDocsLink","href","docsUrl","src","iconUrl","alt","extensionName","extensionType","words","join"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1054.e7c57dec.js b/platypush/backend/http/webapp/dist/static/js/1054.e7c57dec.js new file mode 100644 index 0000000000..aadea2254c --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1054.e7c57dec.js @@ -0,0 +1,2 @@ +"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1054],{1054:function(e,a,l){l.r(a),l.d(a,{default:function(){return Q}});var s=l(6252),t=l(3577),i=l(9963);const n=e=>((0,s.dD)("data-v-03ac0f14"),e=e(),(0,s.Cn)(),e),o={class:"entity alarm-container"},d={class:"icon col-1"},u={class:"label col-5"},c=["textContent"],r={key:0,class:"value"},v={key:1,class:"value"},m={key:2,class:"value"},h={key:3,class:"value next-run"},p=["textContent"],f=["textContent"],g={class:"child enable"},b=["for"],_=n((()=>(0,s._)("div",{class:"name col-6"},"Enabled",-1))),k={class:"value col-6"},w={key:0,class:"child buttons"},y={key:0,class:"label col-6"},C={class:"value"},D=n((()=>(0,s._)("i",{class:"fas fa-pause"},null,-1))),x={class:"value"},z=n((()=>(0,s._)("i",{class:"fas fa-times"},null,-1))),I=n((()=>(0,s._)("label",{class:"label"},[(0,s._)("div",{class:"value"},[(0,s._)("i",{class:"fas fa-trash"}),(0,s.Uk)("   Remove ")])],-1))),$=[I],R={key:2,class:"child edit"},S=n((()=>(0,s._)("div",{class:"label name col-11"},[(0,s._)("i",{class:"fas fa-pen-to-square"}),(0,s.Uk)("  Edit ")],-1))),E={class:"value col-1 collapse-toggler"},q={class:"alarm-running-modal"},U=n((()=>(0,s._)("div",{class:"icon blink"},[(0,s._)("i",{class:"fas fa-stopwatch"})],-1))),M={class:"title"},N={class:"buttons"},A={class:"label"},Z=n((()=>(0,s._)("i",{class:"fas fa-pause"},null,-1))),O={class:"label"},W=n((()=>(0,s._)("i",{class:"fas fa-times"},null,-1)));function T(e,a,l,n,I,T){const G=(0,s.up)("EntityIcon"),j=(0,s.up)("ToggleSwitch"),L=(0,s.up)("AlarmEditor"),P=(0,s.up)("Modal"),B=(0,s.up)("ConfirmDialog");return(0,s.wg)(),(0,s.iD)("div",o,[(0,s._)("div",{class:(0,t.C_)(["head",{collapsed:e.collapsed}])},[(0,s._)("div",d,[(0,s.Wm)(G,{entity:e.value,loading:e.loading,error:e.error},null,8,["entity","loading","error"])]),(0,s._)("div",u,[(0,s._)("div",{class:"name",textContent:(0,t.zw)(e.value.name)},null,8,c)]),(0,s._)("div",{class:"value-and-toggler col-8",onClick:a[1]||(a[1]=(0,i.iM)((a=>e.collapsed=!e.collapsed),["stop"]))},[e.value.enabled?T.isRunning?((0,s.wg)(),(0,s.iD)("div",v,"Running")):T.isSnoozed?((0,s.wg)(),(0,s.iD)("div",m,"Snoozed")):T.nextRun?((0,s.wg)(),(0,s.iD)("div",h,[(0,s._)("div",{class:"date",textContent:(0,t.zw)(T.nextRun.toDateString())},null,8,p),(0,s._)("div",{class:"time",textContent:(0,t.zw)(T.nextRun.toLocaleTimeString())},null,8,f)])):(0,s.kq)("",!0):((0,s.wg)(),(0,s.iD)("div",r,"Disabled")),(0,s._)("div",{class:"collapse-toggler",onClick:a[0]||(a[0]=(0,i.iM)((a=>e.collapsed=!e.collapsed),["stop"]))},[(0,s._)("i",{class:(0,t.C_)(["fas",{"fa-chevron-down":e.collapsed,"fa-chevron-up":!e.collapsed}])},null,2)])])],2),e.collapsed?(0,s.kq)("",!0):((0,s.wg)(),(0,s.iD)("div",{key:0,class:"body children",onClick:a[6]||(a[6]=(0,i.iM)(((...e)=>T.prevent&&T.prevent(...e)),["stop"]))},[(0,s._)("div",g,[(0,s._)("label",{for:T.enableInputId,class:"label"},[_,(0,s._)("div",k,[(0,s.Wm)(j,{id:T.enableInputId,value:e.value.enabled,onInput:T.setEnabled},null,8,["id","value","onInput"])])],8,b)]),T.isRunning||T.isSnoozed?((0,s.wg)(),(0,s.iD)("div",w,[T.isRunning?((0,s.wg)(),(0,s.iD)("label",y,[(0,s._)("div",C,[(0,s._)("button",{class:"btn btn-default",onClick:a[2]||(a[2]=(...e)=>T.snooze&&T.snooze(...e))},[D,(0,s.Uk)("   Snooze ")])])])):(0,s.kq)("",!0),(0,s._)("label",{class:(0,t.C_)(["label",{"col-6":T.isRunning,"col-12":!T.isRunning}])},[(0,s._)("div",x,[(0,s._)("button",{class:"btn btn-default",onClick:a[3]||(a[3]=(...e)=>T.dismiss&&T.dismiss(...e))},[z,(0,s.Uk)("   Dismiss ")])])],2)])):(0,s.kq)("",!0),T.hasEdit?((0,s.wg)(),(0,s.iD)("div",{key:1,class:"child remove",onClick:a[4]||(a[4]=(...a)=>e.$refs.removeDialog.show&&e.$refs.removeDialog.show(...a))},$)):(0,s.kq)("",!0),T.hasEdit?((0,s.wg)(),(0,s.iD)("div",R,[(0,s._)("div",{class:(0,t.C_)(["head",{collapsed:e.editCollapsed}]),onClick:a[5]||(a[5]=(0,i.iM)((a=>e.editCollapsed=!e.editCollapsed),["stop"]))},[S,(0,s._)("div",E,[(0,s._)("i",{class:(0,t.C_)(["fas",{"fa-chevron-down":e.editCollapsed,"fa-chevron-up":!e.editCollapsed}])},null,2)])],2),e.editCollapsed?(0,s.kq)("",!0):((0,s.wg)(),(0,s.j4)(L,{key:0,value:e.value},null,8,["value"]))])):(0,s.kq)("",!0)])),(0,s.Wm)(P,{title:"Alarm Running",ref:"runningModal",visible:T.isRunning},{default:(0,s.w5)((()=>[(0,s._)("div",q,[U,(0,s._)("div",M,[(0,s._)("h3",null,[(0,s._)("b",null,(0,t.zw)(e.value.name),1),(0,s.Uk)(" is running")])]),(0,s._)("div",N,[(0,s._)("label",A,[(0,s._)("button",{class:"btn btn-default",onClick:a[7]||(a[7]=(...e)=>T.snooze&&T.snooze(...e))},[Z,(0,s.Uk)("   Snooze ")])]),(0,s._)("label",O,[(0,s._)("button",{class:"btn btn-default",onClick:a[8]||(a[8]=(...e)=>T.dismiss&&T.dismiss(...e))},[W,(0,s.Uk)("   Dismiss ")])])])])])),_:1},8,["visible"]),(0,s.Wm)(B,{ref:"removeDialog",onInput:T.remove},{default:(0,s.w5)((()=>[(0,s.Uk)(" Are you sure you want to remove alarm "),(0,s._)("b",null,(0,t.zw)(e.value.name),1),(0,s.Uk)("? ")])),_:1},8,["onInput"])])}var G=l(2029),j=l(3513),L=l(847),P=l(4967),B=l(2918),F=l(7514),H={mixins:[L["default"]],emits:["loading"],components:{AlarmEditor:G["default"],ConfirmDialog:j.Z,EntityIcon:P["default"],Modal:B.Z,ToggleSwitch:F.Z},data:function(){return{collapsed:!0,editCollapsed:!0}},computed:{hasEdit(){return!this.value.static},isCollapsed(){return this.collapsed},isRunning(){return"RUNNING"===this.value.state},isSnoozed(){return"SNOOZED"===this.value.state},nextRun(){return this.value.next_run&&this.value.enabled?new Date(1e3*this.value.next_run):null},enableInputId(){return`alarm-input-${this.value.name}`}},methods:{async setEnabled(){this.$emit("loading",!0);try{await this.request("alarm.set_enabled",{name:this.value.external_id,enabled:!this.value.enabled}),await this.refresh()}finally{this.$emit("loading",!1)}},async snooze(){this.$emit("loading",!0);try{await this.request("alarm.snooze"),await this.refresh()}finally{this.$emit("loading",!1)}},async dismiss(){this.$emit("loading",!0);try{await this.request("alarm.dismiss"),await this.refresh()}finally{this.$emit("loading",!1)}},async refresh(){this.$emit("loading",!0);try{await this.request("alarm.status")}finally{this.$emit("loading",!1)}},async remove(){this.$emit("loading",!0);try{await this.request("alarm.delete",{name:this.value.name})}finally{this.$emit("loading",!1)}},prevent(e){e.stopPropagation()}},mounted(){this.$watch((()=>this.value),((e,a)=>{if(e?.state!==a?.state){const a={image:{icon:"stopwatch"}};switch(e?.state){case"RUNNING":a.text=`Alarm ${e.name} is running`;break;case"SNOOZED":a.text=`Alarm ${e.name} has been snoozed`;break;case"DISMISSED":a.text=`Alarm ${e.name} has been dismissed`;break}a.text&&this.notify(a)}}))}},J=l(3744);const K=(0,J.Z)(H,[["render",T],["__scopeId","data-v-03ac0f14"]]);var Q=K}}]); +//# sourceMappingURL=1054.e7c57dec.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1054.e7c57dec.js.map b/platypush/backend/http/webapp/dist/static/js/1054.e7c57dec.js.map new file mode 100644 index 0000000000..199f566740 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1054.e7c57dec.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1054.e7c57dec.js","mappings":"gQACOA,MAAM,0B,GAEFA,MAAM,c,GAINA,MAAM,e,2BAKJA,MAAM,S,SACNA,MAAM,S,SACNA,MAAM,S,SACNA,MAAM,kB,uCAYRA,MAAM,gB,oBAEPC,EAAAA,EAAAA,GAAqC,OAAhCD,MAAM,cAAa,WAAO,K,GAC1BA,MAAM,e,SAMVA,MAAM,iB,SACFA,MAAM,e,GACNA,MAAM,S,UAEPC,EAAAA,EAAAA,GAA0B,KAAvBD,MAAM,gBAAc,W,GAQtBA,MAAM,S,UAEPC,EAAAA,EAAAA,GAA0B,KAAvBD,MAAM,gBAAc,W,UAQ7BC,EAAAA,EAAAA,GAIQ,SAJDD,MAAM,SAAO,EAClBC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,SAAO,EAChBC,EAAAA,EAAAA,GAA0B,KAAvBD,MAAM,kBAAc,QAAG,kBAC5B,K,GAHFE,G,SAOGF,MAAM,c,UAGPC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,qBAAmB,EAC5BC,EAAAA,EAAAA,GAAkC,KAA/BD,MAAM,0BAAsB,QAAG,aACpC,K,GAEKA,MAAM,gC,GAUVA,MAAM,uB,UACTC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,cAAY,EACrBC,EAAAA,EAAAA,GAA8B,KAA3BD,MAAM,uBAAkB,K,GAGxBA,MAAM,S,GAINA,MAAM,W,GACFA,MAAM,S,UAETC,EAAAA,EAAAA,GAA0B,KAAvBD,MAAM,gBAAc,W,GAKpBA,MAAM,S,UAETC,EAAAA,EAAAA,GAA0B,KAAvBD,MAAM,gBAAc,W,8KApGnCG,EAAAA,EAAAA,IA+GM,MA/GNC,EA+GM,EA9GJH,EAAAA,EAAAA,GAsBM,OAtBDD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,OAAM,CAAAC,UAAqBC,EAAAD,c,EACpCL,EAAAA,EAAAA,GAEM,MAFNO,EAEM,EADJC,EAAAA,EAAAA,IAAgEC,EAAA,CAAnDC,OAAQJ,EAAAK,MAAQC,QAASN,EAAAM,QAAUC,MAAOP,EAAAO,O,wCAGzDb,EAAAA,EAAAA,GAEM,MAFNc,EAEM,EADJd,EAAAA,EAAAA,GAAwC,OAAnCD,MAAM,O,aAAOgB,EAAAA,EAAAA,IAAQT,EAAWK,MAALK,O,aAGlChB,EAAAA,EAAAA,GAYM,OAZDD,MAAM,0BAA2BkB,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOd,EAAAD,WAAaC,EAAAD,WAAS,Y,CAC5CC,EAAAK,MAAMU,QACFC,EAAAC,YAAS,WAAvCrB,EAAAA,EAAAA,IAAsD,MAAtDsB,EAAyC,YACXF,EAAAG,YAAS,WAAvCvB,EAAAA,EAAAA,IAAsD,MAAtDwB,EAAyC,YACFJ,EAAAK,UAAO,WAA9CzB,EAAAA,EAAAA,IAGM,MAHN0B,EAGM,EAFJ5B,EAAAA,EAAAA,GAAoD,OAA/CD,MAAM,O,aAAOgB,EAAAA,EAAAA,IAAQO,EAAuBK,QAAfE,iB,WAClC7B,EAAAA,EAAAA,GAA0D,OAArDD,MAAM,O,aAAOgB,EAAAA,EAAAA,IAAQO,EAA6BK,QAArBG,uB,+BALG,WAAvC5B,EAAAA,EAAAA,IAAuD,MAAvD6B,EAAyC,cAQzC/B,EAAAA,EAAAA,GAEM,OAFDD,MAAM,mBAAoBkB,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOd,EAAAD,WAAaC,EAAAD,WAAS,Y,EAC/DL,EAAAA,EAAAA,GAAsF,KAAnFD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,MAAK,mBAA6BE,EAAAD,UAAS,iBAAoBC,EAAAD,c,gBAK5CC,EAAAD,W,iBAAS,WAA3CH,EAAAA,EAAAA,IAqDM,O,MArDDH,MAAM,gBAAmCkB,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAA,IAAAa,IAAOV,EAAAW,SAAAX,EAAAW,WAAAD,IAAO,Y,EAC/DhC,EAAAA,EAAAA,GAOM,MAPNkC,EAOM,EANJlC,EAAAA,EAAAA,GAKQ,SALAmC,IAAKb,EAAAc,cAAerC,MAAM,S,CAChCsC,GACArC,EAAAA,EAAAA,GAEM,MAFNsC,EAEM,EADJ9B,EAAAA,EAAAA,IAA+E+B,EAAA,CAAhEC,GAAIlB,EAAAc,cAAgBzB,MAAOL,EAAAK,MAAMU,QAAUoB,QAAOnB,EAAAoB,Y,2CAKtCpB,EAAAC,WAAaD,EAAAG,YAAS,WAAvDvB,EAAAA,EAAAA,IAmBM,MAnBNyC,EAmBM,CAlB6BrB,EAAAC,YAAS,WAA1CrB,EAAAA,EAAAA,IAOQ,QAPR0C,EAOQ,EANN5C,EAAAA,EAAAA,GAKM,MALN6C,EAKM,EAJJ7C,EAAAA,EAAAA,GAGS,UAHDD,MAAM,kBAAmBkB,QAAKC,EAAA,KAAAA,EAAA,OAAAc,IAAEV,EAAAwB,QAAAxB,EAAAwB,UAAAd,K,CACtCe,GAA0B,8BAE5B,gBAIJ/C,EAAAA,EAAAA,GAQQ,SARDD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,QAAO,SACKkB,EAAAC,UAAS,UAAaD,EAAAC,c,EAC7CvB,EAAAA,EAAAA,GAKM,MALNgD,EAKM,EAJJhD,EAAAA,EAAAA,GAGS,UAHDD,MAAM,kBAAmBkB,QAAKC,EAAA,KAAAA,EAAA,OAAAc,IAAEV,EAAA2B,SAAA3B,EAAA2B,WAAAjB,K,CACtCkB,GAA0B,4BAE5B,sBAK2D5B,EAAA6B,UAAO,WAAxEjD,EAAAA,EAAAA,IAMM,O,MANDH,MAAM,eAAgBkB,QAAKC,EAAA,KAAAA,EAAA,OAAAc,IAAE1B,EAAA8C,MAAMC,aAAaC,MAAnBhD,EAAA8C,MAAMC,aAAaC,QAAItB,K,oBAQ3BV,EAAA6B,UAAO,WAArCjD,EAAAA,EAAAA,IAaM,MAbNqD,EAaM,EAZJvD,EAAAA,EAAAA,GASM,OATDD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,OAAM,CAAAC,UAAqBC,EAAAkD,iBAChCvC,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOd,EAAAkD,eAAiBlD,EAAAkD,eAAa,Y,CAC9CC,GAIAzD,EAAAA,EAAAA,GAEM,MAFN0D,EAEM,EADJ1D,EAAAA,EAAAA,GAA8F,KAA3FD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,MAAK,mBAA6BE,EAAAkD,cAAa,iBAAoBlD,EAAAkD,kB,cAI5DlD,EAAAkD,e,iBAAa,WAAjCG,EAAAA,EAAAA,IAAoDC,EAAA,C,MAAhBjD,MAAOL,EAAAK,O,0CAI/CH,EAAAA,EAAAA,IA0BQqD,EAAA,CA1BDC,MAAM,gBAAgBC,IAAI,eAAgBC,QAAS1C,EAAAC,W,mBACxD,IAwBM,EAxBNvB,EAAAA,EAAAA,GAwBM,MAxBNiE,EAwBM,CAvBJC,GAIAlE,EAAAA,EAAAA,GAEM,MAFNmE,EAEM,EADJnE,EAAAA,EAAAA,GAA2C,YAAvCA,EAAAA,EAAAA,GAAuB,UAAAe,EAAAA,EAAAA,IAAjBT,EAAAK,MAAMK,MAAI,YAAO,oBAG7BhB,EAAAA,EAAAA,GAcM,MAdNoE,EAcM,EAbJpE,EAAAA,EAAAA,GAKQ,QALRqE,EAKQ,EAJNrE,EAAAA,EAAAA,GAGS,UAHDD,MAAM,kBAAmBkB,QAAKC,EAAA,KAAAA,EAAA,OAAAc,IAAEV,EAAAwB,QAAAxB,EAAAwB,UAAAd,K,CACtCsC,GAA0B,2BAK9BtE,EAAAA,EAAAA,GAKQ,QALRuE,EAKQ,EAJNvE,EAAAA,EAAAA,GAGS,UAHDD,MAAM,kBAAmBkB,QAAKC,EAAA,KAAAA,EAAA,OAAAc,IAAEV,EAAA2B,SAAA3B,EAAA2B,WAAAjB,K,CACtCwC,GAA0B,kC,qBAQpChE,EAAAA,EAAAA,IAEgBiE,EAAA,CAFDV,IAAI,eAAgBtB,QAAOnB,EAAAoD,Q,mBAAQ,IACV,UADU,4CACV1E,EAAAA,EAAAA,GAAuB,UAAAe,EAAAA,EAAAA,IAAjBT,EAAAK,MAAMK,MAAI,YAAO,S,qFAanE,GACE2D,OAAQ,CAACC,EAAAA,YACTC,MAAO,CAAC,WACRC,WAAY,CACVC,YAAW,aACXC,cAAa,IACbC,WAAU,aACVC,MAAK,IACLC,aAAYA,EAAAA,GAGdC,KAAM,WACJ,MAAO,CACL/E,WAAW,EACXmD,eAAe,EAEnB,EAEA6B,SAAU,CACRlC,OAAAA,GACE,OAAQmC,KAAK3E,MAAM4E,MACrB,EAEAC,WAAAA,GACE,OAAOF,KAAKjF,SACd,EAEAkB,SAAAA,GACE,MAA4B,YAArB+D,KAAK3E,MAAM8E,KACpB,EAEAhE,SAAAA,GACE,MAA4B,YAArB6D,KAAK3E,MAAM8E,KACpB,EAEA9D,OAAAA,GACE,OAAM2D,KAAK3E,MAAM+E,UAAYJ,KAAK3E,MAAMU,QAGjC,IAAIsE,KAA2B,IAAtBL,KAAK3E,MAAM+E,UAFlB,IAGX,EAEAtD,aAAAA,GACE,MAAQ,eAAckD,KAAK3E,MAAMK,MACnC,GAGF4E,QAAS,CACP,gBAAMlD,GACJ4C,KAAKO,MAAM,WAAW,GACtB,UACQP,KAAKQ,QACT,oBACA,CACE9E,KAAMsE,KAAK3E,MAAMoF,YACjB1E,SAAUiE,KAAK3E,MAAMU,gBAInBiE,KAAKU,SACb,CAAE,QACAV,KAAKO,MAAM,WAAW,EACxB,CACF,EAEA,YAAM/C,GACJwC,KAAKO,MAAM,WAAW,GACtB,UACQP,KAAKQ,QAAQ,sBACbR,KAAKU,SACb,CAAE,QACAV,KAAKO,MAAM,WAAW,EACxB,CACF,EAEA,aAAM5C,GACJqC,KAAKO,MAAM,WAAW,GACtB,UACQP,KAAKQ,QAAQ,uBACbR,KAAKU,SACb,CAAE,QACAV,KAAKO,MAAM,WAAW,EACxB,CACF,EAEA,aAAMG,GACJV,KAAKO,MAAM,WAAW,GACtB,UACQP,KAAKQ,QAAQ,eACrB,CAAE,QACAR,KAAKO,MAAM,WAAW,EACxB,CACF,EAEA,YAAMnB,GACJY,KAAKO,MAAM,WAAW,GACtB,UACQP,KAAKQ,QACT,eACA,CACE9E,KAAMsE,KAAK3E,MAAMK,MAGvB,CAAE,QACAsE,KAAKO,MAAM,WAAW,EACxB,CACF,EAEA5D,OAAAA,CAAQgE,GACNA,EAAEC,iBACJ,GAGFC,OAAAA,GACEb,KAAKc,QACH,IAAMd,KAAK3E,QACX,CAAC0F,EAAUC,KACT,GAAID,GAAUZ,QAAUa,GAAUb,MAAO,CACvC,MAAMc,EAAQ,CAACC,MAAO,CAACC,KAAM,cAC7B,OAAQJ,GAAUZ,OAChB,IAAK,UACHc,EAAMG,KAAQ,SAAQL,EAASrF,kBAC/B,MACF,IAAK,UACHuF,EAAMG,KAAQ,SAAQL,EAASrF,wBAC/B,MACF,IAAK,YACHuF,EAAMG,KAAQ,SAAQL,EAASrF,0BAC/B,MAGAuF,EAAMG,MACRpB,KAAKqB,OAAOJ,EAChB,IAGN,G,UC5PF,MAAMK,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/panels/Entities/Alarm.vue","webpack://platypush/./src/components/panels/Entities/Alarm.vue?4c51"],"sourcesContent":["\n\n\n\n\n","import { render } from \"./Alarm.vue?vue&type=template&id=03ac0f14&scoped=true\"\nimport script from \"./Alarm.vue?vue&type=script&lang=js\"\nexport * from \"./Alarm.vue?vue&type=script&lang=js\"\n\nimport \"./Alarm.vue?vue&type=style&index=0&id=03ac0f14&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-03ac0f14\"]])\n\nexport default __exports__"],"names":["class","_createElementVNode","_hoisted_21","_createElementBlock","_hoisted_1","_normalizeClass","collapsed","_ctx","_hoisted_2","_createVNode","_component_EntityIcon","entity","value","loading","error","_hoisted_3","_toDisplayString","name","onClick","_cache","_withModifiers","$event","enabled","$options","isRunning","_hoisted_6","isSnoozed","_hoisted_7","nextRun","_hoisted_8","toDateString","toLocaleTimeString","_hoisted_5","args","prevent","_hoisted_11","for","enableInputId","_hoisted_13","_hoisted_14","_component_ToggleSwitch","id","onInput","setEnabled","_hoisted_15","_hoisted_16","_hoisted_17","snooze","_hoisted_18","_hoisted_19","dismiss","_hoisted_20","hasEdit","$refs","removeDialog","show","_hoisted_23","editCollapsed","_hoisted_24","_hoisted_25","_createBlock","_component_AlarmEditor","_component_Modal","title","ref","visible","_hoisted_26","_hoisted_27","_hoisted_28","_hoisted_29","_hoisted_30","_hoisted_31","_hoisted_32","_hoisted_33","_component_ConfirmDialog","remove","mixins","EntityMixin","emits","components","AlarmEditor","ConfirmDialog","EntityIcon","Modal","ToggleSwitch","data","computed","this","static","isCollapsed","state","next_run","Date","methods","$emit","request","external_id","refresh","e","stopPropagation","mounted","$watch","newValue","oldValue","notif","image","icon","text","notify","__exports__","render"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1088.f184400f.js b/platypush/backend/http/webapp/dist/static/js/1088.5dc136bc.js similarity index 75% rename from platypush/backend/http/webapp/dist/static/js/1088.f184400f.js rename to platypush/backend/http/webapp/dist/static/js/1088.5dc136bc.js index 88cdd34333..41e5042614 100644 --- a/platypush/backend/http/webapp/dist/static/js/1088.f184400f.js +++ b/platypush/backend/http/webapp/dist/static/js/1088.5dc136bc.js @@ -1,2 +1,2 @@ -"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1088],{1088:function(n,e,t){t.r(e),t.d(e,{default:function(){return o}});var u=t(6252);function a(n,e,t,a,r,p){const s=(0,u.up)("Zwave");return(0,u.wg)(),(0,u.j4)(s,{"plugin-name":"zwave.mqtt"})}var r=t(7880),p={components:{Zwave:r.Z}},s=t(3744);const c=(0,s.Z)(p,[["render",a]]);var o=c}}]); -//# sourceMappingURL=1088.f184400f.js.map \ No newline at end of file +"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1088],{1088:function(n,e,t){t.r(e),t.d(e,{default:function(){return o}});var u=t(6252);function a(n,e,t,a,r,p){const s=(0,u.up)("Zwave");return(0,u.wg)(),(0,u.j4)(s,{"plugin-name":"zwave.mqtt"})}var r=t(2718),p={components:{Zwave:r.Z}},s=t(3744);const c=(0,s.Z)(p,[["render",a]]);var o=c}}]); +//# sourceMappingURL=1088.5dc136bc.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1088.f184400f.js.map b/platypush/backend/http/webapp/dist/static/js/1088.5dc136bc.js.map similarity index 93% rename from platypush/backend/http/webapp/dist/static/js/1088.f184400f.js.map rename to platypush/backend/http/webapp/dist/static/js/1088.5dc136bc.js.map index ce225f1f8d..b29cb6e20d 100644 --- a/platypush/backend/http/webapp/dist/static/js/1088.f184400f.js.map +++ b/platypush/backend/http/webapp/dist/static/js/1088.5dc136bc.js.map @@ -1 +1 @@ -{"version":3,"file":"static/js/1088.f184400f.js","mappings":"iPACEA,EAAAA,EAAAA,IAAkCC,EAAA,CAA3B,cAAY,c,eAMrB,GACEC,WAAY,CAACC,MAAKA,EAAAA,I,UCHpB,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://platypush/./src/components/panels/ZwaveMqtt/Index.vue","webpack://platypush/./src/components/panels/ZwaveMqtt/Index.vue?4812"],"sourcesContent":["\n\n\n","import { render } from \"./Index.vue?vue&type=template&id=8fb9cbb2\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["_createBlock","_component_Zwave","components","Zwave","__exports__","render"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"static/js/1088.5dc136bc.js","mappings":"iPACEA,EAAAA,EAAAA,IAAkCC,EAAA,CAA3B,cAAY,c,eAMrB,GACEC,WAAY,CAACC,MAAKA,EAAAA,I,UCHpB,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://platypush/./src/components/panels/ZwaveMqtt/Index.vue","webpack://platypush/./src/components/panels/ZwaveMqtt/Index.vue?4812"],"sourcesContent":["\n\n\n","import { render } from \"./Index.vue?vue&type=template&id=8fb9cbb2\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["_createBlock","_component_Zwave","components","Zwave","__exports__","render"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1259.04c161c9.js b/platypush/backend/http/webapp/dist/static/js/1259.04c161c9.js deleted file mode 100644 index b1a59121db..0000000000 --- a/platypush/backend/http/webapp/dist/static/js/1259.04c161c9.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1259],{4212:function(e,t,i){i.d(t,{N:function(){return s}});class s{constructor(e){if(this.ranges={hue:[0,360],sat:[0,100],bri:[0,100],ct:[154,500]},e)for(const t of Object.keys(this.ranges))e[t]&&(this.ranges[t]=e[t])}normalize(e,t,i){return i[0]+(e-t[0])*(i[1]-i[0])/(t[1]-t[0])}hslToRgb(e,t,i){[e,t,i]=[this.normalize(e,this.ranges.hue,[0,360]),this.normalize(t,this.ranges.sat,[0,100]),this.normalize(i,this.ranges.bri,[0,100])],i/=100;const s=t*Math.min(i,1-i)/100,a=t=>{const a=(t+e/30)%12,n=i-s*Math.max(Math.min(a-3,9-a,1),-1);return Math.round(255*n)};return[a(0),a(8),a(4)]}rgbToHsl(e,t,i){e/=255,t/=255,i/=255;const s=Math.max(e,t,i),a=Math.min(e,t,i);let n,l,o=(s+a)/2;if(s===a)n=l=0;else{const r=s-a;switch(l=o>.5?r/(2-s-a):r/(s+a),s){case e:n=(t-i)/r+(td&&o>r&&o>1?(r/=o,d/=o,o=1):r>d&&r>o&&r>1?(o/=r,d/=r,r=1):d>o&&d>r&&d>1&&(o/=d,r/=d,d=1),o=o<=.0031308?12.92*o:1.055*Math.pow(o,1/2.4)-.055,r=r<=.0031308?12.92*r:1.055*Math.pow(r,1/2.4)-.055,d=d<=.0031308?12.92*d:1.055*Math.pow(d,1/2.4)-.055,o=Math.round(255*o),r=Math.round(255*r),d=Math.round(255*d),isNaN(o)&&(o=0),isNaN(r)&&(r=0),isNaN(d)&&(d=0),[o,r,d].map((e=>Math.min(Math.max(0,e),255)))}rgbToXY(e,t,i){e>1&&(e/=255),t>1&&(t/=255),i>1&&(i/=255),e=e>.04045?Math.pow((e+.055)/1.055,2.4):e/12.92,t=t>.04045?Math.pow((t+.055)/1.055,2.4):t/12.92,i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92;const s=.664511*e+.154324*t+.162028*i,a=.283881*e+.668433*t+.047685*i,n=88e-6*e+.07231*t+.986039*i;let l=parseFloat((s/(s+a+n)).toFixed(4)),o=parseFloat((a/(s+a+n)).toFixed(4));return isNaN(l)&&(l=0),isNaN(o)&&(o=0),[l,o]}rgbToBri(e,t,i){return Math.min(2*this.rgbToHsl(e,t,i)[2],this.ranges.bri[1])}getRGB(e){return null!=e.red&&null!=e.green&&null!=e.blue?[e.red,e.green,e.blue]:null!=e.r&&null!=e.g&&null!=e.b?[e.r,e.g,e.b]:e.rgb?e.rgb:void 0}getXY(e){return null!=e.x&&null!=e.y?[e.x,e.y]:e.xy?e.xy:void 0}toRGB(e){const t=this.getRGB(e);if(t)return t;const i=this.getXY(e);return i&&e.bri?this.xyToRgb(...i,e.bri):e.hue&&e.sat&&e.bri?this.hslToRgb(e.hue,e.sat,e.bri):(console.debug("Could not determine color space"),void console.debug(e))}toXY(e){const t=this.getXY(e);if(t&&e.bri)return[t[0],t[1],e.bri];const i=this.getRGB(e);if(i)return this.rgbToXY(...i);if(e.hue&&e.sat&&e.bri){const t=this.hslToRgb(e.hue,e.sat,e.bri);return this.rgbToXY(...t)}console.debug("Could not determine color space"),console.debug(e)}toHSL(e){if(e.hue&&e.sat&&e.bri)return[e.hue,e.sat,e.bri];const t=this.getRGB(e);if(t)return this.rgbToHsl(...t);const i=this.getXY(e);if(i&&e.bri){const t=this.xyToRgb(...i,e.bri);return this.rgbToHsl(...t)}console.debug("Could not determine color space"),console.debug(e)}hexToRgb(e){return[e.slice(1,3),e.slice(3,5),e.slice(5,7)].map((e=>parseInt(e,16)))}rgbToHex(e){return"#"+e.map((e=>{let t=e.toString(16);return t.length<2&&(t="0"+t),t})).join("")}}},2787:function(e,t,i){i.d(t,{Z:function(){return w}});var s=i(6252),a=i(9963),n=i(3577);const l={class:"dropdown-container"},o=["title"],r=["textContent"],d={class:"body-container hidden",ref:"dropdownContainer"};function c(e,t,i,c,u,v){const p=(0,s.up)("DropdownBody");return(0,s.wg)(),(0,s.iD)("div",l,[(0,s._)("button",{title:i.title,ref:"button",onClick:t[0]||(t[0]=(0,a.iM)((e=>v.toggle(e)),["stop"]))},[i.iconClass?((0,s.wg)(),(0,s.iD)("i",{key:0,class:(0,n.C_)(["icon",i.iconClass])},null,2)):(0,s.kq)("",!0),i.text?((0,s.wg)(),(0,s.iD)("span",{key:1,class:"text",textContent:(0,n.zw)(i.text)},null,8,r)):(0,s.kq)("",!0)],8,o),(0,s._)("div",d,[(0,s.Wm)(p,{id:i.id,keepOpenOnItemClick:i.keepOpenOnItemClick,ref:"dropdown",onClick:v.onClick},{default:(0,s.w5)((()=>[(0,s.WI)(e.$slots,"default",{},void 0,!0)])),_:3},8,["id","keepOpenOnItemClick","onClick"])],512)])}const u=["id"];function v(e,t,i,a,n,l){return(0,s.wg)(),(0,s.iD)("div",{class:"dropdown",id:i.id,onClick:t[0]||(t[0]=t=>e.$emit("click",t))},[(0,s.WI)(e.$slots,"default",{},void 0,!0)],8,u)}var p={emits:["click"],props:{id:{type:String},keepOpenOnItemClick:{type:Boolean,default:!1}}},h=i(3744);const g=(0,h.Z)(p,[["render",v],["__scopeId","data-v-14579c63"]]);var m=g,b=i(5250),f={components:{DropdownBody:m},emits:["click"],props:{id:{type:String},iconClass:{default:"fa fa-ellipsis-h"},text:{type:String},title:{type:String},keepOpenOnItemClick:{type:Boolean,default:!1}},data(){return{visible:!1}},computed:{buttonStyle(){return this.$refs.button?getComputedStyle(this.$refs.button):{}},buttonWidth(){return parseFloat(this.buttonStyle.width||0)},buttonHeight(){return parseFloat(this.buttonStyle.height||0)}},methods:{documentClickHndl(e){if(!this.visible)return;let t=e.target;while(t){if(t.classList.contains("dropdown"))return;t=t.parentElement}this.close()},getDropdownWidth(){const e=this.$refs.dropdown?.$el;return e?parseFloat(getComputedStyle(e).width):0},getDropdownHeight(){const e=this.$refs.dropdown?.$el;return e?parseFloat(getComputedStyle(e).height):0},onClick(){this.keepOpenOnItemClick||this.close()},close(){this.visible=!1,document.removeEventListener("click",this.documentClickHndl),b.$.emit("dropdown-close")},open(){document.addEventListener("click",this.documentClickHndl);const e=this.$refs.dropdown?.$el;e.parentElement||this.$el.appendChild(e),this.visible=!0,this.$refs.dropdownContainer.classList.remove("hidden"),this.$nextTick((()=>{const e=this.$refs.button.getBoundingClientRect(),t={left:e.left+window.scrollX,top:e.top+window.scrollY},i={left:t.left,top:t.top+this.buttonHeight},s=this.getDropdownWidth(),a=this.getDropdownHeight();i.left+s>(window.innerWidth+window.scrollX)/2&&(i.left-=s-this.buttonWidth),i.top+a>(window.innerHeight+window.scrollY)/2&&(i.top-=a+this.buttonHeight-10);const n=this.$refs.dropdown.$el;n.classList.add("fade-in"),n.style.top=`${i.top}px`,n.style.left=`${i.left}px`,b.$.emit("dropdown-open",this.$refs.dropdown),this.$refs.dropdownContainer.classList.add("hidden")}))},toggle(e){e.stopPropagation(),this.$emit("click"),this.visible?this.close():this.open()},onKeyUp(e){e.stopPropagation(),"Escape"===e.key&&this.close()}},mounted(){document.body.addEventListener("keyup",this.onKeyUp)},unmounted(){document.body.removeEventListener("keyup",this.onKeyUp)}};const y=(0,h.Z)(f,[["render",c],["__scopeId","data-v-3220f58b"]]);var w=y},815:function(e,t,i){i.d(t,{Z:function(){return p}});var s=i(6252),a=i(3577);const n={key:0,class:"col-2 icon"},l=["textContent"];function o(e,t,i,o,r,d){const c=(0,s.up)("Icon");return(0,s.wg)(),(0,s.iD)("div",{class:(0,a.C_)(["row item",i.itemClass]),onClick:t[0]||(t[0]=(...e)=>d.clicked&&d.clicked(...e))},[i.iconClass?.length||i.iconUrl?.length?((0,s.wg)(),(0,s.iD)("div",n,[(0,s.Wm)(c,{class:(0,a.C_)(i.iconClass),url:i.iconUrl},null,8,["class","url"])])):(0,s.kq)("",!0),(0,s._)("div",{class:(0,a.C_)(["text",{"col-10":null!=i.iconClass}]),textContent:(0,a.zw)(i.text)},null,10,l)],2)}var r=i(657),d=i(5250),c={components:{Icon:r.Z},props:{iconClass:{type:String},iconUrl:{type:String},text:{type:String},disabled:{type:Boolean,default:!1},itemClass:{}},methods:{clicked(){if(this.disabled)return!1;this.$parent.keepOpenOnItemClick||d.$.emit("dropdown-close")}}},u=i(3744);const v=(0,u.Z)(c,[["render",o],["__scopeId","data-v-1311e9ab"]]);var p=v},657:function(e,t,i){i.d(t,{Z:function(){return u}});var s=i(6252),a=i(3577);const n={class:"icon-container"},l=["src","alt"];function o(e,t,i,o,r,d){return(0,s.wg)(),(0,s.iD)("div",n,[i.url?.length?((0,s.wg)(),(0,s.iD)("img",{key:0,class:"icon",src:i.url,alt:i.alt},null,8,l)):d.className?.length?((0,s.wg)(),(0,s.iD)("i",{key:1,class:(0,a.C_)(["icon",d.className]),style:(0,a.j5)({color:i.color})},null,6)):(0,s.kq)("",!0)])}var r={props:{class:{type:String},url:{type:String},color:{type:String,default:""},alt:{type:String,default:""}},computed:{className(){return this.class}}},d=i(3744);const c=(0,d.Z)(r,[["render",o],["__scopeId","data-v-706a3bd1"]]);var u=c},8140:function(e,t,i){i.d(t,{Z:function(){return m}});var s=i(6252),a=i(3577),n=i(9963);const l={class:"slider-wrapper"},o=["textContent"],r=["textContent"],d={class:"slider-container"},c=["min","max","step","disabled","value"],u=["textContent"];function v(e,t,i,v,p,h){return(0,s.wg)(),(0,s.iD)("label",l,[i.withRange?((0,s.wg)(),(0,s.iD)("span",{key:0,class:(0,a.C_)(["range-labels",{"with-label":i.withLabel}])},[i.withRange?((0,s.wg)(),(0,s.iD)("span",{key:0,class:"label left",textContent:(0,a.zw)(i.range[0])},null,8,o)):(0,s.kq)("",!0),i.withRange?((0,s.wg)(),(0,s.iD)("span",{key:1,class:"label right",textContent:(0,a.zw)(i.range[1])},null,8,r)):(0,s.kq)("",!0)],2)):(0,s.kq)("",!0),(0,s._)("span",d,[(0,s._)("input",{class:(0,a.C_)(["slider",{"with-label":i.withLabel}]),type:"range",min:i.range[0],max:i.range[1],step:i.step,disabled:i.disabled,value:i.value,ref:"range",onInput:t[0]||(t[0]=(0,n.iM)((t=>e.$emit("input",t)),["stop"])),onChange:t[1]||(t[1]=(0,n.iM)((t=>e.$emit("change",t)),["stop"]))},null,42,c),i.withLabel?((0,s.wg)(),(0,s.iD)("span",{key:0,class:"label",textContent:(0,a.zw)(i.value),ref:"label"},null,8,u)):(0,s.kq)("",!0)])])}var p={emits:["input","change"],props:{value:{type:Number},disabled:{type:Boolean,default:!1},range:{type:Array,default:()=>[0,100]},step:{type:Number,default:1},withLabel:{type:Boolean,default:!1},withRange:{type:Boolean,default:!1}}},h=i(3744);const g=(0,h.Z)(p,[["render",v],["__scopeId","data-v-d90e850c"]]);var m=g},7514:function(e,t,i){i.d(t,{Z:function(){return h}});var s=i(6252),a=i(3577),n=i(9963);const l=e=>((0,s.dD)("data-v-eff375b6"),e=e(),(0,s.Cn)(),e),o=["checked","id"],r=l((()=>(0,s._)("div",{class:"switch"},[(0,s._)("div",{class:"dot"})],-1))),d={class:"label"};function c(e,t,i,l,c,u){return(0,s.wg)(),(0,s.iD)("div",{class:(0,a.C_)(["power-switch",{disabled:i.disabled}]),onClick:t[0]||(t[0]=(0,n.iM)(((...e)=>u.onInput&&u.onInput(...e)),["stop"]))},[(0,s._)("input",{type:"checkbox",checked:i.value,id:i.id},null,8,o),(0,s._)("label",null,[r,(0,s._)("span",d,[(0,s.WI)(e.$slots,"default",{},void 0,!0)])])],2)}var u={name:"ToggleSwitch",emits:["input"],props:{id:{type:String},value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{onInput(e){if(this.disabled)return!1;this.$emit("input",e)}}},v=i(3744);const p=(0,v.Z)(u,[["render",c],["__scopeId","data-v-eff375b6"]]);var h=p},1259:function(e,t,i){i.r(t),i.d(t,{default:function(){return vi}});var s=i(6252),a=i(3577);const n={class:"zigbee-container"},l={key:0,class:"info-body"},o={class:"row"},r=(0,s._)("div",{class:"param-name"},"State",-1),d=["textContent"],c={class:"row"},u=(0,s._)("div",{class:"param-name"},"Permit Join",-1),v=["textContent"],p={key:0,class:"row"},h=(0,s._)("div",{class:"param-name"},"Network Channel",-1),g=["textContent"],m={class:"row"},b=(0,s._)("div",{class:"param-name"},"Zigbee2MQTT Version",-1),f=["textContent"],y={key:1,class:"row"},w=(0,s._)("div",{class:"param-name"},"MQTT Server",-1),_=["textContent"],k={key:2,class:"row"},C=(0,s._)("div",{class:"param-name"},"Serial Port",-1),x=["textContent"],q={key:3,class:"row"},D=(0,s._)("div",{class:"param-name"},"Firmware Type",-1),z=["textContent"],M={key:4,class:"row"},I=(0,s._)("div",{class:"param-name"},"Firmware Version",-1),Z={class:"param-value"},$={key:5,class:"row"},R=(0,s._)("div",{class:"param-name"},"Firmware Revision",-1),S=["textContent"],G={class:"view-options"},N={class:"view-selector col-s-8 col-m-9 col-l-10"},E=["value"],T=["textContent","selected","value"],O={class:"buttons"},V=["disabled"],j=(0,s._)("i",{class:"fa fa-plus"},null,-1),A=[j],L=["disabled"],B=(0,s._)("i",{class:"fa fa-sync-alt"},null,-1),F=[B],H={class:"view-container"},U={key:0,class:"view devices"},Y={key:0,class:"no-items"},W={key:0,class:"loading"},P={key:1,class:"empty"},X={key:1,class:"view groups"},K={key:0,class:"no-items"},J={key:0,class:"loading"},Q={key:1,class:"empty"};function ee(e,t,i,j,B,ee){const te=(0,s.up)("Loading"),ie=(0,s.up)("Modal"),se=(0,s.up)("DropdownItem"),ae=(0,s.up)("Dropdown"),ne=(0,s.up)("Device"),le=(0,s.up)("Group");return(0,s.wg)(),(0,s.iD)("div",n,[B.loading?((0,s.wg)(),(0,s.j4)(te,{key:0})):(0,s.kq)("",!0),(0,s.Wm)(ie,{title:"Network Info",ref:"infoModal"},{default:(0,s.w5)((()=>[B.status.info?((0,s.wg)(),(0,s.iD)("div",l,[(0,s._)("div",o,[r,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.state)},null,8,d)]),(0,s._)("div",c,[u,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.permit_join)},null,8,v)]),B.status.info.network?((0,s.wg)(),(0,s.iD)("div",p,[h,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.network.channel)},null,8,g)])):(0,s.kq)("",!0),(0,s._)("div",m,[b,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.version)},null,8,f)]),B.status.info.config?.mqtt?((0,s.wg)(),(0,s.iD)("div",y,[w,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.config.mqtt.server)},null,8,_)])):(0,s.kq)("",!0),B.status.info.config?.serial?((0,s.wg)(),(0,s.iD)("div",k,[C,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.config.serial.port)},null,8,x)])):(0,s.kq)("",!0),B.status.info.coordinator?.type?((0,s.wg)(),(0,s.iD)("div",q,[D,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.coordinator.type)},null,8,z)])):(0,s.kq)("",!0),B.status.info.coordinator?.meta?((0,s.wg)(),(0,s.iD)("div",M,[I,(0,s._)("div",Z,(0,a.zw)(B.status.info.coordinator.meta.maintrel)+"."+(0,a.zw)(B.status.info.coordinator.meta.majorrel)+"."+(0,a.zw)(B.status.info.coordinator.meta.minorrel),1)])):(0,s.kq)("",!0),B.status.info.coordinator?.meta?((0,s.wg)(),(0,s.iD)("div",$,[R,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.coordinator.meta.revision)},null,8,S)])):(0,s.kq)("",!0)])):(0,s.kq)("",!0)])),_:1},512),(0,s._)("div",G,[(0,s._)("div",N,[(0,s._)("label",null,[(0,s._)("select",{value:B.selected.view,onChange:t[0]||(t[0]=e=>this.selected.view=e.target.value)},[((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(B.views,((e,t)=>((0,s.wg)(),(0,s.iD)("option",{textContent:(0,a.zw)((t[0].toUpperCase()+t.slice(1)).replace("_"," ")),key:t,selected:e,value:t},null,8,T)))),128))],40,E)])]),(0,s._)("div",O,["groups"===B.selected.view?((0,s.wg)(),(0,s.iD)("button",{key:0,class:"btn btn-default",title:"Add Group",disabled:B.loading,onClick:t[1]||(t[1]=(...e)=>ee.addGroup&&ee.addGroup(...e))},A,8,V)):(0,s.kq)("",!0),(0,s.Wm)(ae,{ref:"networkCommandsDropdown","icon-class":"fa fa-cog",title:"Network commands"},{default:(0,s.w5)((()=>[(0,s.Wm)(se,{text:"Network Info",disabled:B.loading,onClick:t[2]||(t[2]=t=>e.$refs.infoModal.show())},null,8,["disabled"]),B.status.info?.permit_join?((0,s.wg)(),(0,s.j4)(se,{key:1,text:"Disable Join",disabled:B.loading,onClick:t[4]||(t[4]=e=>ee.permitJoin(!1))},null,8,["disabled"])):((0,s.wg)(),(0,s.j4)(se,{key:0,text:"Permit Join",disabled:B.loading,onClick:t[3]||(t[3]=e=>ee.permitJoin(!0))},null,8,["disabled"])),(0,s.Wm)(se,{text:"Factory Reset",disabled:B.loading,onClick:ee.factoryReset},null,8,["disabled","onClick"])])),_:1},512),(0,s._)("button",{class:"btn btn-default",title:"Refresh network",disabled:B.loading,onClick:t[5]||(t[5]=(...e)=>ee.refresh&&ee.refresh(...e))},F,8,L)])]),(0,s._)("div",H,["devices"===B.selected.view?((0,s.wg)(),(0,s.iD)("div",U,[Object.keys(B.devices).length?(0,s.kq)("",!0):((0,s.wg)(),(0,s.iD)("div",Y,[B.loading?((0,s.wg)(),(0,s.iD)("div",W,"Loading devices...")):((0,s.wg)(),(0,s.iD)("div",P,"No devices found on the network"))])),((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(B.devices,((e,t)=>((0,s.wg)(),(0,s.j4)(ne,{key:t,device:e,groups:B.groups,selected:B.selected.deviceId===t,onSelect:e=>B.selected.deviceId=B.selected.deviceId===t?null:t,onRename:ee.refreshDevices,onRemove:ee.refreshDevices,onGroupsEdit:ee.refreshGroups},null,8,["device","groups","selected","onSelect","onRename","onRemove","onGroupsEdit"])))),128))])):"groups"===B.selected.view?((0,s.wg)(),(0,s.iD)("div",X,[Object.keys(B.groups).length?(0,s.kq)("",!0):((0,s.wg)(),(0,s.iD)("div",K,[B.loading?((0,s.wg)(),(0,s.iD)("div",J,"Loading groups...")):((0,s.wg)(),(0,s.iD)("div",Q,"No groups available on the network"))])),((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(B.groups,((e,t)=>((0,s.wg)(),(0,s.j4)(le,{key:t,group:e,devices:B.devices,selected:B.selected.groupId===t,onSelect:e=>B.selected.groupId=B.selected.groupId===t?null:t,onRename:ee.refreshGroups,onRemove:ee.refreshGroups,onEdit:ee.refreshGroups},null,8,["group","devices","selected","onSelect","onRename","onRemove","onEdit"])))),128))])):(0,s.kq)("",!0)])])}var te=i(2787),ie=i(815),se=i(6791),ae=i(8637),ne=i(9963);const le=e=>((0,s.dD)("data-v-6437b841"),e=e(),(0,s.Cn)(),e),oe={class:"groups"},re=["value","checked"],de=["textContent"],ce=le((()=>(0,s._)("div",{class:"footer buttons"},[(0,s._)("button",{type:"submit"},"Save")],-1))),ue=["textContent"],ve={key:1,class:"params"},pe={class:"row"},he=le((()=>(0,s._)("div",{class:"param-name"},"Name",-1))),ge={class:"param-value"},me=["value"],be={class:"buttons"},fe=le((()=>(0,s._)("i",{class:"fas fa-times"},null,-1))),ye=[fe],we=le((()=>(0,s._)("button",{type:"submit",class:"btn btn-default"},[(0,s._)("i",{class:"fa fa-check"})],-1))),_e=["textContent"],ke={class:"buttons"},Ce=le((()=>(0,s._)("i",{class:"fa fa-edit"},null,-1))),xe=[Ce],qe={class:"row"},De=le((()=>(0,s._)("div",{class:"param-name"},"IEEE Address",-1))),ze=["textContent"],Me={key:0,class:"row"},Ie=le((()=>(0,s._)("div",{class:"param-name"},"Network Address",-1))),Ze=["textContent"],$e={class:"row"},Re=le((()=>(0,s._)("div",{class:"param-name"},"Type",-1))),Se=["textContent"],Ge={key:1,class:"row"},Ne=le((()=>(0,s._)("div",{class:"param-name"},"Vendor",-1))),Ee={class:"param-value"},Te={key:2,class:"row"},Oe=le((()=>(0,s._)("div",{class:"param-name"},"Model",-1))),Ve={class:"param-value"},je={key:3,class:"row"},Ae=le((()=>(0,s._)("div",{class:"param-name"},"Model ID",-1))),Le={class:"param-value"},Be={key:4,class:"row"},Fe=le((()=>(0,s._)("div",{class:"param-name"},"Description",-1))),He={class:"param-value"},Ue={key:5,class:"row"},Ye=le((()=>(0,s._)("div",{class:"param-name"},"Software Build ID",-1))),We={class:"param-value"},Pe={key:6,class:"row"},Xe=le((()=>(0,s._)("div",{class:"param-name"},"Date Code",-1))),Ke={class:"param-value"},Je={key:7,class:"row"},Qe=le((()=>(0,s._)("div",{class:"param-name"},"Power Source",-1))),et={class:"param-value"},tt={key:8,class:"section values"},it=le((()=>(0,s._)("div",{class:"header"},[(0,s._)("div",{class:"title"},"Values")],-1))),st={class:"body"},at={class:"param-name"},nt={key:0,class:"text"},lt=["textContent"],ot=["textContent"],rt={class:"param-value"},dt={key:2},ct=["value","disabled","onChange"],ut={key:3},vt=["value","onChange"],pt={key:0},ht=["value","textContent","selected","disabled"],gt={key:4},mt=["onChange","value"],bt={key:5},ft=["disabled","value","onChange"],yt={class:"section actions"},wt=le((()=>(0,s._)("div",{class:"header"},[(0,s._)("div",{class:"title"},"Actions")],-1))),_t={class:"body"},kt=le((()=>(0,s._)("div",{class:"param-name"},"Manage groups",-1))),Ct=le((()=>(0,s._)("div",{class:"param-value"},[(0,s._)("i",{class:"fa fa-network-wired"})],-1))),xt=[kt,Ct],qt={key:0,class:"param-name"},Dt={key:1,class:"param-name"},zt=le((()=>(0,s._)("div",{class:"param-value"},[(0,s._)("i",{class:"fa fa-sync-alt"})],-1))),Mt=le((()=>(0,s._)("div",{class:"param-name"},"Remove Device",-1))),It=le((()=>(0,s._)("div",{class:"param-value"},[(0,s._)("i",{class:"fa fa-trash"})],-1))),Zt=[Mt,It],$t=le((()=>(0,s._)("div",{class:"param-name"},"Force Remove Device",-1))),Rt=le((()=>(0,s._)("div",{class:"param-value"},[(0,s._)("i",{class:"fa fa-trash"})],-1))),St=[$t,Rt];function Gt(e,t,i,n,l,o){const r=(0,s.up)("Loading"),d=(0,s.up)("Modal"),c=(0,s.up)("ToggleSwitch"),u=(0,s.up)("Slider");return(0,s.wg)(),(0,s.iD)("div",{class:(0,a.C_)(["item device",{selected:i.selected}])},[l.loading?((0,s.wg)(),(0,s.j4)(r,{key:0})):(0,s.kq)("",!0),(0,s.Wm)(d,{class:"groups-modal",ref:"groupsModal",title:"Device groups"},{default:(0,s.w5)((()=>[l.loading?((0,s.wg)(),(0,s.j4)(r,{key:0})):(0,s.kq)("",!0),(0,s._)("form",{class:"content",onSubmit:t[0]||(t[0]=(0,ne.iM)(((...e)=>o.manageGroups&&o.manageGroups(...e)),["prevent"]))},[(0,s._)("div",oe,[((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(i.groups,((e,t)=>((0,s.wg)(),(0,s.iD)("label",{class:"row group",key:t},[(0,s._)("input",{type:"checkbox",value:t,checked:o.associatedGroups.has(parseInt(e.id))},null,8,re),(0,s._)("span",{class:"name",textContent:(0,a.zw)(e.friendly_name?.length?e.friendly_name:`[Group #${e.id}]`)},null,8,de)])))),128))]),ce],32)])),_:1},512),(0,s._)("div",{class:(0,a.C_)(["row name header vertical-center",{selected:i.selected}]),textContent:(0,a.zw)(i.device.friendly_name||i.device.ieee_address),onClick:t[1]||(t[1]=t=>e.$emit("select"))},null,10,ue),i.selected?((0,s.wg)(),(0,s.iD)("div",ve,[(0,s._)("div",pe,[he,(0,s._)("div",ge,[(0,s._)("div",{class:(0,a.C_)(["name-edit",{hidden:!l.editName}])},[(0,s._)("form",{onSubmit:t[3]||(t[3]=(0,ne.iM)(((...e)=>o.rename&&o.rename(...e)),["prevent"]))},[(0,s._)("label",null,[(0,s._)("input",{type:"text",name:"name",ref:"name",value:i.device.friendly_name},null,8,me)]),(0,s._)("span",be,[(0,s._)("button",{type:"button",class:"btn btn-default",onClick:t[2]||(t[2]=e=>l.editName=!1)},ye),we])],32)],2),(0,s._)("div",{class:(0,a.C_)(["name-edit",{hidden:l.editName}])},[(0,s._)("span",{textContent:(0,a.zw)(i.device.friendly_name)},null,8,_e),(0,s._)("span",ke,[(0,s._)("button",{type:"button",class:"btn btn-default",onClick:t[4]||(t[4]=e=>l.editName=!0)},xe)])],2)])]),(0,s._)("div",qe,[De,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(i.device.ieee_address)},null,8,ze)]),i.device.network_address?((0,s.wg)(),(0,s.iD)("div",Me,[Ie,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(i.device.network_address)},null,8,Ze)])):(0,s.kq)("",!0),(0,s._)("div",$e,[Re,(0,s._)("div",{class:"param-value",textContent:(0,a.zw)(i.device.type)},null,8,Se)]),i.device.definition?.vendor?((0,s.wg)(),(0,s.iD)("div",Ge,[Ne,(0,s._)("div",Ee,(0,a.zw)(i.device.definition.vendor),1)])):(0,s.kq)("",!0),i.device.definition?.model?((0,s.wg)(),(0,s.iD)("div",Te,[Oe,(0,s._)("div",Ve,(0,a.zw)(i.device.definition.model),1)])):(0,s.kq)("",!0),i.device.model_id?((0,s.wg)(),(0,s.iD)("div",je,[Ae,(0,s._)("div",Le,(0,a.zw)(i.device.model_id),1)])):(0,s.kq)("",!0),i.device.definition?.description?((0,s.wg)(),(0,s.iD)("div",Be,[Fe,(0,s._)("div",He,(0,a.zw)(i.device.definition.description),1)])):(0,s.kq)("",!0),i.device.software_build_id?((0,s.wg)(),(0,s.iD)("div",Ue,[Ye,(0,s._)("div",We,(0,a.zw)(i.device.software_build_id),1)])):(0,s.kq)("",!0),i.device.definition?.date_code?((0,s.wg)(),(0,s.iD)("div",Pe,[Xe,(0,s._)("div",Ke,(0,a.zw)(i.device.definition.date_code),1)])):(0,s.kq)("",!0),i.device.power_source?((0,s.wg)(),(0,s.iD)("div",Je,[Qe,(0,s._)("div",et,(0,a.zw)(i.device.power_source),1)])):(0,s.kq)("",!0),Object.keys(o.displayedValues).length?((0,s.wg)(),(0,s.iD)("div",tt,[it,(0,s._)("div",st,[((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(o.displayedValues,((e,t)=>((0,s.wg)(),(0,s.iD)("div",{class:"row value",key:t},[(0,s._)("div",at,[(0,s.Uk)((0,a.zw)(e.description)+" ",1),null!=o.rgbColor&&null!=e.value?.x&&null!=e.value?.y||null!=e.value?.hue&&null!=e.value?.saturation?((0,s.wg)(),(0,s.iD)("span",nt,"Color")):(0,s.kq)("",!0),e.property?((0,s.wg)(),(0,s.iD)("span",{key:1,class:"name",textContent:(0,a.zw)(e.property)},null,8,lt)):(0,s.kq)("",!0),e.unit?((0,s.wg)(),(0,s.iD)("span",{key:2,class:"unit",textContent:(0,a.zw)(e.unit)},null,8,ot)):(0,s.kq)("",!0)]),(0,s._)("div",rt,["binary"===e.type?((0,s.wg)(),(0,s.j4)(c,{key:0,value:null!=e.value_on?e.value===e.value_on:!!e.value,disabled:!e.writable,onInput:t=>o.setValue(e,t)},null,8,["value","disabled","onInput"])):"numeric"===e.type&&null!=e.value_min&&null!=e.value_max?((0,s.wg)(),(0,s.j4)(u,{key:1,"with-label":!0,range:[e.value_min,e.value_max],value:e.value,disabled:!e.writable,onChange:t=>o.setValue(e,t)},null,8,["range","value","disabled","onChange"])):"numeric"!==e.type||null!=e.value_min&&null!=e.value_max?"enum"===e.type?((0,s.wg)(),(0,s.iD)("label",ut,[(0,s._)("select",{value:e.readable&&null!=e.value?e.value:"",onChange:t=>o.setValue(e,t)},[e.readable?(0,s.kq)("",!0):((0,s.wg)(),(0,s.iD)("option",pt)),((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(e.values,(t=>((0,s.wg)(),(0,s.iD)("option",{key:t,value:t,textContent:(0,a.zw)(t),selected:e.readable&&e.value===t,disabled:!e.writable},null,8,ht)))),128))],40,vt)])):null!=o.rgbColor&&null!=e.value?.x&&null!=e.value?.y||null!=e.value?.hue&&null!=e.value?.saturation?((0,s.wg)(),(0,s.iD)("label",gt,[(0,s._)("input",{type:"color",onChange:(0,ne.iM)((t=>o.setValue(e,t)),["stop"]),value:"#"+o.rgbColor.map((e=>(e=Number(e).toString(16),1===e.length?"0"+e:e))).join("")},null,40,mt)])):((0,s.wg)(),(0,s.iD)("label",bt,[(0,s._)("input",{type:"text",disabled:!e.writable,value:e.value,onChange:t=>o.setValue(e,t)},null,40,ft)])):((0,s.wg)(),(0,s.iD)("label",dt,[(0,s._)("input",{type:"number","with-label":!0,value:e.value,disabled:!e.writable,onChange:t=>o.setValue(e,t)},null,40,ct)]))])])))),128))])])):(0,s.kq)("",!0),(0,s._)("div",yt,[wt,(0,s._)("div",_t,[(0,s._)("div",{class:"row",onClick:t[5]||(t[5]=t=>e.$refs.groupsModal.show())},xt),(0,s._)("div",{class:"row",onClick:t[6]||(t[6]=e=>l.otaUpdatesAvailable?o.installOtaUpdates():o.checkOtaUpdates())},[l.otaUpdatesAvailable?((0,s.wg)(),(0,s.iD)("div",Dt,"Install updates")):((0,s.wg)(),(0,s.iD)("div",qt,"Check for updates")),zt]),(0,s._)("div",{class:"row",onClick:t[7]||(t[7]=e=>o.remove(!1))},Zt),(0,s._)("div",{class:"row error",onClick:t[8]||(t[8]=e=>o.remove(!0))},St)])])])):(0,s.kq)("",!0)],2)}var Nt=i(8140),Et=i(7514),Tt=i(4212),Ot=i(3493),Vt={name:"Device",components:{Modal:Ot.Z,ToggleSwitch:Et.Z,Slider:Nt.Z,Loading:se.Z},mixins:[ae.Z],emits:["select","rename","remove","groups-edit"],props:{device:{type:Object,required:!0},groups:{type:Object,default:()=>{}},selected:{type:Boolean,default:!1}},data(){return{editName:!1,loading:!1,status:{},otaUpdatesAvailable:!1}},computed:{values(){if(!this.device.definition?.exposes)return{};const e=e=>{const t=(e,i)=>{if(e.features){e.property&&(i[e.property]=i[e.property]||{},i=i[e.property]);for(const s of e.features)t(s,i)}else e.property&&(i[e.property]=e)},i={};for(const s of e)t(s,i);return i};return e(this.device.definition.exposes)},displayedValues(){const e={},t=(e,[i,s])=>(i in this.status&&(s={...s,value:this.status[i]}),null!=s.access&&(s.readable=!!(1&s.access),s.writable=!!(2&s.access),delete s.access),e[i]=s,Object.entries(s).filter((e=>e[1]instanceof Object)).reduce(t,e[i]),e);return Object.entries(this.values).reduce(t,e),e},rgbColor(){if(!this.displayedValues.color)return;const e=this.displayedValues.color?.value;if(e){if(null!=e.x&&null!=e.y){const t=new Tt.N({bri:[this.displayedValues.brightness?.value_min||0,this.displayedValues.brightness?.value_max||255]});return t.xyToRgb(e.x,e.y,this.displayedValues.brightness.value)}if(null!=e.hue&&(null!=e.saturation||null!=e.sat)){const t=null!=e.saturation?"saturation":"sat",i=new Tt.N({hue:[this.displayedValues.color.hue?.value_min||0,this.displayedValues.color.hue.value_max||65535],sat:[this.displayedValues.color[t]?.value_min||0,this.displayedValues.color[t].value_max||255],bri:[this.displayedValues.brightness?.value_min||0,this.displayedValues.brightness?.value_max||255]});return i.hslToRgb(e.hue,e[t],this.displayedValues.brightness.value)}return null}},associatedGroups(){return new Set(Object.values(this.groups).filter((e=>new Set((e.members||[]).map((e=>e.ieee_address))).has(this.device.ieee_address))).map((e=>parseInt(e.id))))}},methods:{async refresh(){this.loading=!0;try{this.status=await this.request("zigbee.mqtt.device_get",{device:this.device.friendly_name||this.device.ieee_address})}finally{this.loading=!1}},async rename(){const e=(this.$refs.name.value||"").trim();if(e.length&&e!==this.device.friendly_name){this.loading=!0;try{await this.request("zigbee.mqtt.device_rename",{device:this.device.friendly_name?.length?this.device.friendly_name:this.device.ieee_address,name:e}),this.$emit("rename",{name:this.device.friendly_name,newName:e})}finally{this.editName=!1,this.loading=!1}}},async remove(e){if(confirm("Are you really sure that you want to remove this device from the network?")){e=!!e,this.loading=!0;try{await this.request("zigbee.mqtt.device_remove",{device:this.device.friendly_name?.length?this.device.friendly_name:this.device.ieee_address,force:e}),this.$emit("remove",{device:this.device.friendly_name||this.device.ieee_address})}finally{this.loading=!1}}},async setValue(e,t){const i={device:this.device.friendly_name||this.device.ieee_address,property:e.property,value:null};switch(e.type){case"binary":e.value_toggle?i.value=e.value_toggle:e.value_on&&e.value_off?i.value=e.value===e.value_on?e.value_off:e.value_on:i.value=!e.value;break;case"numeric":i.value=parseFloat(t.target.value);break;case"enum":t.target.value?.length&&(i.value=t.target.value);break;default:if(null!=e.x&&null!=e.y||null!=e.hue&&(null!=e.saturation||null!=e.sat)){i.property="color";const s=t.target.value.slice(1).split(/([0-9a-fA-F]{2})/).filter(((e,t)=>t%2)).map((e=>parseInt(e,16)));if(null!=e.x&&null!=e.y){const e=new Tt.N({bri:[this.displayedValues.brightness?.value_min||0,this.displayedValues.brightness?.value_max||255]}),t=e.rgbToXY(...s);i.value={x:t[0],y:t[1]}}else{const e=null!=this.displayedValues.color.saturation?"saturation":"sat",t=new Tt.N({hue:[this.displayedValues.color.hue?.value_min||0,this.displayedValues.color.hue.value_max||65535],sat:[this.displayedValues.color[e]?.value_min||0,this.displayedValues.color[e].value_max||255],bri:[this.displayedValues.brightness?.value_min||0,this.displayedValues.brightness?.value_max||255]}),a=t.rgbToHsl(...s);i.value={hue:a[0]},i.value[e]=a[1]}}break}if(null!=i.value){this.loading=!0;try{await this.request("zigbee.mqtt.device_set",i),await this.refresh()}finally{this.loading=!1}}},async manageGroups(e){const t=[...e.target.querySelectorAll("input[type=checkbox]")].reduce(((e,t)=>{const i=parseInt(t.value);return t.checked&&!this.associatedGroups.has(i)?e.add.add(i):!t.checked&&this.associatedGroups.has(i)&&e.remove.add(i),e}),{add:new Set,remove:new Set}),i=async e=>{await Promise.all([...t[e]].map((async t=>{await this.request(`zigbee.mqtt.group_${e}_device`,{group:this.groups[t].friendly_name,device:this.device.friendly_name?.length?this.device.friendly_name:this.device.ieee_address})})))};this.loading=!0;try{await Promise.all(Object.keys(t).map(i)),this.$emit("groups-edit",t)}finally{this.loading=!1}},async checkOtaUpdates(){this.loading=!0;try{this.otaUpdatesAvailable=(await this.request("zigbee.mqtt.device_check_ota_updates",{device:this.device.friendly_name?.length?this.device.friendly_name:this.device.ieee_address})).update_available,this.otaUpdatesAvailable?this.notify({text:"A firmware update is available for the device",image:{iconClass:"fa fa-sync-alt"}}):this.notify({text:"The device is up to date",image:{iconClass:"fa fa-check"}})}finally{this.loading=!1}},async installOtaUpdates(){this.loading=!0;try{await this.request("zigbee.mqtt.device_install_ota_updates",{device:this.device.friendly_name?.length?this.device.friendly_name:this.device.ieee_address})}finally{this.loading=!1}}},mounted(){this.$watch((()=>this.selected),(e=>{e&&this.refresh()})),this.$watch((()=>this.status.update_available),(e=>{this.otaUpdatesAvailable=e})),this.subscribe((e=>{e.device!==this.device.friendly_name&&e.device!==this.device.ieee_address||(this.status={...this.status,...e.properties})}),`on-property-change-${this.device.ieee_address}`,"platypush.message.event.zigbee.mqtt.ZigbeeMqttDevicePropertySetEvent")},unmounted(){this.unsubscribe(`on-property-change-${this.device.ieee_address}`)}},jt=i(3744);const At=(0,jt.Z)(Vt,[["render",Gt],["__scopeId","data-v-6437b841"]]);var Lt=At;const Bt=e=>((0,s.dD)("data-v-7667f7ba"),e=e(),(0,s.Cn)(),e),Ft=["textContent"],Ht={key:1,class:"params"},Ut={class:"section devices"},Yt=Bt((()=>(0,s._)("div",{class:"header"},[(0,s._)("div",{class:"title"},"Devices")],-1))),Wt={class:"body"},Pt=["checked","value","onChange"],Xt=["textContent"],Kt={class:"section actions"},Jt=Bt((()=>(0,s._)("div",{class:"header"},[(0,s._)("div",{class:"title"},"Actions")],-1))),Qt={class:"body"},ei=Bt((()=>(0,s._)("div",{class:"col-10"},"Rename Group",-1))),ti=Bt((()=>(0,s._)("div",{class:"buttons col-2 pull-right"},[(0,s._)("i",{class:"fa fa-edit"})],-1))),ii=[ei,ti],si=Bt((()=>(0,s._)("div",{class:"col-10"},"Remove Group",-1))),ai=Bt((()=>(0,s._)("div",{class:"buttons col-2 pull-right"},[(0,s._)("i",{class:"fa fa-trash"})],-1))),ni=[si,ai];function li(e,t,i,n,l,o){const r=(0,s.up)("Loading");return(0,s.wg)(),(0,s.iD)("div",{class:(0,a.C_)(["item group",{selected:i.selected}])},[l.loading?((0,s.wg)(),(0,s.j4)(r,{key:0})):(0,s.kq)("",!0),(0,s._)("div",{class:(0,a.C_)(["row name header vertical-center",{selected:i.selected}]),textContent:(0,a.zw)(i.group.friendly_name),onClick:t[0]||(t[0]=t=>e.$emit("select"))},null,10,Ft),i.selected?((0,s.wg)(),(0,s.iD)("div",Ht,[(0,s._)("div",Ut,[Yt,(0,s._)("div",Wt,[(0,s._)("form",null,[((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(i.devices,((e,t)=>((0,s.wg)(),(0,s.iD)("label",{class:"row",key:t},[(0,s._)("input",{type:"checkbox",checked:o.members.has(e.ieee_address),value:e.ieee_address,onChange:t=>o.toggleDevice(e.ieee_address)},null,40,Pt),(0,s._)("span",{class:"label",textContent:(0,a.zw)(e.friendly_name?.length?e.friendly_name:e.ieee_address)},null,8,Xt)])))),128))])])]),(0,s._)("div",Kt,[Jt,(0,s._)("div",Qt,[(0,s._)("div",{class:"row",onClick:t[1]||(t[1]=(...e)=>o.rename&&o.rename(...e))},ii),(0,s._)("div",{class:"row",onClick:t[2]||(t[2]=(...e)=>o.remove&&o.remove(...e))},ni)])])])):(0,s.kq)("",!0)],2)}var oi={name:"Group",emits:["select","remove","edit"],mixins:[ae.Z],components:{Loading:se.Z},props:{group:{type:Object,required:!0},devices:{type:Object,default:()=>({})},selected:{type:Boolean,default:!1}},data(){return{loading:!1,values:{}}},computed:{devicesByAddress(){return Object.entries(this.devices).reduce(((e,t)=>{const i=t[1];return e[i.ieee_address]=i,e}),{})},members(){return new Set((this.group.members||[]).map((e=>e.ieee_address)))}},methods:{async remove(){if(confirm("Are you sure that you want to remove this group?")){this.loading=!0;try{await this.request("zigbee.mqtt.group_remove",{name:this.group.friendly_name}),this.$emit("remove",{name:this.group.friendly_name})}finally{this.loading=!1}}},async rename(){let e=prompt("New group name",this.group.friendly_name);if(e?.length){e=e.trim(),this.loading=!0;try{await this.request("zigbee.mqtt.group_rename",{group:this.group.friendly_name||this.group.id,name:e}),this.$emit("rename",{name:this.group.friendly_name,newName:e})}finally{this.loading=!1}}},async toggleDevice(e){const t=this.devicesByAddress[e],i=t.friendly_name?.length?t.friendly_name:e,s=this.members.has(e)?"remove":"add";this.loading=!0;try{await this.request(`zigbee.mqtt.group_${s}_device`,{group:this.group.friendly_name,device:i}),this.$emit("edit",{device:i,method:s})}finally{this.loading=!1}}}};const ri=(0,jt.Z)(oi,[["render",li],["__scopeId","data-v-7667f7ba"]]);var di=ri,ci={name:"ZigbeeMqtt",components:{Modal:Ot.Z,Dropdown:te.Z,DropdownItem:ie.Z,Loading:se.Z,Device:Lt,Group:di},mixins:[ae.Z],data(){return{devices:{},groups:{},status:{},loading:!1,selected:{view:"devices",deviceId:void 0,groupId:void 0},views:{devices:!0,groups:!0},modal:{group:{visible:!1}}}},methods:{async refreshDevices(){this.loading=!0;try{this.devices=(await this.request("zigbee.mqtt.devices")).reduce(((e,t)=>(t.friendly_name in this.devices&&(t={values:this.devices[t.friendly_name].values||{},...this.devices[t.friendly_name]}),e[t.friendly_name]=t,e)),{})}finally{this.loading=!1}},async refreshGroups(){this.loading=!0;try{this.groups=(await this.request("zigbee.mqtt.groups")).reduce(((e,t)=>(e[t.id]=t,e)),{})}finally{this.loading=!1}},async refreshInfo(){this.loading=!0;try{this.status=await this.request("zigbee.mqtt.info")}finally{this.loading=!1}},refresh(){this.refreshDevices(),this.refreshGroups(),this.refreshInfo()},updateProperties(e,t){this.devices[e].values=t},async addGroup(){const e=prompt("Group name");if(e&&e.length){this.loading=!0;try{await this.request("zigbee.mqtt.group_add",{name:e})}finally{this.loading=!1}await this.refreshGroups()}},async permitJoin(e){const t={permit:!!e};if(e){let e=prompt("Join allow period in seconds (0 or empty for no time limits)","60");t.seconds=e.length?parseInt(e):null}this.loading=!0;try{await this.request("zigbee.mqtt.permit_join",t),setTimeout(this.refreshInfo,1e3)}finally{this.loading=!1}},async factoryReset(){if(confirm("Are you SURE that you want to do a device factory reset?")||confirm("Are you REALLY sure? ALL network information and custom firmware will be lost!!")){this.loading=!0;try{await this.request("zigbee.mqtt.factory_reset")}finally{this.loading=!1}}},async addToGroup(e,t){this.loading=!0,await this.request("zigbee.mqtt.group_add_device",{device:e,group:t}),this.loading=!1;const i=this;setTimeout((()=>{i.refresh(),i.refreshGroups()}),100)}},created(){this.subscribe((()=>{this.notify({text:"WARNING: The controller is offline",error:!0})}),"on-zigbee-offline","platypush.message.event.zigbee.mqtt.ZigbeeMqttOfflineEvent"),this.subscribe((()=>{this.notify({text:"The controller is now online",iconClass:"fas fa-check"})}),"on-zigbee-online","platypush.message.event.zigbee.mqtt.ZigbeeMqttOnlineEvent"),this.subscribe((()=>{this.notify({text:"Failed to remove the device",error:!0})}),"on-zigbee-device-remove-failed","platypush.message.event.zigbee.mqtt.ZigbeeMqttDeviceRemovedFailedEvent"),this.subscribe((()=>{this.notify({text:"Failed to add the group",error:!0})}),"on-zigbee-group-add-failed","platypush.message.event.zigbee.mqtt.ZigbeeMqttGroupAddedFailedEvent"),this.subscribe((()=>{this.notify({text:"Failed to remove group",error:!0})}),"on-zigbee-group-remove-failed","platypush.message.event.zigbee.mqtt.ZigbeeMqttGroupRemovedFailedEvent"),this.subscribe((()=>{this.notify({text:"Failed to remove the devices from group",error:!0})}),"on-zigbee-remove-all-failed","platypush.message.event.zigbee.mqtt.ZigbeeMqttGroupRemoveAllFailedEvent"),this.subscribe((e=>{this.notify({text:e.error||"[Unknown error]",error:!0})}),"on-zigbee-error","platypush.message.event.zigbee.mqtt.ZigbeeMqttErrorEvent"),this.subscribe(this.refresh,"on-zigbee-device-update","platypush.message.event.zigbee.mqtt.ZigbeeMqttOnlineEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttDevicePairingEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttDeviceConnectedEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttDeviceBannedEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttDeviceRemovedEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttDeviceWhitelistedEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttDeviceRenamedEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttDeviceBindEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttDeviceUnbindEvent"),this.subscribe(this.refreshGroups,"on-zigbee-group-update","platypush.message.event.zigbee.mqtt.ZigbeeMqttGroupAddedEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttGroupRemovedEvent","platypush.message.event.zigbee.mqtt.ZigbeeMqttGroupRemoveAllEvent")},mounted(){this.refresh()},unmounted(){this.unsubscribe("on-zigbee-error"),this.unsubscribe("on-zigbee-remove-all-failed"),this.unsubscribe("on-zigbee-group-remove-failed"),this.unsubscribe("on-zigbee-group-add-failed"),this.unsubscribe("on-zigbee-device-remove-failed"),this.unsubscribe("on-zigbee-online"),this.unsubscribe("on-zigbee-offline"),this.unsubscribe("on-zigbee-device-update"),this.unsubscribe("on-zigbee-group-update")}};const ui=(0,jt.Z)(ci,[["render",ee]]);var vi=ui}}]); -//# sourceMappingURL=1259.04c161c9.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1259.04c161c9.js.map b/platypush/backend/http/webapp/dist/static/js/1259.04c161c9.js.map deleted file mode 100644 index 0451b2b318..0000000000 --- a/platypush/backend/http/webapp/dist/static/js/1259.04c161c9.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"static/js/1259.04c161c9.js","mappings":"kJAAO,MAAMA,EACTC,WAAAA,CAAYC,GAQR,GAPAC,KAAKD,OAAS,CACVE,IAAK,CAAC,EAAG,KACTC,IAAK,CAAC,EAAG,KACTC,IAAK,CAAC,EAAG,KACTC,GAAI,CAAC,IAAK,MAGVL,EACA,IAAK,MAAMM,KAAQC,OAAOC,KAAKP,KAAKD,QAC5BA,EAAOM,KACPL,KAAKD,OAAOM,GAAQN,EAAOM,GAC3C,CAEAG,SAAAA,CAAUC,EAAGC,EAAQC,GACjB,OAAOA,EAAO,IAAQF,EAAEC,EAAO,KAAOC,EAAO,GAAGA,EAAO,KAAQD,EAAO,GAAGA,EAAO,GACpF,CAEAE,QAAAA,CAASC,EAAGC,EAAGC,IACVF,EAAGC,EAAGC,GAAK,CACRf,KAAKQ,UAAUK,EAAGb,KAAKD,OAAOE,IAAK,CAAC,EAAG,MACvCD,KAAKQ,UAAUM,EAAGd,KAAKD,OAAOG,IAAK,CAAC,EAAG,MACvCF,KAAKQ,UAAUO,EAAGf,KAAKD,OAAOI,IAAK,CAAC,EAAG,OAG3CY,GAAK,IACL,MAAMC,EAAIF,EAAIG,KAAKC,IAAIH,EAAG,EAAIA,GAAK,IAC7BI,EAAIC,IACN,MAAMC,GAAKD,EAAIP,EAAI,IAAM,GACnBS,EAAQP,EAAIC,EAAIC,KAAKM,IAAIN,KAAKC,IAAIG,EAAI,EAAG,EAAIA,EAAG,IAAK,GAC3D,OAAOJ,KAAKO,MAAM,IAAMF,EAAM,EAGlC,MAAO,CAACH,EAAE,GAAIA,EAAE,GAAIA,EAAE,GAC1B,CAEAM,QAAAA,CAASC,EAAGC,EAAGC,GACXF,GAAK,IACLC,GAAK,IACLC,GAAK,IACL,MAAML,EAAMN,KAAKM,IAAIG,EAAGC,EAAGC,GAAIV,EAAMD,KAAKC,IAAIQ,EAAGC,EAAGC,GACpD,IAAIf,EAAGC,EAAGC,GAAKQ,EAAML,GAAO,EAE5B,GAAGK,IAAQL,EACPL,EAAIC,EAAI,MACL,CACH,MAAMe,EAAIN,EAAML,EAGhB,OAFAJ,EAAIC,EAAI,GAAMc,GAAK,EAAIN,EAAML,GAAOW,GAAKN,EAAML,GAExCK,GACH,KAAKG,EAAGb,GAAKc,EAAIC,GAAKC,GAAKF,EAAIC,EAAI,EAAI,GAAI,MAC3C,KAAKD,EAAGd,GAAKe,EAAIF,GAAKG,EAAI,EAAG,MAC7B,KAAKD,EAAGf,GAAKa,EAAIC,GAAKE,EAAI,EAAG,MAEjChB,GAAK,CACT,CAEA,MAAO,CACHiB,SAAS9B,KAAKQ,UAAUK,EAAG,CAAC,EAAG,GAAIb,KAAKD,OAAOE,MAC/C6B,SAAS9B,KAAKQ,UAAUM,EAAG,CAAC,EAAG,GAAId,KAAKD,OAAOG,MAC/C4B,SAAS9B,KAAKQ,UAAUO,EAAG,CAAC,EAAG,GAAIf,KAAKD,OAAOI,MAEvD,CAEA4B,OAAAA,CAAQtB,EAAGuB,EAAGC,GAEQ,MAAdA,IACAA,EAAajC,KAAKD,OAAOI,IAAI,IAEjC,MAAM+B,EAAI,EAAMzB,EAAIuB,EACdG,GAAKF,GAAcjC,KAAKD,OAAOI,IAAI,GAAG,IAAIiC,QAAQ,GAClDC,EAAKF,EAAIH,EAAKvB,EACd6B,EAAKH,EAAIH,EAAKE,EAGpB,IAAIK,EAAY,SAAJF,EAAmB,QAAJF,EAAmB,QAAJG,EACtCE,EAAe,SAAJH,EAAmB,SAAJF,EAAmB,QAAJG,EACzCG,EAAa,QAAJJ,EAAmB,QAAJF,EAAmB,QAAJG,EAkC3C,OA/BIC,EAAME,GAAQF,EAAMC,GAASD,EAAM,GACnCC,GAAgBD,EAChBE,GAAcF,EACdA,EAAM,GACCC,EAAQC,GAAQD,EAAQD,GAAOC,EAAQ,GAC9CD,GAAYC,EACZC,GAAcD,EACdA,EAAQ,GACDC,EAAOF,GAAOE,EAAOD,GAASC,EAAO,IAC5CF,GAAYE,EACZD,GAAgBC,EAChBA,EAAO,GAIXF,EAAOA,GAAO,SAAY,MAAQA,EAAM,MAAgBtB,KAAKyB,IAAIH,EAAM,EAAM,KAAQ,KACrFC,EAASA,GAAS,SAAY,MAAQA,EAAQ,MAAgBvB,KAAKyB,IAAIF,EAAQ,EAAM,KAAQ,KAC7FC,EAAQA,GAAQ,SAAY,MAAQA,EAAO,MAAgBxB,KAAKyB,IAAID,EAAO,EAAM,KAAQ,KAGzFF,EAAOtB,KAAKO,MAAY,IAANe,GAClBC,EAASvB,KAAKO,MAAc,IAARgB,GACpBC,EAAQxB,KAAKO,MAAa,IAAPiB,GAEfE,MAAMJ,KACNA,EAAM,GACNI,MAAMH,KACNA,EAAQ,GACRG,MAAMF,KACNA,EAAO,GAEJ,CAACF,EAAKC,EAAOC,GAAMG,KACrBC,GAAM5B,KAAKC,IAAID,KAAKM,IAAI,EAAGsB,GAAI,MACxC,CAEAC,OAAAA,CAAQP,EAAKC,EAAOC,GACZF,EAAM,IAAKA,GAAO,KAClBC,EAAQ,IAAKA,GAAS,KACtBC,EAAO,IAAKA,GAAQ,KAGxBF,EAAQA,EAAM,OAAWtB,KAAKyB,KAAKH,EAAM,MAAS,MAAe,KAAQA,EAAM,MAC/EC,EAAUA,EAAQ,OAAWvB,KAAKyB,KAAKF,EAAQ,MAAS,MAAe,KAAQA,EAAQ,MACvFC,EAASA,EAAO,OAAWxB,KAAKyB,KAAKD,EAAO,MAAS,MAAe,KAAQA,EAAO,MAGnF,MAAMJ,EAAY,QAANE,EAAyB,QAARC,EAA0B,QAAPC,EAC1CN,EAAY,QAANI,EAAyB,QAARC,EAA0B,QAAPC,EAC1CH,EAAY,MAANC,EAAyB,OAARC,EAA0B,QAAPC,EAGhD,IAAIhC,EAAMsC,YAAYV,GAAKA,EAAIF,EAAIG,IAAIF,QAAQ,IAC3CJ,EAAMe,YAAYZ,GAAKE,EAAIF,EAAIG,IAAIF,QAAQ,IAO/C,OALIO,MAAMlC,KACNA,EAAI,GACJkC,MAAMX,KACNA,EAAI,GAED,CAACvB,EAAGuB,EACf,CAEAgB,QAAAA,CAAST,EAAKC,EAAOC,GACjB,OAAOxB,KAAKC,IAAI,EAAIlB,KAAKyB,SAASc,EAAKC,EAAOC,GAAM,GAAIzC,KAAKD,OAAOI,IAAI,GAC5E,CAEA8C,MAAAA,CAAO3B,GACH,OAAiB,MAAbA,EAAMiB,KAA8B,MAAfjB,EAAMkB,OAA+B,MAAdlB,EAAMmB,KAC3C,CAACnB,EAAMiB,IAAKjB,EAAMkB,MAAOlB,EAAMmB,MAC3B,MAAXnB,EAAMI,GAAwB,MAAXJ,EAAMK,GAAwB,MAAXL,EAAMM,EACrC,CAACN,EAAMI,EAAGJ,EAAMK,EAAGL,EAAMM,GAChCN,EAAM4B,IACC5B,EAAM4B,SADjB,CAEJ,CAEAC,KAAAA,CAAM7B,GACF,OAAe,MAAXA,EAAMb,GAAwB,MAAXa,EAAMU,EAClB,CAACV,EAAMb,EAAGa,EAAMU,GACvBV,EAAM8B,GACC9B,EAAM8B,QADjB,CAEJ,CAEAC,KAAAA,CAAM/B,GACF,MAAM4B,EAAMlD,KAAKiD,OAAO3B,GACxB,GAAI4B,EACA,OAAOA,EAEX,MAAME,EAAKpD,KAAKmD,MAAM7B,GACtB,OAAI8B,GAAM9B,EAAMnB,IACLH,KAAK+B,WAAWqB,EAAI9B,EAAMnB,KACjCmB,EAAMrB,KAAOqB,EAAMpB,KAAOoB,EAAMnB,IACzBH,KAAKY,SAASU,EAAMrB,IAAKqB,EAAMpB,IAAKoB,EAAMnB,MAErDmD,QAAQC,MAAM,wCACdD,QAAQC,MAAMjC,GAClB,CAEAkC,IAAAA,CAAKlC,GACD,MAAM8B,EAAKpD,KAAKmD,MAAM7B,GACtB,GAAI8B,GAAM9B,EAAMnB,IACZ,MAAO,CAACiD,EAAG,GAAIA,EAAG,GAAI9B,EAAMnB,KAEhC,MAAM+C,EAAMlD,KAAKiD,OAAO3B,GACxB,GAAI4B,EACA,OAAOlD,KAAK8C,WAAWI,GAE3B,GAAI5B,EAAMrB,KAAOqB,EAAMpB,KAAOoB,EAAMnB,IAAK,CACrC,MAAM+C,EAAMlD,KAAKY,SAASU,EAAMrB,IAAKqB,EAAMpB,IAAKoB,EAAMnB,KACtD,OAAOH,KAAK8C,WAAWI,EAC3B,CAEAI,QAAQC,MAAM,mCACdD,QAAQC,MAAMjC,EAClB,CAEAmC,KAAAA,CAAMnC,GACF,GAAIA,EAAMrB,KAAOqB,EAAMpB,KAAOoB,EAAMnB,IAChC,MAAO,CAACmB,EAAMrB,IAAKqB,EAAMpB,IAAKoB,EAAMnB,KAExC,MAAM+C,EAAMlD,KAAKiD,OAAO3B,GACxB,GAAI4B,EACA,OAAOlD,KAAKyB,YAAYyB,GAE5B,MAAME,EAAKpD,KAAKmD,MAAM7B,GACtB,GAAI8B,GAAM9B,EAAMnB,IAAK,CACjB,MAAM+C,EAAMlD,KAAK+B,WAAWqB,EAAI9B,EAAMnB,KACtC,OAAOH,KAAKyB,YAAYyB,EAC5B,CAEAI,QAAQC,MAAM,mCACdD,QAAQC,MAAMjC,EAClB,CAEAoC,QAAAA,CAASC,GACL,MAAO,CACLA,EAAIC,MAAM,EAAG,GACbD,EAAIC,MAAM,EAAG,GACbD,EAAIC,MAAM,EAAG,IACbhB,KAAIiB,GAAK/B,SAAS+B,EAAG,KAC3B,CAEAC,QAAAA,CAASZ,GACP,MAAO,IAAMA,EAAIN,KAAKnC,IAClB,IAAIkD,EAAMlD,EAAEsD,SAAS,IAGrB,OAFIJ,EAAIK,OAAS,IACfL,EAAM,IAAMA,GACPA,CAAG,IACTM,KAAK,GACZ,E,kGCpOGC,MAAM,sB,iCAMJA,MAAM,wBAAwBC,IAAI,qB,2EANzCC,EAAAA,EAAAA,IAWM,MAXNC,EAWM,EAVJC,EAAAA,EAAAA,GAGS,UAHAC,MAAOC,EAAAD,MAAOJ,IAAI,SAAUM,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOC,EAAAC,OAAOF,IAAM,Y,CACnBJ,EAAAO,YAAS,WAAlDX,EAAAA,EAAAA,IAAsD,K,MAAnDF,OAAKc,EAAAA,EAAAA,IAAA,CAAC,OAAeR,EAAAO,a,yBACeP,EAAAS,OAAI,WAA3Cb,EAAAA,EAAAA,IAA+C,Q,MAAzCF,MAAM,O,aAAOgB,EAAAA,EAAAA,IAAQV,EAAKS,O,kCAGlCX,EAAAA,EAAAA,GAIM,MAJNa,EAIM,EAHJC,EAAAA,EAAAA,IAEeC,EAAA,CAFAC,GAAId,EAAAc,GAAKC,oBAAqBf,EAAAe,oBAAqBpB,IAAI,WAAYM,QAAOI,EAAAJ,S,mBACvF,IAAQ,EAARe,EAAAA,EAAAA,IAAQC,EAAAC,OAAA,kBAAAC,GAAA,M,gHCRdvB,EAAAA,EAAAA,IAEM,OAFDF,MAAM,WAAYoB,GAAId,EAAAc,GAAKb,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEa,EAAAG,MAAM,QAAShB,K,EACpDY,EAAAA,EAAAA,IAAQC,EAAAC,OAAA,kBAAAC,GAAA,Q,CAKZ,OACEE,MAAO,CAAC,SACRC,MAAO,CACLR,GAAI,CACFS,KAAMC,QAGRT,oBAAqB,CACnBQ,KAAME,QACNC,SAAS,K,UCTf,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,Q,UFUA,GACEC,WAAY,CAAEC,aAAYA,GAC1BR,MAAO,CAAC,SACRC,MAAO,CACLR,GAAI,CACFS,KAAMC,QAGRjB,UAAW,CACTmB,QAAS,oBAGXjB,KAAM,CACJc,KAAMC,QAGRzB,MAAO,CACLwB,KAAMC,QAGRT,oBAAqB,CACnBQ,KAAME,QACNC,SAAS,IAIbI,IAAAA,GACE,MAAO,CACLC,SAAS,EAEb,EAEAC,SAAU,CACRC,WAAAA,GACE,OAAKzG,KAAK0G,MAAMC,OAGTC,iBAAiB5G,KAAK0G,MAAMC,QAF1B,CAAC,CAGZ,EAEAE,WAAAA,GACE,OAAO9D,WAAW/C,KAAKyG,YAAYK,OAAS,EAC9C,EAEAC,YAAAA,GACE,OAAOhE,WAAW/C,KAAKyG,YAAYO,QAAU,EAC/C,GAGFC,QAAS,CACPC,iBAAAA,CAAkBC,GAChB,IAAKnH,KAAKuG,QACR,OAEF,IAAIa,EAAUD,EAAME,OACpB,MAAOD,EAAS,CACd,GAAIA,EAAQE,UAAUC,SAAS,YAC7B,OAEFH,EAAUA,EAAQI,aACpB,CAEAxH,KAAKyH,OACP,EAEAC,gBAAAA,GACE,MAAMC,EAAW3H,KAAK0G,MAAMiB,UAAUC,IACtC,OAAKD,EAGE5E,WAAW6D,iBAAiBe,GAAUb,OAFpC,CAGX,EAEAe,iBAAAA,GACE,MAAMF,EAAW3H,KAAK0G,MAAMiB,UAAUC,IACtC,OAAKD,EAGE5E,WAAW6D,iBAAiBe,GAAUX,QAFpC,CAGX,EAEAvC,OAAAA,GACOzE,KAAKuF,qBACRvF,KAAKyH,OACT,EAEAA,KAAAA,GACEzH,KAAKuG,SAAU,EACfuB,SAASC,oBAAoB,QAAS/H,KAAKkH,mBAC3Cc,EAAAA,EAAIC,KAAK,iBACX,EAEAC,IAAAA,GACEJ,SAASK,iBAAiB,QAASnI,KAAKkH,mBACxC,MAAME,EAAUpH,KAAK0G,MAAMiB,UAAUC,IAChCR,EAAQI,eACXxH,KAAK4H,IAAIQ,YAAYhB,GAEvBpH,KAAKuG,SAAU,EACfvG,KAAK0G,MAAM2B,kBAAkBf,UAAUgB,OAAO,UAC9CtI,KAAKuI,WAAU,KACb,MAAMC,EAAaxI,KAAK0G,MAAMC,OAAO8B,wBAC/BC,EAAY,CAChBC,KAAMH,EAAWG,KAAOC,OAAOC,QAC/BC,IAAKN,EAAWM,IAAMF,OAAOG,SAGzBC,EAAM,CACVL,KAAMD,EAAUC,KAChBG,IAAKJ,EAAUI,IAAM9I,KAAK+G,cAGtBkC,EAAgBjJ,KAAK0H,mBACrBwB,EAAiBlJ,KAAK6H,oBAEvBmB,EAAIL,KAAOM,GAAkBL,OAAOO,WAAaP,OAAOC,SAAW,IACtEG,EAAIL,MAASM,EAAgBjJ,KAAK6G,aAG/BmC,EAAIF,IAAMI,GAAmBN,OAAOQ,YAAcR,OAAOG,SAAW,IACvEC,EAAIF,KAAQI,EAAiBlJ,KAAK+G,aAAe,IAGnD,MAAMK,EAAUpH,KAAK0G,MAAMiB,SAASC,IACpCR,EAAQE,UAAU+B,IAAI,WACtBjC,EAAQkC,MAAMR,IAAO,GAAEE,EAAIF,QAC3B1B,EAAQkC,MAAMX,KAAQ,GAAEK,EAAIL,SAC5BX,EAAAA,EAAIC,KAAK,gBAAiBjI,KAAK0G,MAAMiB,UACrC3H,KAAK0G,MAAM2B,kBAAkBf,UAAU+B,IAAI,SAAS,GAExD,EAEAvE,MAAAA,CAAOqC,GACLA,EAAMoC,kBACNvJ,KAAK4F,MAAM,SACX5F,KAAKuG,QAAUvG,KAAKyH,QAAUzH,KAAKkI,MACrC,EAEAsB,OAAAA,CAAQrC,GACNA,EAAMoC,kBACY,WAAdpC,EAAMsC,KACRzJ,KAAKyH,OAET,GAGFiC,OAAAA,GACE5B,SAAS6B,KAAKxB,iBAAiB,QAASnI,KAAKwJ,QAC/C,EAEAI,SAAAA,GACE9B,SAAS6B,KAAK5B,oBAAoB,QAAS/H,KAAKwJ,QAClD,GGpKF,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASK,GAAQ,CAAC,YAAY,qBAEzF,O,6FCPS3F,MAAM,c,qFADbE,EAAAA,EAAAA,IAKM,OALDF,OAAKc,EAAAA,EAAAA,IAAA,CAAC,WAAmBR,EAAAsF,YAAYrF,QAAKC,EAAA,KAAAA,EAAA,OAAAqF,IAAElF,EAAAmF,SAAAnF,EAAAmF,WAAAD,K,CACjBvF,EAAAO,WAAWf,QAAUQ,EAAAyF,SAASjG,SAAM,WAAlEI,EAAAA,EAAAA,IAEM,MAFNC,EAEM,EADJe,EAAAA,EAAAA,IAA0C8E,EAAA,CAAnChG,OAAKc,EAAAA,EAAAA,IAAER,EAAAO,WAAYoF,IAAK3F,EAAAyF,S,4CAEjC3F,EAAAA,EAAAA,GAAyE,OAApEJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,OAAM,UAAiC,MAAbR,EAAAO,a,aAAoBG,EAAAA,EAAAA,IAAQV,EAAKS,O,sCAQ1E,GACEmB,WAAY,CAACgE,KAAIA,EAAAA,GACjBtE,MAAO,CACLf,UAAW,CACTgB,KAAMC,QAGRiE,QAAS,CACPlE,KAAMC,QAGRf,KAAM,CACJc,KAAMC,QAGRqE,SAAU,CACRtE,KAAME,QACNC,SAAS,GAGX4D,UAAW,CAAC,GAGd7C,QAAS,CACP+C,OAAAA,GACE,GAAIhK,KAAKqK,SACP,OAAO,EAEJrK,KAAKsK,QAAQ/E,qBAChByC,EAAAA,EAAIC,KAAK,iBACb,I,UCpCJ,MAAM9B,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS0D,GAAQ,CAAC,YAAY,qBAEzF,O,uFCRO3F,MAAM,kB,0DAAXE,EAAAA,EAAAA,IAIM,MAJNC,EAIM,CAH0CG,EAAA2F,KAAKnG,SAAM,WAAzDI,EAAAA,EAAAA,IAA2D,O,MAAtDF,MAAM,OAAQqG,IAAK/F,EAAA2F,IAAMK,IAAKhG,EAAAgG,K,WAEtB3F,EAAA4F,WAAWzG,SAAM,WAD9BI,EAAAA,EAAAA,IACkC,K,MAD/BF,OAAKc,EAAAA,EAAAA,IAAA,CAAC,OAAeH,EAAA4F,YAAYnB,OAAKoB,EAAAA,EAAAA,IAAA,CAAApJ,MAAUkD,EAAAlD,S,2BAMvD,OACEwE,MAAO,CACL5B,MAAO,CACL6B,KAAMC,QAERmE,IAAK,CACHpE,KAAMC,QAER1E,MAAO,CACLyE,KAAMC,OACNE,QAAS,IAEXsE,IAAK,CACHzE,KAAMC,OACNE,QAAS,KAIbM,SAAU,CACRiE,SAAAA,GACE,OAAOzK,KAAKkE,KACd,I,UCvBJ,MAAMiC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS0D,GAAQ,CAAC,YAAY,qBAEzF,O,kGCRS3F,MAAM,kB,uCAMLA,MAAM,oB,sGANdE,EAAAA,EAAAA,IAqBQ,QArBRC,EAqBQ,CApB8DG,EAAAmG,YAAS,WAA7EvG,EAAAA,EAAAA,IAGO,Q,MAHDF,OAAKc,EAAAA,EAAAA,IAAA,CAAC,eAAc,cAAwBR,EAAAoG,c,CACjBpG,EAAAmG,YAAS,WAAxCvG,EAAAA,EAAAA,IAA8D,Q,MAAxDF,MAAM,a,aAA8BgB,EAAAA,EAAAA,IAAQV,EAASqG,MAAH,K,2BACxBrG,EAAAmG,YAAS,WAAzCvG,EAAAA,EAAAA,IAA+D,Q,MAAzDF,MAAM,c,aAA+BgB,EAAAA,EAAAA,IAAQV,EAASqG,MAAH,K,iDAG3DvG,EAAAA,EAAAA,GAcO,OAdPa,EAcO,EAbLb,EAAAA,EAAAA,GAU8C,SAVvCJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,SAAQ,cAESR,EAAAoG,aADvB7E,KAAK,QAEJ7E,IAAKsD,EAAAqG,MAAM,GACXtJ,IAAKiD,EAAAqG,MAAM,GACXC,KAAMtG,EAAAsG,KACNT,SAAU7F,EAAA6F,SACVU,MAAOvG,EAAAuG,MACR5G,IAAI,QACH6G,QAAKtG,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOa,EAAAG,MAAM,QAAShB,IAAM,WACjCqG,SAAMvG,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOa,EAAAG,MAAM,SAAUhB,IAAM,Y,WAEjBJ,EAAAoG,YAAS,WAAnCxG,EAAAA,EAAAA,IAAuE,Q,MAAjEF,MAAM,Q,aAAyBgB,EAAAA,EAAAA,IAAQV,EAAMuG,OAAC5G,IAAI,S,+BAM9D,OACE0B,MAAO,CAAC,QAAS,UACjBC,MAAO,CACLiF,MAAO,CACLhF,KAAMmF,QAGRb,SAAU,CACRtE,KAAME,QACNC,SAAS,GAGX2E,MAAO,CACL9E,KAAMoF,MACNjF,QAASA,IAAM,CAAC,EAAG,MAGrB4E,KAAM,CACJ/E,KAAMmF,OACNhF,QAAS,GAGX0E,UAAW,CACT7E,KAAME,QACNC,SAAS,GAGXyE,UAAW,CACT5E,KAAME,QACNC,SAAS,K,UChDf,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS0D,GAAQ,CAAC,YAAY,qBAEzF,O,kLCHMvF,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,UAAQ,EACjBI,EAAAA,EAAAA,GAAmB,OAAdJ,MAAM,UAAK,K,GAEZA,MAAM,S,0CARhBE,EAAAA,EAAAA,IAYM,OAZDF,OAAKc,EAAAA,EAAAA,IAAA,CAAC,eAAc,CAAAqF,SAAoB7F,EAAA6F,YAAY5F,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAA,IAAAoF,IAAOlF,EAAAmG,SAAAnG,EAAAmG,WAAAjB,IAAO,Y,EAE1EzF,EAAAA,EAAAA,GAAiD,SAA1CyB,KAAK,WAAYqF,QAAS5G,EAAAuG,MAAQzF,GAAId,EAAAc,I,WAC7ChB,EAAAA,EAAAA,GAQQ,cANN+G,GAGA/G,EAAAA,EAAAA,GAEO,OAFPgH,EAEO,EADL9F,EAAAA,EAAAA,IAAQC,EAAAC,OAAA,kBAAAC,GAAA,U,CAOhB,OACE4F,KAAM,eACN1F,MAAO,CAAC,SACRC,MAAO,CACLR,GAAI,CACFS,KAAMC,QAGR+E,MAAO,CACLhF,KAAME,QACNC,SAAS,GAGXmE,SAAU,CACRtE,KAAME,QACNC,SAAS,IAIbe,QAAS,CACP+D,OAAAA,CAAQ7D,GACN,GAAInH,KAAKqK,SACP,OAAO,EAETrK,KAAK4F,MAAM,QAASuB,EACtB,I,UCnCJ,MAAMhB,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS0D,GAAQ,CAAC,YAAY,qBAEzF,O,sGCRO3F,MAAM,oB,SAIFA,MAAM,a,GACJA,MAAM,O,GACTI,EAAAA,EAAAA,GAAmC,OAA9BJ,MAAM,cAAa,SAAK,G,qBAI1BA,MAAM,O,GACTI,EAAAA,EAAAA,GAAyC,OAApCJ,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTI,EAAAA,EAAAA,GAA6C,OAAxCJ,MAAM,cAAa,mBAAe,G,qBAIpCA,MAAM,O,GACTI,EAAAA,EAAAA,GAAiD,OAA5CJ,MAAM,cAAa,uBAAmB,G,2BAIxCA,MAAM,O,GACTI,EAAAA,EAAAA,GAAyC,OAApCJ,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTI,EAAAA,EAAAA,GAAyC,OAApCJ,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTI,EAAAA,EAAAA,GAA2C,OAAtCJ,MAAM,cAAa,iBAAa,G,2BAIlCA,MAAM,O,GACTI,EAAAA,EAAAA,GAA8C,OAAzCJ,MAAM,cAAa,oBAAgB,G,GACnCA,MAAM,e,SAKRA,MAAM,O,GACTI,EAAAA,EAAAA,GAA+C,OAA1CJ,MAAM,cAAa,qBAAiB,G,qBAM1CA,MAAM,gB,GACJA,MAAM,0C,oDAWNA,MAAM,W,kBAGPI,EAAAA,EAAAA,GAA0B,KAAvBJ,MAAM,cAAY,S,GAArBsH,G,kBAYAlH,EAAAA,EAAAA,GAA8B,KAA3BJ,MAAM,kBAAgB,S,GAAzBuH,G,GAKDvH,MAAM,kB,SACJA,MAAM,gB,SACJA,MAAM,Y,SACJA,MAAM,W,SACNA,MAAM,S,SASVA,MAAM,e,SACJA,MAAM,Y,SACJA,MAAM,W,SACNA,MAAM,S,6LAtGnBE,EAAAA,EAAAA,IA+GM,MA/GNC,EA+GM,CA9GWqH,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,GAAA,CAAApC,IAAA,sBAE1BrE,EAAAA,EAAAA,IAiDQ0G,GAAA,CAjDDvH,MAAM,eAAeJ,IAAI,a,mBAC9B,IA+CM,CA/CuBuH,EAAAK,OAAOC,OAAI,WAAxC5H,EAAAA,EAAAA,IA+CM,MA/CNiH,EA+CM,EA9CJ/G,EAAAA,EAAAA,GAGM,MAHNgH,EAGM,CAFJnG,GACAb,EAAAA,EAAAA,GAAiD,OAA5CJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQwG,EAAaK,OAANE,Q,aAG1C3H,EAAAA,EAAAA,GAGM,MAHN4H,EAGM,CAFJC,GACA7H,EAAAA,EAAAA,GAA4D,OAAvDJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQwG,EAAwBK,OAAjBC,KAAKI,c,YAGxBV,EAAAK,OAAOC,KAAKK,UAAO,WAA1CjI,EAAAA,EAAAA,IAGM,MAHNkI,EAGM,CAFJC,GACAjI,EAAAA,EAAAA,GAAgE,OAA3DJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQwG,EAA4BK,OAArBC,KAAKK,QAAQG,U,8BAGvDlI,EAAAA,EAAAA,GAGM,MAHNmI,EAGM,CAFJC,GACApI,EAAAA,EAAAA,GAAwD,OAAnDJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQwG,EAAoBK,OAAbC,KAAKW,U,YAGxBjB,EAAAK,OAAOC,KAAKY,QAAQC,OAAI,WAA/CzI,EAAAA,EAAAA,IAGM,MAHN0I,EAGM,CAFJC,GACAzI,EAAAA,EAAAA,GAAmE,OAA9DJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQwG,EAA+BK,OAAxBC,KAAKY,OAAOC,KAAKG,S,6BAGpCtB,EAAAK,OAAOC,KAAKY,QAAQK,SAAM,WAAjD7I,EAAAA,EAAAA,IAGM,MAHN8I,EAGM,CAFJC,GACA7I,EAAAA,EAAAA,GAAmE,OAA9DJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQwG,EAA+BK,OAAxBC,KAAKY,OAAOK,OAAOG,O,6BAGtC1B,EAAAK,OAAOC,KAAKqB,aAAatH,OAAI,WAApD3B,EAAAA,EAAAA,IAGM,MAHNkJ,EAGM,CAFJC,GACAjJ,EAAAA,EAAAA,GAAiE,OAA5DJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQwG,EAA6BK,OAAtBC,KAAKqB,YAAYtH,O,6BAGpC2F,EAAAK,OAAOC,KAAKqB,aAAaG,OAAI,WAApDpJ,EAAAA,EAAAA,IAKM,MALNqJ,EAKM,CAJJC,GACApJ,EAAAA,EAAAA,GAEM,MAFNqJ,GAEMzI,EAAAA,EAAAA,IADDwG,EAAAK,OAAOC,KAAKqB,YAAYG,KAAKI,UAAW,KAAC1I,EAAAA,EAAAA,IAAGwG,EAAAK,OAAOC,KAAKqB,YAAYG,KAAKK,UAAW,KAAC3I,EAAAA,EAAAA,IAAGwG,EAAAK,OAAOC,KAAKqB,YAAYG,KAAKM,UAAQ,sBAI7GpC,EAAAK,OAAOC,KAAKqB,aAAaG,OAAI,WAApDpJ,EAAAA,EAAAA,IAGM,MAHN2J,EAGM,CAFJC,GACA1J,EAAAA,EAAAA,GAA0E,OAArEJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQwG,EAAsCK,OAA/BC,KAAKqB,YAAYG,KAAKS,W,8DAKpE3J,EAAAA,EAAAA,GA8BM,MA9BN4J,EA8BM,EA7BJ5J,EAAAA,EAAAA,GASM,MATN6J,EASM,EARJ7J,EAAAA,EAAAA,GAOQ,eANNA,EAAAA,EAAAA,GAKS,UALAyG,MAAOW,EAAA0C,SAASC,KAAOpD,SAAMvG,EAAA,KAAAA,EAAA,GAAAE,GAAA,KAAOwJ,SAASC,KAAOzJ,EAAOyC,OAAO0D,Q,gBACzE3G,EAAAA,EAAAA,IAGSkK,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHyB7C,EAAA8C,OAAK,CAAvBC,EAASJ,M,WAAzBjK,EAAAA,EAAAA,IAGS,U,aAFDc,EAAAA,EAAAA,KAASmJ,EAAK,GAAGK,cAAgBL,EAAKzK,MAAM,IAAI+K,QAAQ,IAAK,MAC5DlF,IAAK4E,EAAOD,SAAUK,EAAU1D,MAAOsD,G,+BAMtD/J,EAAAA,EAAAA,GAiBM,MAjBNsK,EAiBM,CAhBsE,WAAlBlD,EAAA0C,SAASC,OAAI,WAArEjK,EAAAA,EAAAA,IAGS,U,MAHDF,MAAM,kBAAkBK,MAAM,YAC7B8F,SAAUqB,EAAAC,QAAUlH,QAAKC,EAAA,KAAAA,EAAA,OAAAqF,IAAElF,GAAAgK,UAAAhK,GAAAgK,YAAA9E,K,yBAIpC3E,EAAAA,EAAAA,IAMW0J,GAAA,CAND3K,IAAI,0BAA0B,aAAW,YAAYI,MAAM,oB,mBACnE,IAAwF,EAAxFa,EAAAA,EAAAA,IAAwF2J,GAAA,CAA1E9J,KAAK,eAAgBoF,SAAUqB,EAAAC,QAAUlH,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEa,EAAAiB,MAAMsI,UAAUC,S,qBAEzDvD,EAAAK,OAAOC,MAAMI,c,WAClCR,EAAAA,EAAAA,IAAyFmD,GAAA,C,MAA3E9J,KAAK,eAAgBoF,SAAUqB,EAAAC,QAAUlH,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEC,GAAAqK,YAAW,K,wBAD5B,WAD7CtD,EAAAA,EAAAA,IACiDmD,GAAA,C,MADnC9J,KAAK,cAAeoF,SAAUqB,EAAAC,QAAUlH,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEC,GAAAqK,YAAW,K,uBAGxE9J,EAAAA,EAAAA,IAA+E2J,GAAA,CAAjE9J,KAAK,gBAAiBoF,SAAUqB,EAAAC,QAAUlH,QAAOI,GAAAsK,c,6CAGjE7K,EAAAA,EAAAA,GAES,UAFDJ,MAAM,kBAAkBK,MAAM,kBAAmB8F,SAAUqB,EAAAC,QAAUlH,QAAKC,EAAA,KAAAA,EAAA,OAAAqF,IAAElF,GAAAuK,SAAAvK,GAAAuK,WAAArF,K,YAMxFzF,EAAAA,EAAAA,GAwBM,MAxBN+K,EAwBM,CAvB8C,YAAlB3D,EAAA0C,SAASC,OAAI,WAA7CjK,EAAAA,EAAAA,IAUM,MAVNkL,EAUM,CATyBhP,OAAOC,KAAKmL,EAAA6D,SAASvL,QAES,iBAFH,WAAxDI,EAAAA,EAAAA,IAGM,MAHNoL,EAGM,CAFuB9D,EAAAC,UAAO,WAAlCvH,EAAAA,EAAAA,IAA4D,MAA5DqL,EAAoC,yBAAkB,WACtDrL,EAAAA,EAAAA,IAA+D,MAA/DsL,EAA0B,yCAA+B,aAG3DtL,EAAAA,EAAAA,IAGyFkK,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAH1D7C,EAAA6D,SAAO,CAAtBI,EAAQrK,M,WAAxBsG,EAAAA,EAAAA,IAGyFgE,GAAA,CAHhDnG,IAAKnE,EACrCqK,OAAQA,EAASE,OAAQnE,EAAAmE,OAASzB,SAAU1C,EAAA0C,SAAS0B,WAAaxK,EAClEyK,SAAMnL,GAAE8G,EAAA0C,SAAS0B,SAAWpE,EAAA0C,SAAS0B,WAAaxK,EAAK,KAAOA,EAC9D0K,SAAQnL,GAAAoL,eAAiBC,SAAQrL,GAAAoL,eAAiBE,aAAatL,GAAAuL,e,mGAGpB,WAAlB1E,EAAA0C,SAASC,OAAI,WAAjDjK,EAAAA,EAAAA,IAUM,MAVNiM,EAUM,CATyB/P,OAAOC,KAAKmL,EAAAmE,QAAQ7L,QAEa,iBAFP,WAAvDI,EAAAA,EAAAA,IAGM,MAHNkM,EAGM,CAFuB5E,EAAAC,UAAO,WAAlCvH,EAAAA,EAAAA,IAA2D,MAA3DmM,EAAoC,wBAAiB,WACrDnM,EAAAA,EAAAA,IAAkE,MAAlEoM,EAA0B,4CAAkC,aAG9DpM,EAAAA,EAAAA,IAG+EkK,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHlD7C,EAAAmE,QAAM,CAApBY,EAAOnL,M,WAAtBsG,EAAAA,EAAAA,IAG+E8E,GAAA,CAHzCjH,IAAKnE,EAAKmL,MAAOA,EAAQlB,QAAS7D,EAAA6D,QAChEnB,SAAU1C,EAAA0C,SAASuC,UAAYrL,EAC/ByK,SAAMnL,GAAE8G,EAAA0C,SAASuC,QAAUjF,EAAA0C,SAASuC,UAAYrL,EAAK,KAAOA,EAC5D0K,SAAQnL,GAAAuL,cAAgBF,SAAQrL,GAAAuL,cAAgBQ,OAAM/L,GAAAuL,e,4OCrGzDlM,MAAM,U,sDAOXI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,kBAAgB,EACzBI,EAAAA,EAAAA,GAAmC,UAA3ByB,KAAK,UAAS,UAAI,K,6BAQ3B7B,MAAM,U,IACJA,MAAM,O,YACTI,EAAAA,EAAAA,GAAkC,OAA7BJ,MAAM,cAAa,QAAI,K,IACvBA,MAAM,e,iBAOCA,MAAM,W,YAERI,EAAAA,EAAAA,GAA4B,KAAzBJ,MAAM,gBAAc,W,IAAvBuI,I,YAGFnI,EAAAA,EAAAA,GAES,UAFDyB,KAAK,SAAS7B,MAAM,mB,EAC1BI,EAAAA,EAAAA,GAA2B,KAAxBJ,MAAM,kBAAa,K,uBAQtBA,MAAM,W,YAERI,EAAAA,EAAAA,GAA0B,KAAvBJ,MAAM,cAAY,W,IAArB2M,I,IAOL3M,MAAM,O,YACTI,EAAAA,EAAAA,GAA0C,OAArCJ,MAAM,cAAa,gBAAY,K,6BAIjCA,MAAM,O,YACTI,EAAAA,EAAAA,GAA6C,OAAxCJ,MAAM,cAAa,mBAAe,K,uBAIpCA,MAAM,O,YACTI,EAAAA,EAAAA,GAAkC,OAA7BJ,MAAM,cAAa,QAAI,K,6BAIzBA,MAAM,O,YACTI,EAAAA,EAAAA,GAAoC,OAA/BJ,MAAM,cAAa,UAAM,K,IACzBA,MAAM,e,UAKRA,MAAM,O,YACTI,EAAAA,EAAAA,GAAmC,OAA9BJ,MAAM,cAAa,SAAK,K,IACxBA,MAAM,e,UAKRA,MAAM,O,YACTI,EAAAA,EAAAA,GAAsC,OAAjCJ,MAAM,cAAa,YAAQ,K,IAC3BA,MAAM,e,UAKRA,MAAM,O,YACTI,EAAAA,EAAAA,GAAyC,OAApCJ,MAAM,cAAa,eAAW,K,IAC9BA,MAAM,e,UAKRA,MAAM,O,YACTI,EAAAA,EAAAA,GAA+C,OAA1CJ,MAAM,cAAa,qBAAiB,K,IACpCA,MAAM,e,UAKRA,MAAM,O,YACTI,EAAAA,EAAAA,GAAuC,OAAlCJ,MAAM,cAAa,aAAS,K,IAC5BA,MAAM,e,UAKRA,MAAM,O,YACTI,EAAAA,EAAAA,GAA0C,OAArCJ,MAAM,cAAa,gBAAY,K,IAC/BA,MAAM,e,UAKRA,MAAM,kB,YACTI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,UAAQ,EACjBI,EAAAA,EAAAA,GAA+B,OAA1BJ,MAAM,SAAQ,YAAM,K,IAGtBA,MAAM,Q,IAEFA,MAAM,c,UAEHA,MAAM,Q,0CAMTA,MAAM,e,kOAqCZA,MAAM,mB,YACTI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,UAAQ,EACjBI,EAAAA,EAAAA,GAAgC,OAA3BJ,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,YAEPI,EAAAA,EAAAA,GAA2C,OAAtCJ,MAAM,cAAa,iBAAa,K,YACrCI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,eAAa,EACtBI,EAAAA,EAAAA,GAAiC,KAA9BJ,MAAM,0BAAqB,K,IAFhC4M,GACAC,I,UAMK7M,MAAM,c,UACNA,MAAM,c,YACXI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,eAAa,EACtBI,EAAAA,EAAAA,GAA4B,KAAzBJ,MAAM,qBAAgB,K,YAK3BI,EAAAA,EAAAA,GAA2C,OAAtCJ,MAAM,cAAa,iBAAa,K,YACrCI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,eAAa,EACtBI,EAAAA,EAAAA,GAAyB,KAAtBJ,MAAM,kBAAa,K,IAFxB8M,GACAC,I,YAMA3M,EAAAA,EAAAA,GAAiD,OAA5CJ,MAAM,cAAa,uBAAmB,K,YAC3CI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,eAAa,EACtBI,EAAAA,EAAAA,GAAyB,KAAtBJ,MAAM,kBAAa,K,IAFxBgN,GACAC,I,2IA1MV/M,EAAAA,EAAAA,IAiNM,OAjNDF,OAAKc,EAAAA,EAAAA,IAAA,CAAC,cAAa,CAAAoJ,SAAoB5J,EAAA4J,a,CAC3B1C,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAApC,IAAA,sBAE1BrE,EAAAA,EAAAA,IAeQ0G,EAAA,CAfD5H,MAAM,eAAeC,IAAI,cAAcI,MAAM,iB,mBAClD,IAA0B,CAAXmH,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAApC,IAAA,sBAE1BnF,EAAAA,EAAAA,GAWO,QAXDJ,MAAM,UAAWkN,SAAM1M,EAAA,KAAAA,EAAA,IAAAC,EAAAA,GAAAA,KAAA,IAAAoF,IAAUlF,EAAAwM,cAAAxM,EAAAwM,gBAAAtH,IAAY,e,EACjDzF,EAAAA,EAAAA,GAKM,MALND,GAKM,gBAJJD,EAAAA,EAAAA,IAGQkK,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHuC/J,EAAAqL,QAAM,CAApBY,EAAOnL,M,WAAxClB,EAAAA,EAAAA,IAGQ,SAHDF,MAAM,YAA2CuF,IAAKnE,G,EAC3DhB,EAAAA,EAAAA,GAAuF,SAAhFyB,KAAK,WAAYgF,MAAOzF,EAAK8F,QAASvG,EAAAyM,iBAAiBC,IAAIzP,SAAS2O,EAAMnL,M,YACjFhB,EAAAA,EAAAA,GAAyG,QAAnGJ,MAAM,O,aAAOgB,EAAAA,EAAAA,IAAQuL,EAAMe,eAAexN,OAASyM,EAAMe,cAAgB,WAAWf,EAAMnL,Q,wBAIpGH,IAEM,O,WAIVb,EAAAA,EAAAA,GACqF,OADhFJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,kCAAiC,CAAAoJ,SAAoB5J,EAAA4J,Y,aAC3DlJ,EAAAA,EAAAA,IAAQV,EAA4CmL,OAArC6B,eAAiBhN,EAAAmL,OAAO8B,cAAehN,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEa,EAAAG,MAAM,Y,YAE9CpB,EAAA4J,WAAQ,WAAlChK,EAAAA,EAAAA,IAyLM,MAzLN8H,GAyLM,EAxLJ5H,EAAAA,EAAAA,GA8BM,MA9BN6H,GA8BM,CA7BJuF,IACApN,EAAAA,EAAAA,GA2BM,MA3BNgI,GA2BM,EA1BJhI,EAAAA,EAAAA,GAgBM,OAhBDJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,YAAW,CAAA2M,QAAmBjG,EAAAkG,a,EACvCtN,EAAAA,EAAAA,GAcO,QAdA8M,SAAM1M,EAAA,KAAAA,EAAA,IAAAC,EAAAA,GAAAA,KAAA,IAAAoF,IAAUlF,EAAAgN,QAAAhN,EAAAgN,UAAA9H,IAAM,e,EAC3BzF,EAAAA,EAAAA,GAEQ,eADNA,EAAAA,EAAAA,GAAwE,SAAjEyB,KAAK,OAAOwF,KAAK,OAAOpH,IAAI,OAAQ4G,MAAOvG,EAAAmL,OAAO6B,e,cAG3DlN,EAAAA,EAAAA,GAQO,OARPwN,GAQO,EAPLxN,EAAAA,EAAAA,GAES,UAFDyB,KAAK,SAAS7B,MAAM,kBAAmBO,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAE8G,EAAAkG,UAAW,I,IAIjEG,MAES,SAKfzN,EAAAA,EAAAA,GAOM,OAPDJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,YAAW,CAAA2M,OAAkBjG,EAAAkG,a,EACtCtN,EAAAA,EAAAA,GAA2C,Q,aAArCY,EAAAA,EAAAA,IAAQV,EAAqBmL,OAAd6B,gB,YACrBlN,EAAAA,EAAAA,GAIO,OAJPyI,GAIO,EAHLzI,EAAAA,EAAAA,GAES,UAFDyB,KAAK,SAAS7B,MAAM,kBAAmBO,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAE8G,EAAAkG,UAAW,I,eAQzEtN,EAAAA,EAAAA,GAGM,MAHN6I,GAGM,CAFJ6E,IACA1N,EAAAA,EAAAA,GAA4D,OAAvDJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQV,EAAoBmL,OAAb8B,e,aAGnBjN,EAAAmL,OAAOsC,kBAAe,WAA7C7N,EAAAA,EAAAA,IAGM,MAHNmJ,GAGM,CAFJ2E,IACA5N,EAAAA,EAAAA,GAA+D,OAA1DJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQV,EAAuBmL,OAAhBsC,kB,+BAG1C3N,EAAAA,EAAAA,GAGM,MAHNoJ,GAGM,CAFJC,IACArJ,EAAAA,EAAAA,GAAoD,OAA/CJ,MAAM,c,aAAcgB,EAAAA,EAAAA,IAAQV,EAAYmL,OAAL5J,O,aAGnBvB,EAAAmL,OAAOwC,YAAYC,SAAM,WAAhDhO,EAAAA,EAAAA,IAKM,MALN4J,GAKM,CAJJqE,IACA/N,EAAAA,EAAAA,GAEM,MAFN4J,IAEMhJ,EAAAA,EAAAA,IADDV,EAAAmL,OAAOwC,WAAWC,QAAM,sBAIR5N,EAAAmL,OAAOwC,YAAYG,QAAK,WAA/ClO,EAAAA,EAAAA,IAKM,MALN+J,GAKM,CAJJoE,IACAjO,EAAAA,EAAAA,GAEM,MAFNkO,IAEMtN,EAAAA,EAAAA,IADDV,EAAAmL,OAAOwC,WAAWG,OAAK,sBAIP9N,EAAAmL,OAAO8C,WAAQ,WAAtCrO,EAAAA,EAAAA,IAKM,MALNwK,GAKM,CAJJ8D,IACApO,EAAAA,EAAAA,GAEM,MAFNkH,IAEMtG,EAAAA,EAAAA,IADDV,EAAAmL,OAAO8C,UAAQ,sBAICjO,EAAAmL,OAAOwC,YAAYQ,cAAW,WAArDvO,EAAAA,EAAAA,IAKM,MALNwO,GAKM,CAJJC,IACAvO,EAAAA,EAAAA,GAEM,MAFNmH,IAEMvG,EAAAA,EAAAA,IADDV,EAAAmL,OAAOwC,WAAWQ,aAAW,sBAIbnO,EAAAmL,OAAOmD,oBAAiB,WAA/C1O,EAAAA,EAAAA,IAKM,MALN2O,GAKM,CAJJ1D,IACA/K,EAAAA,EAAAA,GAEM,MAFNgL,IAEMpK,EAAAA,EAAAA,IADDV,EAAAmL,OAAOmD,mBAAiB,sBAIRtO,EAAAmL,OAAOwC,YAAYa,YAAS,WAAnD5O,EAAAA,EAAAA,IAKM,MALNoL,GAKM,CAJJC,IACAnL,EAAAA,EAAAA,GAEM,MAFNoL,IAEMxK,EAAAA,EAAAA,IADDV,EAAAmL,OAAOwC,WAAWa,WAAS,sBAIXxO,EAAAmL,OAAOsD,eAAY,WAA1C7O,EAAAA,EAAAA,IAKM,MALNiM,GAKM,CAJJC,IACAhM,EAAAA,EAAAA,GAEM,MAFNiM,IAEMrL,EAAAA,EAAAA,IADDV,EAAAmL,OAAOsD,cAAY,sBAIQ3S,OAAOC,KAAKsE,EAAAqO,iBAAiBlP,SAAM,WAArEI,EAAAA,EAAAA,IAkDM,MAlDNoM,GAkDM,CAjDJ2C,IAIA7O,EAAAA,EAAAA,GA4CM,MA5CN8O,GA4CM,gBA3CJhP,EAAAA,EAAAA,IA0CMkK,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IA1C6C1J,EAAAqO,iBAAe,CAAnCnI,EAAOsI,M,WAAtCjP,EAAAA,EAAAA,IA0CM,OA1CDF,MAAM,YAA0DuF,IAAK4J,G,EACxE/O,EAAAA,EAAAA,GAMM,MANNgP,GAMM,mBALDvI,EAAM4H,aAAc,IACvB,GAAqC,MAAZ9N,EAAA0O,UAAuC,MAAlBxI,EAAMA,OAAOtK,GAA+B,MAAlBsK,EAAMA,OAAO/I,GAAsE,MAAhB+I,EAAMA,OAAO9K,KAAsC,MAAvB8K,EAAMA,OAAOyI,aAAU,WAA9LpP,EAAAA,EAAAA,IACoG,OADpGqP,GACwF,WAAK,eAC5C1I,EAAMsI,WAAQ,WAA/DjP,EAAAA,EAAAA,IAAmE,Q,MAA7DF,MAAM,O,aAAOgB,EAAAA,EAAAA,IAAQ6F,EAAMsI,W,4BACYtI,EAAM2I,OAAI,WAAvDtP,EAAAA,EAAAA,IAA2D,Q,MAArDF,MAAM,O,aAAOgB,EAAAA,EAAAA,IAAQ6F,EAAM2I,O,+BAGnCpP,EAAAA,EAAAA,GAgCM,MAhCNqP,GAgCM,CA9B2D,WAAf5I,EAAMhF,OAAI,WAD1D6F,EAAAA,EAAAA,IAEiDgI,EAAA,C,MAFlC7I,MAAyB,MAAlBA,EAAM8I,SAAmB9I,EAAMA,QAAUA,EAAM8I,WAAa9I,EAAMA,MACzEV,UAAWU,EAAM+I,SACjB9I,QAAKpG,GAAEC,EAAAkP,SAAShJ,EAAOnG,I,wCAIJ,YAAfmG,EAAMhF,MAAyC,MAAnBgF,EAAMiJ,WAAwC,MAAnBjJ,EAAMkJ,YAAS,WAFzFrI,EAAAA,EAAAA,IAEqGsI,EAAA,C,MAF5F,cAAY,EAAOrJ,MAAK,CAAGE,EAAMiJ,UAAWjJ,EAAMkJ,WAAalJ,MAAOA,EAAMA,MAC5EV,UAAWU,EAAM+I,SAAW7I,SAAMrG,GAAEC,EAAAkP,SAAShJ,EAAOnG,I,iDAG5B,YAAfmG,EAAMhF,MAA0C,MAAnBgF,EAAMiJ,WAAwC,MAAnBjJ,EAAMkJ,UAK/C,SAAflJ,EAAMhF,OAAI,WAA5B3B,EAAAA,EAAAA,IAOQ,QAAA+P,GAAA,EANN7P,EAAAA,EAAAA,GAKS,UALAyG,MAAOA,EAAMqJ,UAA2B,MAAfrJ,EAAMA,MAAgBA,EAAMA,MAAQ,GAC7DE,SAAMrG,GAAEC,EAAAkP,SAAShJ,EAAOnG,I,CAChBmG,EAAMqJ,UAAY,iBAAJ,WAA7BhQ,EAAAA,EAAAA,IAAiC,SAAAiQ,OAAA,aACjCjQ,EAAAA,EAAAA,IAC2FkK,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IADlExD,EAAMuJ,QAAhBC,K,WAAfnQ,EAAAA,EAAAA,IAC2F,UADnDqF,IAAK8K,EAASxJ,MAAOwJ,E,aAAQrP,EAAAA,EAAAA,IAAQqP,GACpEnG,SAAUrD,EAAMqJ,UAAYrJ,EAAMA,QAAUwJ,EAASlK,UAAWU,EAAM+I,U,+BAIrD,MAAZjP,EAAA0O,UAAuC,MAAlBxI,EAAMA,OAAOtK,GAA+B,MAAlBsK,EAAMA,OAAO/I,GAA+D,MAAhB+I,EAAMA,OAAO9K,KAAsC,MAAvB8K,EAAMA,OAAOyI,aAAU,WAAhLpP,EAAAA,EAAAA,IAIQ,QAAAoQ,GAAA,EAFNlQ,EAAAA,EAAAA,GAC0H,SADnHyB,KAAK,QAASkF,UAAMtG,EAAAA,GAAAA,KAAAC,GAAOC,EAAAkP,SAAShJ,EAAOnG,IAAM,UAChDmG,MAAK,IAAQlG,EAAA0O,SAAS3Q,KAAK6R,IAAQA,EAAIvJ,OAAOuJ,GAAG1Q,SAAS,IAAyB,IAAb0Q,EAAEzQ,OAAe,IAAMyQ,EAAIA,KAAKxQ,KAAK,K,4BAGrHG,EAAAA,EAAAA,IAEQ,QAAAsQ,GAAA,EADNpQ,EAAAA,EAAAA,GAAwG,SAAjGyB,KAAK,OAAQsE,UAAWU,EAAM+I,SAAW/I,MAAOA,EAAMA,MAAQE,SAAMrG,GAAEC,EAAAkP,SAAShJ,EAAOnG,I,iBArBN,WAAzFR,EAAAA,EAAAA,IAGQ,QAAAuQ,GAAA,EAFNrQ,EAAAA,EAAAA,GAC2C,SADpCyB,KAAK,SAAU,cAAY,EAAOgF,MAAOA,EAAMA,MAAQV,UAAWU,EAAM+I,SACvE7I,SAAMrG,GAAEC,EAAAkP,SAAShJ,EAAOnG,I,kDA0B1CN,EAAAA,EAAAA,GAmCM,MAnCNsQ,GAmCM,CAlCJC,IAIAvQ,EAAAA,EAAAA,GA6BM,MA7BNwQ,GA6BM,EA5BJxQ,EAAAA,EAAAA,GAKM,OALDJ,MAAM,MAAOO,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEa,EAAAiB,MAAMqO,YAAY9F,S,KAO3C3K,EAAAA,EAAAA,GAMM,OANDJ,MAAM,MAAOO,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAE8G,EAAAsJ,oBAAsBnQ,EAAAoQ,oBAAsBpQ,EAAAqQ,oB,CACpCxJ,EAAAsJ,sBAAsC,WACrE5Q,EAAAA,EAAAA,IAAoD,MAApD+Q,GAA+B,sBADmB,WAAlD/Q,EAAAA,EAAAA,IAA2E,MAA3EgR,GAAoD,sBAEpDC,MAKF/Q,EAAAA,EAAAA,GAKM,OALDJ,MAAM,MAAOO,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEC,EAAAyD,QAAO,K,KAOhChE,EAAAA,EAAAA,GAKM,OALDJ,MAAM,YAAaO,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEC,EAAAyD,QAAO,K,+EAoBhD,IACEiD,KAAM,SACNnF,WAAY,CAACkP,MAAK,KAAEC,aAAY,KAAEC,OAAM,KAAEC,QAAOA,GAAAA,GACjDC,OAAQ,CAACC,GAAAA,GACT9P,MAAO,CAAC,SAAU,SAAU,SAAU,eAEtCC,MAAO,CACL6J,OAAQ,CACN5J,KAAMzF,OACNsV,UAAU,GAGZ/F,OAAQ,CACN9J,KAAMzF,OACN4F,QAASA,QAGXkI,SAAU,CACRrI,KAAME,QACNC,SAAS,IAIbI,IAAAA,GACE,MAAO,CACLsL,UAAU,EACVjG,SAAS,EACTI,OAAQ,CAAC,EACTiJ,qBAAqB,EAEzB,EAEAxO,SAAU,CACR8N,MAAAA,GACE,IAAKtU,KAAK2P,OAAOwC,YAAY0D,QAC3B,MAAO,CAAC,EAEV,MAAMC,EAAiBxB,IACrB,MAAMyB,EAAeA,CAAChL,EAAOiL,KAC3B,GAAKjL,EAAMkL,SAAX,CAOIlL,EAAMsI,WACR2C,EAAKjL,EAAMsI,UAAY2C,EAAKjL,EAAMsI,WAAa,CAAC,EAChD2C,EAAOA,EAAKjL,EAAMsI,WAGpB,IAAK,MAAM6C,KAAWnL,EAAMkL,SAC1BF,EAAaG,EAASF,EARxB,MAJMjL,EAAMsI,WACR2C,EAAKjL,EAAMsI,UAAYtI,EAWE,EAGzBoL,EAAM,CAAC,EACb,IAAK,MAAMpL,KAASuJ,EAClByB,EAAahL,EAAOoL,GAEtB,OAAOA,CAAE,EAGX,OAAOL,EAAc9V,KAAK2P,OAAOwC,WAAW0D,QAC9C,EAEA3C,eAAAA,GACE,MAAMiD,EAAM,CAAC,EACPC,EAAcA,CAACC,GAAM5M,EAAKsB,MAC1BtB,KAAOzJ,KAAK+L,SACdhB,EAAQ,IACHA,EACHA,MAAO/K,KAAK+L,OAAOtC,KAGH,MAAhBsB,EAAMuL,SACRvL,EAAMqJ,YAA6B,EAAfrJ,EAAMuL,QAC1BvL,EAAM+I,YAA6B,EAAf/I,EAAMuL,eACnBvL,EAAMuL,QAGfD,EAAI5M,GAAOsB,EACXzK,OAAOiW,QAAQxL,GAAOyL,QAAQC,GAAMA,EAAE,aAAcnW,SAAQoW,OAAON,EAAaC,EAAI5M,IAC7E4M,GAIT,OADA/V,OAAOiW,QAAQvW,KAAKsU,QAAQoC,OAAON,EAAaD,GACzCA,CACT,EAEA5C,QAAAA,GACE,IAAKvT,KAAKkT,gBAAgB5R,MACxB,OAEF,MAAMA,EAAQtB,KAAKkT,gBAAgB5R,OAAOyJ,MAC1C,GAAKzJ,EAAL,CAGA,GAAe,MAAXA,EAAMb,GAAwB,MAAXa,EAAMU,EAAW,CACtC,MAAM2U,EAAY,IAAI9W,GAAAA,EAAe,CACnCM,IAAK,CAACH,KAAKkT,gBAAgBjR,YAAY+R,WAAa,EAAGhU,KAAKkT,gBAAgBjR,YAAYgS,WAAa,OAGvG,OAAO0C,EAAU5U,QAAQT,EAAMb,EAAGa,EAAMU,EAAGhC,KAAKkT,gBAAgBjR,WAAW8I,MAC7E,CACA,GAAiB,MAAbzJ,EAAMrB,MAAoC,MAApBqB,EAAMkS,YAAmC,MAAblS,EAAMpB,KAAc,CACxE,MAAM0W,EAA8B,MAApBtV,EAAMkS,WAAqB,aAAe,MACpDmD,EAAY,IAAI9W,GAAAA,EAAe,CACnCI,IAAK,CAACD,KAAKkT,gBAAgB5R,MAAMrB,KAAK+T,WAAa,EAAGhU,KAAKkT,gBAAgB5R,MAAMrB,IAAIgU,WAAa,OAClG/T,IAAK,CAACF,KAAKkT,gBAAgB5R,MAAMsV,IAAU5C,WAAa,EAAGhU,KAAKkT,gBAAgB5R,MAAMsV,GAAS3C,WAAa,KAC5G9T,IAAK,CAACH,KAAKkT,gBAAgBjR,YAAY+R,WAAa,EAAGhU,KAAKkT,gBAAgBjR,YAAYgS,WAAa,OAGvG,OAAO0C,EAAU/V,SAASU,EAAMrB,IAAKqB,EAAMsV,GAAU5W,KAAKkT,gBAAgBjR,WAAW8I,MACvF,CAEA,OAAO,IApBC,CAqBV,EAEAuG,gBAAAA,GACE,OAAO,IAAIuF,IAAIvW,OAAOgU,OAAOtU,KAAK6P,QAC7B2G,QAAQ/F,GAAU,IAAIoG,KAClBpG,EAAMqG,SAAW,IAAIlU,KAAKmU,GAAWA,EAAOtF,gBAAeF,IAAIvR,KAAK2P,OAAO8B,gBAC/E7O,KAAK6N,GAAU3O,SAAS2O,EAAMnL,MACrC,GAGF2B,QAAS,CACP,aAAMmI,GACJpP,KAAK2L,SAAU,EACf,IACE3L,KAAK+L,aAAe/L,KAAKgX,QAAQ,yBAC7B,CAACrH,OAAQ3P,KAAK2P,OAAO6B,eAAiBxR,KAAK2P,OAAO8B,cACxD,CAAE,QACAzR,KAAK2L,SAAU,CACjB,CACF,EAEA,YAAMkG,GACJ,MAAMtG,GAAQvL,KAAK0G,MAAM6E,KAAKR,OAAS,IAAIkM,OAC3C,GAAK1L,EAAKvH,QAAUuH,IAASvL,KAAK2P,OAAO6B,cAAzC,CAGAxR,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAQ,4BAA6B,CAC9CrH,OAAQ3P,KAAK2P,OAAO6B,eAAexN,OAAShE,KAAK2P,OAAO6B,cAAgBxR,KAAK2P,OAAO8B,aACpFlG,KAAMA,IAGRvL,KAAK4F,MAAM,SAAU,CAAC2F,KAAMvL,KAAK2P,OAAO6B,cAAe0F,QAAS3L,GAClE,CAAE,QACAvL,KAAK4R,UAAW,EAChB5R,KAAK2L,SAAU,CACjB,CAbQ,CAcV,EAEA,YAAMrD,CAAO6O,GACX,GAAKC,QAAQ,6EAAb,CAGAD,IAAUA,EACVnX,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAQ,4BAA6B,CAC9CrH,OAAQ3P,KAAK2P,OAAO6B,eAAexN,OAAShE,KAAK2P,OAAO6B,cAAgBxR,KAAK2P,OAAO8B,aACpF0F,MAAOA,IAGTnX,KAAK4F,MAAM,SAAU,CAAC+J,OAAQ3P,KAAK2P,OAAO6B,eAAiBxR,KAAK2P,OAAO8B,cACzE,CAAE,QACAzR,KAAK2L,SAAU,CACjB,CAbQ,CAcV,EAEA,cAAMoI,CAAShJ,EAAO5D,GACpB,MAAM6P,EAAU,CACdrH,OAAQ3P,KAAK2P,OAAO6B,eAAiBxR,KAAK2P,OAAO8B,aACjD4B,SAAUtI,EAAMsI,SAChBtI,MAAO,MAGT,OAAQA,EAAMhF,MACZ,IAAK,SACCgF,EAAMsM,aACRL,EAAQjM,MAAQA,EAAMsM,aACbtM,EAAM8I,UAAY9I,EAAMuM,UACjCN,EAAQjM,MAAQA,EAAMA,QAAUA,EAAM8I,SAAW9I,EAAMuM,UAAYvM,EAAM8I,SAEzEmD,EAAQjM,OAASA,EAAMA,MAEzB,MAEF,IAAK,UACHiM,EAAQjM,MAAQhI,WAAWoE,EAAME,OAAO0D,OACxC,MAEF,IAAK,OACC5D,EAAME,OAAO0D,OAAO/G,SACtBgT,EAAQjM,MAAQ5D,EAAME,OAAO0D,OAE/B,MAEF,QACE,GAAgB,MAAXA,EAAMtK,GAAwB,MAAXsK,EAAM/I,GAA4B,MAAb+I,EAAM9K,MAAoC,MAApB8K,EAAMyI,YAAmC,MAAbzI,EAAM7K,KAAe,CAClH8W,EAAQ3D,SAAW,QACnB,MAAMnQ,EAAMiE,EAAME,OAAO0D,MAAMnH,MAAM,GAChC2T,MAAM,oBACNf,QAAO,CAAC3S,EAAG4Q,IAAMA,EAAI,IACrB7R,KAAK6R,GAAM3S,SAAS2S,EAAG,MAE5B,GAAgB,MAAX1J,EAAMtK,GAAwB,MAAXsK,EAAM/I,EAAY,CACxC,MAAM2U,EAAY,IAAI9W,GAAAA,EAAe,CACnCM,IAAK,CAACH,KAAKkT,gBAAgBjR,YAAY+R,WAAa,EAAGhU,KAAKkT,gBAAgBjR,YAAYgS,WAAa,OAGjG7Q,EAAKuT,EAAU7T,WAAWI,GAChC8T,EAAQjM,MAAQ,CACdtK,EAAG2C,EAAG,GACNpB,EAAGoB,EAAG,GAEV,KAAO,CACL,MAAMwT,EAAmD,MAAzC5W,KAAKkT,gBAAgB5R,MAAMkS,WAAqB,aAAe,MACzEmD,EAAY,IAAI9W,GAAAA,EAAe,CACnCI,IAAK,CAACD,KAAKkT,gBAAgB5R,MAAMrB,KAAK+T,WAAa,EAAGhU,KAAKkT,gBAAgB5R,MAAMrB,IAAIgU,WAAa,OAClG/T,IAAK,CAACF,KAAKkT,gBAAgB5R,MAAMsV,IAAU5C,WAAa,EAAGhU,KAAKkT,gBAAgB5R,MAAMsV,GAAS3C,WAAa,KAC5G9T,IAAK,CAACH,KAAKkT,gBAAgBjR,YAAY+R,WAAa,EAAGhU,KAAKkT,gBAAgBjR,YAAYgS,WAAa,OAGjGuD,EAAMb,EAAUlV,YAAYyB,GAClC8T,EAAQjM,MAAQ,CACd9K,IAAKuX,EAAI,IAGXR,EAAQjM,MAAM6L,GAAWY,EAAI,EAC/B,CACF,CACA,MAGJ,GAAqB,MAAjBR,EAAQjM,MAAZ,CAGA/K,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAQ,yBAA0BA,SACvChX,KAAKoP,SACb,CAAE,QACApP,KAAK2L,SAAU,CACjB,CARQ,CASV,EAEA,kBAAM0F,CAAalK,GACjB,MAAM0I,EAAS,IAAI1I,EAAME,OAAOoQ,iBAAiB,yBAAyBf,QAAO,CAACL,EAAKjP,KACrF,MAAMuJ,EAAU7O,SAASsF,EAAQ2D,OAMjC,OALI3D,EAAQgE,UAAYpL,KAAKsR,iBAAiBC,IAAIZ,GAChD0F,EAAIhN,IAAIA,IAAIsH,IACJvJ,EAAQgE,SAAWpL,KAAKsR,iBAAiBC,IAAIZ,IACrD0F,EAAI/N,OAAOe,IAAIsH,GAEV0F,CAAE,GACR,CAAChN,IAAK,IAAIwN,IAAOvO,OAAQ,IAAIuO,MAE1Ba,EAAaC,gBACXC,QAAQC,IAAI,IAAIhI,EAAOiI,IAASlV,KAAI+U,gBAClC3X,KAAKgX,QAAS,qBAAoBc,WAAiB,CACvDrH,MAAOzQ,KAAK6P,OAAOc,GAASa,cAC5B7B,OAAQ3P,KAAK2P,OAAO6B,eAAexN,OAAShE,KAAK2P,OAAO6B,cAAgBxR,KAAK2P,OAAO8B,cACpF,IACD,EAGLzR,KAAK2L,SAAU,EACf,UACQiM,QAAQC,IAAIvX,OAAOC,KAAKsP,GAAQjN,IAAI8U,IAC1C1X,KAAK4F,MAAM,cAAeiK,EAC5B,CAAE,QACA7P,KAAK2L,SAAU,CACjB,CACF,EAEA,qBAAMuJ,GACJlV,KAAK2L,SAAU,EACf,IACE3L,KAAKgV,2BAA6BhV,KAAKgX,QAAQ,uCAAwC,CACrFrH,OAAQ3P,KAAK2P,OAAO6B,eAAexN,OAAShE,KAAK2P,OAAO6B,cAAgBxR,KAAK2P,OAAO8B,gBAClFsG,iBAEA/X,KAAKgV,oBACPhV,KAAKgY,OAAO,CACV/S,KAAM,gDACNgT,MAAO,CACLlT,UAAW,oBAIf/E,KAAKgY,OAAO,CACV/S,KAAM,2BACNgT,MAAO,CACLlT,UAAW,gBAGnB,CAAE,QACA/E,KAAK2L,SAAU,CACjB,CACF,EAEA,uBAAMsJ,GACJjV,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAQ,yCAA0C,CAC3DrH,OAAQ3P,KAAK2P,OAAO6B,eAAexN,OAAShE,KAAK2P,OAAO6B,cAAgBxR,KAAK2P,OAAO8B,cAExF,CAAE,QACAzR,KAAK2L,SAAU,CACjB,CACF,GAGFjC,OAAAA,GACE1J,KAAKkY,QAAO,IAAMlY,KAAKoO,WAAW+J,IAC5BA,GACFnY,KAAKoP,SAAS,IAGlBpP,KAAKkY,QAAO,IAAMlY,KAAK+L,OAAOgM,mBAAmBI,IAC/CnY,KAAKgV,oBAAsBmD,CAAO,IAGpCnY,KAAKoY,WAAWjR,IACVA,EAAMwI,SAAW3P,KAAK2P,OAAO6B,eAAiBrK,EAAMwI,SAAW3P,KAAK2P,OAAO8B,eAG/EzR,KAAK+L,OAAS,IAAI/L,KAAK+L,UAAW5E,EAAMkR,YAAW,GACjD,sBAAqBrY,KAAK2P,OAAO8B,eACjC,uEACN,EAEA7H,SAAAA,GACE5J,KAAKsY,YAAa,sBAAqBtY,KAAK2P,OAAO8B,eACrD,G,WCziBF,MAAMtL,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,0FCHSjC,MAAM,U,IACJA,MAAM,mB,YACTI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,UAAQ,EACjBI,EAAAA,EAAAA,GAAgC,OAA3BJ,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,yDAWRA,MAAM,mB,YACTI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,UAAQ,EACjBI,EAAAA,EAAAA,GAAgC,OAA3BJ,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,YAEPI,EAAAA,EAAAA,GAAsC,OAAjCJ,MAAM,UAAS,gBAAY,K,YAChCI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,4BAA0B,EACnCI,EAAAA,EAAAA,GAA0B,KAAvBJ,MAAM,iBAAY,K,IAFvB4N,GACArF,I,YAMAnI,EAAAA,EAAAA,GAAsC,OAAjCJ,MAAM,UAAS,gBAAY,K,YAChCI,EAAAA,EAAAA,GAEM,OAFDJ,MAAM,4BAA0B,EACnCI,EAAAA,EAAAA,GAA2B,KAAxBJ,MAAM,kBAAa,K,IAFxB6N,GACAjF,I,uEArCV1I,EAAAA,EAAAA,IA4CM,OA5CDF,OAAKc,EAAAA,EAAAA,IAAA,CAAC,aAAY,CAAAoJ,SAAoB5J,EAAA4J,a,CAC1B1C,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAApC,IAAA,sBAC1BnF,EAAAA,EAAAA,GAC6D,OADxDJ,OAAKc,EAAAA,EAAAA,IAAA,CAAC,kCAAiC,CAAAoJ,SAAoB5J,EAAA4J,Y,aAC3DlJ,EAAAA,EAAAA,IAAQV,EAAoBiM,MAAde,eAAgB/M,QAAKC,EAAA,KAAAA,EAAA,GAAAE,GAAEa,EAAAG,MAAM,Y,YAEtBpB,EAAA4J,WAAQ,WAAlChK,EAAAA,EAAAA,IAsCM,MAtCNiH,GAsCM,EArCJ/G,EAAAA,EAAAA,GAcM,MAdNgH,GAcM,CAbJnG,IAIAb,EAAAA,EAAAA,GAQM,MARNiU,GAQM,EAPJjU,EAAAA,EAAAA,GAMO,4BALLF,EAAAA,EAAAA,IAIQkK,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAJkC/J,EAAA+K,SAAO,CAAtBI,EAAQrK,M,WAAnClB,EAAAA,EAAAA,IAIQ,SAJDF,MAAM,MAAuCuF,IAAKnE,G,EACvDhB,EAAAA,EAAAA,GACqD,SAD9CyB,KAAK,WAAYqF,QAASvG,EAAAiS,QAAQvF,IAAI5B,EAAO8B,cAAgB1G,MAAO4E,EAAO8B,aAC1ExG,SAAMrG,GAAEC,EAAA2T,aAAa7I,EAAO8B,e,aACpCnN,EAAAA,EAAAA,GAAyG,QAAnGJ,MAAM,Q,aAAQgB,EAAAA,EAAAA,IAAQyK,EAAO6B,eAAexN,OAAS2L,EAAO6B,cAAgB7B,EAAO8B,e,6BAMjGnN,EAAAA,EAAAA,GAoBM,MApBNoN,GAoBM,CAnBJpF,IAIAhI,EAAAA,EAAAA,GAcM,MAdNiI,GAcM,EAbJjI,EAAAA,EAAAA,GAKM,OALDJ,MAAM,MAAOO,QAAKC,EAAA,KAAAA,EAAA,OAAAqF,IAAElF,EAAAgN,QAAAhN,EAAAgN,UAAA9H,K,KAOzBzF,EAAAA,EAAAA,GAKM,OALDJ,MAAM,MAAOO,QAAKC,EAAA,KAAAA,EAAA,OAAAqF,IAAElF,EAAAyD,QAAAzD,EAAAyD,UAAAyB,K,+BAgBnC,QACEwB,KAAM,QACN1F,MAAO,CAAC,SAAU,SAAU,QAC5B6P,OAAQ,CAACC,GAAAA,GACTvP,WAAY,CAACqP,QAAOA,GAAAA,GAEpB3P,MAAO,CACL2K,MAAO,CACL1K,KAAMzF,OACNsV,UAAU,GAGZrG,QAAS,CACPxJ,KAAMzF,OACN4F,QAASA,KAAe,CAAC,IAG3BkI,SAAU,CACRrI,KAAME,QACNC,SAAS,IAIbI,IAAAA,GACE,MAAO,CACLqF,SAAS,EACT2I,OAAQ,CAAC,EAEb,EAEA9N,SAAU,CACRiS,gBAAAA,GACE,OAAOnY,OAAOiW,QAAQvW,KAAKuP,SAASmH,QAAO,CAACL,EAAKqC,KAC/C,MAAM/I,EAAS+I,EAAM,GAErB,OADArC,EAAI1G,EAAO8B,cAAgB9B,EACpB0G,CAAE,GACR,CAAC,EACN,EAEAS,OAAAA,GACE,OAAO,IAAID,KAAK7W,KAAKyQ,MAAMqG,SAAW,IAAIlU,KAAKmU,GAAWA,EAAOtF,eACnE,GAGFxK,QAAS,CACP,YAAMqB,GACJ,GAAK8O,QAAQ,oDAAb,CAGApX,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAQ,2BAA4B,CAACzL,KAAMvL,KAAKyQ,MAAMe,gBACjExR,KAAK4F,MAAM,SAAU,CAAC2F,KAAMvL,KAAKyQ,MAAMe,eACzC,CAAE,QACAxR,KAAK2L,SAAU,CACjB,CARQ,CASV,EAEA,YAAMkG,GACJ,IAAItG,EAAOoN,OAAO,iBAAkB3Y,KAAKyQ,MAAMe,eAC/C,GAAKjG,GAAMvH,OAAX,CAGAuH,EAAOA,EAAK0L,OACZjX,KAAK2L,SAAU,EAEf,UACQ3L,KAAKgX,QAAQ,2BAA4B,CAC7CvG,MAAOzQ,KAAKyQ,MAAMe,eAAiBxR,KAAKyQ,MAAMnL,GAC9CiG,KAAMA,IAGRvL,KAAK4F,MAAM,SAAU,CAAC2F,KAAMvL,KAAKyQ,MAAMe,cAAe0F,QAAS3L,GACjE,CAAE,QACAvL,KAAK2L,SAAU,CACjB,CAdQ,CAeV,EAEA,kBAAM6M,CAAaI,GACjB,MAAMjJ,EAAS3P,KAAKyY,iBAAiBG,GAC/BrN,EAAOoE,EAAO6B,eAAexN,OAAS2L,EAAO6B,cAAgBoH,EAC7DC,EAAS7Y,KAAK8W,QAAQvF,IAAIqH,GAAe,SAAW,MAE1D5Y,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAS,qBAAoB6B,WAAiB,CACvDpI,MAAOzQ,KAAKyQ,MAAMe,cAClB7B,OAAQpE,IAGVvL,KAAK4F,MAAM,OAAQ,CAAC+J,OAAQpE,EAAMsN,OAAQA,GAC5C,CAAE,QACA7Y,KAAK2L,SAAU,CACjB,CACF,IC3IJ,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UJoHA,IACEJ,KAAM,aACNnF,WAAY,CAACkP,MAAK,KAAEwD,SAAQ,KAAEC,aAAY,KAAEtD,QAAO,KAAEuD,OAAM,GAAEC,MAAKA,IAClEvD,OAAQ,CAACC,GAAAA,GAETrP,IAAAA,GACE,MAAO,CACLiJ,QAAS,CAAC,EACVM,OAAQ,CAAC,EACT9D,OAAQ,CAAC,EACTJ,SAAS,EACTyC,SAAU,CACRC,KAAM,UACNyB,cAAUnK,EACVgL,aAAShL,GAEX6I,MAAO,CACLe,SAAS,EACTM,QAAQ,GAEVqJ,MAAO,CACLzI,MAAO,CACLlK,SAAS,IAIjB,EAEAU,QAAS,CACP,oBAAMgJ,GACJjQ,KAAK2L,SAAU,EAEf,IACE3L,KAAKuP,eAAiBvP,KAAKgX,QAAQ,wBAAwBN,QAAO,CAACnH,EAASI,KACtEA,EAAO6B,iBAAiBxR,KAAKuP,UAC/BI,EAAS,CACP2E,OAAQtU,KAAKuP,QAAQI,EAAO6B,eAAe8C,QAAU,CAAC,KACnDtU,KAAKuP,QAAQI,EAAO6B,iBAI3BjC,EAAQI,EAAO6B,eAAiB7B,EACzBJ,IACN,CAAC,EACN,CAAE,QACAvP,KAAK2L,SAAU,CACjB,CACF,EAEA,mBAAMyE,GACJpQ,KAAK2L,SAAU,EACf,IACE3L,KAAK6P,cAAgB7P,KAAKgX,QAAQ,uBAAuBN,QAAO,CAAC7G,EAAQY,KACvEZ,EAAOY,EAAMnL,IAAMmL,EACZZ,IACN,CAAC,EACN,CAAE,QACA7P,KAAK2L,SAAU,CACjB,CACF,EAEA,iBAAMwN,GACJnZ,KAAK2L,SAAU,EACf,IACE3L,KAAK+L,aAAe/L,KAAKgX,QAAQ,mBACnC,CAAE,QACAhX,KAAK2L,SAAU,CACjB,CACF,EAEAyD,OAAAA,GACEpP,KAAKiQ,iBACLjQ,KAAKoQ,gBACLpQ,KAAKmZ,aACP,EAEAC,gBAAAA,CAAiBzJ,EAAQ7J,GACvB9F,KAAKuP,QAAQI,GAAQ2E,OAASxO,CAChC,EAEA,cAAM+I,GACJ,MAAMtD,EAAOoN,OAAO,cACpB,GAAMpN,GAAQA,EAAKvH,OAAnB,CAIAhE,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAQ,wBAAyB,CAACzL,KAAMA,GACrD,CAAE,QACAvL,KAAK2L,SAAU,CACjB,OAEM3L,KAAKoQ,eATX,CAUF,EAEA,gBAAMlB,CAAWmK,GACf,MAAMtP,EAAO,CAACsP,SAAUA,GACxB,GAAIA,EAAQ,CACV,IAAIC,EAAUX,OAAO,+DAAgE,MACrF5O,EAAKuP,QAAUA,EAAQtV,OAASlC,SAASwX,GAAW,IACtD,CAEAtZ,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAQ,0BAA2BjN,GAC9CwP,WAAWvZ,KAAKmZ,YAAa,IAC/B,CAAE,QACAnZ,KAAK2L,SAAU,CACjB,CACF,EAEA,kBAAMwD,GACJ,GAAKiI,QAAQ,6DACNA,QAAQ,mFADf,CAKApX,KAAK2L,SAAU,EACf,UACQ3L,KAAKgX,QAAQ,4BACrB,CAAE,QACAhX,KAAK2L,SAAU,CACjB,CAPA,CAQF,EAEA,gBAAM6N,CAAW7J,EAAQc,GACvBzQ,KAAK2L,SAAU,QACT3L,KAAKgX,QAAQ,+BAAgC,CACjDrH,OAAQA,EACRc,MAAOA,IAGTzQ,KAAK2L,SAAU,EACf,MAAM8N,EAAOzZ,KAEbuZ,YAAW,KACTE,EAAKrK,UACLqK,EAAKrJ,eAAe,GACnB,IACL,GAGFsJ,OAAAA,GACE1Z,KAAKoY,WAAU,KACbpY,KAAKgY,OAAO,CACV/S,KAAM,qCACN0U,OAAO,GACP,GACD,oBAAqB,8DAExB3Z,KAAKoY,WAAU,KACbpY,KAAKgY,OAAO,CACV/S,KAAM,+BACNF,UAAW,gBACX,GACD,mBAAoB,6DAEvB/E,KAAKoY,WAAU,KACbpY,KAAKgY,OAAO,CACV/S,KAAM,8BACN0U,OAAO,GACP,GACD,iCAAkC,0EAErC3Z,KAAKoY,WAAU,KACbpY,KAAKgY,OAAO,CACV/S,KAAM,0BACN0U,OAAO,GACP,GACD,6BAA8B,uEAEjC3Z,KAAKoY,WAAU,KACbpY,KAAKgY,OAAO,CACV/S,KAAM,yBACN0U,OAAO,GACP,GACD,gCAAiC,yEAEpC3Z,KAAKoY,WAAU,KACbpY,KAAKgY,OAAO,CACV/S,KAAM,0CACN0U,OAAO,GACP,GACD,8BACC,2EAEJ3Z,KAAKoY,WAAWjR,IACdnH,KAAKgY,OAAO,CACV/S,KAAMkC,EAAMwS,OAAS,kBACrBA,OAAO,GACP,GACD,kBAAmB,4DAEtB3Z,KAAKoY,UAAUpY,KAAKoP,QAAS,0BACzB,4DACA,mEACA,qEACA,kEACA,mEACA,uEACA,mEACA,gEACA,mEAGJpP,KAAKoY,UAAUpY,KAAKoQ,cAAe,yBAC/B,gEACA,kEACA,oEAEN,EAEA1G,OAAAA,GACE1J,KAAKoP,SACP,EAEAxF,SAAAA,GACE5J,KAAKsY,YAAY,mBACjBtY,KAAKsY,YAAY,+BACjBtY,KAAKsY,YAAY,iCACjBtY,KAAKsY,YAAY,8BACjBtY,KAAKsY,YAAY,kCACjBtY,KAAKsY,YAAY,oBACjBtY,KAAKsY,YAAY,qBACjBtY,KAAKsY,YAAY,2BACjBtY,KAAKsY,YAAY,yBACnB,GKzVF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAASzO,MAEpE,S","sources":["webpack://platypush/./src/components/panels/Light/color.js","webpack://platypush/./src/components/elements/Dropdown.vue","webpack://platypush/./src/components/elements/DropdownBody.vue","webpack://platypush/./src/components/elements/DropdownBody.vue?81f6","webpack://platypush/./src/components/elements/Dropdown.vue?e934","webpack://platypush/./src/components/elements/DropdownItem.vue","webpack://platypush/./src/components/elements/DropdownItem.vue?d591","webpack://platypush/./src/components/elements/Icon.vue","webpack://platypush/./src/components/elements/Icon.vue?fdba","webpack://platypush/./src/components/elements/Slider.vue","webpack://platypush/./src/components/elements/Slider.vue?787f","webpack://platypush/./src/components/elements/ToggleSwitch.vue","webpack://platypush/./src/components/elements/ToggleSwitch.vue?94aa","webpack://platypush/./src/components/panels/ZigbeeMqtt/Index.vue","webpack://platypush/./src/components/panels/ZigbeeMqtt/Device.vue","webpack://platypush/./src/components/panels/ZigbeeMqtt/Device.vue?8b6d","webpack://platypush/./src/components/panels/ZigbeeMqtt/Group.vue","webpack://platypush/./src/components/panels/ZigbeeMqtt/Group.vue?46cd","webpack://platypush/./src/components/panels/ZigbeeMqtt/Index.vue?dac0"],"sourcesContent":["export class ColorConverter {\n constructor(ranges) {\n this.ranges = {\n hue: [0, 360],\n sat: [0, 100],\n bri: [0, 100],\n ct: [154, 500],\n }\n\n if (ranges)\n for (const attr of Object.keys(this.ranges))\n if (ranges[attr])\n this.ranges[attr] = ranges[attr]\n }\n\n normalize(x, xRange, yRange) {\n return yRange[0] + (((x-xRange[0]) * (yRange[1]-yRange[0])) / (xRange[1]-xRange[0]))\n }\n\n hslToRgb(h, s, l) {\n [h, s, l] = [\n this.normalize(h, this.ranges.hue, [0, 360]),\n this.normalize(s, this.ranges.sat, [0, 100]),\n this.normalize(l, this.ranges.bri, [0, 100]),\n ]\n\n l /= 100\n const a = s * Math.min(l, 1 - l) / 100\n const f = n => {\n const k = (n + h / 30) % 12\n const color = l - a * Math.max(Math.min(k - 3, 9 - k, 1), -1)\n return Math.round(255 * color)\n }\n\n return [f(0), f(8), f(4)]\n }\n\n rgbToHsl(r, g, b){\n r /= 255\n g /= 255\n b /= 255;\n const max = Math.max(r, g, b), min = Math.min(r, g, b);\n let h, s, l = (max + min) / 2;\n\n if(max === min){\n h = s = 0; // achromatic\n } else {\n const d = max - min;\n s = l > 0.5 ? d / (2 - max - min) : d / (max + min);\n\n switch(max){\n case r: h = (g - b) / d + (g < b ? 6 : 0); break;\n case g: h = (b - r) / d + 2; break;\n case b: h = (r - g) / d + 4; break;\n }\n h /= 6;\n }\n\n return [\n parseInt(this.normalize(h, [0, 1], this.ranges.hue)),\n parseInt(this.normalize(s, [0, 1], this.ranges.sat)),\n parseInt(this.normalize(l, [0, 1], this.ranges.bri)),\n ]\n }\n\n xyToRgb(x, y, brightness) {\n // Set to maximum brightness if no custom value was given (Not the slick ECMAScript 6 way for compatibility reasons)\n if (brightness == null)\n brightness = this.ranges.bri[1];\n\n const z = 1.0 - x - y;\n const Y = (brightness / (this.ranges.bri[1]-1)).toFixed(2);\n const X = (Y / y) * x;\n const Z = (Y / y) * z;\n\n //Convert to RGB using Wide RGB D65 conversion\n let red \t= X * 1.656492 - Y * 0.354851 - Z * 0.255038;\n let green = -X * 0.707196 + Y * 1.655397 + Z * 0.036152;\n let blue \t= X * 0.051713 - Y * 0.121364 + Z * 1.011530;\n\n //If red, green or blue is larger than 1.0 set it back to the maximum of 1.0\n if (red > blue && red > green && red > 1.0) {\n green = green / red;\n blue = blue / red;\n red = 1.0;\n } else if (green > blue && green > red && green > 1.0) {\n red = red / green;\n blue = blue / green;\n green = 1.0;\n } else if (blue > red && blue > green && blue > 1.0) {\n red = red / blue;\n green = green / blue;\n blue = 1.0;\n }\n\n //Reverse gamma correction\n red \t= red <= 0.0031308 ? 12.92 * red : (1.0 + 0.055) * Math.pow(red, (1.0 / 2.4)) - 0.055;\n green \t= green <= 0.0031308 ? 12.92 * green : (1.0 + 0.055) * Math.pow(green, (1.0 / 2.4)) - 0.055;\n blue \t= blue <= 0.0031308 ? 12.92 * blue : (1.0 + 0.055) * Math.pow(blue, (1.0 / 2.4)) - 0.055;\n\n //Convert normalized decimal to decimal\n red \t= Math.round(red * 255);\n green \t= Math.round(green * 255);\n blue \t= Math.round(blue * 255);\n\n if (isNaN(red))\n red = 0;\n if (isNaN(green))\n green = 0;\n if (isNaN(blue))\n blue = 0;\n\n return [red, green, blue].map(\n (c) => Math.min(Math.max(0, c), 255)) // lgtm [js/automatic-semicolon-insertion]\n }\n\n rgbToXY(red, green, blue) {\n if (red > 1) { red /= 255; }\n if (green > 1) { green /= 255; }\n if (blue > 1) { blue /= 255; }\n\n //Apply a gamma correction to the RGB values, which makes the color more vivid and more the like the color displayed on the screen of your device\n red \t= (red > 0.04045) ? Math.pow((red + 0.055) / (1.0 + 0.055), 2.4) : (red / 12.92);\n green \t= (green > 0.04045) ? Math.pow((green + 0.055) / (1.0 + 0.055), 2.4) : (green / 12.92);\n blue \t= (blue > 0.04045) ? Math.pow((blue + 0.055) / (1.0 + 0.055), 2.4) : (blue / 12.92);\n\n //RGB values to XYZ using the Wide RGB D65 conversion formula\n const X \t\t= red * 0.664511 + green * 0.154324 + blue * 0.162028;\n const Y \t\t= red * 0.283881 + green * 0.668433 + blue * 0.047685;\n const Z \t\t= red * 0.000088 + green * 0.072310 + blue * 0.986039;\n\n //Calculate the xy values from the XYZ values\n let x \t\t= parseFloat((X / (X + Y + Z)).toFixed(4));\n let y \t\t= parseFloat((Y / (X + Y + Z)).toFixed(4));\n\n if (isNaN(x))\n x = 0;\n if (isNaN(y))\n y = 0;\n\n return [x, y];\n }\n\n rgbToBri(red, green, blue) {\n return Math.min(2 * this.rgbToHsl(red, green, blue)[2], this.ranges.bri[1])\n }\n\n getRGB(color) {\n if (color.red != null && color.green != null && color.blue != null)\n return [color.red, color.green, color.blue]\n if (color.r != null && color.g != null && color.b != null)\n return [color.r, color.g, color.b]\n if (color.rgb)\n return color.rgb\n }\n\n getXY(color) {\n if (color.x != null && color.y != null)\n return [color.x, color.y]\n if (color.xy)\n return color.xy\n }\n\n toRGB(color) {\n const rgb = this.getRGB(color)\n if (rgb)\n return rgb\n\n const xy = this.getXY(color)\n if (xy && color.bri)\n return this.xyToRgb(...xy, color.bri)\n if (color.hue && color.sat && color.bri)\n return this.hslToRgb(color.hue, color.sat, color.bri)\n\n console.debug('Could not determine color space')\n console.debug(color)\n }\n\n toXY(color) {\n const xy = this.getXY(color)\n if (xy && color.bri)\n return [xy[0], xy[1], color.bri]\n\n const rgb = this.getRGB(color)\n if (rgb)\n return this.rgbToXY(...rgb)\n\n if (color.hue && color.sat && color.bri) {\n const rgb = this.hslToRgb(color.hue, color.sat, color.bri)\n return this.rgbToXY(...rgb)\n }\n\n console.debug('Could not determine color space')\n console.debug(color)\n }\n\n toHSL(color) {\n if (color.hue && color.sat && color.bri)\n return [color.hue, color.sat, color.bri]\n\n const rgb = this.getRGB(color)\n if (rgb)\n return this.rgbToHsl(...rgb)\n\n const xy = this.getXY(color)\n if (xy && color.bri) {\n const rgb = this.xyToRgb(...xy, color.bri)\n return this.rgbToHsl(...rgb)\n }\n\n console.debug('Could not determine color space')\n console.debug(color)\n }\n\n hexToRgb(hex) {\n return [\n hex.slice(1, 3),\n hex.slice(3, 5),\n hex.slice(5, 7),\n ].map(_ => parseInt(_, 16))\n }\n\n rgbToHex(rgb) {\n return '#' + rgb.map((x) => {\n let hex = x.toString(16)\n if (hex.length < 2)\n hex = '0' + hex\n return hex\n }).join('')\n }\n}\n","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./DropdownBody.vue?vue&type=template&id=14579c63&scoped=true\"\nimport script from \"./DropdownBody.vue?vue&type=script&lang=js\"\nexport * from \"./DropdownBody.vue?vue&type=script&lang=js\"\n\nimport \"./DropdownBody.vue?vue&type=style&index=0&id=14579c63&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-14579c63\"]])\n\nexport default __exports__","import { render } from \"./Dropdown.vue?vue&type=template&id=3220f58b&scoped=true\"\nimport script from \"./Dropdown.vue?vue&type=script&lang=js\"\nexport * from \"./Dropdown.vue?vue&type=script&lang=js\"\n\nimport \"./Dropdown.vue?vue&type=style&index=0&id=3220f58b&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-3220f58b\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./DropdownItem.vue?vue&type=template&id=1311e9ab&scoped=true\"\nimport script from \"./DropdownItem.vue?vue&type=script&lang=js\"\nexport * from \"./DropdownItem.vue?vue&type=script&lang=js\"\n\nimport \"./DropdownItem.vue?vue&type=style&index=0&id=1311e9ab&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-1311e9ab\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Icon.vue?vue&type=template&id=706a3bd1&scoped=true\"\nimport script from \"./Icon.vue?vue&type=script&lang=js\"\nexport * from \"./Icon.vue?vue&type=script&lang=js\"\n\nimport \"./Icon.vue?vue&type=style&index=0&id=706a3bd1&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-706a3bd1\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Slider.vue?vue&type=template&id=d90e850c&scoped=true\"\nimport script from \"./Slider.vue?vue&type=script&lang=js\"\nexport * from \"./Slider.vue?vue&type=script&lang=js\"\n\nimport \"./Slider.vue?vue&type=style&index=0&id=d90e850c&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-d90e850c\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./ToggleSwitch.vue?vue&type=template&id=eff375b6&scoped=true\"\nimport script from \"./ToggleSwitch.vue?vue&type=script&lang=js\"\nexport * from \"./ToggleSwitch.vue?vue&type=script&lang=js\"\n\nimport \"./ToggleSwitch.vue?vue&type=style&index=0&id=eff375b6&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-eff375b6\"]])\n\nexport default __exports__","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./Device.vue?vue&type=template&id=6437b841&scoped=true\"\nimport script from \"./Device.vue?vue&type=script&lang=js\"\nexport * from \"./Device.vue?vue&type=script&lang=js\"\n\nimport \"./Device.vue?vue&type=style&index=0&id=6437b841&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-6437b841\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Group.vue?vue&type=template&id=7667f7ba&scoped=true\"\nimport script from \"./Group.vue?vue&type=script&lang=js\"\nexport * from \"./Group.vue?vue&type=script&lang=js\"\n\nimport \"./Group.vue?vue&type=style&index=0&id=7667f7ba&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-7667f7ba\"]])\n\nexport default __exports__","import { render } from \"./Index.vue?vue&type=template&id=b15233ac\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport \"./Index.vue?vue&type=style&index=0&id=b15233ac&lang=scss\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["ColorConverter","constructor","ranges","this","hue","sat","bri","ct","attr","Object","keys","normalize","x","xRange","yRange","hslToRgb","h","s","l","a","Math","min","f","n","k","color","max","round","rgbToHsl","r","g","b","d","parseInt","xyToRgb","y","brightness","z","Y","toFixed","X","Z","red","green","blue","pow","isNaN","map","c","rgbToXY","parseFloat","rgbToBri","getRGB","rgb","getXY","xy","toRGB","console","debug","toXY","toHSL","hexToRgb","hex","slice","_","rgbToHex","toString","length","join","class","ref","_createElementBlock","_hoisted_1","_createElementVNode","title","$props","onClick","_cache","_withModifiers","$event","$options","toggle","iconClass","_normalizeClass","text","_toDisplayString","_hoisted_4","_createVNode","_component_DropdownBody","id","keepOpenOnItemClick","_renderSlot","_ctx","$slots","undefined","$emit","emits","props","type","String","Boolean","default","__exports__","components","DropdownBody","data","visible","computed","buttonStyle","$refs","button","getComputedStyle","buttonWidth","width","buttonHeight","height","methods","documentClickHndl","event","element","target","classList","contains","parentElement","close","getDropdownWidth","dropdown","$el","getDropdownHeight","document","removeEventListener","bus","emit","open","addEventListener","appendChild","dropdownContainer","remove","$nextTick","buttonRect","getBoundingClientRect","buttonPos","left","window","scrollX","top","scrollY","pos","dropdownWidth","dropdownHeight","innerWidth","innerHeight","add","style","stopPropagation","onKeyUp","key","mounted","body","unmounted","render","itemClass","args","clicked","iconUrl","_component_Icon","url","Icon","disabled","$parent","src","alt","className","_normalizeStyle","withRange","withLabel","range","step","value","onInput","onChange","Number","Array","checked","_hoisted_2","_hoisted_3","name","_hoisted_36","_hoisted_39","$data","loading","_createBlock","_component_Loading","_component_Modal","status","info","state","_hoisted_6","_hoisted_7","permit_join","network","_hoisted_9","_hoisted_10","channel","_hoisted_12","_hoisted_13","version","config","mqtt","_hoisted_15","_hoisted_16","server","serial","_hoisted_18","_hoisted_19","port","coordinator","_hoisted_21","_hoisted_22","meta","_hoisted_24","_hoisted_25","_hoisted_26","maintrel","majorrel","minorrel","_hoisted_27","_hoisted_28","revision","_hoisted_30","_hoisted_31","selected","view","_Fragment","_renderList","views","enabled","toUpperCase","replace","_hoisted_34","addGroup","_component_Dropdown","_component_DropdownItem","infoModal","show","permitJoin","factoryReset","refresh","_hoisted_41","_hoisted_42","devices","_hoisted_43","_hoisted_44","_hoisted_45","device","_component_Device","groups","deviceId","onSelect","onRename","refreshDevices","onRemove","onGroupsEdit","refreshGroups","_hoisted_46","_hoisted_47","_hoisted_48","_hoisted_49","group","_component_Group","groupId","onEdit","_hoisted_17","_hoisted_70","_hoisted_71","_hoisted_76","_hoisted_77","_hoisted_79","_hoisted_80","onSubmit","manageGroups","associatedGroups","has","friendly_name","ieee_address","_hoisted_8","hidden","editName","rename","_hoisted_11","_hoisted_14","_hoisted_20","network_address","_hoisted_23","definition","vendor","_hoisted_29","model","_hoisted_32","_hoisted_33","model_id","_hoisted_35","description","_hoisted_37","_hoisted_38","software_build_id","_hoisted_40","date_code","power_source","displayedValues","_hoisted_50","_hoisted_51","property","_hoisted_52","rgbColor","saturation","_hoisted_53","unit","_hoisted_56","_component_ToggleSwitch","value_on","writable","setValue","value_min","value_max","_component_Slider","_hoisted_59","readable","_hoisted_61","values","option","_hoisted_63","i","_hoisted_65","_hoisted_57","_hoisted_67","_hoisted_68","_hoisted_69","groupsModal","otaUpdatesAvailable","installOtaUpdates","checkOtaUpdates","_hoisted_74","_hoisted_73","_hoisted_75","Modal","ToggleSwitch","Slider","Loading","mixins","Utils","required","exposes","extractValues","extractValue","root","features","feature","ret","mergeValues","obj","access","entries","filter","v","reduce","converter","satAttr","Set","members","member","request","trim","newName","force","confirm","value_toggle","value_off","split","hsl","querySelectorAll","editGroups","async","Promise","all","action","update_available","notify","image","$watch","newValue","subscribe","properties","unsubscribe","_hoisted_5","toggleDevice","devicesByAddress","entry","prompt","ieeeAddress","method","Dropdown","DropdownItem","Device","Group","modal","refreshInfo","updateProperties","permit","seconds","setTimeout","addToGroup","self","created","error"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1421.578b11dd.js b/platypush/backend/http/webapp/dist/static/js/1421.578b11dd.js new file mode 100644 index 0000000000..405c21d84d --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1421.578b11dd.js @@ -0,0 +1,2 @@ +"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1421],{7191:function(t,e,s){s.d(e,{Z:function(){return v}});var a=s(6252),n=s(3577);const i={class:"progress-bar-container"},o={class:"col-s-2 col-m-1 time"},l=["textContent"],r={class:"col-s-8 col-m-10 time-bar"},u={class:"col-s-2 col-m-1 time"},c=["textContent"];function d(t,e,s,d,p,m){const k=(0,a.up)("Slider");return(0,a.wg)(),(0,a.iD)("div",i,[(0,a._)("div",o,[(0,a._)("span",{class:"elapsed-time",textContent:(0,n.zw)(null==s.elapsed||"play"!==s.status.state&&"pause"!==s.status.state?"-:--":t.convertTime(s.elapsed))},null,8,l)]),(0,a._)("div",r,[(0,a.Wm)(k,{value:s.elapsed,range:[0,s.duration],disabled:!s.duration||"stop"===s.status.state,onChange:e[0]||(e[0]=e=>t.$emit("seek",e.target.value))},null,8,["value","range","disabled"])]),(0,a._)("div",u,[(0,a._)("span",{class:"total-time",textContent:(0,n.zw)(s.duration&&"stop"!==s.status.state?t.convertTime(s.duration):"-:--")},null,8,c)])])}var p=s(1065),m=s(8140),k={components:{Slider:m.Z},emits:["seek"],mixins:[p.Z],props:{elapsed:{type:Number},duration:{type:Number},status:{type:Object,default:()=>({})}}},g=s(3744);const h=(0,g.Z)(k,[["render",d],["__scopeId","data-v-3894ad4d"]]);var v=h},644:function(t,e,s){s.d(e,{Z:function(){return jt}});var a=s(6252);const n={class:"media-container"},i={class:"view-container"},o={class:"controls-container"};function l(t,e,s,l,r,u){const c=(0,a.up)("Controls");return(0,a.wg)(),(0,a.iD)("div",n,[(0,a._)("div",i,[(0,a.WI)(t.$slots,"default",{},void 0,!0)]),(0,a._)("div",o,[(0,a.Wm)(c,{buttons:s.buttons,image:s.image,status:s.status,track:s.track,onConsume:e[0]||(e[0]=e=>t.$emit("consume",e)),onInfo:e[1]||(e[1]=e=>t.$emit("info",e)),onMute:e[2]||(e[2]=e=>t.$emit("mute")),onNext:e[3]||(e[3]=e=>t.$emit("next")),onPause:e[4]||(e[4]=e=>t.$emit("pause",e)),onPlay:e[5]||(e[5]=e=>t.$emit("play",e)),onPrevious:e[6]||(e[6]=e=>t.$emit("previous")),onRandom:e[7]||(e[7]=e=>t.$emit("random",e)),onRepeat:e[8]||(e[8]=e=>t.$emit("repeat",e)),onSearch:e[9]||(e[9]=e=>t.$emit("search",e)),onSeek:e[10]||(e[10]=e=>t.$emit("seek",e)),onSetVolume:e[11]||(e[11]=e=>t.$emit("set-volume",e)),onStop:e[12]||(e[12]=e=>t.$emit("stop")),onUnmute:e[13]||(e[13]=e=>t.$emit("unmute"))},null,8,["buttons","image","status","track"])])])}var r=s(3577),u=s(9963);const c=t=>((0,a.dD)("data-v-1f77dbac"),t=t(),(0,a.Cn)(),t),d={key:0,class:"remote-image-container"},p=["src","alt"],m={key:1,class:"icon-container"},k={class:"row buttons-container"},g={class:"buttons"},h={class:"buttons"},v=c((()=>(0,a._)("i",{class:"icon fa fa-step-backward"},null,-1))),y=[v],f=c((()=>(0,a._)("i",{class:"icon fa fa-stop"},null,-1))),b=[f],w=c((()=>(0,a._)("i",{class:"icon fa fa-step-forward"},null,-1))),C=[w],_={class:"row"},$={class:"row"},x={class:"controls"},D={class:"playback-controls until tablet col-2"},S={class:"track-container col-s-9 col-m-9 col-l-3"},I={key:0,class:"img-container"},O=["src","alt"],P={class:"title-container"},Z={key:0,class:"title"},q=["href","textContent"],T=["textContent"],W=["textContent"],j={key:1,class:"artist"},A=["textContent"],N={class:"playback-controls from desktop col-6"},R={class:"row buttons"},B=c((()=>(0,a._)("i",{class:"icon fa fa-step-backward"},null,-1))),z=[B],H=c((()=>(0,a._)("i",{class:"icon fa fa-stop"},null,-1))),M=[H],L=c((()=>(0,a._)("i",{class:"icon fa fa-step-forward"},null,-1))),U=[L],E={class:"row"},V={class:"col-1 until tablet right-controls"},F=["title"],K={class:"col-3 from desktop right-controls"};function Y(t,e,s,n,i,o){const l=(0,a.up)("VolumeSlider"),c=(0,a.up)("ExtraControls"),v=(0,a.up)("ProgressBar"),f=(0,a.up)("PlayPauseButton");return(0,a.wg)(),(0,a.iD)(a.HY,null,[(0,a._)("div",{class:(0,r.C_)(["extension fade-in",{hidden:!i.expanded}])},["stop"!==s.status?.state?((0,a.wg)(),(0,a.iD)("div",{key:0,class:"image-container",onClick:e[0]||(e[0]=(0,u.iM)(((...t)=>o.searchAlbum&&o.searchAlbum(...t)),["prevent"]))},[o.trackImage?((0,a.wg)(),(0,a.iD)("div",d,[(0,a._)("img",{class:"image",src:o.trackImage,alt:o.trackTitle},null,8,p)])):((0,a.wg)(),(0,a.iD)("div",m,[(0,a._)("i",{class:(0,r.C_)(["icon fas fa-compact-disc",{playing:"play"===s.status?.state}])},null,2)]))])):(0,a.kq)("",!0),(0,a._)("div",k,[(0,a._)("div",g,[(0,a._)("div",h,[i.buttons_.previous?((0,a.wg)(),(0,a.iD)("button",{key:0,onClick:e[1]||(e[1]=e=>t.$emit("previous")),title:"Play previous track"},y)):(0,a.kq)("",!0),i.buttons_.stop&&"stop"!==s.status.state?((0,a.wg)(),(0,a.iD)("button",{key:1,onClick:e[2]||(e[2]=e=>t.$emit("stop")),title:"Stop playback"},b)):(0,a.kq)("",!0),i.buttons_.next?((0,a.wg)(),(0,a.iD)("button",{key:2,onClick:e[3]||(e[3]=e=>t.$emit("next")),title:"Play next track"},C)):(0,a.kq)("",!0)])])]),(0,a._)("div",_,[(0,a.Wm)(l,{range:s.volumeRange,status:s.status,value:s.status.volume,onMute:e[4]||(e[4]=e=>t.$emit("mute")),onSetVolume:e[5]||(e[5]=e=>t.$emit("set-volume",e)),onUnmute:e[6]||(e[6]=e=>t.$emit("unmute"))},null,8,["range","status","value"]),(0,a.Wm)(c,{buttons:i.buttons_,status:s.status,onConsume:e[7]||(e[7]=e=>t.$emit("consume",!s.status.consume)),onRandom:e[8]||(e[8]=e=>t.$emit("random",!s.status.random)),onRepeat:e[9]||(e[9]=e=>t.$emit("repeat",!s.status.repeat))},null,8,["buttons","status"])]),(0,a._)("div",$,[(0,a.Wm)(v,{elapsed:i.elapsed,duration:o.duration,status:s.status,onSeek:e[10]||(e[10]=e=>t.$emit("seek",e))},null,8,["elapsed","duration","status"])])],2),(0,a._)("div",x,[(0,a._)("div",D,[(0,a.Wm)(f,{status:s.status,onPlay:e[11]||(e[11]=e=>t.$emit("play")),onPause:e[12]||(e[12]=e=>t.$emit("pause"))},null,8,["status"])]),(0,a._)("div",S,[s.track&&"stop"!==s.status?.state?((0,a.wg)(),(0,a.iD)("div",{key:0,class:"track-info",onClick:e[15]||(e[15]=e=>t.$emit("info",s.track))},[o.trackImage?((0,a.wg)(),(0,a.iD)("div",I,[(0,a._)("img",{class:"image from desktop",src:o.trackImage,alt:o.trackTitle},null,8,O)])):(0,a.kq)("",!0),(0,a._)("div",P,["play"===s.status.state||"pause"===s.status.state?((0,a.wg)(),(0,a.iD)("div",Z,[s.track.album?((0,a.wg)(),(0,a.iD)("a",{key:0,href:t.$route.fullPath,textContent:(0,r.zw)(o.trackTitle),onClick:e[13]||(e[13]=(0,u.iM)(((...t)=>o.searchAlbum&&o.searchAlbum(...t)),["prevent"]))},null,8,q)):s.track.url?((0,a.wg)(),(0,a.iD)("a",{key:1,textContent:(0,r.zw)(o.trackTitle)},null,8,T)):((0,a.wg)(),(0,a.iD)("span",{key:2,textContent:(0,r.zw)(o.trackTitle)},null,8,W))])):(0,a.kq)("",!0),!o.trackArtistName?.length||"play"!==s.status.state&&"pause"!==s.status.state?(0,a.kq)("",!0):((0,a.wg)(),(0,a.iD)("div",j,[(0,a._)("a",{textContent:(0,r.zw)(o.trackArtistName),onClick:e[14]||(e[14]=(0,u.iM)(((...t)=>o.searchArtist&&o.searchArtist(...t)),["prevent"]))},null,8,A)]))])])):(0,a.kq)("",!0)]),(0,a._)("div",N,[(0,a._)("div",R,[i.buttons_.previous?((0,a.wg)(),(0,a.iD)("button",{key:0,onClick:e[16]||(e[16]=e=>t.$emit("previous")),title:"Play previous track"},z)):(0,a.kq)("",!0),(0,a.Wm)(f,{status:s.status,onPlay:e[17]||(e[17]=e=>t.$emit("play")),onPause:e[18]||(e[18]=e=>t.$emit("pause"))},null,8,["status"]),i.buttons_.stop&&"stop"!==s.status.state?((0,a.wg)(),(0,a.iD)("button",{key:1,onClick:e[19]||(e[19]=e=>t.$emit("stop")),title:"Stop playback"},M)):(0,a.kq)("",!0),i.buttons_.next?((0,a.wg)(),(0,a.iD)("button",{key:2,onClick:e[20]||(e[20]=e=>t.$emit("next")),title:"Play next track"},U)):(0,a.kq)("",!0)]),(0,a._)("div",E,[(0,a.Wm)(v,{elapsed:i.elapsed,duration:o.duration,status:s.status,onSeek:e[21]||(e[21]=e=>t.$emit("seek",e))},null,8,["elapsed","duration","status"])])]),(0,a._)("div",V,[(0,a._)("button",{onClick:e[22]||(e[22]=t=>i.expanded=!i.expanded),title:i.expanded?"Show more controls":"Hide extra controls"},[(0,a._)("i",{class:(0,r.C_)(["fas",["fa-chevron-"+(i.expanded?"down":"up")]])},null,2)],8,F)]),(0,a._)("div",K,[(0,a.Wm)(l,{value:s.status.volume,range:s.volumeRange,status:s.status,onMute:e[23]||(e[23]=e=>t.$emit("mute")),onUnmute:e[24]||(e[24]=e=>t.$emit("unmute")),onSetVolume:e[25]||(e[25]=e=>t.$emit("set-volume",e))},null,8,["value","range","status"]),(0,a.Wm)(c,{status:s.status,buttons:i.buttons_,onConsume:e[26]||(e[26]=e=>t.$emit("consume",!s.status.consume)),onRandom:e[27]||(e[27]=e=>t.$emit("random",!s.status.random)),onRepeat:e[28]||(e[28]=e=>t.$emit("repeat",!s.status.repeat))},null,8,["status","buttons"])])])],64)}var X=s(8637),G=s(1065);const J=t=>((0,a.dD)("data-v-772c7a5b"),t=t(),(0,a.Cn)(),t),Q={class:"extra-controls-container"},tt=J((()=>(0,a._)("i",{class:"icon fa fa-utensils"},null,-1))),et=[tt],st=J((()=>(0,a._)("i",{class:"icon fa fa-random"},null,-1))),at=[st],nt=J((()=>(0,a._)("i",{class:"icon fa fa-redo"},null,-1))),it=[nt];function ot(t,e,s,n,i,o){return(0,a.wg)(),(0,a.iD)("div",Q,[s.buttons.consume?((0,a.wg)(),(0,a.iD)("button",{key:0,onClick:e[0]||(e[0]=e=>t.$emit("consume")),class:(0,r.C_)({enabled:s.status.consume}),title:"Toggle consume mode"},et,2)):(0,a.kq)("",!0),s.buttons.random?((0,a.wg)(),(0,a.iD)("button",{key:1,onClick:e[1]||(e[1]=e=>t.$emit("random")),class:(0,r.C_)({enabled:s.status.random}),title:"Toggle shuffle"},at,2)):(0,a.kq)("",!0),s.buttons.repeat?((0,a.wg)(),(0,a.iD)("button",{key:2,onClick:e[2]||(e[2]=e=>t.$emit("repeat")),class:(0,r.C_)({enabled:s.status.repeat}),title:"Toggle repeat"},it,2)):(0,a.kq)("",!0)])}var lt={emits:["consume","random","repeat"],props:{status:{type:Object,default:()=>({})},buttons:{type:Object,default:()=>({})}}},rt=s(3744);const ut=(0,rt.Z)(lt,[["render",ot],["__scopeId","data-v-772c7a5b"]]);var ct=ut;const dt=["title"],pt={key:0,class:"icon play-pause fa fa-pause"},mt={key:1,class:"icon play-pause fa fa-play"};function kt(t,e,s,n,i,o){return(0,a.wg)(),(0,a.iD)("button",{onClick:e[0]||(e[0]=e=>t.$emit("play"===s.status.state?"pause":"play")),title:"play"===s.status.state?"Pause":"Play"},["play"===s.status.state?((0,a.wg)(),(0,a.iD)("i",pt)):((0,a.wg)(),(0,a.iD)("i",mt))],8,dt)}var gt={emits:["play","pause"],props:{status:{type:Object,default:()=>({})}}};const ht=(0,rt.Z)(gt,[["render",kt],["__scopeId","data-v-a742ddb0"]]);var vt=ht,yt=s(7191);const ft={class:"volume-slider-container"},bt={class:"col-1"},wt=["disabled","title"],Ct={key:0,class:"icon fa fa-volume-xmark"},_t={key:1,class:"icon fa fa-volume-up"},$t={class:"col-11 volume-slider"};function xt(t,e,s,n,i,o){const l=(0,a.up)("Slider");return(0,a.wg)(),(0,a.iD)("div",ft,[(0,a._)("div",bt,[(0,a._)("button",{disabled:null==s.status.mute,title:s.status.mute?"Muted":"Unmuted",onClick:e[0]||(e[0]=e=>t.$emit(s.status.mute?"unmute":"mute"))},[s.status.mute?((0,a.wg)(),(0,a.iD)("i",Ct)):((0,a.wg)(),(0,a.iD)("i",_t))],8,wt)]),(0,a._)("div",$t,[(0,a.Wm)(l,{value:s.status.volume,range:s.volumeRange,disabled:null==s.status.volume,onChange:e[1]||(e[1]=e=>t.$emit("set-volume",e.target.value))},null,8,["value","range","disabled"])])])}var Dt=s(8140),St={components:{Slider:Dt.Z},emits:["set-volume","mute","unmute"],props:{volumeRange:{type:Array,default:()=>[0,100]},status:{type:Object,default:()=>({})}}};const It=(0,rt.Z)(St,[["render",xt],["__scopeId","data-v-662f988f"]]);var Ot=It,Pt={components:{ExtraControls:ct,PlayPauseButton:vt,ProgressBar:yt.Z,VolumeSlider:Ot},mixins:[X.Z,G.Z],emits:["consume","info","mute","next","pause","play","previous","random","repeat","search","seek","set-volume","stop","unmute"],props:{track:{type:Object},status:{type:Object,default:()=>{}},image:{type:String,default:null},buttons:{type:Object,default:()=>({previous:!0,next:!0,stop:!0,consume:!0,random:!0,repeat:!0})},volumeRange:{type:Array,default:()=>[0,100]}},data(){const t=Object.keys(this.buttons)?.length?this.buttons:{previous:!0,next:!0,stop:!0,consume:!0,random:!0,repeat:!0};return{expanded:!1,lastSync:0,elapsed:this.status?.elapsed||this.status?.position,buttons_:t}},computed:{duration(){const t=null!=this.status?.duration?this.status.duration:this.track?.duration;return null!=t?parseFloat(t):null},trackArtistId(){return"object"===typeof this.track?.artist?this.track.artist.id:null},trackArtistName(){return"string"===typeof this.track?.artist?this.track.artist:this.track?.artist?.name||this.track?.artist?.title},trackImage(){return this.track?.images?.length?this.track.images[0].url:this.track?.image||this.image},trackTitle(){return this.track?.title||this.track?.name||"[No Title]"}},methods:{getTime(){return(new Date).getTime()/1e3},searchAlbum(){if(!this.track?.artist||!this.track?.album)return;const t={artist:this.track.artist,album:this.track.album};this.track.album_uri&&(t.uris=[this.track.album_uri]),this.$emit("search",t)},searchArtist(){if(!this.trackArtistName?.length)return;const t={artist:this.trackArtistName};this.track.artist_uri&&(t.uris=[this.track.album_uri]),this.$emit("search",t)}},mounted(){const t=this;this.lastSync=this.getTime(),this.$watch((()=>this.track),(e=>{e&&"play"===t.status?.state||(t.lastSync=this.getTime())})),this.$watch((()=>this.status),(()=>{t.lastSync=this.getTime()})),setInterval((()=>{"stop"!==t.status?.state&&(t.elapsed=t.status?.elapsed||t.status?.position||0,"play"===t.status?.state&&(t.elapsed+=Math.round(this.getTime()-t.lastSync)))}),1e3)}};const Zt=(0,rt.Z)(Pt,[["render",Y],["__scopeId","data-v-1f77dbac"]]);var qt=Zt,Tt={name:"View",components:{Controls:qt},emits:["consume","info","mute","next","pause","play","previous","random","repeat","search","seek","set-volume","stop","unmute"],props:{pluginName:{type:String,required:!0},status:{type:Object,default:()=>{}},track:{type:Object},image:{type:String,default:null},buttons:{type:Object}}};const Wt=(0,rt.Z)(Tt,[["render",l],["__scopeId","data-v-6f73c9f5"]]);var jt=Wt},4642:function(t,e,s){s.d(e,{Z:function(){return g}});var a=s(6252),n=s(9963),i=s(3577);const o={class:"dropdown-container"},l=["title"],r=["textContent"];function u(t,e,s,u,c,d){const p=(0,a.up)("DropdownBody");return(0,a.wg)(),(0,a.iD)("div",o,[(0,a._)("button",{title:s.title,ref:"button",onClick:e[0]||(e[0]=(0,n.iM)((t=>d.toggle(t)),["stop"]))},[s.iconClass?((0,a.wg)(),(0,a.iD)("i",{key:0,class:(0,i.C_)(["icon",s.iconClass])},null,2)):(0,a.kq)("",!0),s.text?((0,a.wg)(),(0,a.iD)("span",{key:1,class:"text",textContent:(0,i.zw)(s.text)},null,8,r)):(0,a.kq)("",!0)],8,l),(0,a._)("div",{class:(0,i.C_)(["body-container",{hidden:!c.visible}]),ref:"dropdownContainer"},[(0,a.Wm)(p,{id:s.id,keepOpenOnItemClick:s.keepOpenOnItemClick,style:(0,i.j5)(s.style),ref:"dropdown",onClick:d.onClick},{default:(0,a.w5)((()=>[(0,a.WI)(t.$slots,"default",{},void 0,!0)])),_:3},8,["id","keepOpenOnItemClick","style","onClick"])],2)])}var c=s(3218),d=s(5250),p={components:{DropdownBody:c.Z},emits:["click"],props:{id:{type:String},iconClass:{default:"fa fa-ellipsis-h"},text:{type:String},title:{type:String},keepOpenOnItemClick:{type:Boolean,default:!1},style:{type:Object,default:()=>({})}},data(){return{visible:!1}},computed:{button(){const t=this.$refs.button?.$el;return t?t.querySelector("button"):this.$refs.button},buttonStyle(){return this.button?getComputedStyle(this.button):{}},buttonWidth(){return parseFloat(this.buttonStyle.width||0)},buttonHeight(){return parseFloat(this.buttonStyle.height||0)}},methods:{documentClickHndl(t){if(!this.visible)return;let e=t.target;while(e){if(e.classList.contains("dropdown"))return;e=e.parentElement}this.close()},getDropdownWidth(){const t=this.$refs.dropdown?.$el;return t?parseFloat(getComputedStyle(t).width):0},getDropdownHeight(){const t=this.$refs.dropdown?.$el;return t?parseFloat(getComputedStyle(t).height):0},onClick(t){return this.keepOpenOnItemClick||this.close(),"A"===t.target.tagName?(t.preventDefault(),!1):t.defaultPrevented?(t.stopPropagation(),!1):void 0},close(){this.visible=!1,document.removeEventListener("click",this.documentClickHndl),d.$.emit("dropdown-close")},open(){document.addEventListener("click",this.documentClickHndl);const t=this.$refs.dropdown?.$el;t.parentElement||this.$el.appendChild(t),this.visible=!0,this.$nextTick(this.adjustDropdownPos)},adjustDropdownPos(){const t=this.button.getBoundingClientRect(),e={left:t.left+window.scrollX,top:t.top+window.scrollY},s={left:e.left,top:e.top+this.buttonHeight},a=this.getDropdownWidth(),n=this.getDropdownHeight();if(s.left+a>(window.innerWidth+window.scrollX)/2&&(s.left-=a-this.buttonWidth),s.top+n>(window.innerHeight+window.scrollY)/2){let t=s.top-(n+this.buttonHeight-10);t<0&&(t=0),s.top=t}const i=this.$refs.dropdown.$el;i.classList.add("fade-in"),i.style.top=`${s.top}px`,i.style.left=`${s.left}px`,d.$.emit("dropdown-open",this.$refs.dropdown)},toggle(t){t?.stopPropagation(),this.$emit("click",t),this.visible?this.close():this.open()},onKeyUp(t){t.stopPropagation(),"Escape"===t.key&&this.close()}},mounted(){document.body.addEventListener("keyup",this.onKeyUp)},unmounted(){document.body.removeEventListener("keyup",this.onKeyUp)}},m=s(3744);const k=(0,m.Z)(p,[["render",u],["__scopeId","data-v-3f1ad726"]]);var g=k},3218:function(t,e,s){s.d(e,{Z:function(){return c}});var a=s(6252),n=s(3577);const i=["id"];function o(t,e,s,o,l,r){return(0,a.wg)(),(0,a.iD)("div",{class:"dropdown",id:s.id,style:(0,n.j5)(s.style),onClick:e[0]||(e[0]=e=>t.$emit("click",e))},[(0,a.WI)(t.$slots,"default",{},void 0,!0)],12,i)}var l={emits:["click"],props:{id:{type:String},keepOpenOnItemClick:{type:Boolean,default:!1},style:{type:Object,default:()=>({})}}},r=s(3744);const u=(0,r.Z)(l,[["render",o],["__scopeId","data-v-24c5aa28"]]);var c=u},7597:function(t,e,s){s.d(e,{Z:function(){return k}});var a=s(6252),n=s(3577);const i=["title"],o={key:0,class:"col-2 icon"},l=["textContent"];function r(t,e,s,r,u,c){const d=(0,a.up)("Icon");return(0,a.wg)(),(0,a.iD)("div",{class:(0,n.C_)(["row item",{...c.itemClass_,disabled:s.disabled}]),title:s.hoverText,onClick:e[0]||(e[0]=(...t)=>c.clicked&&c.clicked(...t))},[s.iconClass?.length||s.iconUrl?.length?((0,a.wg)(),(0,a.iD)("div",o,[(0,a.Wm)(d,{class:(0,n.C_)(s.iconClass),url:s.iconUrl},null,8,["class","url"])])):(0,a.kq)("",!0),(0,a._)("div",{class:(0,n.C_)(["text",{"col-10":null!=s.iconClass}]),textContent:(0,n.zw)(s.text)},null,10,l)],10,i)}var u=s(657),c=s(5250),d={components:{Icon:u.Z},emits:["click","input"],props:{iconClass:{type:String},iconUrl:{type:String},text:{type:String},hoverText:{type:String,default:null},disabled:{type:Boolean,default:!1},itemClass:{}},computed:{itemClass_(){return"string"===typeof this.itemClass?{[this.itemClass]:!0}:this.itemClass}},methods:{clicked(t){if(this.$parent.keepOpenOnItemClick||c.$.emit("dropdown-close"),this.disabled)return t.stopPropagation(),t.preventDefault(),!1;this.$emit("input",t)}}},p=s(3744);const m=(0,p.Z)(d,[["render",r],["__scopeId","data-v-2babe09c"]]);var k=m},657:function(t,e,s){s.d(e,{Z:function(){return d}});var a=s(6252),n=s(3577);const i={class:"icon-container"},o=["src","alt"];function l(t,e,s,l,r,u){return(0,a.wg)(),(0,a.iD)("div",i,[s.url?.length?((0,a.wg)(),(0,a.iD)("img",{key:0,class:"icon",src:s.url,alt:s.alt},null,8,o)):u.className?.length?((0,a.wg)(),(0,a.iD)("i",{key:1,class:(0,n.C_)(["icon",u.className]),style:(0,n.j5)({color:s.color})},null,6)):(0,a.kq)("",!0)])}var r={props:{class:{type:String},url:{type:String},color:{type:String,default:""},alt:{type:String,default:""}},computed:{className(){return this.class}}},u=s(3744);const c=(0,u.Z)(r,[["render",l],["__scopeId","data-v-706a3bd1"]]);var d=c},8140:function(t,e,s){s.d(e,{Z:function(){return h}});var a=s(6252),n=s(3577),i=s(9963);const o={class:"slider-wrapper"},l=["textContent"],r=["textContent"],u={class:"slider-container"},c=["min","max","step","disabled","value"],d=["textContent"];function p(t,e,s,p,m,k){return(0,a.wg)(),(0,a.iD)("label",o,[s.withRange?((0,a.wg)(),(0,a.iD)("span",{key:0,class:(0,n.C_)(["range-labels",{"with-label":s.withLabel}])},[s.withRange?((0,a.wg)(),(0,a.iD)("span",{key:0,class:"label left",textContent:(0,n.zw)(s.range[0])},null,8,l)):(0,a.kq)("",!0),s.withRange?((0,a.wg)(),(0,a.iD)("span",{key:1,class:"label right",textContent:(0,n.zw)(s.range[1])},null,8,r)):(0,a.kq)("",!0)],2)):(0,a.kq)("",!0),(0,a._)("span",u,[(0,a._)("input",{class:(0,n.C_)(["slider",{"with-label":s.withLabel}]),type:"range",min:s.range[0],max:s.range[1],step:s.step,disabled:s.disabled,value:s.value,ref:"range",onInput:e[0]||(e[0]=(0,i.iM)((e=>t.$emit("input",e)),["stop"])),onChange:e[1]||(e[1]=(0,i.iM)((e=>t.$emit("change",e)),["stop"]))},null,42,c),s.withLabel?((0,a.wg)(),(0,a.iD)("span",{key:0,class:"label",textContent:(0,n.zw)(s.value),ref:"label"},null,8,d)):(0,a.kq)("",!0)])])}var m={emits:["input","change"],props:{value:{type:Number},disabled:{type:Boolean,default:!1},range:{type:Array,default:()=>[0,100]},step:{type:Number,default:1},withLabel:{type:Boolean,default:!1},withRange:{type:Boolean,default:!1}}},k=s(3744);const g=(0,k.Z)(m,[["render",p],["__scopeId","data-v-d90e850c"]]);var h=g}}]); +//# sourceMappingURL=1421.578b11dd.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1421.578b11dd.js.map b/platypush/backend/http/webapp/dist/static/js/1421.578b11dd.js.map new file mode 100644 index 0000000000..ba3b573291 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1421.578b11dd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1421.578b11dd.js","mappings":"mLACOA,MAAM,0B,GACJA,MAAM,wB,qBAINA,MAAM,6B,GAINA,MAAM,wB,uFATbC,EAAAA,EAAAA,IAaM,MAbNC,EAaM,EAZJC,EAAAA,EAAAA,GAGM,MAHNC,EAGM,EAFFD,EAAAA,EAAAA,GAC+H,QADzHH,MAAM,e,aACNK,EAAAA,EAAAA,IAAmB,MAAXC,EAAyGC,SAApE,SAAjBD,EAAAE,OAAOC,OAAqC,UAAjBH,EAAAE,OAAOC,MAA4C,OAAvBC,EAAAC,YAAYL,EAAAC,W,aAEzGJ,EAAAA,EAAAA,GAGM,MAHNS,EAGM,EAFJC,EAAAA,EAAAA,IACuDC,EAAA,CAD9CC,MAAOT,EAAAC,QAAUS,MAAK,GAAMV,EAAAW,UAAYC,UAAWZ,EAAAW,UAA6B,SAAjBX,EAAAE,OAAOC,MACtEU,SAAMC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,OAAQD,EAAOE,OAAOR,S,wCAE/CZ,EAAAA,EAAAA,GAGM,MAHNqB,EAGM,EAFFrB,EAAAA,EAAAA,GAC2F,QADrFH,MAAM,a,aACNK,EAAAA,EAAAA,IAAQC,EAAqEW,UAAxC,SAAjBX,EAAAE,OAAOC,MAAmBC,EAAAC,YAAYL,EAAAW,UAAY,S,sCASpF,GACEQ,WAAY,CAACC,OAAMA,EAAAA,GACnBC,MAAO,CAAC,QACRC,OAAQ,CAACC,EAAAA,GAETC,MAAO,CACLvB,QAAS,CACPwB,KAAMC,QAGRf,SAAU,CACRc,KAAMC,QAIRxB,OAAQ,CACNuB,KAAME,OACNC,QAASA,KAAA,CAAS,M,UC/BxB,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,8ECROpC,MAAM,mB,GACJA,MAAM,kB,GAGNA,MAAM,sB,uEAJbC,EAAAA,EAAAA,IAwBM,MAxBNC,EAwBM,EAvBJC,EAAAA,EAAAA,GAEM,MAFNC,EAEM,EADJiC,EAAAA,EAAAA,IAAQ3B,EAAA4B,OAAA,kBAAAC,GAAA,MAEVpC,EAAAA,EAAAA,GAmBM,MAnBNqC,EAmBM,EAlBJ3B,EAAAA,EAAAA,IAiBsC4B,EAAA,CAjB3BC,QAASpC,EAAAoC,QACTC,MAAOrC,EAAAqC,MACPnC,OAAQF,EAAAE,OACRoC,MAAOtC,EAAAsC,MACPC,UAAOzB,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,UAAWD,IAC1ByB,OAAI1B,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,OAAQD,IACpB0B,OAAI3B,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,SACZ0B,OAAI5B,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,SACZ2B,QAAK7B,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,QAASD,IACtB6B,OAAI9B,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,OAAQD,IACpB8B,WAAQ/B,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,aAChB8B,SAAMhC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,SAAUD,IACxBgC,SAAMjC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,SAAUD,IACxBiC,SAAMlC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,SAAUD,IACxBkC,OAAInC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,OAAQD,IACpBmC,YAAUpC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,aAAcD,IAChCoC,OAAIrC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,SACZoC,SAAMtC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,Y,8IClBpBtB,MAAM,0B,yBAINA,MAAM,kB,GAMRA,MAAM,yB,GACJA,MAAM,W,GACJA,MAAM,W,UAEPG,EAAAA,EAAAA,GAAwC,KAArCH,MAAM,4BAA0B,W,GAAnC2D,G,UAGAxD,EAAAA,EAAAA,GAA+B,KAA5BH,MAAM,mBAAiB,W,GAA1B4D,G,UAGAzD,EAAAA,EAAAA,GAAuC,KAApCH,MAAM,2BAAyB,W,GAAlC6D,G,GAMH7D,MAAM,O,GAiBNA,MAAM,O,GAKRA,MAAM,Y,GACJA,MAAM,wC,GAINA,MAAM,2C,SAEFA,MAAM,iB,mBAINA,MAAM,mB,SACJA,MAAM,S,sEAMNA,MAAM,U,qBAOZA,MAAM,wC,GACJA,MAAM,e,UAEPG,EAAAA,EAAAA,GAAwC,KAArCH,MAAM,4BAA0B,W,GAAnC8D,G,UAIA3D,EAAAA,EAAAA,GAA+B,KAA5BH,MAAM,mBAAiB,W,GAA1B+D,G,UAGA5D,EAAAA,EAAAA,GAAuC,KAApCH,MAAM,2BAAyB,W,GAAlCgE,G,GAIChE,MAAM,O,GAKRA,MAAM,qC,eAMNA,MAAM,qC,mLAtGbG,EAAAA,EAAAA,GAkDM,OAlDDH,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,oBAAmB,CAAAC,QAAmBC,EAAAC,a,CAGlB,SAAlB9D,EAAAE,QAAQC,QAAK,WAFxBR,EAAAA,EAAAA,IAWM,O,MAXDD,MAAM,kBACLqE,QAAKjD,EAAA,KAAAA,EAAA,IAAAkD,EAAAA,EAAAA,KAAA,IAAAC,IAAUC,EAAAC,aAAAD,EAAAC,eAAAF,IAAW,e,CAEYC,EAAAE,aAAU,WAApDzE,EAAAA,EAAAA,IAEM,MAFNC,EAEM,EADJC,EAAAA,EAAAA,GAAuD,OAAlDH,MAAM,QAAS2E,IAAKH,EAAAE,WAAaE,IAAKJ,EAAAK,Y,0BAG7C5E,EAAAA,EAAAA,IAGM,MAHNuC,EAGM,EAFJrC,EAAAA,EAAAA,GACiD,KAD9CH,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,2BAA0B,CAAAa,QACG,SAAlBxE,EAAAE,QAAQC,U,+BAIhCN,EAAAA,EAAAA,GAcM,MAdNS,EAcM,EAbJT,EAAAA,EAAAA,GAYM,MAZNqB,EAYM,EAXJrB,EAAAA,EAAAA,GAUM,MAVN4E,EAUM,CATiEZ,EAAAa,SAASC,WAAQ,WAAtFhF,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,aAAa4D,MAAM,uB,oBAGJf,EAAAa,SAASG,MAAyB,SAAjB7E,EAAAE,OAAOC,QAAK,WAAlER,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,SAAyD4D,MAAM,iB,oBAGxBf,EAAAa,SAASI,OAAI,WAA1EnF,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,SAAS4D,MAAM,mB,2BAO3C/E,EAAAA,EAAAA,GAeM,MAfNkF,EAeM,EAdJxE,EAAAA,EAAAA,IAMgCyE,EAAA,CAL3BtE,MAAOV,EAAAiF,YACP/E,OAAQF,EAAAE,OACRO,MAAOT,EAAAE,OAAOgF,OACdzC,OAAI3B,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,SACZkC,YAAUpC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,aAAcD,IAChCqC,SAAMtC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,Y,oCAEnBT,EAAAA,EAAAA,IAKgD4E,EAAA,CAJ3C/C,QAASyB,EAAAa,SACTxE,OAAQF,EAAAE,OACRqC,UAAOzB,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,WAAYhB,EAAAE,OAAOkF,UAClCtC,SAAMhC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,UAAWhB,EAAAE,OAAOmF,SAChCtC,SAAMjC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,UAAWhB,EAAAE,OAAOoF,U,gCAGvCzF,EAAAA,EAAAA,GAEM,MAFN0F,EAEM,EADJhF,EAAAA,EAAAA,IAAsGiF,EAAA,CAAxFvF,QAAS4D,EAAA5D,QAAUU,SAAUuD,EAAAvD,SAAWT,OAAQF,EAAAE,OAAS+C,OAAInC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,OAAQD,K,+CAI/FlB,EAAAA,EAAAA,GA4DM,MA5DN4F,EA4DM,EA3DJ5F,EAAAA,EAAAA,GAEM,MAFN6F,EAEM,EADJnF,EAAAA,EAAAA,IAAkFoF,EAAA,CAAhEzF,OAAQF,EAAAE,OAAS0C,OAAI9B,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,SAAU2B,QAAK7B,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,W,sBAGxEnB,EAAAA,EAAAA,GAkBM,MAlBN+F,EAkBM,CAjBwD5F,EAAAsC,OAA2B,SAAlBtC,EAAAE,QAAQC,QAAK,WAAlFR,EAAAA,EAAAA,IAgBM,O,MAhBDD,MAAM,aAAcqE,QAAKjD,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,OAAQhB,EAAAsC,S,CACX4B,EAAAE,aAAU,WAA3CzE,EAAAA,EAAAA,IAEM,MAFNkG,EAEM,EADJhG,EAAAA,EAAAA,GAAoE,OAA/DH,MAAM,qBAAsB2E,IAAKH,EAAAE,WAAaE,IAAKJ,EAAAK,Y,8BAG1D1E,EAAAA,EAAAA,GAUM,MAVNiG,EAUM,CATsC,SAAjB9F,EAAAE,OAAOC,OAAqC,UAAjBH,EAAAE,OAAOC,QAAK,WAAhER,EAAAA,EAAAA,IAKM,MALNoG,EAKM,CAHkC/F,EAAAsC,MAAM0D,QAAK,WADjDrG,EAAAA,EAAAA,IACuD,K,MADnDsG,KAAM7F,EAAA8F,OAAOC,S,aAAUpG,EAAAA,EAAAA,IAAQmE,EAAWK,YAC1CR,QAAKjD,EAAA,MAAAA,EAAA,KAAAkD,EAAAA,EAAAA,KAAA,IAAAC,IAAUC,EAAAC,aAAAD,EAAAC,eAAAF,IAAW,e,WACIjE,EAAAsC,MAAM8D,MAAG,WAA3CzG,EAAAA,EAAAA,IAAiD,K,mBAA9CI,EAAAA,EAAAA,IAAQmE,EAAWK,a,wBACtB5E,EAAAA,EAAAA,IAAwC,Q,mBAAlCI,EAAAA,EAAAA,IAAQmE,EAAWK,a,+BAEDL,EAAAmC,iBAAiBC,QAA4B,SAAjBtG,EAAAE,OAAOC,OAAqC,UAAjBH,EAAAE,OAAOC,O,iBAAK,WAA7FR,EAAAA,EAAAA,IAEM,MAFN4G,EAEM,EADJ1G,EAAAA,EAAAA,GAA8D,K,aAA3DE,EAAAA,EAAAA,IAAQmE,EAAgBmC,iBAAEtC,QAAKjD,EAAA,MAAAA,EAAA,KAAAkD,EAAAA,EAAAA,KAAA,IAAAC,IAAUC,EAAAsC,cAAAtC,EAAAsC,gBAAAvC,IAAY,e,qCAMhEpE,EAAAA,EAAAA,GAiBM,MAjBN4G,EAiBM,EAhBJ5G,EAAAA,EAAAA,GAWM,MAXN6G,EAWM,CAViE7C,EAAAa,SAASC,WAAQ,WAAtFhF,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,aAAa4D,MAAM,uB,qBAGzCrE,EAAAA,EAAAA,IAAkFoF,EAAA,CAAhEzF,OAAQF,EAAAE,OAAS0C,OAAI9B,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,SAAU2B,QAAK7B,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,W,mBACjC6C,EAAAa,SAASG,MAAyB,SAAjB7E,EAAAE,OAAOC,QAAK,WAAlER,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,SAAyD4D,MAAM,iB,oBAGxBf,EAAAa,SAASI,OAAI,WAA1EnF,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,SAAS4D,MAAM,mB,uBAKvC/E,EAAAA,EAAAA,GAEM,MAFN8G,EAEM,EADJpG,EAAAA,EAAAA,IAAsGiF,EAAA,CAAxFvF,QAAS4D,EAAA5D,QAAUU,SAAUuD,EAAAvD,SAAWT,OAAQF,EAAAE,OAAS+C,OAAInC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,OAAQD,K,6CAI/FlB,EAAAA,EAAAA,GAIM,MAJN+G,EAIM,EAHJ/G,EAAAA,EAAAA,GAES,UAFAkE,QAAKjD,EAAA,MAAAA,EAAA,IAAAC,GAAE8C,EAAAC,UAAYD,EAAAC,UAAWc,MAAOf,EAAAC,SAAW,qBAAuB,uB,EAC9EjE,EAAAA,EAAAA,GAAqE,KAAlEH,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,MAAK,gBAAwBE,EAAAC,SAAW,OAAS,U,iBAI9DjE,EAAAA,EAAAA,GASM,MATNgH,EASM,EARJtG,EAAAA,EAAAA,IAE8CyE,EAAA,CAF/BvE,MAAOT,EAAAE,OAAOgF,OAASxE,MAAOV,EAAAiF,YAAc/E,OAAQF,EAAAE,OAChEuC,OAAI3B,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,SAAUoC,SAAMtC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,WACpCkC,YAAUpC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,aAAcD,K,oCAEnCR,EAAAA,EAAAA,IAGgD4E,EAAA,CAHhCjF,OAAQF,EAAAE,OAASkC,QAASyB,EAAAa,SACrCnC,UAAOzB,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,WAAYhB,EAAAE,OAAOkF,UAClCtC,SAAMhC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,UAAWhB,EAAAE,OAAOmF,SAChCtC,SAAMjC,EAAA,MAAAA,EAAA,IAAAC,GAAEX,EAAAY,MAAM,UAAWhB,EAAAE,OAAOoF,U,6HC9GpC5F,MAAM,4B,WAEPG,EAAAA,EAAAA,GAAmC,KAAhCH,MAAM,uBAAqB,W,IAA9BI,I,WAGAD,EAAAA,EAAAA,GAAiC,KAA9BH,MAAM,qBAAmB,W,IAA5BY,I,WAGAT,EAAAA,EAAAA,GAA+B,KAA5BH,MAAM,mBAAiB,W,IAA1B+E,I,2CARJ9E,EAAAA,EAAAA,IAUM,MAVNC,EAUM,CATmGI,EAAAoC,QAAQgD,UAAO,WAAtHzF,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,YAAatB,OAAKiE,EAAAA,EAAAA,IAAA,CAAAmD,QAAY9G,EAAAE,OAAOkF,UAAUR,MAAM,uB,uBAGqB5E,EAAAoC,QAAQiD,SAAM,WAA9G1F,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,WAAYtB,OAAKiE,EAAAA,EAAAA,IAAA,CAAAmD,QAAY9G,EAAAE,OAAOmF,SAAST,MAAM,kB,uBAGsB5E,EAAAoC,QAAQkD,SAAM,WAA7G3F,EAAAA,EAAAA,IAES,U,MAFAoE,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,WAAYtB,OAAKiE,EAAAA,EAAAA,IAAA,CAAAmD,QAAY9G,EAAAE,OAAOoF,SAASV,MAAM,iB,yBAO7E,QACEvD,MAAO,CAAC,UAAW,SAAU,UAC7BG,MAAO,CACLtB,OAAQ,CACNuB,KAAME,OACNC,QAASA,KAAA,CAAS,IAGpBQ,QAAS,CACPX,KAAME,OACNC,QAASA,KAAA,CAAS,M,WClBxB,MAAMC,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,6BCNOnC,MAAM,+B,UACNA,MAAM,8B,2CAHXC,EAAAA,EAAAA,IAIS,UAJAoE,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAuB,SAAjBhB,EAAAE,OAAOC,MAAmB,QAAU,SACjDyE,MAAwB,SAAjB5E,EAAAE,OAAOC,MAAmB,QAAU,Q,CACY,SAAjBH,EAAAE,OAAOC,QAAK,WAAzDR,EAAAA,EAAAA,IAA0E,IAA1EG,OAA0E,WAC1EH,EAAAA,EAAAA,IAAiD,IAAjDuC,MAAiD,K,CAKrD,QACEb,MAAO,CAAC,OAAQ,SAChBG,MAAO,CACLtB,OAAQ,CACNuB,KAAME,OACNC,QAASA,KAAA,CAAS,MCPxB,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,qBCROlC,MAAM,2B,IACJA,MAAM,S,kCAKJA,MAAM,2B,UACNA,MAAM,wB,IAIRA,MAAM,wB,sEAXbC,EAAAA,EAAAA,IAeM,MAfNC,GAeM,EAdJC,EAAAA,EAAAA,GAQM,MARNC,GAQM,EAPJD,EAAAA,EAAAA,GAMS,UALNe,SAAyB,MAAfZ,EAAAE,OAAO6G,KACjBnC,MAAO5E,EAAAE,OAAO6G,KAAO,QAAU,UAC/BhD,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAMhB,EAAAE,OAAO6G,KAAO,SAAW,U,CACE/G,EAAAE,OAAO6G,OAAI,WAApDpH,EAAAA,EAAAA,IAAwD,IAAxDW,OAAwD,WACxDX,EAAAA,EAAAA,IAAyC,IAAzCuB,MAAyC,SAI7CrB,EAAAA,EAAAA,GAGM,MAHN4E,GAGM,EAFJlE,EAAAA,EAAAA,IAC6DC,EAAA,CADpDC,MAAOT,EAAAE,OAAOgF,OAASxE,MAAOV,EAAAiF,YAAcrE,SAA2B,MAAjBZ,EAAAE,OAAOgF,OAC7DrE,SAAMC,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,aAAcD,EAAOE,OAAOR,S,wDAQzD,IACEU,WAAY,CAACC,OAAMA,GAAAA,GACnBC,MAAO,CAAC,aAAc,OAAQ,UAE9BG,MAAO,CAELyD,YAAa,CACXxD,KAAMuF,MACNpF,QAASA,IAAM,CAAC,EAAG,MAIrB1B,OAAQ,CACNuB,KAAME,OACNC,QAASA,KAAA,CAAS,MC7BxB,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UNmHA,IACET,WAAY,CAAC8F,cAAa,GAAEC,gBAAe,GAAEC,YAAW,KAAEC,aAAYA,IACtE9F,OAAQ,CAAC+F,EAAAA,EAAO9F,EAAAA,GAChBF,MAAO,CACL,UACA,OACA,OACA,OACA,QACA,OACA,WACA,SACA,SACA,SACA,OACA,aACA,OACA,UAGFG,MAAO,CACLc,MAAO,CACLb,KAAME,QAGRzB,OAAQ,CACNuB,KAAME,OACNC,QAASA,QAGXS,MAAO,CACLZ,KAAM6F,OACN1F,QAAS,MAIXQ,QAAS,CACPX,KAAME,OACNC,QAASA,KACA,CACL+C,UAAU,EACVG,MAAM,EACND,MAAM,EACNO,SAAS,EACTC,QAAQ,EACRC,QAAQ,KAMdL,YAAa,CACXxD,KAAMuF,MACNpF,QAASA,IAAM,CAAC,EAAG,OAIvB2F,IAAAA,GACE,MAAMnF,EAAUT,OAAO6F,KAAKC,KAAKrF,UAAUkE,OAASmB,KAAKrF,QAAU,CACjEuC,UAAU,EACVG,MAAM,EACND,MAAM,EACNO,SAAS,EACTC,QAAQ,EACRC,QAAQ,GAGV,MAAO,CACLxB,UAAU,EACV4D,SAAU,EACVzH,QAASwH,KAAKvH,QAAQD,SAAWwH,KAAKvH,QAAQyH,SAC9CjD,SAAUtC,EAEd,EAEAwF,SAAU,CACRjH,QAAAA,GACE,MAAMA,EAAoC,MAAzB8G,KAAKvH,QAAQS,SAAmB8G,KAAKvH,OAAOS,SAAW8G,KAAKnF,OAAO3B,SACpF,OAAgB,MAAZA,EACKkH,WAAWlH,GAEb,IACT,EAEAmH,aAAAA,GACE,MAAqC,kBAAvBL,KAAKnF,OAAOyF,OAAsBN,KAAKnF,MAAMyF,OAAOC,GAAK,IACzE,EAEA3B,eAAAA,GACE,MAAkC,kBAAvBoB,KAAKnF,OAAOyF,OACdN,KAAKnF,MAAMyF,OAEbN,KAAKnF,OAAOyF,QAAQE,MAAQR,KAAKnF,OAAOyF,QAAQnD,KACzD,EAEAR,UAAAA,GACE,OAAIqD,KAAKnF,OAAO4F,QAAQ5B,OACfmB,KAAKnF,MAAM4F,OAAO,GAAG9B,IAEvBqB,KAAKnF,OAAOD,OAASoF,KAAKpF,KACnC,EAEAkC,UAAAA,GACE,OAAOkD,KAAKnF,OAAOsC,OAAS6C,KAAKnF,OAAO2F,MAAQ,YAClD,GAGFE,QAAS,CACPC,OAAAA,GACE,OAAQ,IAAIC,MAAQD,UAAY,GAClC,EAEAjE,WAAAA,GACE,IAAMsD,KAAKnF,OAAOyF,SAAUN,KAAKnF,OAAO0D,MACtC,OAEF,MAAM/B,EAAO,CACX8D,OAAQN,KAAKnF,MAAMyF,OACnB/B,MAAOyB,KAAKnF,MAAM0D,OAGhByB,KAAKnF,MAAMgG,YACbrE,EAAKsE,KAAO,CAACd,KAAKnF,MAAMgG,YAE1Bb,KAAKzG,MAAM,SAAUiD,EACvB,EAEAuC,YAAAA,GACE,IAAKiB,KAAKpB,iBAAiBC,OACzB,OAEF,MAAMrC,EAAO,CACX8D,OAAQN,KAAKpB,iBAGXoB,KAAKnF,MAAMkG,aACbvE,EAAKsE,KAAO,CAACd,KAAKnF,MAAMgG,YAE1Bb,KAAKzG,MAAM,SAAUiD,EACvB,GAGFwE,OAAAA,GACE,MAAMC,EAAOjB,KACbA,KAAKC,SAAWD,KAAKW,UAErBX,KAAKkB,QAAO,IAAMlB,KAAKnF,QAAQA,IACxBA,GAAgC,SAAvBoG,EAAKxI,QAAQC,QACzBuI,EAAKhB,SAAWD,KAAKW,UAAS,IAGlCX,KAAKkB,QAAO,IAAMlB,KAAKvH,SAAQ,KAC7BwI,EAAKhB,SAAWD,KAAKW,SAAS,IAGhCQ,aAAY,KACiB,SAAvBF,EAAKxI,QAAQC,QACfuI,EAAKzI,QAAWyI,EAAKxI,QAAQD,SAAWyI,EAAKxI,QAAQyH,UAAY,EACtC,SAAvBe,EAAKxI,QAAQC,QACfuI,EAAKzI,SAAW4I,KAAKC,MAAMrB,KAAKW,UAAYM,EAAKhB,WACrD,GACC,IACL,GOvRF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,URsBA,IACEO,KAAM,OACN9G,WAAY,CAAC4H,SAAQA,IACrB1H,MAAO,CACL,UACA,OACA,OACA,OACA,QACA,OACA,WACA,SACA,SACA,SACA,OACA,aACA,OACA,UAGFG,MAAO,CACLwH,WAAY,CACVvH,KAAM6F,OACN2B,UAAU,GAGZ/I,OAAQ,CACNuB,KAAME,OACNC,QAASA,QAGXU,MAAO,CACLb,KAAME,QAGRU,MAAO,CACLZ,KAAM6F,OACN1F,QAAS,MAGXQ,QAAS,CACPX,KAAME,USjEZ,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAASG,GAAQ,CAAC,YAAY,qBAEzF,S,kGCROpC,MAAM,sB,yGAAXC,EAAAA,EAAAA,IAeM,MAfNC,EAeM,EAdJC,EAAAA,EAAAA,GAGS,UAHA+E,MAAO5E,EAAA4E,MAAOsE,IAAI,SAAUnF,QAAKjD,EAAA,KAAAA,EAAA,IAAAkD,EAAAA,EAAAA,KAAAjD,GAAOmD,EAAAiF,OAAOpI,IAAM,Y,CACnBf,EAAAoJ,YAAS,WAAlDzJ,EAAAA,EAAAA,IAAsD,K,MAAnDD,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,OAAe3D,EAAAoJ,a,yBACepJ,EAAAqJ,OAAI,WAA3C1J,EAAAA,EAAAA,IAA+C,Q,MAAzCD,MAAM,O,aAAOK,EAAAA,EAAAA,IAAQC,EAAKqJ,O,kCAGlCxJ,EAAAA,EAAAA,GAQM,OARDH,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,iBAAgB,CAAAC,QAAoBC,EAAAyF,WAAWJ,IAAI,qB,EAC5D3I,EAAAA,EAAAA,IAMegJ,EAAA,CANAvB,GAAIhI,EAAAgI,GACJwB,oBAAqBxJ,EAAAwJ,oBACrBC,OAAKC,EAAAA,EAAAA,IAAE1J,EAAAyJ,OACRP,IAAI,WACHnF,QAAOG,EAAAH,S,mBACpB,IAAQ,EAARhC,EAAAA,EAAAA,IAAQ3B,EAAA4B,OAAA,kBAAAC,GAAA,M,qFAUhB,GACEd,WAAY,CAAEwI,aAAYA,EAAAA,GAC1BtI,MAAO,CAAC,SACRG,MAAO,CACLwG,GAAI,CACFvG,KAAM6F,QAGR8B,UAAW,CACTxH,QAAS,oBAGXyH,KAAM,CACJ5H,KAAM6F,QAGR1C,MAAO,CACLnD,KAAM6F,QAGRkC,oBAAqB,CACnB/H,KAAMmI,QACNhI,SAAS,GAGX6H,MAAO,CACLhI,KAAME,OACNC,QAASA,KAAA,CAAS,KAItB2F,IAAAA,GACE,MAAO,CACL+B,SAAS,EAEb,EAEA1B,SAAU,CACRiC,MAAAA,GACE,MAAMC,EAAKrC,KAAKsC,MAAMF,QAAQG,IAC9B,OAAKF,EAGEA,EAAGG,cAAc,UAFfxC,KAAKsC,MAAMF,MAGtB,EAEAK,WAAAA,GACE,OAAKzC,KAAKoC,OAGHM,iBAAiB1C,KAAKoC,QAFpB,CAAC,CAGZ,EAEAO,WAAAA,GACE,OAAOvC,WAAWJ,KAAKyC,YAAYG,OAAS,EAC9C,EAEAC,YAAAA,GACE,OAAOzC,WAAWJ,KAAKyC,YAAYK,QAAU,EAC/C,GAGFpC,QAAS,CACPqC,iBAAAA,CAAkBC,GAChB,IAAKhD,KAAK6B,QACR,OAEF,IAAIoB,EAAUD,EAAMxJ,OACpB,MAAOyJ,EAAS,CACd,GAAIA,EAAQC,UAAUC,SAAS,YAC7B,OAEFF,EAAUA,EAAQG,aACpB,CAEApD,KAAKqD,OACP,EAEAC,gBAAAA,GACE,MAAMC,EAAWvD,KAAKsC,MAAMiB,UAAUhB,IACtC,OAAKgB,EAGEnD,WAAWsC,iBAAiBa,GAAUX,OAFpC,CAGX,EAEAY,iBAAAA,GACE,MAAMD,EAAWvD,KAAKsC,MAAMiB,UAAUhB,IACtC,OAAKgB,EAGEnD,WAAWsC,iBAAiBa,GAAUT,QAFpC,CAGX,EAEAxG,OAAAA,CAAQ0G,GAIN,OAHKhD,KAAK+B,qBACR/B,KAAKqD,QAEsB,MAAzBL,EAAMxJ,OAAOiK,SACfT,EAAMU,kBACC,GAGLV,EAAMW,kBACRX,EAAMY,mBACC,QAFT,CAIF,EAEAP,KAAAA,GACErD,KAAK6B,SAAU,EACfgC,SAASC,oBAAoB,QAAS9D,KAAK+C,mBAC3CgB,EAAAA,EAAIC,KAAK,iBACX,EAEAC,IAAAA,GACEJ,SAASK,iBAAiB,QAASlE,KAAK+C,mBACxC,MAAME,EAAUjD,KAAKsC,MAAMiB,UAAUhB,IAChCU,EAAQG,eACXpD,KAAKuC,IAAI4B,YAAYlB,GAEvBjD,KAAK6B,SAAU,EACf7B,KAAKoE,UAAUpE,KAAKqE,kBACtB,EAEAA,iBAAAA,GACE,MAAMC,EAAatE,KAAKoC,OAAOmC,wBACzBC,EAAY,CAChBC,KAAMH,EAAWG,KAAOC,OAAOC,QAC/BC,IAAKN,EAAWM,IAAMF,OAAOG,SAGzBC,EAAM,CACVL,KAAMD,EAAUC,KAChBG,IAAKJ,EAAUI,IAAM5E,KAAK6C,cAGtBkC,EAAgB/E,KAAKsD,mBACrB0B,EAAiBhF,KAAKwD,oBAM5B,GAJKsB,EAAIL,KAAOM,GAAkBL,OAAOO,WAAaP,OAAOC,SAAW,IACtEG,EAAIL,MAASM,EAAgB/E,KAAK2C,aAG/BmC,EAAIF,IAAMI,GAAmBN,OAAOQ,YAAcR,OAAOG,SAAW,EAAG,CAC1E,IAAIM,EAAYL,EAAIF,KAAOI,EAAiBhF,KAAK6C,aAAe,IAC5DsC,EAAY,IACdA,EAAY,GAEdL,EAAIF,IAAMO,CACZ,CAEA,MAAMlC,EAAUjD,KAAKsC,MAAMiB,SAAShB,IACpCU,EAAQC,UAAUkC,IAAI,WACtBnC,EAAQjB,MAAM4C,IAAO,GAAEE,EAAIF,QAC3B3B,EAAQjB,MAAMyC,KAAQ,GAAEK,EAAIL,SAC5BV,EAAAA,EAAIC,KAAK,gBAAiBhE,KAAKsC,MAAMiB,SACvC,EAEA7B,MAAAA,CAAOsB,GACLA,GAAOY,kBACP5D,KAAKzG,MAAM,QAASyJ,GACpBhD,KAAK6B,QAAU7B,KAAKqD,QAAUrD,KAAKiE,MACrC,EAEAoB,OAAAA,CAAQrC,GACNA,EAAMY,kBACY,WAAdZ,EAAMsC,KACRtF,KAAKqD,OAET,GAGFrC,OAAAA,GACE6C,SAAS0B,KAAKrB,iBAAiB,QAASlE,KAAKqF,QAC/C,EAEAG,SAAAA,GACE3B,SAAS0B,KAAKzB,oBAAoB,QAAS9D,KAAKqF,QAClD,G,UCnMF,MAAMjL,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,wICREnC,EAAAA,EAAAA,IAEM,OAFDD,MAAM,WAAYsI,GAAIhI,EAAAgI,GAAKyB,OAAKC,EAAAA,EAAAA,IAAE1J,EAAAyJ,OAAQ1F,QAAKjD,EAAA,KAAAA,EAAA,GAAAC,GAAEX,EAAAY,MAAM,QAASD,K,EACnEgB,EAAAA,EAAAA,IAAQ3B,EAAA4B,OAAA,kBAAAC,GAAA,S,CAKZ,OACEZ,MAAO,CAAC,SACRG,MAAO,CACLwG,GAAI,CACFvG,KAAM6F,QAGRkC,oBAAqB,CACnB/H,KAAMmI,QACNhI,SAAS,GAGX6H,MAAO,CACLhI,KAAME,OACNC,QAASA,KAAA,CAAS,M,UCdxB,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,0GCNSpC,MAAM,c,qFAFbC,EAAAA,EAAAA,IAMM,OANDD,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,WAAU,IAAaO,EAAAgJ,WAAUtM,SAAYZ,EAAAY,YAClDgE,MAAO5E,EAAAmN,UAAYpJ,QAAKjD,EAAA,KAAAA,EAAA,OAAAmD,IAAEC,EAAAkJ,SAAAlJ,EAAAkJ,WAAAnJ,K,CACAjE,EAAAoJ,WAAW9C,QAAUtG,EAAAqN,SAAS/G,SAAM,WAAlE3G,EAAAA,EAAAA,IAEM,MAFNG,EAEM,EADJS,EAAAA,EAAAA,IAA0C+M,EAAA,CAAnC5N,OAAKiE,EAAAA,EAAAA,IAAE3D,EAAAoJ,WAAYhD,IAAKpG,EAAAqN,S,4CAEjCxN,EAAAA,EAAAA,GAAyE,OAApEH,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,OAAM,UAAiC,MAAb3D,EAAAoJ,a,aAAoBrJ,EAAAA,EAAAA,IAAQC,EAAKqJ,O,yCAQ1E,GACElI,WAAY,CAACoM,KAAIA,EAAAA,GACjBlM,MAAO,CAAC,QAAS,SACjBG,MAAO,CACL4H,UAAW,CACT3H,KAAM6F,QAGR+F,QAAS,CACP5L,KAAM6F,QAGR+B,KAAM,CACJ5H,KAAM6F,QAGR6F,UAAW,CACT1L,KAAM6F,OACN1F,QAAS,MAGXhB,SAAU,CACRa,KAAMmI,QACNhI,SAAS,GAGX4L,UAAW,CAAC,GAGd5F,SAAU,CACRsF,UAAAA,GACE,MAA8B,kBAAnBzF,KAAK+F,UACP,CAAC,CAAC/F,KAAK+F,YAAY,GAErB/F,KAAK+F,SACd,GAGFrF,QAAS,CACPiF,OAAAA,CAAQ3C,GAIN,GAHKhD,KAAKgG,QAAQjE,qBAChBgC,EAAAA,EAAIC,KAAK,kBAEPhE,KAAK7G,SAGP,OAFA6J,EAAMY,kBACNZ,EAAMU,kBACC,EAGT1D,KAAKzG,MAAM,QAASyJ,EACtB,I,UCzDJ,MAAM5I,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,uFCROpC,MAAM,kB,0DAAXC,EAAAA,EAAAA,IAIM,MAJNC,EAIM,CAH0CI,EAAAoG,KAAKE,SAAM,WAAzD3G,EAAAA,EAAAA,IAA2D,O,MAAtDD,MAAM,OAAQ2E,IAAKrE,EAAAoG,IAAM9B,IAAKtE,EAAAsE,K,WAEtBJ,EAAAwJ,WAAWpH,SAAM,WAD9B3G,EAAAA,EAAAA,IACkC,K,MAD/BD,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,OAAeO,EAAAwJ,YAAYjE,OAAKC,EAAAA,EAAAA,IAAA,CAAAiE,MAAU3N,EAAA2N,S,2BAMvD,OACEnM,MAAO,CACL9B,MAAO,CACL+B,KAAM6F,QAERlB,IAAK,CACH3E,KAAM6F,QAERqG,MAAO,CACLlM,KAAM6F,OACN1F,QAAS,IAEX0C,IAAK,CACH7C,KAAM6F,OACN1F,QAAS,KAIbgG,SAAU,CACR8F,SAAAA,GACE,OAAOjG,KAAK/H,KACd,I,UCvBJ,MAAMmC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,kGCRSpC,MAAM,kB,uCAMLA,MAAM,oB,sGANdC,EAAAA,EAAAA,IAqBQ,QArBRC,EAqBQ,CApB8DI,EAAA4N,YAAS,WAA7EjO,EAAAA,EAAAA,IAGO,Q,MAHDD,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,eAAc,cAAwB3D,EAAA6N,c,CACjB7N,EAAA4N,YAAS,WAAxCjO,EAAAA,EAAAA,IAA8D,Q,MAAxDD,MAAM,a,aAA8BK,EAAAA,EAAAA,IAAQC,EAASU,MAAH,K,2BACxBV,EAAA4N,YAAS,WAAzCjO,EAAAA,EAAAA,IAA+D,Q,MAAzDD,MAAM,c,aAA+BK,EAAAA,EAAAA,IAAQC,EAASU,MAAH,K,iDAG3Db,EAAAA,EAAAA,GAcO,OAdPS,EAcO,EAbLT,EAAAA,EAAAA,GAU8C,SAVvCH,OAAKiE,EAAAA,EAAAA,IAAA,CAAC,SAAQ,cAES3D,EAAA6N,aADvBpM,KAAK,QAEJqM,IAAK9N,EAAAU,MAAM,GACXqN,IAAK/N,EAAAU,MAAM,GACXsN,KAAMhO,EAAAgO,KACNpN,SAAUZ,EAAAY,SACVH,MAAOT,EAAAS,MACRyI,IAAI,QACH+E,QAAKnN,EAAA,KAAAA,EAAA,IAAAkD,EAAAA,EAAAA,KAAAjD,GAAOX,EAAAY,MAAM,QAASD,IAAM,WACjCF,SAAMC,EAAA,KAAAA,EAAA,IAAAkD,EAAAA,EAAAA,KAAAjD,GAAOX,EAAAY,MAAM,SAAUD,IAAM,Y,WAEjBf,EAAA6N,YAAS,WAAnClO,EAAAA,EAAAA,IAAuE,Q,MAAjED,MAAM,Q,aAAyBK,EAAAA,EAAAA,IAAQC,EAAMS,OAACyI,IAAI,S,+BAM9D,OACE7H,MAAO,CAAC,QAAS,UACjBG,MAAO,CACLf,MAAO,CACLgB,KAAMC,QAGRd,SAAU,CACRa,KAAMmI,QACNhI,SAAS,GAGXlB,MAAO,CACLe,KAAMuF,MACNpF,QAASA,IAAM,CAAC,EAAG,MAGrBoM,KAAM,CACJvM,KAAMC,OACNE,QAAS,GAGXiM,UAAW,CACTpM,KAAMmI,QACNhI,SAAS,GAGXgM,UAAW,CACTnM,KAAMmI,QACNhI,SAAS,K,UChDf,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/Media/ProgressBar.vue","webpack://platypush/./src/components/Media/ProgressBar.vue?32c3","webpack://platypush/./src/components/Media/View.vue","webpack://platypush/./src/components/Media/Controls.vue","webpack://platypush/./src/components/Media/ExtraControls.vue","webpack://platypush/./src/components/Media/ExtraControls.vue?b9c1","webpack://platypush/./src/components/Media/PlayPauseButton.vue","webpack://platypush/./src/components/Media/PlayPauseButton.vue?80fd","webpack://platypush/./src/components/Media/VolumeSlider.vue","webpack://platypush/./src/components/Media/VolumeSlider.vue?4097","webpack://platypush/./src/components/Media/Controls.vue?3032","webpack://platypush/./src/components/Media/View.vue?78ca","webpack://platypush/./src/components/elements/Dropdown.vue","webpack://platypush/./src/components/elements/Dropdown.vue?e934","webpack://platypush/./src/components/elements/DropdownBody.vue","webpack://platypush/./src/components/elements/DropdownBody.vue?81f6","webpack://platypush/./src/components/elements/DropdownItem.vue","webpack://platypush/./src/components/elements/DropdownItem.vue?d591","webpack://platypush/./src/components/elements/Icon.vue","webpack://platypush/./src/components/elements/Icon.vue?fdba","webpack://platypush/./src/components/elements/Slider.vue","webpack://platypush/./src/components/elements/Slider.vue?787f"],"sourcesContent":["\n\n\n\n\n","import { render } from \"./ProgressBar.vue?vue&type=template&id=3894ad4d&scoped=true\"\nimport script from \"./ProgressBar.vue?vue&type=script&lang=js\"\nexport * from \"./ProgressBar.vue?vue&type=script&lang=js\"\n\nimport \"./ProgressBar.vue?vue&type=style&index=0&id=3894ad4d&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-3894ad4d\"]])\n\nexport default __exports__","\n\n\n\n\n","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./ExtraControls.vue?vue&type=template&id=772c7a5b&scoped=true\"\nimport script from \"./ExtraControls.vue?vue&type=script&lang=js\"\nexport * from \"./ExtraControls.vue?vue&type=script&lang=js\"\n\nimport \"./ExtraControls.vue?vue&type=style&index=0&id=772c7a5b&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-772c7a5b\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./PlayPauseButton.vue?vue&type=template&id=a742ddb0&scoped=true\"\nimport script from \"./PlayPauseButton.vue?vue&type=script&lang=js\"\nexport * from \"./PlayPauseButton.vue?vue&type=script&lang=js\"\n\nimport \"./PlayPauseButton.vue?vue&type=style&index=0&id=a742ddb0&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-a742ddb0\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./VolumeSlider.vue?vue&type=template&id=662f988f&scoped=true\"\nimport script from \"./VolumeSlider.vue?vue&type=script&lang=js\"\nexport * from \"./VolumeSlider.vue?vue&type=script&lang=js\"\n\nimport \"./VolumeSlider.vue?vue&type=style&index=0&id=662f988f&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-662f988f\"]])\n\nexport default __exports__","import { render } from \"./Controls.vue?vue&type=template&id=1f77dbac&scoped=true\"\nimport script from \"./Controls.vue?vue&type=script&lang=js\"\nexport * from \"./Controls.vue?vue&type=script&lang=js\"\n\nimport \"./Controls.vue?vue&type=style&index=0&id=1f77dbac&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-1f77dbac\"]])\n\nexport default __exports__","import { render } from \"./View.vue?vue&type=template&id=6f73c9f5&scoped=true\"\nimport script from \"./View.vue?vue&type=script&lang=js\"\nexport * from \"./View.vue?vue&type=script&lang=js\"\n\nimport \"./View.vue?vue&type=style&index=0&id=6f73c9f5&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-6f73c9f5\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Dropdown.vue?vue&type=template&id=3f1ad726&scoped=true\"\nimport script from \"./Dropdown.vue?vue&type=script&lang=js\"\nexport * from \"./Dropdown.vue?vue&type=script&lang=js\"\n\nimport \"./Dropdown.vue?vue&type=style&index=0&id=3f1ad726&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-3f1ad726\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./DropdownBody.vue?vue&type=template&id=24c5aa28&scoped=true\"\nimport script from \"./DropdownBody.vue?vue&type=script&lang=js\"\nexport * from \"./DropdownBody.vue?vue&type=script&lang=js\"\n\nimport \"./DropdownBody.vue?vue&type=style&index=0&id=24c5aa28&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-24c5aa28\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./DropdownItem.vue?vue&type=template&id=2babe09c&scoped=true\"\nimport script from \"./DropdownItem.vue?vue&type=script&lang=js\"\nexport * from \"./DropdownItem.vue?vue&type=script&lang=js\"\n\nimport \"./DropdownItem.vue?vue&type=style&index=0&id=2babe09c&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-2babe09c\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Icon.vue?vue&type=template&id=706a3bd1&scoped=true\"\nimport script from \"./Icon.vue?vue&type=script&lang=js\"\nexport * from \"./Icon.vue?vue&type=script&lang=js\"\n\nimport \"./Icon.vue?vue&type=style&index=0&id=706a3bd1&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-706a3bd1\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Slider.vue?vue&type=template&id=d90e850c&scoped=true\"\nimport script from \"./Slider.vue?vue&type=script&lang=js\"\nexport * from \"./Slider.vue?vue&type=script&lang=js\"\n\nimport \"./Slider.vue?vue&type=style&index=0&id=d90e850c&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-d90e850c\"]])\n\nexport default __exports__"],"names":["class","_createElementBlock","_hoisted_1","_createElementVNode","_hoisted_2","_toDisplayString","$props","elapsed","status","state","_ctx","convertTime","_hoisted_4","_createVNode","_component_Slider","value","range","duration","disabled","onChange","_cache","$event","$emit","target","_hoisted_5","components","Slider","emits","mixins","MediaUtils","props","type","Number","Object","default","__exports__","render","_renderSlot","$slots","undefined","_hoisted_3","_component_Controls","buttons","image","track","onConsume","onInfo","onMute","onNext","onPause","onPlay","onPrevious","onRandom","onRepeat","onSearch","onSeek","onSetVolume","onStop","onUnmute","_hoisted_7","_hoisted_9","_hoisted_11","_hoisted_29","_hoisted_31","_hoisted_33","_normalizeClass","hidden","$data","expanded","onClick","_withModifiers","args","$options","searchAlbum","trackImage","src","alt","trackTitle","playing","_hoisted_6","buttons_","previous","title","stop","next","_hoisted_13","_component_VolumeSlider","volumeRange","volume","_component_ExtraControls","consume","random","repeat","_hoisted_14","_component_ProgressBar","_hoisted_15","_hoisted_16","_component_PlayPauseButton","_hoisted_17","_hoisted_18","_hoisted_20","_hoisted_21","album","href","$route","fullPath","url","trackArtistName","length","_hoisted_25","searchArtist","_hoisted_27","_hoisted_28","_hoisted_35","_hoisted_36","_hoisted_38","enabled","mute","Array","ExtraControls","PlayPauseButton","ProgressBar","VolumeSlider","Utils","String","data","keys","this","lastSync","position","computed","parseFloat","trackArtistId","artist","id","name","images","methods","getTime","Date","album_uri","uris","artist_uri","mounted","self","$watch","setInterval","Math","round","Controls","pluginName","required","ref","toggle","iconClass","text","visible","_component_DropdownBody","keepOpenOnItemClick","style","_normalizeStyle","DropdownBody","Boolean","button","el","$refs","$el","querySelector","buttonStyle","getComputedStyle","buttonWidth","width","buttonHeight","height","documentClickHndl","event","element","classList","contains","parentElement","close","getDropdownWidth","dropdown","getDropdownHeight","tagName","preventDefault","defaultPrevented","stopPropagation","document","removeEventListener","bus","emit","open","addEventListener","appendChild","$nextTick","adjustDropdownPos","buttonRect","getBoundingClientRect","buttonPos","left","window","scrollX","top","scrollY","pos","dropdownWidth","dropdownHeight","innerWidth","innerHeight","newPosTop","add","onKeyUp","key","body","unmounted","itemClass_","hoverText","clicked","iconUrl","_component_Icon","Icon","itemClass","$parent","className","color","withRange","withLabel","min","max","step","onInput"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1449.a5b4b2d2.js b/platypush/backend/http/webapp/dist/static/js/1449.a1da87d4.js similarity index 99% rename from platypush/backend/http/webapp/dist/static/js/1449.a5b4b2d2.js rename to platypush/backend/http/webapp/dist/static/js/1449.a1da87d4.js index 66b198c239..356e0668e0 100644 --- a/platypush/backend/http/webapp/dist/static/js/1449.a5b4b2d2.js +++ b/platypush/backend/http/webapp/dist/static/js/1449.a1da87d4.js @@ -1,2 +1,2 @@ "use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1449],{3275:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){var _Utils__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(8637),_components_Loading__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(6791),_index__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(9565),vue__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(9963),vue__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(6252),mitt__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(9652);const bus=(0,mitt__WEBPACK_IMPORTED_MODULE_3__.Z)();__webpack_exports__.Z={name:"Elements",components:{Loading:_components_Loading__WEBPACK_IMPORTED_MODULE_1__.Z},mixins:[_Utils__WEBPACK_IMPORTED_MODULE_0__.Z],props:{content:{type:String}},data(){return{loading:!1,unwatch:null}},methods:{_parseActions(e){const t=[...e.children].filter((e=>"actions"===e.tagName?.toLowerCase())),n=t?.length?t[0].children:e.children,s=[...n].filter((e=>"action"===e.tagName?.toLowerCase()));if(s?.length)return[...s].map((e=>({action:e.attributes.name.value,args:[...e.children].reduce(((e,t)=>{let n;try{n=JSON.parse(t.innerText)}catch(s){t.innerText?.length&&(n=t.innerText)}return e[t.tagName.toLowerCase()]=n,e}),{})})))},_parseVars(e){const t=[...e.children].filter((e=>"vars"===e.tagName?.toLowerCase()));if(t?.length)return[...t[0].children].reduce(((e,t)=>{let n;try{n=JSON.parse(t.innerText)}catch(s){t.innerText?.length&&(n=t.innerText)}return e[t.tagName.toLowerCase()]=n,e}),{})},_parseHandlers(element){const handlers={},parseHndlScript=hndlText=>app=>eval(`// noinspection JSUnusedLocalSymbols\n (async function (self) {\n ${hndlText}\n })`)(app),parseEventHndl=hndlText=>app=>event=>eval(`// noinspection JSUnusedLocalSymbols\n (async function (self, event) {\n ${hndlText}\n })`)(app,event),hndlTags=[...element.children].filter((e=>"handlers"===e.tagName?.toLowerCase()));if(hndlTags?.length){const e=[...hndlTags[0].children].filter((e=>"mounted"===e.tagName?.toLowerCase()));e?.length&&(handlers.mounted=parseHndlScript(e[0].innerText));const t=[...hndlTags[0].children].filter((e=>"refresh"===e.tagName?.toLowerCase()));t?.length&&(handlers.refresh={handler:parseHndlScript(t[0].innerText),interval:t[0].attributes.interval?.value||10});const n=[...hndlTags[0].children].filter((e=>"event"===e.tagName?.toLowerCase()));n?.length&&(handlers.events=n.reduce(((e,t)=>(e[t.attributes.type.value]=parseEventHndl(t.innerText),e)),{}))}const actionsTags=[...element.children].filter((e=>"actions"===e.tagName?.toLowerCase()));if(actionsTags?.length){const e=[...actionsTags[0].children].filter((e=>"before"===e.tagName?.toLowerCase()));e?.length&&(handlers.beforeActions=parseHndlScript(e[0].innerText));const t=[...actionsTags[0].children].filter((e=>"after"===e.tagName?.toLowerCase()));t?.length&&(handlers.afterActions=parseHndlScript(t[0].innerText))}return handlers},_parseProps(e){return[...e.attributes].reduce(((e,t)=>(e[t.name]=t.value,e)),{})},propagateEvent(e){bus.emit("event",e)},_addEventHandler(){this.unwatch=this.subscribe((e=>{bus.emit("event",e)}))},_removeEventHandler(){this.unwatch&&(this.unwatch(),this.unwatch=null)}},mounted(){this.loading=!0,this._addEventHandler();try{this.$refs.container.innerHTML=this.content,Object.entries(_index__WEBPACK_IMPORTED_MODULE_2__.Z).forEach((([e,t])=>{this.$options.components[e]=t,[...this.$refs.container.getElementsByTagName(e)].forEach((e=>{const n=this._parseProps(e);n.actions=this._parseActions(e),n.handlers=this._parseHandlers(e),n._vars=this._parseVars(e);const s=document.createElement("div");s.setAttribute("class","component"),s.innerHTML=e.innerHTML,e.parentNode.replaceChild(s,e),(0,vue__WEBPACK_IMPORTED_MODULE_4__.ri)({render(){return(0,vue__WEBPACK_IMPORTED_MODULE_5__.h)(t,n)},data(){return{bus:bus}}}).mount(s)}))}));for(const e of["handlers","actions","vars"])this.$refs.container.getElementsByTagName(e).forEach((e=>{e.parentNode.removeChild(e)}))}finally{this.loading=!1}},unmounted(){this._removeEventHandler()}}},7105:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){var _Utils__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(8637);__webpack_exports__.Z={mixins:[_Utils__WEBPACK_IMPORTED_MODULE_0__.Z],props:{name:{type:String,default:"[Unnamed sensor]"},iconClass:{type:String},iconUrl:{type:String},iconColor:{type:String},actions:{type:Array,default:()=>[]},_vars:{type:Object,default:()=>({})},handlers:{type:Object,default:()=>({})},bus:{type:Object}},data(){return{vars:{...this._vars||{}},_interval:void 0,refresh:null,refreshInterval:null,value:null,loading:!1}},computed:{iconStyle(){if(this.iconClass?.length||!this.iconColor?.length)return{color:this.iconColor}},hasIcon(){return this.iconUrl?.length||this.iconClass?.length}},methods:{async run(){if(this.handlers.input)return this.handlers.input(this)(this.value);this.handlers.beforeActions&&await this.handlers.beforeActions(this);for(const e of this.actions)await this.request_(e);this.handlers.afterActions&&await this.handlers.afterActions(this)},async request_(action){const args=Object.entries(action.args).reduce(((args,[key,value])=>{if(value.trim){value=value.trim();const m=value.match(/^{{\s*(.*)\s*}}/);m&&(value=eval(`// noinspection JSUnusedLocalSymbols\n (function (self) {\n return ${m[1]}\n })`)(this))}return args[key]=value,args}),{});await this.request(action.action,args)},async processEvent(e){const t=(this.handlers.events||{})[e.type];t&&await t(this)(e)}},async mounted(){if(this.$root.bus.on("event",this.processEvent),this.handlers.mounted&&await this.handlers.mounted(this),this.handlers.refresh&&(this.refreshInterval=1e3*(this.handlers.refresh?.interval||0),this.refresh=()=>{this.handlers.refresh.handler(this)},await this.refresh(),this.refreshInterval)){const e=this,t=()=>e.refresh();this._interval=setInterval(t,this.refreshInterval)}},unmounted(){this._interval&&clearInterval(this._interval)}}},9565:function(e,t,n){n.d(t,{Z:function(){return z}});var s=n(6252),a=n(3577);const i={key:0,class:"col-1 icon-container"},r=["src","alt"],l=["textContent"];function o(e,t,n,o,c,_){return(0,s.wg)(),(0,s.iD)("div",{class:"run component-row",onClick:t[0]||(t[0]=(...t)=>e.run&&e.run(...t))},[e.hasIcon?((0,s.wg)(),(0,s.iD)("div",i,[e.iconUrl?.length?((0,s.wg)(),(0,s.iD)("img",{key:0,class:"icon",src:e.iconUrl,alt:e.name},null,8,r)):((0,s.wg)(),(0,s.iD)("i",{key:1,class:(0,a.C_)(["icon",e.iconClass]),style:(0,a.j5)(e.iconStyle)},null,6))])):(0,s.kq)("",!0),(0,s._)("div",{class:(0,a.C_)({"col-11":e.hasIcon,"col-12":!e.hasIcon}),textContent:(0,a.zw)(e.name)},null,10,l)])}var c=n(7105),_={name:"Run",mixins:[c.Z]},h=n(3744);const u=(0,h.Z)(_,[["render",o],["__scopeId","data-v-7478b72d"]]);var d=u;const p={key:0,class:"col-1 icon-container"},g=["src","alt"],v=["textContent"],m={class:"col-3 value-container"},f={class:"value"},w=["textContent"];function b(e,t,n,i,r,l){return(0,s.wg)(),(0,s.iD)("div",{class:"sensor component-row",onClick:t[0]||(t[0]=(...e)=>l.run&&l.run(...e))},[e.hasIcon?((0,s.wg)(),(0,s.iD)("div",p,[e.iconUrl?.length?((0,s.wg)(),(0,s.iD)("img",{key:0,class:"icon",src:e.iconUrl,alt:e.name},null,8,g)):((0,s.wg)(),(0,s.iD)("i",{key:1,class:(0,a.C_)(["icon",e.iconClass]),style:(0,a.j5)(e.iconStyle)},null,6))])):(0,s.kq)("",!0),(0,s._)("div",{class:(0,a.C_)({"col-8":e.hasIcon,"col-9":!e.hasIcon}),textContent:(0,a.zw)(e.name)},null,10,v),(0,s._)("div",m,[(0,s._)("div",f,[(0,s.Uk)((0,a.zw)(e.value)+" ",1),n.unit?((0,s.wg)(),(0,s.iD)("span",{key:0,textContent:(0,a.zw)(n.unit)},null,8,w)):(0,s.kq)("",!0)])])])}var y={name:"Sensor",mixins:[c.Z],props:{unit:{type:String}},methods:{async run(){if(this.handlers.beforeActions&&await this.handlers.beforeActions(this),this.actions?.length)for(const e of this.actions)await this.request_(e);else await this.refresh();this.handlers.afterActions&&await this.handlers.afterActions(this)}}};const C=(0,h.Z)(y,[["render",b],["__scopeId","data-v-53594122"]]);var E=C;const k={class:"slider-root component-row"},D={key:0,class:"col-1 icon-container"},x=["src","alt"],I=["textContent"],T={class:"col-5 slider-container"},L={class:"slider"};function S(e,t,n,i,r,l){const o=(0,s.up)("SliderElement");return(0,s.wg)(),(0,s.iD)("div",k,[e.hasIcon?((0,s.wg)(),(0,s.iD)("div",D,[e.iconUrl?.length?((0,s.wg)(),(0,s.iD)("img",{key:0,class:"icon",src:e.iconUrl,alt:e.name},null,8,x)):((0,s.wg)(),(0,s.iD)("i",{key:1,class:(0,a.C_)(["icon",e.iconClass]),style:(0,a.j5)(e.iconStyle)},null,6))])):(0,s.kq)("",!0),(0,s._)("div",{class:(0,a.C_)({"col-6":e.hasIcon,"col-7":!e.hasIcon}),textContent:(0,a.zw)(e.name)},null,10,I),(0,s._)("div",T,[(0,s._)("div",L,[(0,s.Wm)(o,{value:e.value,range:[parseFloat(n.min),parseFloat(n.max)],onChange:l.run},null,8,["value","range","onChange"])])])])}var M=n(8140),O={name:"Slider",components:{SliderElement:M.Z},mixins:[c.Z],props:{min:{type:[String,Number],default:0},max:{type:[String,Number],required:!0}},methods:{async run(e){this.value=parseFloat(e.target.value),this.handlers.beforeActions&&await this.handlers.beforeActions(this);for(const t of this.actions)await this.request_(t);this.handlers.afterActions&&await this.handlers.afterActions(this)}}};const A=(0,h.Z)(O,[["render",S],["__scopeId","data-v-71b842b2"]]);var U=A,P=n(9963);const q={key:0,class:"col-1 icon-container"},Z=["src","alt"],N=["textContent"],B={class:"col-2 toggle-container"},R={class:"toggle"};function W(e,t,n,i,r,l){const o=(0,s.up)("ToggleSwitch");return(0,s.wg)(),(0,s.iD)("div",{class:"switch component-row",onClick:t[0]||(t[0]=(...t)=>e.run&&e.run(...t))},[e.hasIcon?((0,s.wg)(),(0,s.iD)("div",q,[e.iconUrl?.length?((0,s.wg)(),(0,s.iD)("img",{key:0,class:"icon",src:e.iconUrl,alt:e.name},null,8,Z)):((0,s.wg)(),(0,s.iD)("i",{key:1,class:(0,a.C_)(["icon",e.iconClass]),style:(0,a.j5)(e.iconStyle)},null,6))])):(0,s.kq)("",!0),(0,s._)("div",{class:(0,a.C_)({"col-9":e.hasIcon,"col-10":!e.hasIcon}),textContent:(0,a.zw)(e.name)},null,10,N),(0,s._)("div",B,[(0,s._)("div",R,[(0,s.Wm)(o,{value:e.value,onInput:(0,P.iM)(e.run,["stop"])},null,8,["value","onInput"])])])])}var H=n(7514),K={name:"Switch",components:{ToggleSwitch:H.Z},mixins:[c.Z]};const $=(0,h.Z)(K,[["render",W],["__scopeId","data-v-97d3a936"]]);var j=$,z={Run:d,Sensor:E,Slider:U,Switch:j}},8140:function(e,t,n){n.d(t,{Z:function(){return v}});var s=n(6252),a=n(3577),i=n(9963);const r={class:"slider-wrapper"},l=["textContent"],o=["textContent"],c={class:"slider-container"},_=["min","max","step","disabled","value"],h=["textContent"];function u(e,t,n,u,d,p){return(0,s.wg)(),(0,s.iD)("label",r,[n.withRange?((0,s.wg)(),(0,s.iD)("span",{key:0,class:(0,a.C_)(["range-labels",{"with-label":n.withLabel}])},[n.withRange?((0,s.wg)(),(0,s.iD)("span",{key:0,class:"label left",textContent:(0,a.zw)(n.range[0])},null,8,l)):(0,s.kq)("",!0),n.withRange?((0,s.wg)(),(0,s.iD)("span",{key:1,class:"label right",textContent:(0,a.zw)(n.range[1])},null,8,o)):(0,s.kq)("",!0)],2)):(0,s.kq)("",!0),(0,s._)("span",c,[(0,s._)("input",{class:(0,a.C_)(["slider",{"with-label":n.withLabel}]),type:"range",min:n.range[0],max:n.range[1],step:n.step,disabled:n.disabled,value:n.value,ref:"range",onInput:t[0]||(t[0]=(0,i.iM)((t=>e.$emit("input",t)),["stop"])),onChange:t[1]||(t[1]=(0,i.iM)((t=>e.$emit("change",t)),["stop"]))},null,42,_),n.withLabel?((0,s.wg)(),(0,s.iD)("span",{key:0,class:"label",textContent:(0,a.zw)(n.value),ref:"label"},null,8,h)):(0,s.kq)("",!0)])])}var d={emits:["input","change"],props:{value:{type:Number},disabled:{type:Boolean,default:!1},range:{type:Array,default:()=>[0,100]},step:{type:Number,default:1},withLabel:{type:Boolean,default:!1},withRange:{type:Boolean,default:!1}}},p=n(3744);const g=(0,p.Z)(d,[["render",u],["__scopeId","data-v-d90e850c"]]);var v=g},7514:function(e,t,n){n.d(t,{Z:function(){return p}});var s=n(6252),a=n(3577),i=n(9963);const r=e=>((0,s.dD)("data-v-eff375b6"),e=e(),(0,s.Cn)(),e),l=["checked","id"],o=r((()=>(0,s._)("div",{class:"switch"},[(0,s._)("div",{class:"dot"})],-1))),c={class:"label"};function _(e,t,n,r,_,h){return(0,s.wg)(),(0,s.iD)("div",{class:(0,a.C_)(["power-switch",{disabled:n.disabled}]),onClick:t[0]||(t[0]=(0,i.iM)(((...e)=>h.onInput&&h.onInput(...e)),["stop"]))},[(0,s._)("input",{type:"checkbox",checked:n.value,id:n.id},null,8,l),(0,s._)("label",null,[o,(0,s._)("span",c,[(0,s.WI)(e.$slots,"default",{},void 0,!0)])])],2)}var h={name:"ToggleSwitch",emits:["input"],props:{id:{type:String},value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{onInput(e){if(this.disabled)return!1;this.$emit("input",e)}}},u=n(3744);const d=(0,u.Z)(h,[["render",_],["__scopeId","data-v-eff375b6"]]);var p=d},1449:function(e,t,n){n.r(t),n.d(t,{default:function(){return _}});var s=n(6252);const a={class:"component-widget"},i={class:"container",ref:"container"};function r(e,t,n,r,l,o){const c=(0,s.up)("Loading");return(0,s.wg)(),(0,s.iD)("div",a,[l.loading?((0,s.wg)(),(0,s.j4)(c,{key:0})):(0,s.kq)("",!0),(0,s._)("div",i,null,512)])}var l=n(3275),o=n(3744);const c=(0,o.Z)(l.Z,[["render",r],["__scopeId","data-v-450fcab1"]]);var _=c}}]); -//# sourceMappingURL=1449.a5b4b2d2.js.map \ No newline at end of file +//# sourceMappingURL=1449.a1da87d4.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1449.a5b4b2d2.js.map b/platypush/backend/http/webapp/dist/static/js/1449.a1da87d4.js.map similarity index 99% rename from platypush/backend/http/webapp/dist/static/js/1449.a5b4b2d2.js.map rename to platypush/backend/http/webapp/dist/static/js/1449.a1da87d4.js.map index 95f9c51f4d..e620ea2eb9 100644 --- a/platypush/backend/http/webapp/dist/static/js/1449.a5b4b2d2.js.map +++ b/platypush/backend/http/webapp/dist/static/js/1449.a1da87d4.js.map @@ -1 +1 @@ -{"version":3,"file":"static/js/1449.a5b4b2d2.js","mappings":"yiBAcA,MAAMA,KAAMC,EAAAA,kCAAAA,KAEZ,uBACEC,KAAM,WACNC,WAAY,CAACC,QAAOA,iDAAAA,GACpBC,OAAQ,CAACC,oCAAAA,GACTC,MAAO,CACLC,QAAS,CACPC,KAAMC,SAIVC,IAAAA,GACE,MAAO,CACLC,SAAS,EACTC,QAAS,KAEb,EAEAC,QAAS,CACPC,aAAAA,CAAcC,GACZ,MAAMC,EAAc,IAAID,EAAQE,UAAUC,QAAQC,GAAyC,YAAhCA,EAAKC,SAASC,gBACnEJ,EAAWD,GAAaM,OAASN,EAAY,GAAGC,SAAWF,EAAQE,SACnEM,EAAa,IAAIN,GAAUC,QAAQC,GAAyC,WAAhCA,EAAKC,SAASC,gBAEhE,GAAKE,GAAYD,OAGjB,MAAO,IAAIC,GACNC,KAAKC,IACG,CACLC,OAAQD,EAAUE,WAAW1B,KAAK2B,MAClCC,KAAM,IAAIJ,EAAUR,UAAUa,QAAO,CAACC,EAAKC,KACzC,IAAIJ,EACJ,IACEA,EAAQK,KAAKC,MAAMF,EAAIG,UACzB,CAAE,MAAOC,GACHJ,EAAIG,WAAWb,SACjBM,EAAQI,EAAIG,UAChB,CAGA,OADAJ,EAAIC,EAAIZ,QAAQC,eAAiBO,EAC1BG,CAAE,GACR,CAAC,MAGd,EAEAM,UAAAA,CAAWtB,GACT,MAAMuB,EAAW,IAAIvB,EAAQE,UAAUC,QAAQC,GAAyC,SAAhCA,EAAKC,SAASC,gBACtE,GAAKiB,GAAUhB,OAGf,MAAO,IAAIgB,EAAS,GAAGrB,UAAUa,QAAO,CAACS,EAAMC,KAC7C,IAAIZ,EACJ,IACEA,EAAQK,KAAKC,MAAMM,EAAOL,UAC5B,CAAE,MAAOC,GACHI,EAAOL,WAAWb,SACpBM,EAAQY,EAAOL,UACnB,CAEA,OADAI,EAAKC,EAAOpB,QAAQC,eAAiBO,EAC9BW,CAAG,GACT,CAAC,EACN,EAEAE,cAAAA,CAAe1B,SACb,MAAM2B,SAAW,CAAC,EACZC,gBAAmBC,UACfC,KACCC,KAAM,yFAETF,yBAFGE,CAGFD,KAIHE,eAAkBH,UACdC,KACEG,OACCF,KAAM,oGAETF,2BAFGE,CAGFD,IAAKG,OAKVC,SAAW,IAAIlC,QAAQE,UAAUC,QAAQC,GAAyC,aAAhCA,EAAKC,SAASC,gBACtE,GAAI4B,UAAU3B,OAAQ,CACpB,MAAM4B,EAAU,IAAID,SAAS,GAAGhC,UAAUC,QAAQC,GAAyC,YAAhCA,EAAKC,SAASC,gBACrE6B,GAAS5B,SACXoB,SAASQ,QAAUP,gBAAgBO,EAAQ,GAAGf,YAEhD,MAAMgB,EAAU,IAAIF,SAAS,GAAGhC,UAAUC,QAAQC,GAAyC,YAAhCA,EAAKC,SAASC,gBACrE8B,GAAS7B,SACXoB,SAASS,QAAU,CACjBC,QAAST,gBAAgBQ,EAAQ,GAAGhB,WACpCkB,SAAUF,EAAQ,GAAGxB,WAAW0B,UAAUzB,OAAS,KAIvD,MAAM0B,EAAS,IAAIL,SAAS,GAAGhC,UAAUC,QAAQC,GAAyC,UAAhCA,EAAKC,SAASC,gBACpEiC,GAAQhC,SACVoB,SAASY,OAASA,EAAOxB,QAAO,CAACwB,EAAQC,KACvCD,EAAOC,EAAQ5B,WAAWnB,KAAKoB,OAASmB,eAAeQ,EAAQpB,WACxDmB,IACN,CAAC,GACR,CAEA,MAAMtC,YAAc,IAAID,QAAQE,UAAUC,QAAQC,GAAyC,YAAhCA,EAAKC,SAASC,gBACzE,GAAIL,aAAaM,OAAQ,CACvB,MAAMkC,EAAoB,IAAIxC,YAAY,GAAGC,UAAUC,QAAQC,GAAyC,WAAhCA,EAAKC,SAASC,gBAClFmC,GAAmBlC,SACrBoB,SAASe,cAAgBd,gBAAgBa,EAAkB,GAAGrB,YAEhE,MAAMuB,EAAmB,IAAI1C,YAAY,GAAGC,UAAUC,QAAQC,GAAyC,UAAhCA,EAAKC,SAASC,gBACjFqC,GAAkBpC,SACpBoB,SAASiB,aAAehB,gBAAgBe,EAAiB,GAAGvB,WAChE,CAEA,OAAOO,QACT,EAEAkB,WAAAA,CAAY7C,GACV,MAAO,IAAIA,EAAQY,YAAYG,QAAO,CAACC,EAAK8B,KAC1C9B,EAAI8B,EAAK5D,MAAQ4D,EAAKjC,MACfG,IACN,CAAC,EACN,EAEA+B,cAAAA,CAAed,GACbjD,IAAIgE,KAAK,QAASf,EACpB,EAEAgB,gBAAAA,GACEC,KAAKrD,QAAUqD,KAAKC,WAAWlB,IAC7BjD,IAAIgE,KAAK,QAASf,EAAM,GAE5B,EAEAmB,mBAAAA,GACMF,KAAKrD,UACPqD,KAAKrD,UACLqD,KAAKrD,QAAU,KAEnB,GAGFsC,OAAAA,GACEe,KAAKtD,SAAU,EACfsD,KAAKD,mBAEL,IACEC,KAAKG,MAAMC,UAAUC,UAAYL,KAAK1D,QAEtCgE,OAAOC,QAAQtE,oCAAAA,GAAYuE,SAAQ,EAAExE,EAAMyE,MACzCT,KAAKU,SAASzE,WAAWD,GAAQyE,EACjC,IAAIT,KAAKG,MAAMC,UAAUO,qBAAqB3E,IAAOwE,SAAS1D,IAC5D,MAAMT,EAAQ2D,KAAKL,YAAY7C,GAC/BT,EAAMuE,QAAUZ,KAAKnD,cAAcC,GACnCT,EAAMoC,SAAWuB,KAAKxB,eAAe1B,GACrCT,EAAMwE,MAAQb,KAAK5B,WAAWtB,GAE9B,MAAMgE,EAAQC,SAASC,cAAc,OACrCF,EAAMG,aAAa,QAAS,aAC5BH,EAAMT,UAAYvD,EAAQuD,UAC1BvD,EAAQoE,WAAWC,aAAaL,EAAOhE,IAEvCsE,EAAAA,iCAAAA,IAAU,CACRC,MAAAA,GAAW,OAAOC,EAAAA,iCAAAA,GAAEb,EAAWpE,EAAO,EACtCI,IAAAA,GACE,MAAO,CAAEX,IAAKA,IAChB,IACCyF,MAAMT,EAAM,GACf,IAGJ,IAAK,MAAM3D,IAAW,CAAC,WAAY,UAAW,QAC5C6C,KAAKG,MAAMC,UAAUO,qBAAqBxD,GAASqD,SAASlB,IAC1DA,EAAQ4B,WAAWM,YAAYlC,EAAQ,GAE7C,CAAE,QACAU,KAAKtD,SAAU,CACjB,CACF,EAEA+E,SAAAA,GACEzB,KAAKE,qBACP,E,mJCzMF,uBACI/D,OAAQ,CAACC,oCAAAA,GACTC,MAAO,CAIHL,KAAM,CACFO,KAAMC,OACNkF,QAAS,oBAMbC,UAAW,CACPpF,KAAMC,QAMVoF,QAAS,CACLrF,KAAMC,QAMVqF,UAAW,CACPtF,KAAMC,QAkBVoE,QAAS,CACLrE,KAAMuF,MACNJ,QAASA,IAAe,IAO5Bb,MAAO,CACHtE,KAAM+D,OACNoB,QAASA,KAAe,CAAC,IAmB7BjD,SAAU,CACNlC,KAAM+D,OACNoB,QAASA,KAAe,CAAC,IAM7B5F,IAAK,CACDS,KAAM+D,SAId7D,IAAAA,GACI,MAAO,CACH6B,KAAM,IAAK0B,KAAKa,OAAS,CAAC,GAC1BkB,eAAWC,EACX9C,QAAS,KACT+C,gBAAiB,KACjBtE,MAAO,KACPjB,SAAS,EAEjB,EAEAwF,SAAU,CACNC,SAAAA,GACI,GAAKnC,KAAK2B,WAAWtE,SAAU2C,KAAK6B,WAAWxE,OAG/C,MAAO,CAAC,MAAS2C,KAAK6B,UAC1B,EAEAO,OAAAA,GACI,OAAOpC,KAAK4B,SAASvE,QAAU2C,KAAK2B,WAAWtE,MACnD,GAGJT,QAAS,CACL,SAAMyF,GACF,GAAIrC,KAAKvB,SAAS6D,MACd,OAAOtC,KAAKvB,SAAS6D,MAAMtC,KAApBA,CAA0BA,KAAKrC,OAEtCqC,KAAKvB,SAASe,qBACRQ,KAAKvB,SAASe,cAAcQ,MACtC,IAAK,MAAMvC,KAAUuC,KAAKY,cAChBZ,KAAKuC,SAAS9E,GACpBuC,KAAKvB,SAASiB,oBACRM,KAAKvB,SAASiB,aAAaM,KAEzC,EAEA,cAAMuC,CAAS9E,QACX,MAAMG,KAAO0C,OAAOC,QAAQ9C,OAAOG,MAAMC,QAAO,CAACD,MAAO4E,IAAK7E,UACzD,GAAIA,MAAM8E,KAAM,CACZ9E,MAAQA,MAAM8E,OACd,MAAMC,EAAI/E,MAAMgF,MAAM,mBAClBD,IACA/E,MAAQkB,KAAM,wHAED6D,EAAE,iCAFP7D,CAGHmB,MAEb,CAGA,OADApC,KAAK4E,KAAO7E,MACLC,IAAI,GACZ,CAAC,SAEEoC,KAAK4C,QAAQnF,OAAOA,OAAQG,KACtC,EAEA,kBAAMiF,CAAa9D,GACf,MAAM+D,GAAQ9C,KAAKvB,SAASY,QAAU,CAAC,GAAGN,EAAMxC,MAC5CuG,SACMA,EAAK9C,KAAL8C,CAAW/D,EACzB,GAGJ,aAAME,GAMF,GALAe,KAAK+C,MAAMjH,IAAIkH,GAAG,QAAShD,KAAK6C,cAE5B7C,KAAKvB,SAASQ,eACRe,KAAKvB,SAASQ,QAAQe,MAE5BA,KAAKvB,SAASS,UACdc,KAAKiC,gBAA2D,KAAxCjC,KAAKvB,SAASS,SAASE,UAAY,GAC3DY,KAAKd,QAAU,KACXc,KAAKvB,SAASS,QAAQC,QAAQa,KAAK,QAGjCA,KAAKd,UACPc,KAAKiC,iBAAiB,CACtB,MAAMgB,EAAOjD,KACPkD,EAAUA,IAAeD,EAAK/D,UACpCc,KAAK+B,UAAYoB,YAAYD,EAASlD,KAAKiC,gBAC/C,CAER,EAEAR,SAAAA,GACQzB,KAAK+B,WACLqB,cAAcpD,KAAK+B,UAC3B,E,8FCnLKsB,MAAM,wB,4EADbC,EAAAA,EAAAA,IAMM,OANDD,MAAM,oBAAqBE,QAAKC,EAAA,KAAAA,EAAA,OAAA5F,IAAE6F,EAAApB,KAAAoB,EAAApB,OAAAzE,K,CACG6F,EAAArB,UAAO,WAA/CkB,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAF+CD,EAAA7B,SAASvE,SAAM,WAAlEiG,EAAAA,EAAAA,IAAoE,O,MAA/DD,MAAM,OAAQM,IAAKF,EAAA7B,QAAUgC,IAAKH,EAAAzH,M,wBACvCsH,EAAAA,EAAAA,IAA+D,K,MAA5DD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,OAAeJ,EAAA9B,YAAYmC,OAAKC,EAAAA,EAAAA,IAAEN,EAAAtB,Y,6BAE7C6B,EAAAA,EAAAA,GAAsE,OAAhEX,OAAKQ,EAAAA,EAAAA,IAAA,UAAaJ,EAAArB,QAAO,UAAaqB,EAAArB,U,aAAU6B,EAAAA,EAAAA,IAAQR,EAAKzH,O,2BAUvE,GACEA,KAAM,MACNG,OAAQ,CAACA,EAAAA,I,UCXX,MAAM+H,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,Q,eCPSgC,MAAM,wB,qCAKNA,MAAM,yB,GACJA,MAAM,S,4DAPfC,EAAAA,EAAAA,IAYM,OAZDD,MAAM,uBAAwBE,QAAKC,EAAA,KAAAA,EAAA,OAAA5F,IAAE8C,EAAA2B,KAAA3B,EAAA2B,OAAAzE,K,CACA6F,EAAArB,UAAO,WAA/CkB,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAF+CD,EAAA7B,SAASvE,SAAM,WAAlEiG,EAAAA,EAAAA,IAAoE,O,MAA/DD,MAAM,OAAQM,IAAKF,EAAA7B,QAAUgC,IAAKH,EAAAzH,M,wBACvCsH,EAAAA,EAAAA,IAA+D,K,MAA5DD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,OAAeJ,EAAA9B,YAAYmC,OAAKC,EAAAA,EAAAA,IAAEN,EAAAtB,Y,6BAE7C6B,EAAAA,EAAAA,GAAoE,OAA9DX,OAAKQ,EAAAA,EAAAA,IAAA,SAAYJ,EAAArB,QAAO,SAAYqB,EAAArB,U,aAAU6B,EAAAA,EAAAA,IAAQR,EAAKzH,O,YACjEgI,EAAAA,EAAAA,GAKM,MALNG,EAKM,EAJJH,EAAAA,EAAAA,GAGM,MAHNI,EAGM,mBAFDX,EAAA9F,OAAQ,IACX,GAAY0G,EAAAC,OAAI,WAAhBhB,EAAAA,EAAAA,IAAkC,Q,mBAAhBW,EAAAA,EAAAA,IAAQI,EAAKC,O,iCAYvC,OACEtI,KAAM,SACNG,OAAQ,CAACA,EAAAA,GACTE,MAAO,CAILiI,KAAM,CACJ/H,KAAMC,SAIVI,QAAS,CACP,SAAMyF,GAIJ,GAHIrC,KAAKvB,SAASe,qBACVQ,KAAKvB,SAASe,cAAcQ,MAEhCA,KAAKY,SAASvD,OAChB,IAAK,MAAMI,KAAUuC,KAAKY,cAClBZ,KAAKuC,SAAS9E,cAEhBuC,KAAKd,UAETc,KAAKvB,SAASiB,oBACVM,KAAKvB,SAASiB,aAAaM,KAErC,ICzCJ,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,Q,SCROqD,MAAM,6B,SACJA,MAAM,wB,qCAKNA,MAAM,0B,GACJA,MAAM,U,4EAPfC,EAAAA,EAAAA,IAWM,MAXNI,EAWM,CAVoCD,EAAArB,UAAO,WAA/CkB,EAAAA,EAAAA,IAGM,MAHNiB,EAGM,CAF+Cd,EAAA7B,SAASvE,SAAM,WAAlEiG,EAAAA,EAAAA,IAAoE,O,MAA/DD,MAAM,OAAQM,IAAKF,EAAA7B,QAAUgC,IAAKH,EAAAzH,M,wBACvCsH,EAAAA,EAAAA,IAA+D,K,MAA5DD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,OAAeJ,EAAA9B,YAAYmC,OAAKC,EAAAA,EAAAA,IAAEN,EAAAtB,Y,6BAE7C6B,EAAAA,EAAAA,GAAoE,OAA9DX,OAAKQ,EAAAA,EAAAA,IAAA,SAAYJ,EAAArB,QAAO,SAAYqB,EAAArB,U,aAAU6B,EAAAA,EAAAA,IAAQR,EAAKzH,O,YACjEgI,EAAAA,EAAAA,GAIM,MAJNI,EAIM,EAHJJ,EAAAA,EAAAA,GAEM,MAFNQ,EAEM,EADJC,EAAAA,EAAAA,IAA0FC,EAAA,CAA1E/G,MAAO8F,EAAA9F,MAAQgH,MAAK,CAAGC,WAAWP,EAAAQ,KAAMD,WAAWP,EAAAS,MAAQC,SAAQrE,EAAA2B,K,yDAc3F,GACErG,KAAM,SACNC,WAAY,CAAC+I,cAAaA,EAAAA,GAC1B7I,OAAQ,CAACA,EAAAA,GACTE,MAAO,CAILwI,IAAK,CACHtI,KAAM,CAACC,OAAQyI,QACfvD,QAAS,GAMXoD,IAAK,CACHvI,KAAM,CAACC,OAAQyI,QACfC,UAAU,IAIdtI,QAAS,CACP,SAAMyF,CAAItD,GACRiB,KAAKrC,MAAQiH,WAAW7F,EAAMoG,OAAOxH,OAEjCqC,KAAKvB,SAASe,qBACVQ,KAAKvB,SAASe,cAAcQ,MACpC,IAAK,MAAMvC,KAAUuC,KAAKY,cAClBZ,KAAKuC,SAAS9E,GAClBuC,KAAKvB,SAASiB,oBACVM,KAAKvB,SAASiB,aAAaM,KAErC,ICjDJ,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,Q,yBCPSqD,MAAM,wB,qCAKNA,MAAM,0B,GACJA,MAAM,U,2EAPfC,EAAAA,EAAAA,IAWM,OAXDD,MAAM,uBAAwBE,QAAKC,EAAA,KAAAA,EAAA,OAAA5F,IAAE6F,EAAApB,KAAAoB,EAAApB,OAAAzE,K,CACA6F,EAAArB,UAAO,WAA/CkB,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAF+CD,EAAA7B,SAASvE,SAAM,WAAlEiG,EAAAA,EAAAA,IAAoE,O,MAA/DD,MAAM,OAAQM,IAAKF,EAAA7B,QAAUgC,IAAKH,EAAAzH,M,wBACvCsH,EAAAA,EAAAA,IAA+D,K,MAA5DD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,OAAeJ,EAAA9B,YAAYmC,OAAKC,EAAAA,EAAAA,IAAEN,EAAAtB,Y,6BAE7C6B,EAAAA,EAAAA,GAAqE,OAA/DX,OAAKQ,EAAAA,EAAAA,IAAA,SAAYJ,EAAArB,QAAO,UAAaqB,EAAArB,U,aAAU6B,EAAAA,EAAAA,IAAQR,EAAKzH,O,YAClEgI,EAAAA,EAAAA,GAIM,MAJNG,EAIM,EAHJH,EAAAA,EAAAA,GAEM,MAFNI,EAEM,EADJK,EAAAA,EAAAA,IAAiDW,EAAA,CAAlCzH,MAAO8F,EAAA9F,MAAQ0H,SAAKC,EAAAA,EAAAA,IAAO7B,EAAApB,IAAG,W,gDAcrD,GACErG,KAAM,SACNC,WAAY,CAACsJ,aAAYA,EAAAA,GACzBpJ,OAAQ,CAACA,EAAAA,ICnBX,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,QCJA,GACIqJ,IAAG,EACHC,OAAM,EACNC,OAAM,EACNC,OAAMA,E,kGCRDtC,MAAM,kB,uCAMLA,MAAM,oB,sGANdC,EAAAA,EAAAA,IAqBQ,QArBRI,EAqBQ,CApB8DW,EAAAuB,YAAS,WAA7EtC,EAAAA,EAAAA,IAGO,Q,MAHDD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,eAAc,cAAwBQ,EAAAwB,c,CACjBxB,EAAAuB,YAAS,WAAxCtC,EAAAA,EAAAA,IAA8D,Q,MAAxDD,MAAM,a,aAA8BY,EAAAA,EAAAA,IAAQI,EAASM,MAAH,K,2BACxBN,EAAAuB,YAAS,WAAzCtC,EAAAA,EAAAA,IAA+D,Q,MAAzDD,MAAM,c,aAA+BY,EAAAA,EAAAA,IAAQI,EAASM,MAAH,K,iDAG3DX,EAAAA,EAAAA,GAcO,OAdPG,EAcO,EAbLH,EAAAA,EAAAA,GAU8C,SAVvCX,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,SAAQ,cAESQ,EAAAwB,aADvBtJ,KAAK,QAEJsI,IAAKR,EAAAM,MAAM,GACXG,IAAKT,EAAAM,MAAM,GACXmB,KAAMzB,EAAAyB,KACNC,SAAU1B,EAAA0B,SACVpI,MAAO0G,EAAA1G,MACRqI,IAAI,QACHX,QAAK7B,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAAW,GAAOxC,EAAAyC,MAAM,QAASD,IAAM,WACjClB,SAAMvB,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAAW,GAAOxC,EAAAyC,MAAM,SAAUD,IAAM,Y,WAEjB5B,EAAAwB,YAAS,WAAnCvC,EAAAA,EAAAA,IAAuE,Q,MAAjED,MAAM,Q,aAAyBY,EAAAA,EAAAA,IAAQI,EAAM1G,OAACqI,IAAI,S,+BAM9D,OACEG,MAAO,CAAC,QAAS,UACjB9J,MAAO,CACLsB,MAAO,CACLpB,KAAM0I,QAGRc,SAAU,CACRxJ,KAAM6J,QACN1E,SAAS,GAGXiD,MAAO,CACLpI,KAAMuF,MACNJ,QAASA,IAAM,CAAC,EAAG,MAGrBoE,KAAM,CACJvJ,KAAM0I,OACNvD,QAAS,GAGXmE,UAAW,CACTtJ,KAAM6J,QACN1E,SAAS,GAGXkE,UAAW,CACTrJ,KAAM6J,QACN1E,SAAS,K,UChDf,MAAMwC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,O,kLCHM2C,EAAAA,EAAAA,GAEM,OAFDX,MAAM,UAAQ,EACjBW,EAAAA,EAAAA,GAAmB,OAAdX,MAAM,UAAK,K,GAEZA,MAAM,S,0CARhBC,EAAAA,EAAAA,IAYM,OAZDD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,eAAc,CAAAkC,SAAoB1B,EAAA0B,YAAYxC,QAAKC,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAA,IAAA1H,IAAO8C,EAAA2E,SAAA3E,EAAA2E,WAAAzH,IAAO,Y,EAE1EoG,EAAAA,EAAAA,GAAiD,SAA1CzH,KAAK,WAAY8J,QAAShC,EAAA1G,MAAQ2I,GAAIjC,EAAAiC,I,WAC7CtC,EAAAA,EAAAA,GAQQ,cANNO,GAGAP,EAAAA,EAAAA,GAEO,OAFPuC,EAEO,EADLC,EAAAA,EAAAA,IAAQ/C,EAAAgD,OAAA,kBAAAzE,GAAA,U,CAOhB,OACEhG,KAAM,eACNmK,MAAO,CAAC,SACR9J,MAAO,CACLiK,GAAI,CACF/J,KAAMC,QAGRmB,MAAO,CACLpB,KAAM6J,QACN1E,SAAS,GAGXqE,SAAU,CACRxJ,KAAM6J,QACN1E,SAAS,IAIb9E,QAAS,CACPyI,OAAAA,CAAQtG,GACN,GAAIiB,KAAK+F,SACP,OAAO,EAET/F,KAAKkG,MAAM,QAASnH,EACtB,I,UCnCJ,MAAMmF,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,O,2FdROgC,MAAM,oB,GAEJA,MAAM,YAAY2C,IAAI,a,sEAF7B1C,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAFWgD,EAAAhK,UAAO,WAAtBiK,EAAAA,EAAAA,IAA0BC,EAAA,CAAApE,IAAA,sBAC1BwB,EAAAA,EAAAA,GAAyC,MAAzCO,EAAyC,W,yBeI7C,MAAML,GAA2B,OAAgB,IAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/widgets/Component/Index.vue","webpack://platypush/./src/components/widgets/Component/components/mixins.js","webpack://platypush/./src/components/widgets/Component/components/Run.vue","webpack://platypush/./src/components/widgets/Component/components/Run.vue?73ce","webpack://platypush/./src/components/widgets/Component/components/Sensor.vue","webpack://platypush/./src/components/widgets/Component/components/Sensor.vue?66dc","webpack://platypush/./src/components/widgets/Component/components/Slider.vue","webpack://platypush/./src/components/widgets/Component/components/Slider.vue?fc3e","webpack://platypush/./src/components/widgets/Component/components/Switch.vue","webpack://platypush/./src/components/widgets/Component/components/Switch.vue?ce7f","webpack://platypush/./src/components/widgets/Component/index.js","webpack://platypush/./src/components/elements/Slider.vue","webpack://platypush/./src/components/elements/Slider.vue?787f","webpack://platypush/./src/components/elements/ToggleSwitch.vue","webpack://platypush/./src/components/elements/ToggleSwitch.vue?94aa","webpack://platypush/./src/components/widgets/Component/Index.vue?276d"],"sourcesContent":["\n\n\n\n\n","import Utils from \"@/Utils\";\n\nexport default {\n mixins: [Utils],\n props: {\n /**\n * Component name\n */\n name: {\n type: String,\n default: '[Unnamed sensor]',\n },\n\n /**\n * Action (FontAwesome) icon class (default: `fa fa-play`)\n */\n iconClass: {\n type: String,\n },\n\n /**\n * Action icon URL (default: `fa fa-play`)\n */\n iconUrl: {\n type: String,\n },\n\n /**\n * Action icon color override, for FontAwesome icons\n */\n iconColor: {\n type: String,\n },\n\n /**\n * Actions to run upon interaction with the widget. Format:\n *\n * [\n * {\n * \"action\": \"light.hue.toggle\",\n * \"args\": {\n * \"lights\": [\"Bulb 1\", \"Bulb 2\"]\n * }\n * },\n * {\n * \"action\": \"music.mpd.pause\"\n * }\n * ]\n */\n actions: {\n type: Array,\n default: () => { return [] },\n },\n\n /**\n * Map of variables used by this component, in the form\n * variable_name -> variable_value.\n */\n _vars: {\n type: Object,\n default: () => { return {} },\n },\n\n /**\n * Map of handlers, in the form of event_type -> functions.\n * Supported event handler types:\n *\n * - mounted: Function to execute when the component is mounted.\n * - beforeActions: Function to execute before the component action is run.\n * - afterActions: Function to execute after the component action is run.\n * - refresh: Function to be called at startup (if mounted is also specified\n * then refresh will be called after mounted when the component is\n * first mounted) and at regular intervals defined on the\n * interval property (default: 10 seconds).\n * - events: This is a mapping of functions that react to Platypush\n * platform events published on the websocket (e.g. lights or\n * switches toggles, media events etc.). The form is\n * platypush_event_type -> function.\n */\n handlers: {\n type: Object,\n default: () => { return {} },\n },\n\n /**\n * Event bus\n */\n bus: {\n type: Object,\n },\n },\n\n data() {\n return {\n vars: {...(this._vars || {})},\n _interval: undefined,\n refresh: null,\n refreshInterval: null,\n value: null,\n loading: false,\n }\n },\n\n computed: {\n iconStyle() {\n if (!this.iconClass?.length && this.iconColor?.length)\n return\n\n return {'color': this.iconColor}\n },\n\n hasIcon() {\n return this.iconUrl?.length || this.iconClass?.length\n },\n },\n\n methods: {\n async run() {\n if (this.handlers.input)\n return this.handlers.input(this)(this.value)\n\n if (this.handlers.beforeActions)\n await this.handlers.beforeActions(this)\n for (const action of this.actions)\n await this.request_(action)\n if (this.handlers.afterActions) {\n await this.handlers.afterActions(this)\n }\n },\n\n async request_(action) {\n const args = Object.entries(action.args).reduce((args, [key, value]) => {\n if (value.trim) {\n value = value.trim()\n const m = value.match(/^{{\\s*(.*)\\s*}}/)\n if (m) {\n value = eval(`// noinspection JSUnusedLocalSymbols\n (function (self) {\n return ${m[1]}\n })`)(this)\n }\n }\n\n args[key] = value\n return args\n }, {})\n\n await this.request(action.action, args)\n },\n\n async processEvent(event) {\n const hndl = (this.handlers.events || {})[event.type]\n if (hndl)\n await hndl(this)(event)\n },\n },\n\n async mounted() {\n this.$root.bus.on('event', this.processEvent)\n\n if (this.handlers.mounted)\n await this.handlers.mounted(this)\n\n if (this.handlers.refresh) {\n this.refreshInterval = (this.handlers.refresh?.interval || 0) * 1000\n this.refresh = () => {\n this.handlers.refresh.handler(this)\n }\n\n await this.refresh()\n if (this.refreshInterval) {\n const self = this\n const wrapper = () => { return self.refresh() }\n this._interval = setInterval(wrapper, this.refreshInterval)\n }\n }\n },\n\n unmounted() {\n if (this._interval)\n clearInterval(this._interval)\n }\n}\n","\n\n\n\n\n","import { render } from \"./Run.vue?vue&type=template&id=7478b72d&scoped=true\"\nimport script from \"./Run.vue?vue&type=script&lang=js\"\nexport * from \"./Run.vue?vue&type=script&lang=js\"\n\nimport \"./Run.vue?vue&type=style&index=0&id=7478b72d&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-7478b72d\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Sensor.vue?vue&type=template&id=53594122&scoped=true\"\nimport script from \"./Sensor.vue?vue&type=script&lang=js\"\nexport * from \"./Sensor.vue?vue&type=script&lang=js\"\n\nimport \"./Sensor.vue?vue&type=style&index=0&id=53594122&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-53594122\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Slider.vue?vue&type=template&id=71b842b2&scoped=true\"\nimport script from \"./Slider.vue?vue&type=script&lang=js\"\nexport * from \"./Slider.vue?vue&type=script&lang=js\"\n\nimport \"./Slider.vue?vue&type=style&index=0&id=71b842b2&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-71b842b2\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Switch.vue?vue&type=template&id=97d3a936&scoped=true\"\nimport script from \"./Switch.vue?vue&type=script&lang=js\"\nexport * from \"./Switch.vue?vue&type=script&lang=js\"\n\nimport \"./Switch.vue?vue&type=style&index=0&id=97d3a936&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-97d3a936\"]])\n\nexport default __exports__","import Run from './components/Run'\nimport Sensor from \"./components/Sensor\";\nimport Slider from './components/Slider'\nimport Switch from './components/Switch'\n\nexport default {\n Run,\n Sensor,\n Slider,\n Switch,\n}\n","\n\n\n\n\n","import { render } from \"./Slider.vue?vue&type=template&id=d90e850c&scoped=true\"\nimport script from \"./Slider.vue?vue&type=script&lang=js\"\nexport * from \"./Slider.vue?vue&type=script&lang=js\"\n\nimport \"./Slider.vue?vue&type=style&index=0&id=d90e850c&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-d90e850c\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./ToggleSwitch.vue?vue&type=template&id=eff375b6&scoped=true\"\nimport script from \"./ToggleSwitch.vue?vue&type=script&lang=js\"\nexport * from \"./ToggleSwitch.vue?vue&type=script&lang=js\"\n\nimport \"./ToggleSwitch.vue?vue&type=style&index=0&id=eff375b6&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-eff375b6\"]])\n\nexport default __exports__","import { render } from \"./Index.vue?vue&type=template&id=450fcab1&scoped=true\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport \"./Index.vue?vue&type=style&index=0&id=450fcab1&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-450fcab1\"]])\n\nexport default __exports__"],"names":["bus","mitt","name","components","Loading","mixins","Utils","props","content","type","String","data","loading","unwatch","methods","_parseActions","element","actionsTags","children","filter","node","tagName","toLowerCase","length","actionTags","map","actionTag","action","attributes","value","args","reduce","obj","arg","JSON","parse","innerText","e","_parseVars","varsTags","vars","varTag","_parseHandlers","handlers","parseHndlScript","hndlText","app","eval","parseEventHndl","event","hndlTags","mounted","refresh","handler","interval","events","hndlTag","beforeActionsTags","beforeActions","afterActionsTags","afterActions","_parseProps","attr","propagateEvent","emit","_addEventHandler","this","subscribe","_removeEventHandler","$refs","container","innerHTML","Object","entries","forEach","component","$options","getElementsByTagName","actions","_vars","newEl","document","createElement","setAttribute","parentNode","replaceChild","createApp","render","h","mount","removeChild","unmounted","default","iconClass","iconUrl","iconColor","Array","_interval","undefined","refreshInterval","computed","iconStyle","hasIcon","run","input","request_","key","trim","m","match","request","processEvent","hndl","$root","on","self","wrapper","setInterval","clearInterval","class","_createElementBlock","onClick","_cache","_ctx","_hoisted_1","src","alt","_normalizeClass","style","_normalizeStyle","_createElementVNode","_toDisplayString","__exports__","_hoisted_4","_hoisted_5","$props","unit","_hoisted_2","_hoisted_6","_createVNode","_component_SliderElement","range","parseFloat","min","max","onChange","SliderElement","Number","required","target","_component_ToggleSwitch","onInput","_withModifiers","ToggleSwitch","Run","Sensor","Slider","Switch","withRange","withLabel","step","disabled","ref","$event","$emit","emits","Boolean","checked","id","_hoisted_3","_renderSlot","$slots","$data","_createBlock","_component_Loading"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"static/js/1449.a1da87d4.js","mappings":"yiBAcA,MAAMA,KAAMC,EAAAA,kCAAAA,KAEZ,uBACEC,KAAM,WACNC,WAAY,CAACC,QAAOA,iDAAAA,GACpBC,OAAQ,CAACC,oCAAAA,GACTC,MAAO,CACLC,QAAS,CACPC,KAAMC,SAIVC,IAAAA,GACE,MAAO,CACLC,SAAS,EACTC,QAAS,KAEb,EAEAC,QAAS,CACPC,aAAAA,CAAcC,GACZ,MAAMC,EAAc,IAAID,EAAQE,UAAUC,QAAQC,GAAyC,YAAhCA,EAAKC,SAASC,gBACnEJ,EAAWD,GAAaM,OAASN,EAAY,GAAGC,SAAWF,EAAQE,SACnEM,EAAa,IAAIN,GAAUC,QAAQC,GAAyC,WAAhCA,EAAKC,SAASC,gBAEhE,GAAKE,GAAYD,OAGjB,MAAO,IAAIC,GACNC,KAAKC,IACG,CACLC,OAAQD,EAAUE,WAAW1B,KAAK2B,MAClCC,KAAM,IAAIJ,EAAUR,UAAUa,QAAO,CAACC,EAAKC,KACzC,IAAIJ,EACJ,IACEA,EAAQK,KAAKC,MAAMF,EAAIG,UACzB,CAAE,MAAOC,GACHJ,EAAIG,WAAWb,SACjBM,EAAQI,EAAIG,UAChB,CAGA,OADAJ,EAAIC,EAAIZ,QAAQC,eAAiBO,EAC1BG,CAAE,GACR,CAAC,MAGd,EAEAM,UAAAA,CAAWtB,GACT,MAAMuB,EAAW,IAAIvB,EAAQE,UAAUC,QAAQC,GAAyC,SAAhCA,EAAKC,SAASC,gBACtE,GAAKiB,GAAUhB,OAGf,MAAO,IAAIgB,EAAS,GAAGrB,UAAUa,QAAO,CAACS,EAAMC,KAC7C,IAAIZ,EACJ,IACEA,EAAQK,KAAKC,MAAMM,EAAOL,UAC5B,CAAE,MAAOC,GACHI,EAAOL,WAAWb,SACpBM,EAAQY,EAAOL,UACnB,CAEA,OADAI,EAAKC,EAAOpB,QAAQC,eAAiBO,EAC9BW,CAAG,GACT,CAAC,EACN,EAEAE,cAAAA,CAAe1B,SACb,MAAM2B,SAAW,CAAC,EACZC,gBAAmBC,UACfC,KACCC,KAAM,yFAETF,yBAFGE,CAGFD,KAIHE,eAAkBH,UACdC,KACEG,OACCF,KAAM,oGAETF,2BAFGE,CAGFD,IAAKG,OAKVC,SAAW,IAAIlC,QAAQE,UAAUC,QAAQC,GAAyC,aAAhCA,EAAKC,SAASC,gBACtE,GAAI4B,UAAU3B,OAAQ,CACpB,MAAM4B,EAAU,IAAID,SAAS,GAAGhC,UAAUC,QAAQC,GAAyC,YAAhCA,EAAKC,SAASC,gBACrE6B,GAAS5B,SACXoB,SAASQ,QAAUP,gBAAgBO,EAAQ,GAAGf,YAEhD,MAAMgB,EAAU,IAAIF,SAAS,GAAGhC,UAAUC,QAAQC,GAAyC,YAAhCA,EAAKC,SAASC,gBACrE8B,GAAS7B,SACXoB,SAASS,QAAU,CACjBC,QAAST,gBAAgBQ,EAAQ,GAAGhB,WACpCkB,SAAUF,EAAQ,GAAGxB,WAAW0B,UAAUzB,OAAS,KAIvD,MAAM0B,EAAS,IAAIL,SAAS,GAAGhC,UAAUC,QAAQC,GAAyC,UAAhCA,EAAKC,SAASC,gBACpEiC,GAAQhC,SACVoB,SAASY,OAASA,EAAOxB,QAAO,CAACwB,EAAQC,KACvCD,EAAOC,EAAQ5B,WAAWnB,KAAKoB,OAASmB,eAAeQ,EAAQpB,WACxDmB,IACN,CAAC,GACR,CAEA,MAAMtC,YAAc,IAAID,QAAQE,UAAUC,QAAQC,GAAyC,YAAhCA,EAAKC,SAASC,gBACzE,GAAIL,aAAaM,OAAQ,CACvB,MAAMkC,EAAoB,IAAIxC,YAAY,GAAGC,UAAUC,QAAQC,GAAyC,WAAhCA,EAAKC,SAASC,gBAClFmC,GAAmBlC,SACrBoB,SAASe,cAAgBd,gBAAgBa,EAAkB,GAAGrB,YAEhE,MAAMuB,EAAmB,IAAI1C,YAAY,GAAGC,UAAUC,QAAQC,GAAyC,UAAhCA,EAAKC,SAASC,gBACjFqC,GAAkBpC,SACpBoB,SAASiB,aAAehB,gBAAgBe,EAAiB,GAAGvB,WAChE,CAEA,OAAOO,QACT,EAEAkB,WAAAA,CAAY7C,GACV,MAAO,IAAIA,EAAQY,YAAYG,QAAO,CAACC,EAAK8B,KAC1C9B,EAAI8B,EAAK5D,MAAQ4D,EAAKjC,MACfG,IACN,CAAC,EACN,EAEA+B,cAAAA,CAAed,GACbjD,IAAIgE,KAAK,QAASf,EACpB,EAEAgB,gBAAAA,GACEC,KAAKrD,QAAUqD,KAAKC,WAAWlB,IAC7BjD,IAAIgE,KAAK,QAASf,EAAM,GAE5B,EAEAmB,mBAAAA,GACMF,KAAKrD,UACPqD,KAAKrD,UACLqD,KAAKrD,QAAU,KAEnB,GAGFsC,OAAAA,GACEe,KAAKtD,SAAU,EACfsD,KAAKD,mBAEL,IACEC,KAAKG,MAAMC,UAAUC,UAAYL,KAAK1D,QAEtCgE,OAAOC,QAAQtE,oCAAAA,GAAYuE,SAAQ,EAAExE,EAAMyE,MACzCT,KAAKU,SAASzE,WAAWD,GAAQyE,EACjC,IAAIT,KAAKG,MAAMC,UAAUO,qBAAqB3E,IAAOwE,SAAS1D,IAC5D,MAAMT,EAAQ2D,KAAKL,YAAY7C,GAC/BT,EAAMuE,QAAUZ,KAAKnD,cAAcC,GACnCT,EAAMoC,SAAWuB,KAAKxB,eAAe1B,GACrCT,EAAMwE,MAAQb,KAAK5B,WAAWtB,GAE9B,MAAMgE,EAAQC,SAASC,cAAc,OACrCF,EAAMG,aAAa,QAAS,aAC5BH,EAAMT,UAAYvD,EAAQuD,UAC1BvD,EAAQoE,WAAWC,aAAaL,EAAOhE,IAEvCsE,EAAAA,iCAAAA,IAAU,CACRC,MAAAA,GAAW,OAAOC,EAAAA,iCAAAA,GAAEb,EAAWpE,EAAO,EACtCI,IAAAA,GACE,MAAO,CAAEX,IAAKA,IAChB,IACCyF,MAAMT,EAAM,GACf,IAGJ,IAAK,MAAM3D,IAAW,CAAC,WAAY,UAAW,QAC5C6C,KAAKG,MAAMC,UAAUO,qBAAqBxD,GAASqD,SAASlB,IAC1DA,EAAQ4B,WAAWM,YAAYlC,EAAQ,GAE7C,CAAE,QACAU,KAAKtD,SAAU,CACjB,CACF,EAEA+E,SAAAA,GACEzB,KAAKE,qBACP,E,mJCzMF,uBACI/D,OAAQ,CAACC,oCAAAA,GACTC,MAAO,CAIHL,KAAM,CACFO,KAAMC,OACNkF,QAAS,oBAMbC,UAAW,CACPpF,KAAMC,QAMVoF,QAAS,CACLrF,KAAMC,QAMVqF,UAAW,CACPtF,KAAMC,QAkBVoE,QAAS,CACLrE,KAAMuF,MACNJ,QAASA,IAAe,IAO5Bb,MAAO,CACHtE,KAAM+D,OACNoB,QAASA,KAAe,CAAC,IAmB7BjD,SAAU,CACNlC,KAAM+D,OACNoB,QAASA,KAAe,CAAC,IAM7B5F,IAAK,CACDS,KAAM+D,SAId7D,IAAAA,GACI,MAAO,CACH6B,KAAM,IAAK0B,KAAKa,OAAS,CAAC,GAC1BkB,eAAWC,EACX9C,QAAS,KACT+C,gBAAiB,KACjBtE,MAAO,KACPjB,SAAS,EAEjB,EAEAwF,SAAU,CACNC,SAAAA,GACI,GAAKnC,KAAK2B,WAAWtE,SAAU2C,KAAK6B,WAAWxE,OAG/C,MAAO,CAAC,MAAS2C,KAAK6B,UAC1B,EAEAO,OAAAA,GACI,OAAOpC,KAAK4B,SAASvE,QAAU2C,KAAK2B,WAAWtE,MACnD,GAGJT,QAAS,CACL,SAAMyF,GACF,GAAIrC,KAAKvB,SAAS6D,MACd,OAAOtC,KAAKvB,SAAS6D,MAAMtC,KAApBA,CAA0BA,KAAKrC,OAEtCqC,KAAKvB,SAASe,qBACRQ,KAAKvB,SAASe,cAAcQ,MACtC,IAAK,MAAMvC,KAAUuC,KAAKY,cAChBZ,KAAKuC,SAAS9E,GACpBuC,KAAKvB,SAASiB,oBACRM,KAAKvB,SAASiB,aAAaM,KAEzC,EAEA,cAAMuC,CAAS9E,QACX,MAAMG,KAAO0C,OAAOC,QAAQ9C,OAAOG,MAAMC,QAAO,CAACD,MAAO4E,IAAK7E,UACzD,GAAIA,MAAM8E,KAAM,CACZ9E,MAAQA,MAAM8E,OACd,MAAMC,EAAI/E,MAAMgF,MAAM,mBAClBD,IACA/E,MAAQkB,KAAM,wHAED6D,EAAE,iCAFP7D,CAGHmB,MAEb,CAGA,OADApC,KAAK4E,KAAO7E,MACLC,IAAI,GACZ,CAAC,SAEEoC,KAAK4C,QAAQnF,OAAOA,OAAQG,KACtC,EAEA,kBAAMiF,CAAa9D,GACf,MAAM+D,GAAQ9C,KAAKvB,SAASY,QAAU,CAAC,GAAGN,EAAMxC,MAC5CuG,SACMA,EAAK9C,KAAL8C,CAAW/D,EACzB,GAGJ,aAAME,GAMF,GALAe,KAAK+C,MAAMjH,IAAIkH,GAAG,QAAShD,KAAK6C,cAE5B7C,KAAKvB,SAASQ,eACRe,KAAKvB,SAASQ,QAAQe,MAE5BA,KAAKvB,SAASS,UACdc,KAAKiC,gBAA2D,KAAxCjC,KAAKvB,SAASS,SAASE,UAAY,GAC3DY,KAAKd,QAAU,KACXc,KAAKvB,SAASS,QAAQC,QAAQa,KAAK,QAGjCA,KAAKd,UACPc,KAAKiC,iBAAiB,CACtB,MAAMgB,EAAOjD,KACPkD,EAAUA,IAAeD,EAAK/D,UACpCc,KAAK+B,UAAYoB,YAAYD,EAASlD,KAAKiC,gBAC/C,CAER,EAEAR,SAAAA,GACQzB,KAAK+B,WACLqB,cAAcpD,KAAK+B,UAC3B,E,8FCnLKsB,MAAM,wB,4EADbC,EAAAA,EAAAA,IAMM,OANDD,MAAM,oBAAqBE,QAAKC,EAAA,KAAAA,EAAA,OAAA5F,IAAE6F,EAAApB,KAAAoB,EAAApB,OAAAzE,K,CACG6F,EAAArB,UAAO,WAA/CkB,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAF+CD,EAAA7B,SAASvE,SAAM,WAAlEiG,EAAAA,EAAAA,IAAoE,O,MAA/DD,MAAM,OAAQM,IAAKF,EAAA7B,QAAUgC,IAAKH,EAAAzH,M,wBACvCsH,EAAAA,EAAAA,IAA+D,K,MAA5DD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,OAAeJ,EAAA9B,YAAYmC,OAAKC,EAAAA,EAAAA,IAAEN,EAAAtB,Y,6BAE7C6B,EAAAA,EAAAA,GAAsE,OAAhEX,OAAKQ,EAAAA,EAAAA,IAAA,UAAaJ,EAAArB,QAAO,UAAaqB,EAAArB,U,aAAU6B,EAAAA,EAAAA,IAAQR,EAAKzH,O,2BAUvE,GACEA,KAAM,MACNG,OAAQ,CAACA,EAAAA,I,UCXX,MAAM+H,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,Q,eCPSgC,MAAM,wB,qCAKNA,MAAM,yB,GACJA,MAAM,S,4DAPfC,EAAAA,EAAAA,IAYM,OAZDD,MAAM,uBAAwBE,QAAKC,EAAA,KAAAA,EAAA,OAAA5F,IAAE8C,EAAA2B,KAAA3B,EAAA2B,OAAAzE,K,CACA6F,EAAArB,UAAO,WAA/CkB,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAF+CD,EAAA7B,SAASvE,SAAM,WAAlEiG,EAAAA,EAAAA,IAAoE,O,MAA/DD,MAAM,OAAQM,IAAKF,EAAA7B,QAAUgC,IAAKH,EAAAzH,M,wBACvCsH,EAAAA,EAAAA,IAA+D,K,MAA5DD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,OAAeJ,EAAA9B,YAAYmC,OAAKC,EAAAA,EAAAA,IAAEN,EAAAtB,Y,6BAE7C6B,EAAAA,EAAAA,GAAoE,OAA9DX,OAAKQ,EAAAA,EAAAA,IAAA,SAAYJ,EAAArB,QAAO,SAAYqB,EAAArB,U,aAAU6B,EAAAA,EAAAA,IAAQR,EAAKzH,O,YACjEgI,EAAAA,EAAAA,GAKM,MALNG,EAKM,EAJJH,EAAAA,EAAAA,GAGM,MAHNI,EAGM,mBAFDX,EAAA9F,OAAQ,IACX,GAAY0G,EAAAC,OAAI,WAAhBhB,EAAAA,EAAAA,IAAkC,Q,mBAAhBW,EAAAA,EAAAA,IAAQI,EAAKC,O,iCAYvC,OACEtI,KAAM,SACNG,OAAQ,CAACA,EAAAA,GACTE,MAAO,CAILiI,KAAM,CACJ/H,KAAMC,SAIVI,QAAS,CACP,SAAMyF,GAIJ,GAHIrC,KAAKvB,SAASe,qBACVQ,KAAKvB,SAASe,cAAcQ,MAEhCA,KAAKY,SAASvD,OAChB,IAAK,MAAMI,KAAUuC,KAAKY,cAClBZ,KAAKuC,SAAS9E,cAEhBuC,KAAKd,UAETc,KAAKvB,SAASiB,oBACVM,KAAKvB,SAASiB,aAAaM,KAErC,ICzCJ,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,Q,SCROqD,MAAM,6B,SACJA,MAAM,wB,qCAKNA,MAAM,0B,GACJA,MAAM,U,4EAPfC,EAAAA,EAAAA,IAWM,MAXNI,EAWM,CAVoCD,EAAArB,UAAO,WAA/CkB,EAAAA,EAAAA,IAGM,MAHNiB,EAGM,CAF+Cd,EAAA7B,SAASvE,SAAM,WAAlEiG,EAAAA,EAAAA,IAAoE,O,MAA/DD,MAAM,OAAQM,IAAKF,EAAA7B,QAAUgC,IAAKH,EAAAzH,M,wBACvCsH,EAAAA,EAAAA,IAA+D,K,MAA5DD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,OAAeJ,EAAA9B,YAAYmC,OAAKC,EAAAA,EAAAA,IAAEN,EAAAtB,Y,6BAE7C6B,EAAAA,EAAAA,GAAoE,OAA9DX,OAAKQ,EAAAA,EAAAA,IAAA,SAAYJ,EAAArB,QAAO,SAAYqB,EAAArB,U,aAAU6B,EAAAA,EAAAA,IAAQR,EAAKzH,O,YACjEgI,EAAAA,EAAAA,GAIM,MAJNI,EAIM,EAHJJ,EAAAA,EAAAA,GAEM,MAFNQ,EAEM,EADJC,EAAAA,EAAAA,IAA0FC,EAAA,CAA1E/G,MAAO8F,EAAA9F,MAAQgH,MAAK,CAAGC,WAAWP,EAAAQ,KAAMD,WAAWP,EAAAS,MAAQC,SAAQrE,EAAA2B,K,yDAc3F,GACErG,KAAM,SACNC,WAAY,CAAC+I,cAAaA,EAAAA,GAC1B7I,OAAQ,CAACA,EAAAA,GACTE,MAAO,CAILwI,IAAK,CACHtI,KAAM,CAACC,OAAQyI,QACfvD,QAAS,GAMXoD,IAAK,CACHvI,KAAM,CAACC,OAAQyI,QACfC,UAAU,IAIdtI,QAAS,CACP,SAAMyF,CAAItD,GACRiB,KAAKrC,MAAQiH,WAAW7F,EAAMoG,OAAOxH,OAEjCqC,KAAKvB,SAASe,qBACVQ,KAAKvB,SAASe,cAAcQ,MACpC,IAAK,MAAMvC,KAAUuC,KAAKY,cAClBZ,KAAKuC,SAAS9E,GAClBuC,KAAKvB,SAASiB,oBACVM,KAAKvB,SAASiB,aAAaM,KAErC,ICjDJ,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,Q,yBCPSqD,MAAM,wB,qCAKNA,MAAM,0B,GACJA,MAAM,U,2EAPfC,EAAAA,EAAAA,IAWM,OAXDD,MAAM,uBAAwBE,QAAKC,EAAA,KAAAA,EAAA,OAAA5F,IAAE6F,EAAApB,KAAAoB,EAAApB,OAAAzE,K,CACA6F,EAAArB,UAAO,WAA/CkB,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAF+CD,EAAA7B,SAASvE,SAAM,WAAlEiG,EAAAA,EAAAA,IAAoE,O,MAA/DD,MAAM,OAAQM,IAAKF,EAAA7B,QAAUgC,IAAKH,EAAAzH,M,wBACvCsH,EAAAA,EAAAA,IAA+D,K,MAA5DD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,OAAeJ,EAAA9B,YAAYmC,OAAKC,EAAAA,EAAAA,IAAEN,EAAAtB,Y,6BAE7C6B,EAAAA,EAAAA,GAAqE,OAA/DX,OAAKQ,EAAAA,EAAAA,IAAA,SAAYJ,EAAArB,QAAO,UAAaqB,EAAArB,U,aAAU6B,EAAAA,EAAAA,IAAQR,EAAKzH,O,YAClEgI,EAAAA,EAAAA,GAIM,MAJNG,EAIM,EAHJH,EAAAA,EAAAA,GAEM,MAFNI,EAEM,EADJK,EAAAA,EAAAA,IAAiDW,EAAA,CAAlCzH,MAAO8F,EAAA9F,MAAQ0H,SAAKC,EAAAA,EAAAA,IAAO7B,EAAApB,IAAG,W,gDAcrD,GACErG,KAAM,SACNC,WAAY,CAACsJ,aAAYA,EAAAA,GACzBpJ,OAAQ,CAACA,EAAAA,ICnBX,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,QCJA,GACIqJ,IAAG,EACHC,OAAM,EACNC,OAAM,EACNC,OAAMA,E,kGCRDtC,MAAM,kB,uCAMLA,MAAM,oB,sGANdC,EAAAA,EAAAA,IAqBQ,QArBRI,EAqBQ,CApB8DW,EAAAuB,YAAS,WAA7EtC,EAAAA,EAAAA,IAGO,Q,MAHDD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,eAAc,cAAwBQ,EAAAwB,c,CACjBxB,EAAAuB,YAAS,WAAxCtC,EAAAA,EAAAA,IAA8D,Q,MAAxDD,MAAM,a,aAA8BY,EAAAA,EAAAA,IAAQI,EAASM,MAAH,K,2BACxBN,EAAAuB,YAAS,WAAzCtC,EAAAA,EAAAA,IAA+D,Q,MAAzDD,MAAM,c,aAA+BY,EAAAA,EAAAA,IAAQI,EAASM,MAAH,K,iDAG3DX,EAAAA,EAAAA,GAcO,OAdPG,EAcO,EAbLH,EAAAA,EAAAA,GAU8C,SAVvCX,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,SAAQ,cAESQ,EAAAwB,aADvBtJ,KAAK,QAEJsI,IAAKR,EAAAM,MAAM,GACXG,IAAKT,EAAAM,MAAM,GACXmB,KAAMzB,EAAAyB,KACNC,SAAU1B,EAAA0B,SACVpI,MAAO0G,EAAA1G,MACRqI,IAAI,QACHX,QAAK7B,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAAW,GAAOxC,EAAAyC,MAAM,QAASD,IAAM,WACjClB,SAAMvB,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAAW,GAAOxC,EAAAyC,MAAM,SAAUD,IAAM,Y,WAEjB5B,EAAAwB,YAAS,WAAnCvC,EAAAA,EAAAA,IAAuE,Q,MAAjED,MAAM,Q,aAAyBY,EAAAA,EAAAA,IAAQI,EAAM1G,OAACqI,IAAI,S,+BAM9D,OACEG,MAAO,CAAC,QAAS,UACjB9J,MAAO,CACLsB,MAAO,CACLpB,KAAM0I,QAGRc,SAAU,CACRxJ,KAAM6J,QACN1E,SAAS,GAGXiD,MAAO,CACLpI,KAAMuF,MACNJ,QAASA,IAAM,CAAC,EAAG,MAGrBoE,KAAM,CACJvJ,KAAM0I,OACNvD,QAAS,GAGXmE,UAAW,CACTtJ,KAAM6J,QACN1E,SAAS,GAGXkE,UAAW,CACTrJ,KAAM6J,QACN1E,SAAS,K,UChDf,MAAMwC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,O,kLCHM2C,EAAAA,EAAAA,GAEM,OAFDX,MAAM,UAAQ,EACjBW,EAAAA,EAAAA,GAAmB,OAAdX,MAAM,UAAK,K,GAEZA,MAAM,S,0CARhBC,EAAAA,EAAAA,IAYM,OAZDD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,eAAc,CAAAkC,SAAoB1B,EAAA0B,YAAYxC,QAAKC,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAA,IAAA1H,IAAO8C,EAAA2E,SAAA3E,EAAA2E,WAAAzH,IAAO,Y,EAE1EoG,EAAAA,EAAAA,GAAiD,SAA1CzH,KAAK,WAAY8J,QAAShC,EAAA1G,MAAQ2I,GAAIjC,EAAAiC,I,WAC7CtC,EAAAA,EAAAA,GAQQ,cANNO,GAGAP,EAAAA,EAAAA,GAEO,OAFPuC,EAEO,EADLC,EAAAA,EAAAA,IAAQ/C,EAAAgD,OAAA,kBAAAzE,GAAA,U,CAOhB,OACEhG,KAAM,eACNmK,MAAO,CAAC,SACR9J,MAAO,CACLiK,GAAI,CACF/J,KAAMC,QAGRmB,MAAO,CACLpB,KAAM6J,QACN1E,SAAS,GAGXqE,SAAU,CACRxJ,KAAM6J,QACN1E,SAAS,IAIb9E,QAAS,CACPyI,OAAAA,CAAQtG,GACN,GAAIiB,KAAK+F,SACP,OAAO,EAET/F,KAAKkG,MAAM,QAASnH,EACtB,I,UCnCJ,MAAMmF,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,O,2FdROgC,MAAM,oB,GAEJA,MAAM,YAAY2C,IAAI,a,sEAF7B1C,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAFWgD,EAAAhK,UAAO,WAAtBiK,EAAAA,EAAAA,IAA0BC,EAAA,CAAApE,IAAA,sBAC1BwB,EAAAA,EAAAA,GAAyC,MAAzCO,EAAyC,W,yBeI7C,MAAML,GAA2B,OAAgB,IAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/widgets/Component/Index.vue","webpack://platypush/./src/components/widgets/Component/components/mixins.js","webpack://platypush/./src/components/widgets/Component/components/Run.vue","webpack://platypush/./src/components/widgets/Component/components/Run.vue?73ce","webpack://platypush/./src/components/widgets/Component/components/Sensor.vue","webpack://platypush/./src/components/widgets/Component/components/Sensor.vue?66dc","webpack://platypush/./src/components/widgets/Component/components/Slider.vue","webpack://platypush/./src/components/widgets/Component/components/Slider.vue?fc3e","webpack://platypush/./src/components/widgets/Component/components/Switch.vue","webpack://platypush/./src/components/widgets/Component/components/Switch.vue?ce7f","webpack://platypush/./src/components/widgets/Component/index.js","webpack://platypush/./src/components/elements/Slider.vue","webpack://platypush/./src/components/elements/Slider.vue?787f","webpack://platypush/./src/components/elements/ToggleSwitch.vue","webpack://platypush/./src/components/elements/ToggleSwitch.vue?94aa","webpack://platypush/./src/components/widgets/Component/Index.vue?276d"],"sourcesContent":["\n\n\n\n\n","import Utils from \"@/Utils\";\n\nexport default {\n mixins: [Utils],\n props: {\n /**\n * Component name\n */\n name: {\n type: String,\n default: '[Unnamed sensor]',\n },\n\n /**\n * Action (FontAwesome) icon class (default: `fa fa-play`)\n */\n iconClass: {\n type: String,\n },\n\n /**\n * Action icon URL (default: `fa fa-play`)\n */\n iconUrl: {\n type: String,\n },\n\n /**\n * Action icon color override, for FontAwesome icons\n */\n iconColor: {\n type: String,\n },\n\n /**\n * Actions to run upon interaction with the widget. Format:\n *\n * [\n * {\n * \"action\": \"light.hue.toggle\",\n * \"args\": {\n * \"lights\": [\"Bulb 1\", \"Bulb 2\"]\n * }\n * },\n * {\n * \"action\": \"music.mpd.pause\"\n * }\n * ]\n */\n actions: {\n type: Array,\n default: () => { return [] },\n },\n\n /**\n * Map of variables used by this component, in the form\n * variable_name -> variable_value.\n */\n _vars: {\n type: Object,\n default: () => { return {} },\n },\n\n /**\n * Map of handlers, in the form of event_type -> functions.\n * Supported event handler types:\n *\n * - mounted: Function to execute when the component is mounted.\n * - beforeActions: Function to execute before the component action is run.\n * - afterActions: Function to execute after the component action is run.\n * - refresh: Function to be called at startup (if mounted is also specified\n * then refresh will be called after mounted when the component is\n * first mounted) and at regular intervals defined on the\n * interval property (default: 10 seconds).\n * - events: This is a mapping of functions that react to Platypush\n * platform events published on the websocket (e.g. lights or\n * switches toggles, media events etc.). The form is\n * platypush_event_type -> function.\n */\n handlers: {\n type: Object,\n default: () => { return {} },\n },\n\n /**\n * Event bus\n */\n bus: {\n type: Object,\n },\n },\n\n data() {\n return {\n vars: {...(this._vars || {})},\n _interval: undefined,\n refresh: null,\n refreshInterval: null,\n value: null,\n loading: false,\n }\n },\n\n computed: {\n iconStyle() {\n if (!this.iconClass?.length && this.iconColor?.length)\n return\n\n return {'color': this.iconColor}\n },\n\n hasIcon() {\n return this.iconUrl?.length || this.iconClass?.length\n },\n },\n\n methods: {\n async run() {\n if (this.handlers.input)\n return this.handlers.input(this)(this.value)\n\n if (this.handlers.beforeActions)\n await this.handlers.beforeActions(this)\n for (const action of this.actions)\n await this.request_(action)\n if (this.handlers.afterActions) {\n await this.handlers.afterActions(this)\n }\n },\n\n async request_(action) {\n const args = Object.entries(action.args).reduce((args, [key, value]) => {\n if (value.trim) {\n value = value.trim()\n const m = value.match(/^{{\\s*(.*)\\s*}}/)\n if (m) {\n value = eval(`// noinspection JSUnusedLocalSymbols\n (function (self) {\n return ${m[1]}\n })`)(this)\n }\n }\n\n args[key] = value\n return args\n }, {})\n\n await this.request(action.action, args)\n },\n\n async processEvent(event) {\n const hndl = (this.handlers.events || {})[event.type]\n if (hndl)\n await hndl(this)(event)\n },\n },\n\n async mounted() {\n this.$root.bus.on('event', this.processEvent)\n\n if (this.handlers.mounted)\n await this.handlers.mounted(this)\n\n if (this.handlers.refresh) {\n this.refreshInterval = (this.handlers.refresh?.interval || 0) * 1000\n this.refresh = () => {\n this.handlers.refresh.handler(this)\n }\n\n await this.refresh()\n if (this.refreshInterval) {\n const self = this\n const wrapper = () => { return self.refresh() }\n this._interval = setInterval(wrapper, this.refreshInterval)\n }\n }\n },\n\n unmounted() {\n if (this._interval)\n clearInterval(this._interval)\n }\n}\n","\n\n\n\n\n","import { render } from \"./Run.vue?vue&type=template&id=7478b72d&scoped=true\"\nimport script from \"./Run.vue?vue&type=script&lang=js\"\nexport * from \"./Run.vue?vue&type=script&lang=js\"\n\nimport \"./Run.vue?vue&type=style&index=0&id=7478b72d&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-7478b72d\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Sensor.vue?vue&type=template&id=53594122&scoped=true\"\nimport script from \"./Sensor.vue?vue&type=script&lang=js\"\nexport * from \"./Sensor.vue?vue&type=script&lang=js\"\n\nimport \"./Sensor.vue?vue&type=style&index=0&id=53594122&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-53594122\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Slider.vue?vue&type=template&id=71b842b2&scoped=true\"\nimport script from \"./Slider.vue?vue&type=script&lang=js\"\nexport * from \"./Slider.vue?vue&type=script&lang=js\"\n\nimport \"./Slider.vue?vue&type=style&index=0&id=71b842b2&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-71b842b2\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Switch.vue?vue&type=template&id=97d3a936&scoped=true\"\nimport script from \"./Switch.vue?vue&type=script&lang=js\"\nexport * from \"./Switch.vue?vue&type=script&lang=js\"\n\nimport \"./Switch.vue?vue&type=style&index=0&id=97d3a936&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-97d3a936\"]])\n\nexport default __exports__","import Run from './components/Run'\nimport Sensor from \"./components/Sensor\";\nimport Slider from './components/Slider'\nimport Switch from './components/Switch'\n\nexport default {\n Run,\n Sensor,\n Slider,\n Switch,\n}\n","\n\n\n\n\n","import { render } from \"./Slider.vue?vue&type=template&id=d90e850c&scoped=true\"\nimport script from \"./Slider.vue?vue&type=script&lang=js\"\nexport * from \"./Slider.vue?vue&type=script&lang=js\"\n\nimport \"./Slider.vue?vue&type=style&index=0&id=d90e850c&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-d90e850c\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./ToggleSwitch.vue?vue&type=template&id=eff375b6&scoped=true\"\nimport script from \"./ToggleSwitch.vue?vue&type=script&lang=js\"\nexport * from \"./ToggleSwitch.vue?vue&type=script&lang=js\"\n\nimport \"./ToggleSwitch.vue?vue&type=style&index=0&id=eff375b6&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-eff375b6\"]])\n\nexport default __exports__","import { render } from \"./Index.vue?vue&type=template&id=450fcab1&scoped=true\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport \"./Index.vue?vue&type=style&index=0&id=450fcab1&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-450fcab1\"]])\n\nexport default __exports__"],"names":["bus","mitt","name","components","Loading","mixins","Utils","props","content","type","String","data","loading","unwatch","methods","_parseActions","element","actionsTags","children","filter","node","tagName","toLowerCase","length","actionTags","map","actionTag","action","attributes","value","args","reduce","obj","arg","JSON","parse","innerText","e","_parseVars","varsTags","vars","varTag","_parseHandlers","handlers","parseHndlScript","hndlText","app","eval","parseEventHndl","event","hndlTags","mounted","refresh","handler","interval","events","hndlTag","beforeActionsTags","beforeActions","afterActionsTags","afterActions","_parseProps","attr","propagateEvent","emit","_addEventHandler","this","subscribe","_removeEventHandler","$refs","container","innerHTML","Object","entries","forEach","component","$options","getElementsByTagName","actions","_vars","newEl","document","createElement","setAttribute","parentNode","replaceChild","createApp","render","h","mount","removeChild","unmounted","default","iconClass","iconUrl","iconColor","Array","_interval","undefined","refreshInterval","computed","iconStyle","hasIcon","run","input","request_","key","trim","m","match","request","processEvent","hndl","$root","on","self","wrapper","setInterval","clearInterval","class","_createElementBlock","onClick","_cache","_ctx","_hoisted_1","src","alt","_normalizeClass","style","_normalizeStyle","_createElementVNode","_toDisplayString","__exports__","_hoisted_4","_hoisted_5","$props","unit","_hoisted_2","_hoisted_6","_createVNode","_component_SliderElement","range","parseFloat","min","max","onChange","SliderElement","Number","required","target","_component_ToggleSwitch","onInput","_withModifiers","ToggleSwitch","Run","Sensor","Slider","Switch","withRange","withLabel","step","disabled","ref","$event","$emit","emits","Boolean","checked","id","_hoisted_3","_renderSlot","$slots","$data","_createBlock","_component_Loading"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1485.501472f0.js b/platypush/backend/http/webapp/dist/static/js/1485.501472f0.js deleted file mode 100644 index 10fac71832..0000000000 --- a/platypush/backend/http/webapp/dist/static/js/1485.501472f0.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1485,2200,6640,5505,2951,9091],{6640:function(e,t,l){l.r(t),l.d(t,{default:function(){return a}});var n=l(8637),i={mixins:[n.Z],emits:["add-to-playlist","back","create-playlist","download","download-audio","path-change","play","remove-from-playlist","remove-playlist","rename-playlist"],props:{filter:{type:String,default:""},selectedPlaylist:{default:null},selectedChannel:{default:null}},data(){return{loading:!1}}};const s=i;var a=s},83:function(e,t,l){l.r(t),l.d(t,{default:function(){return v}});var n=l(6252),i=l(3577);const s=e=>((0,n.dD)("data-v-66204518"),e=e(),(0,n.Cn)(),e),a={class:"nav"},o={class:"path"},d=s((()=>(0,n._)("i",{class:"fas fa-home"},null,-1))),c=[d],r=s((()=>(0,n._)("span",{class:"separator"},[(0,n._)("i",{class:"fas fa-chevron-right"})],-1))),u=["title","onClick"],h={key:1},p={key:0,class:"separator"},y=s((()=>(0,n._)("i",{class:"fas fa-chevron-right"},null,-1))),f=[y];function g(e,t,l,s,d,y){return(0,n.wg)(),(0,n.iD)("div",a,[(0,n._)("span",o,[(0,n._)("span",{class:"back token",title:"Back",onClick:t[0]||(t[0]=t=>e.$emit("back"))},c),r]),((0,n.wg)(!0),(0,n.iD)(n.HY,null,(0,n.Ko)(l.path,((t,s)=>((0,n.wg)(),(0,n.iD)("span",{class:"path",key:s},[(0,n._)("span",{class:"token",title:t.title,onClick:e=>y.onClick(t)},[(e.icon=t.icon?.["class"])?((0,n.wg)(),(0,n.iD)("i",{key:0,class:(0,i.C_)(["icon",e.icon])},null,2)):(0,n.kq)("",!0),t.title?((0,n.wg)(),(0,n.iD)("span",h,(0,i.zw)(t.title),1)):(0,n.kq)("",!0)],8,u),(s>0||l.path.length>1)&&s[]}},methods:{onClick(e){e.click&&e.click()}}},w=l(3744);const b=(0,w.Z)(m,[["render",g],["__scopeId","data-v-66204518"]]);var v=b},1485:function(e,t,l){l.r(t),l.d(t,{default:function(){return b}});var n=l(6252);const i={class:"media-youtube-browser"},s={key:1,class:"browser"},a={key:1,class:"body"};function o(e,t,l,o,d,c){const r=(0,n.up)("Loading"),u=(0,n.up)("MediaNav"),h=(0,n.up)("NoToken"),p=(0,n.up)("Feed"),y=(0,n.up)("Playlists"),f=(0,n.up)("Subscriptions"),g=(0,n.up)("Index");return(0,n.wg)(),(0,n.iD)("div",i,[e.loading?((0,n.wg)(),(0,n.j4)(r,{key:0})):((0,n.wg)(),(0,n.iD)("div",s,[(0,n.Wm)(u,{path:c.computedPath,onBack:t[0]||(t[0]=t=>e.$emit("back"))},null,8,["path"]),c.authToken?((0,n.wg)(),(0,n.iD)("div",a,["feed"===d.selectedView?((0,n.wg)(),(0,n.j4)(p,{key:0,filter:e.filter,onAddToPlaylist:t[1]||(t[1]=t=>e.$emit("add-to-playlist",t)),onDownload:t[2]||(t[2]=t=>e.$emit("download",t)),onDownloadAudio:t[3]||(t[3]=t=>e.$emit("download-audio",t)),onOpenChannel:c.selectChannelFromItem,onPlay:t[4]||(t[4]=t=>e.$emit("play",t))},null,8,["filter","onOpenChannel"])):"playlists"===d.selectedView?((0,n.wg)(),(0,n.j4)(y,{key:1,filter:e.filter,"selected-playlist":d.selectedPlaylist_,onAddToPlaylist:t[5]||(t[5]=t=>e.$emit("add-to-playlist",t)),onDownload:t[6]||(t[6]=t=>e.$emit("download",t)),onDownloadAudio:t[7]||(t[7]=t=>e.$emit("download-audio",t)),onOpenChannel:c.selectChannelFromItem,onPlay:t[8]||(t[8]=t=>e.$emit("play",t)),onRemoveFromPlaylist:c.removeFromPlaylist,onSelect:c.onPlaylistSelected},null,8,["filter","selected-playlist","onOpenChannel","onRemoveFromPlaylist","onSelect"])):"subscriptions"===d.selectedView?((0,n.wg)(),(0,n.j4)(f,{key:2,filter:e.filter,"selected-channel":d.selectedChannel_,onAddToPlaylist:t[9]||(t[9]=t=>e.$emit("add-to-playlist",t)),onDownload:t[10]||(t[10]=t=>e.$emit("download",t)),onDownloadAudio:t[11]||(t[11]=t=>e.$emit("download-audio",t)),onPlay:t[12]||(t[12]=t=>e.$emit("play",t)),onSelect:c.onChannelSelected},null,8,["filter","selected-channel","onSelect"])):((0,n.wg)(),(0,n.j4)(g,{key:3,onSelect:c.selectView},null,8,["onSelect"]))])):((0,n.wg)(),(0,n.j4)(h,{key:0}))]))])}l(560);var d=l(6791),c=l(83),r=l(6640),u=l(9472),h=l(2200),p=l(9091),y=l(281),f=l(8752),g={mixins:[r["default"]],components:{Feed:u["default"],Index:h["default"],Loading:d.Z,MediaNav:c["default"],NoToken:p["default"],Playlists:y["default"],Subscriptions:f["default"]},data(){return{youtubeConfig:null,selectedView:null,selectedPlaylist_:null,selectedChannel_:null,path:[]}},computed:{authToken(){return this.youtubeConfig?.auth_token},computedPath(){return[{title:"YouTube",click:()=>this.selectView(null),icon:{class:"fab fa-youtube"}},...this.path]}},methods:{async loadYoutubeConfig(){this.loading=!0;try{this.youtubeConfig=(await this.request("config.get_plugins")).youtube}finally{this.loading=!1}},async removeFromPlaylist(e){const t=e.playlist_id,l=e.item.url;this.loading=!0;try{await this.request("youtube.remove_from_playlist",{playlist_id:t,video_id:l})}finally{this.loading=!1}},async createPlaylist(e){this.loading=!0;try{await this.request("youtube.create_playlist",{name:e})}finally{this.loading=!1}},selectView(e){this.selectedView=e,"playlists"===e?this.selectedPlaylist_=null:"subscriptions"===e&&(this.selectedChannel_=null),this.path=e?.length?[{title:e.slice(0,1).toUpperCase()+e.slice(1),click:()=>this.selectView(e)}]:[]},onPlaylistSelected(e){this.selectedPlaylist_=e,e&&(this.selectedView="playlists",this.path.push({title:e.name}))},onChannelSelected(e){this.selectedChannel_=e,e&&(this.selectedView="subscriptions",this.path.push({title:e.name}))},initView(){const e=this.getUrlArgs();e.section&&(this.selectedView=e.section),this.selectedView&&this.selectView(this.selectedView)},async selectChannelFromItem(e){if(!e.channel_url)return;const t=await this.request("youtube.get_channel",{id:e.channel_url.split("/").pop()});t&&this.onChannelSelected(t)}},watch:{selectedPlaylist(){this.onPlaylistSelected(this.selectedPlaylist)},selectedPlaylist_(e){null==e&&this.setUrlArgs({playlist:null})},selectedChannel(){this.onChannelSelected(this.selectedChannel)},selectedChannel_(e){null==e&&this.setUrlArgs({channel:null})},selectedView(){this.setUrlArgs({section:this.selectedView})}},mounted(){this.loadYoutubeConfig(),this.initView(),this.onPlaylistSelected(this.selectedPlaylist),this.onChannelSelected(this.selectedChannel)},unmounted(){this.setUrlArgs({section:null})}},m=l(3744);const w=(0,m.Z)(g,[["render",o],["__scopeId","data-v-1b7de001"]]);var b=w},2951:function(e,t,l){l.r(t),l.d(t,{default:function(){return V}});var n=l(6252),i=l(3577);const s={class:"media-youtube-channel"},a={key:1,class:"channel"},o={class:"header"},d={class:"banner"},c=["src"],r={class:"row info-container"},u={class:"info"},h={class:"row"},p={class:"title-container"},y=["href"],f={class:"image"},g=["src"],m=["href"],w={class:"actions"},b=["title"],v={key:0,class:"subscribers"},_={key:0,class:"description"};function k(e,t,l,k,C,P){const D=(0,n.up)("Loading"),S=(0,n.up)("Results");return(0,n.wg)(),(0,n.iD)("div",s,[C.loading?((0,n.wg)(),(0,n.j4)(D,{key:0})):C.channel?((0,n.wg)(),(0,n.iD)("div",a,[(0,n._)("div",o,[(0,n._)("div",d,[C.channel?.banner?.length?((0,n.wg)(),(0,n.iD)("img",{key:0,src:C.channel.banner},null,8,c)):(0,n.kq)("",!0)]),(0,n._)("div",r,[(0,n._)("div",u,[(0,n._)("div",h,[(0,n._)("div",p,[C.channel?.image?.length?((0,n.wg)(),(0,n.iD)("a",{key:0,href:C.channel.url,target:"_blank",rel:"noopener noreferrer"},[(0,n._)("div",f,[(0,n._)("img",{src:C.channel.image},null,8,g)])],8,y)):(0,n.kq)("",!0),(0,n._)("a",{class:"title",href:C.channel.url,target:"_blank",rel:"noopener noreferrer"},(0,i.zw)(C.channel?.name),9,m)]),(0,n._)("div",w,[(0,n._)("button",{title:C.subscribed?"Unsubscribe":"Subscribe",onClick:t[0]||(t[0]=(...e)=>P.toggleSubscription&&P.toggleSubscription(...e))},(0,i.zw)(C.subscribed?"Unsubscribe":"Subscribe"),9,b),null!=C.channel.subscribers&&(C.channel.subscribers||0)>=0?((0,n.wg)(),(0,n.iD)("div",v,(0,i.zw)(C.channel.subscribers)+" subscribers ",1)):(0,n.kq)("",!0)])]),C.channel?.description?((0,n.wg)(),(0,n.iD)("div",_,(0,i.zw)(C.channel.description),1)):(0,n.kq)("",!0)])])]),(0,n.Wm)(S,{results:C.channel.items,filter:l.filter,"result-index-step":null,"selected-result":C.selectedResult,ref:"results",onAddToPlaylist:t[1]||(t[1]=t=>e.$emit("add-to-playlist",t)),onDownload:t[2]||(t[2]=t=>e.$emit("download",t)),onDownloadAudio:t[3]||(t[3]=t=>e.$emit("download-audio",t)),onOpenChannel:t[4]||(t[4]=t=>e.$emit("open-channel",t)),onPlay:t[5]||(t[5]=t=>e.$emit("play",t)),onScrollEnd:P.loadNextPage,onSelect:t[6]||(t[6]=e=>C.selectedResult=e)},null,8,["results","filter","selected-result","onScrollEnd"])])):(0,n.kq)("",!0)])}var C=l(6791),P=l(1812),D=l(8637),S={mixins:[D.Z],emits:["add-to-playlist","download","download-audio","open-channel","play"],components:{Loading:C.Z,Results:P.Z},props:{id:{type:String,required:!0},filter:{type:String,default:null}},data(){return{channel:null,loading:!1,loadingNextPage:!1,selectedResult:null,subscribed:!1}},computed:{itemsByUrl(){return this.channel?.items.reduce(((e,t)=>(e[t.url]=t,e)),{})}},methods:{async loadChannel(){this.loading=!0;try{await this.updateChannel(!0),this.subscribed=await this.request("youtube.is_subscribed",{channel_id:this.id})}finally{this.loading=!1}},async updateChannel(e){const t=await this.request("youtube.get_channel",{id:this.id,next_page_token:this.channel?.next_page_token}),l=this.itemsByUrl||{};let n=t.items.filter((e=>!l[e.url])).map((e=>({type:"youtube",...e})));e||(n=this.channel.items.concat(n)),this.channel=t,this.channel.items=n},async loadNextPage(){if(this.channel?.next_page_token&&!this.loadingNextPage){this.loadingNextPage=!0;try{await this.timeout(500),await this.updateChannel()}finally{this.loadingNextPage=!1}}},async toggleSubscription(){const e=this.subscribed?"unsubscribe":"subscribe";await this.request(`youtube.${e}`,{channel_id:this.id}),this.subscribed=!this.subscribed}},async mounted(){this.setUrlArgs({channel:this.id}),await this.loadChannel()},unmounted(){this.setUrlArgs({channel:null})}},$=l(3744);const A=(0,$.Z)(S,[["render",k],["__scopeId","data-v-62215952"]]);var V=A},9472:function(e,t,l){l.r(t),l.d(t,{default:function(){return p}});var n=l(6252);const i={class:"media-youtube-feed"};function s(e,t,l,s,a,o){const d=(0,n.up)("Loading"),c=(0,n.up)("NoItems"),r=(0,n.up)("Results");return(0,n.wg)(),(0,n.iD)("div",i,[a.loading?((0,n.wg)(),(0,n.j4)(d,{key:0})):a.feed?.length?((0,n.wg)(),(0,n.j4)(r,{key:2,results:a.feed,filter:l.filter,sources:{youtube:!0},"selected-result":a.selectedResult,onAddToPlaylist:t[0]||(t[0]=t=>e.$emit("add-to-playlist",t)),onDownload:t[1]||(t[1]=t=>e.$emit("download",t)),onDownloadAudio:t[2]||(t[2]=t=>e.$emit("download-audio",t)),onOpenChannel:t[3]||(t[3]=t=>e.$emit("open-channel",t)),onSelect:t[4]||(t[4]=e=>a.selectedResult=e),onPlay:t[5]||(t[5]=t=>e.$emit("play",t))},null,8,["results","filter","selected-result"])):((0,n.wg)(),(0,n.j4)(c,{key:1,"with-shadow":!1},{default:(0,n.w5)((()=>[(0,n.Uk)(" No videos found. ")])),_:1}))])}var a=l(3222),o=l(6791),d=l(1812),c=l(8637),r={mixins:[c.Z],emits:["add-to-playlist","download","download-audio","open-channel","play"],components:{Loading:o.Z,NoItems:a.Z,Results:d.Z},props:{filter:{type:String,default:null}},data(){return{feed:[],loading:!1,selectedResult:null}},methods:{async loadFeed(){this.loading=!0;try{this.feed=(await this.request("youtube.get_feed")).map((e=>({...e,type:"youtube"})))}finally{this.loading=!1}}},mounted(){this.loadFeed()}},u=l(3744);const h=(0,u.Z)(r,[["render",s],["__scopeId","data-v-0131d440"]]);var p=h},2200:function(e,t,l){l.r(t),l.d(t,{default:function(){return w}});var n=l(6252);const i={class:"youtube-views-browser grid"},s=(0,n._)("div",{class:"icon"},[(0,n._)("i",{class:"fas fa-rss"})],-1),a=(0,n._)("div",{class:"name"},"Feed",-1),o=[s,a],d=(0,n._)("div",{class:"icon"},[(0,n._)("i",{class:"fas fa-list"})],-1),c=(0,n._)("div",{class:"name"},"Playlists",-1),r=[d,c],u=(0,n._)("div",{class:"icon"},[(0,n._)("i",{class:"fas fa-user"})],-1),h=(0,n._)("div",{class:"name"},"Subscriptions",-1),p=[u,h];function y(e,t,l,s,a,d){return(0,n.wg)(),(0,n.iD)("div",i,[(0,n._)("div",{class:"item",onClick:t[0]||(t[0]=t=>e.$emit("select","feed"))},o),(0,n._)("div",{class:"item",onClick:t[1]||(t[1]=t=>e.$emit("select","playlists"))},r),(0,n._)("div",{class:"item",onClick:t[2]||(t[2]=t=>e.$emit("select","subscriptions"))},p)])}var f={emits:["select"]},g=l(3744);const m=(0,g.Z)(f,[["render",y]]);var w=m},9091:function(e,t,l){l.r(t),l.d(t,{default:function(){return u}});var n=l(6252);const i={class:"no-token"},s=(0,n.uE)('
No auth_token found in the YouTube configuration.
This integration requires an auth_token to be set in the youtube section of the configuration file in order to access your playlists and subscriptions.

Piped auth tokens are currently supported. You can retrieve one through the following procedure:
  1. Login to your configured Piped instance.
  2. Copy the RSS/Atom feed URL on the Feed tab.
  3. Copy the auth_token query parameter from the URL.
  4. Enter it in the auth_token field in the youtube section of the configuration file.
',2),a=[s];function o(e,t){return(0,n.wg)(),(0,n.iD)("div",i,a)}var d=l(3744);const c={},r=(0,d.Z)(c,[["render",o],["__scopeId","data-v-42457341"]]);var u=r},8752:function(e,t,l){l.r(t),l.d(t,{default:function(){return _}});var n=l(6252),i=l(3577);const s={class:"media-youtube-subscriptions"},a={key:0,class:"subscriptions-index"},o={key:2,class:"body grid"},d=["onClick"],c={class:"image"},r=["src","alt"],u={class:"title"},h={key:1,class:"subscription-body"};function p(e,t,l,p,y,f){const g=(0,n.up)("Loading"),m=(0,n.up)("NoItems"),w=(0,n.up)("Channel");return(0,n.wg)(),(0,n.iD)("div",s,[l.selectedChannel?.id?((0,n.wg)(),(0,n.iD)("div",h,[(0,n.Wm)(w,{id:l.selectedChannel.id,filter:l.filter,onAddToPlaylist:t[0]||(t[0]=t=>e.$emit("add-to-playlist",t)),onDownload:t[1]||(t[1]=t=>e.$emit("download",t)),onDownloadAudio:t[2]||(t[2]=t=>e.$emit("download-audio",t)),onPlay:t[3]||(t[3]=t=>e.$emit("play",t))},null,8,["id","filter"])])):((0,n.wg)(),(0,n.iD)("div",a,[y.loading?((0,n.wg)(),(0,n.j4)(g,{key:0})):y.channels?.length?((0,n.wg)(),(0,n.iD)("div",o,[((0,n.wg)(!0),(0,n.iD)(n.HY,null,(0,n.Ko)(f.channelsById,((t,l)=>((0,n.wg)(),(0,n.iD)("div",{class:"channel item",key:l,onClick:l=>e.$emit("select",t)},[(0,n._)("div",c,[(0,n._)("img",{src:t.image,alt:t.name},null,8,r)]),(0,n._)("div",u,(0,i.zw)(t.name),1)],8,d)))),128))])):((0,n.wg)(),(0,n.j4)(m,{key:1,"with-shadow":!1},{default:(0,n.w5)((()=>[(0,n.Uk)(" No channels found. ")])),_:1}))]))])}var y=l(2951),f=l(3222),g=l(6791),m=l(8637),w={mixins:[m.Z],emits:["add-to-playlist","download","download-audio","play","select"],components:{Channel:y["default"],Loading:g.Z,NoItems:f.Z},props:{selectedChannel:{type:Object,default:null},filter:{type:String,default:null}},data(){return{channels:[],loading:!1}},computed:{channelsById(){return this.channels.filter((e=>!this.filter||e.name.toLowerCase().includes(this.filter.toLowerCase()))).reduce(((e,t)=>(e[t.id]=t,e)),{})}},methods:{async loadSubscriptions(){this.loading=!0;try{this.channels=await this.request("youtube.get_subscriptions")}finally{this.loading=!1}},initView(){const e=this.getUrlArgs();e.channel&&this.$emit("select",{id:e.channel})}},async mounted(){await this.loadSubscriptions(),this.initView()}},b=l(3744);const v=(0,b.Z)(w,[["render",p],["__scopeId","data-v-16e4f293"]]);var _=v}}]); -//# sourceMappingURL=1485.501472f0.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1485.501472f0.js.map b/platypush/backend/http/webapp/dist/static/js/1485.501472f0.js.map deleted file mode 100644 index 1abcf9d932..0000000000 --- a/platypush/backend/http/webapp/dist/static/js/1485.501472f0.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"static/js/1485.501472f0.js","mappings":"sMAGA,GACEA,OAAQ,CAACC,EAAAA,GACTC,MAAO,CACL,kBACA,OACA,kBACA,WACA,iBACA,cACA,OACA,uBACA,kBACA,mBAGFC,MAAO,CACLC,OAAQ,CACNC,KAAMC,OACNC,QAAS,IAGXC,iBAAkB,CAChBD,QAAS,MAGXE,gBAAiB,CACfF,QAAS,OAIbG,IAAAA,GACE,MAAO,CACLC,SAAS,EAEb,GClCF,MAAMC,EAAc,EAEpB,O,yJCJOC,MAAM,O,GACHA,MAAM,Q,UAERC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,eAAa,W,GAAtBE,G,UAGFD,EAAAA,EAAAA,GAEO,QAFDD,MAAM,aAAW,EACrBC,EAAAA,EAAAA,GAAkC,KAA/BD,MAAM,2BAAsB,K,yCAU3BA,MAAM,a,UAEVC,EAAAA,EAAAA,GAAkC,KAA/BD,MAAM,wBAAsB,W,GAA/BG,G,0CAnBNC,EAAAA,EAAAA,IAsBM,MAtBNC,EAsBM,EArBJJ,EAAAA,EAAAA,GAQO,OARPK,EAQO,EAPLL,EAAAA,EAAAA,GAEO,QAFDD,MAAM,aAAaO,MAAM,OAAQC,QAAKC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,U,GAIpDC,MAEO,aAGTT,EAAAA,EAAAA,IAUOU,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAVqCC,EAAAC,MAAI,CAArBC,EAAOC,M,WAAlCf,EAAAA,EAAAA,IAUO,QAVDJ,MAAM,OAAuCoB,IAAKD,G,EACtDlB,EAAAA,EAAAA,GAGO,QAHDD,MAAM,QAASO,MAAOW,EAAMX,MAAQC,QAAKE,GAAEW,EAAAb,QAAQU,I,EACnBP,EAAAW,KAAOJ,EAAMI,OAAO,YAAH,WAArDlB,EAAAA,EAAAA,IAAoE,K,MAAjEJ,OAAKuB,EAAAA,EAAAA,IAAA,CAAC,OAAeZ,EAAAW,Q,yBACZJ,EAAMX,QAAK,WAAvBH,EAAAA,EAAAA,IAAiD,OAAAoB,GAAAC,EAAAA,EAAAA,IAArBP,EAAMX,OAAK,2BAI5BY,EAAQ,GAAKH,EAAAC,KAAKS,OAAS,IAAMP,EAAQH,EAAAC,KAAKS,OAAS,IAAH,WADjEtB,EAAAA,EAAAA,IAGO,OAHPuB,EAGOC,KAAA,oB,QAMb,OACEC,KAAM,CAAC,QAEPvC,MAAO,CACL2B,KAAM,CACJzB,KAAMsC,MACNpC,QAASA,IAAM,KAInBqC,QAAS,CACPvB,OAAAA,CAAQU,GACFA,EAAMc,OACRd,EAAMc,OACV,I,UClCJ,MAAMjC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASkC,GAAQ,CAAC,YAAY,qBAEzF,O,2FCROjC,MAAM,yB,SAGJA,MAAM,W,SAIJA,MAAM,Q,8MAPfI,EAAAA,EAAAA,IA0CM,MA1CNC,EA0CM,CAzCWM,EAAAb,UAAO,WAAtBoC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAf,IAAA,kBAE1BhB,EAAAA,EAAAA,IAsCM,MAtCNE,EAsCM,EArCJ8B,EAAAA,EAAAA,IAAuDC,EAAA,CAA5CpB,KAAMI,EAAAiB,aAAeC,OAAI9B,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,U,iBAC5BS,EAAAmB,YAAa,WAE7BpC,EAAAA,EAAAA,IAiCM,MAjCNF,EAiCM,CA1ByB,SAAjBuC,EAAAC,eAAY,WANxBR,EAAAA,EAAAA,IAOES,EAAA,C,MAPKpD,OAAQoB,EAAApB,OACRqD,gBAAenC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,kBAAmBF,IAC1CmC,WAAQpC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,WAAYF,IAC5BoC,gBAAcrC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,iBAAkBF,IACxCqC,cAAc1B,EAAA2B,sBACdC,OAAIxC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,OAAQF,K,oCAaY,cAAjB+B,EAAAC,eAAY,WATlCR,EAAAA,EAAAA,IAUEgB,EAAA,C,MAVU3D,OAAQoB,EAAApB,OACR,oBAAmBkD,EAAAU,kBACnBP,gBAAenC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,kBAAmBF,IAC1CmC,WAAQpC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,WAAYF,IAC5BoC,gBAAcrC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,iBAAkBF,IACxCqC,cAAc1B,EAAA2B,sBACdC,OAAIxC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,OAAQF,IACpB0C,qBAAsB/B,EAAAgC,mBACtBC,SAAQjC,EAAAkC,oB,0FAWuB,kBAAjBd,EAAAC,eAAY,WAPtCR,EAAAA,EAAAA,IAQEsB,EAAA,C,MARcjE,OAAQoB,EAAApB,OACR,mBAAkBkD,EAAAgB,iBAClBb,gBAAenC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,kBAAmBF,IAC1CmC,WAAQpC,EAAA,MAAAA,EAAA,IAAAC,GAAEC,EAAAC,MAAM,WAAYF,IAC5BoC,gBAAcrC,EAAA,MAAAA,EAAA,IAAAC,GAAEC,EAAAC,MAAM,iBAAkBF,IACxCuC,OAAIxC,EAAA,MAAAA,EAAA,IAAAC,GAAEC,EAAAC,MAAM,OAAQF,IACpB4C,SAAQjC,EAAAqC,mB,+DAIxBxB,EAAAA,EAAAA,IAAqCyB,EAAA,C,MAA7BL,SAAQjC,EAAAuC,Y,2BAlCO,WAAzB1B,EAAAA,EAAAA,IAA6B2B,EAAA,CAAAzC,IAAA,S,yFAmDnC,GACEjC,OAAQ,CAAC2E,EAAAA,YACTC,WAAY,CACVC,KAAI,aACJC,MAAK,aACLC,QAAO,IACPC,SAAQ,aACRC,QAAO,aACPC,UAAS,aACTC,cAAaA,EAAAA,YAGfzE,IAAAA,GACE,MAAO,CACL0E,cAAe,KACf7B,aAAc,KACdS,kBAAmB,KACnBM,iBAAkB,KAClBxC,KAAM,GAEV,EAEAuD,SAAU,CACRhC,SAAAA,GACE,OAAOiC,KAAKF,eAAeG,UAC7B,EAEApC,YAAAA,GACE,MAAO,CACL,CACE/B,MAAO,UACPyB,MAAOA,IAAMyC,KAAKb,WAAW,MAC7BtC,KAAM,CACJtB,MAAO,sBAGRyE,KAAKxD,KAEZ,GAGFc,QAAS,CACP,uBAAM4C,GACJF,KAAK3E,SAAU,EACf,IACE2E,KAAKF,qBAAuBE,KAAKG,QAAQ,uBAAuBC,OAClE,CAAE,QACAJ,KAAK3E,SAAU,CACjB,CACF,EAEA,wBAAMuD,CAAmByB,GACvB,MAAMC,EAAaD,EAAME,YACnBC,EAAUH,EAAMI,KAAKC,IAC3BV,KAAK3E,SAAU,EAEf,UACQ2E,KAAKG,QAAQ,+BAAgC,CACjDI,YAAaD,EACbK,SAAUH,GAEd,CAAE,QACAR,KAAK3E,SAAU,CACjB,CACF,EAEA,oBAAMuF,CAAeC,GACnBb,KAAK3E,SAAU,EACf,UACQ2E,KAAKG,QAAQ,0BAA2B,CAACU,KAAMA,GACvD,CAAE,QACAb,KAAK3E,SAAU,CACjB,CACF,EAEA8D,UAAAA,CAAW2B,GACTd,KAAK/B,aAAe6C,EACP,cAATA,EACFd,KAAKtB,kBAAoB,KACT,kBAAToC,IACPd,KAAKhB,iBAAmB,MAGxBgB,KAAKxD,KADHsE,GAAM7D,OACI,CACV,CACEnB,MAAOgF,EAAKC,MAAM,EAAG,GAAGC,cAAgBF,EAAKC,MAAM,GACnDxD,MAAOA,IAAMyC,KAAKb,WAAW2B,KAIrB,EAEhB,EAEAhC,kBAAAA,CAAmBmC,GACjBjB,KAAKtB,kBAAoBuC,EACpBA,IAGLjB,KAAK/B,aAAe,YACpB+B,KAAKxD,KAAK0E,KAAK,CACbpF,MAAOmF,EAASJ,OAEpB,EAEA5B,iBAAAA,CAAkBkC,GAChBnB,KAAKhB,iBAAmBmC,EACnBA,IAGLnB,KAAK/B,aAAe,gBACpB+B,KAAKxD,KAAK0E,KAAK,CACbpF,MAAOqF,EAAQN,OAEnB,EAEAO,QAAAA,GACE,MAAMC,EAAOrB,KAAKsB,aAEdD,EAAKE,UACPvB,KAAK/B,aAAeoD,EAAKE,SAEvBvB,KAAK/B,cACP+B,KAAKb,WAAWa,KAAK/B,aACzB,EAEA,2BAAMM,CAAsBkC,GAC1B,IAAKA,EAAKe,YACR,OAEF,MAAML,QAAgBnB,KAAKG,QACzB,sBACA,CAACsB,GAAIhB,EAAKe,YAAYE,MAAM,KAAKC,QAG9BR,GAGLnB,KAAKf,kBAAkBkC,EACzB,GAGFS,MAAO,CACL1G,gBAAAA,GACE8E,KAAKlB,mBAAmBkB,KAAK9E,iBAC/B,EAEAwD,iBAAAA,CAAkBmD,GACH,MAATA,GACF7B,KAAK8B,WAAW,CAACb,SAAU,MAC/B,EAEA9F,eAAAA,GACE6E,KAAKf,kBAAkBe,KAAK7E,gBAC9B,EAEA6D,gBAAAA,CAAiB6C,GACF,MAATA,GACF7B,KAAK8B,WAAW,CAACX,QAAS,MAC9B,EAEAlD,YAAAA,GACE+B,KAAK8B,WAAW,CAACP,QAASvB,KAAK/B,cACjC,GAGF8D,OAAAA,GACE/B,KAAKE,oBACLF,KAAKoB,WACLpB,KAAKlB,mBAAmBkB,KAAK9E,kBAC7B8E,KAAKf,kBAAkBe,KAAK7E,gBAC9B,EAEA6G,SAAAA,GACEhC,KAAK8B,WAAW,CAACP,QAAS,MAC5B,G,UCjOF,MAAMjG,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASkC,GAAQ,CAAC,YAAY,qBAEzF,O,qGCROjC,MAAM,yB,SAGJA,MAAM,W,GACJA,MAAM,U,GACJA,MAAM,U,aAINA,MAAM,sB,GACJA,MAAM,Q,GACJA,MAAM,O,GACJA,MAAM,mB,cAEFA,MAAM,S,wBAUVA,MAAM,W,qBAKJA,MAAM,e,SAMVA,MAAM,e,4FAnCrBI,EAAAA,EAAAA,IAwDM,MAxDNC,EAwDM,CAvDWoC,EAAA3C,UAAO,WAAtBoC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAf,IAAA,KAEMqB,EAAAmD,UAAO,WAAvCxF,EAAAA,EAAAA,IAoDM,MApDNE,EAoDM,EAnDJL,EAAAA,EAAAA,GAoCM,MApCNC,EAoCM,EAnCJD,EAAAA,EAAAA,GAEM,MAFNyG,EAEM,CAD6BjE,EAAAmD,SAASe,QAAQjF,SAAM,WAAxDtB,EAAAA,EAAAA,IAA4D,O,MAAtDwG,IAAKnE,EAAAmD,QAAQe,Q,8BAGrB1G,EAAAA,EAAAA,GA8BM,MA9BN4G,EA8BM,EA7BJ5G,EAAAA,EAAAA,GA4BM,MA5BNuB,EA4BM,EA3BJvB,EAAAA,EAAAA,GAsBM,MAtBN0B,EAsBM,EArBJ1B,EAAAA,EAAAA,GAUM,MAVNE,EAUM,CATmEsC,EAAAmD,SAASkB,OAAOpF,SAAM,WAA7FtB,EAAAA,EAAAA,IAII,K,MAJA2G,KAAMtE,EAAAmD,QAAQT,IAAK6B,OAAO,SAASC,IAAI,uB,EACzChH,EAAAA,EAAAA,GAEM,MAFNiH,EAEM,EADJjH,EAAAA,EAAAA,GAA4B,OAAtB2G,IAAKnE,EAAAmD,QAAQkB,O,oCAIvB7G,EAAAA,EAAAA,GAEI,KAFDD,MAAM,QAAS+G,KAAMtE,EAAAmD,QAAQT,IAAK6B,OAAO,SAASC,IAAI,wB,QACpDxE,EAAAmD,SAASN,MAAI,EAAA6B,MAIpBlH,EAAAA,EAAAA,GAQM,MARNmH,EAQM,EAPJnH,EAAAA,EAAAA,GAES,UAFAM,MAAOkC,EAAA4E,WAAa,cAAgB,YAAc7G,QAAKC,EAAA,KAAAA,EAAA,OAAAqF,IAAEzE,EAAAiG,oBAAAjG,EAAAiG,sBAAAxB,M,QAC7DrD,EAAA4E,WAAa,cAAgB,aAAnB,EAAAE,GAGuC,MAAvB9E,EAAAmD,QAAQ4B,cAAwB/E,EAAAmD,QAAQ4B,aAAe,IAAM,IAAV,WAAlFpH,EAAAA,EAAAA,IAEM,MAFNqH,GAEMhG,EAAAA,EAAAA,IADDgB,EAAAmD,QAAQ4B,aAAc,gBAC3B,wBAI2B/E,EAAAmD,SAAS8B,cAAW,WAAnDtH,EAAAA,EAAAA,IAEM,MAFNuH,GAEMlG,EAAAA,EAAAA,IADDgB,EAAAmD,QAAQ8B,aAAW,2BAM9BtF,EAAAA,EAAAA,IAYEwF,EAAA,CAZQC,QAASpF,EAAAmD,QAAQkC,MACjBvI,OAAQyB,EAAAzB,OACR,oBAAmB,KACnB,kBAAiBkD,EAAAsF,eAClBC,IAAI,UACHpF,gBAAenC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,kBAAmBF,IAC1CmC,WAAQpC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,WAAYF,IAC5BoC,gBAAcrC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,iBAAkBF,IACxCqC,cAAYtC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,eAAgBF,IACpCuC,OAAIxC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,OAAQF,IACpBuH,YAAY5G,EAAA6G,aACZ5E,SAAM7C,EAAA,KAAAA,EAAA,GAAAC,GAAE+B,EAAAsF,eAAiBrH,I,oHAWzC,GACEvB,OAAQ,CAACC,EAAAA,GACTC,MAAO,CACL,kBACA,WACA,iBACA,eACA,QAGF0E,WAAY,CACVG,QAAO,IACPiE,QAAOA,EAAAA,GAGT7I,MAAO,CACL4G,GAAI,CACF1G,KAAMC,OACN2I,UAAU,GAGZ7I,OAAQ,CACNC,KAAMC,OACNC,QAAS,OAIbG,IAAAA,GACE,MAAO,CACL+F,QAAS,KACT9F,SAAS,EACTuI,iBAAiB,EACjBN,eAAgB,KAChBV,YAAY,EAEhB,EAEA7C,SAAU,CACR8D,UAAAA,GACE,OAAO7D,KAAKmB,SAASkC,MAAMS,QAAO,CAACC,EAAKtD,KACtCsD,EAAItD,EAAKC,KAAOD,EACTsD,IACN,CAAC,EACN,GAGFzG,QAAS,CACP,iBAAM0G,GACJhE,KAAK3E,SAAU,EACf,UACQ2E,KAAKiE,eAAc,GACzBjE,KAAK4C,iBAAmB5C,KAAKG,QAAQ,wBAAyB,CAAC+D,WAAYlE,KAAKyB,IAClF,CAAE,QACAzB,KAAK3E,SAAU,CACjB,CACF,EAEA,mBAAM4I,CAAcE,GAClB,MAAMhD,QAAgBnB,KAAKG,QACzB,sBACA,CAACsB,GAAIzB,KAAKyB,GAAI2C,gBAAiBpE,KAAKmB,SAASiD,kBAGzCP,EAAa7D,KAAK6D,YAAc,CAAC,EACvC,IAAIR,EAAQlC,EAAQkC,MACjBvI,QAAO2F,IAASoD,EAAWpD,EAAKC,OAChC2D,KAAI5D,IACI,CACL1F,KAAM,aACH0F,MAIJ0D,IACHd,EAAQrD,KAAKmB,QAAQkC,MAAMiB,OAAOjB,IAGpCrD,KAAKmB,QAAUA,EACfnB,KAAKmB,QAAQkC,MAAQA,CACvB,EAEA,kBAAMI,GACJ,GAAKzD,KAAKmB,SAASiD,kBAAmBpE,KAAK4D,gBAA3C,CAIA5D,KAAK4D,iBAAkB,EAEvB,UACQ5D,KAAKuE,QAAQ,WACbvE,KAAKiE,eACb,CAAE,QACAjE,KAAK4D,iBAAkB,CACzB,CATA,CAUF,EAEA,wBAAMf,GACJ,MAAM2B,EAASxE,KAAK4C,WAAa,cAAgB,kBAC3C5C,KAAKG,QAAS,WAAUqE,IAAU,CAACN,WAAYlE,KAAKyB,KAC1DzB,KAAK4C,YAAc5C,KAAK4C,UAC1B,GAGF,aAAMb,GACJ/B,KAAK8B,WAAW,CAACX,QAASnB,KAAKyB,WACzBzB,KAAKgE,aACb,EAEAhC,SAAAA,GACEhC,KAAK8B,WAAW,CAACX,QAAS,MAC5B,G,UCxKF,MAAM7F,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASkC,GAAQ,CAAC,YAAY,qBAEzF,O,2FCROjC,MAAM,sB,kHAAXI,EAAAA,EAAAA,IAiBM,MAjBNC,EAiBM,CAhBWoC,EAAA3C,UAAO,WAAtBoC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAf,IAAA,KACgBqB,EAAAyG,MAAMxH,S,WAIhDQ,EAAAA,EAAAA,IAUkB0F,EAAA,C,MAVRC,QAASpF,EAAAyG,KACT3J,OAAQyB,EAAAzB,OACR4J,QAAS,aACT,kBAAiB1G,EAAAsF,eACjBnF,gBAAenC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,kBAAmBF,IAC1CmC,WAAQpC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,WAAYF,IAC5BoC,gBAAcrC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,iBAAkBF,IACxCqC,cAAYtC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,eAAgBF,IACpC4C,SAAM7C,EAAA,KAAAA,EAAA,GAAAC,GAAE+B,EAAAsF,eAAiBrH,GACzBuC,OAAIxC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,OAAQF,K,kDAbwB,WAAtDwB,EAAAA,EAAAA,IAEUkH,EAAA,C,MAFA,eAAa,G,mBAAiC,IAExD,UAFwD,yB,qDAwB5D,GACEjK,OAAQ,CAACC,EAAAA,GACTC,MAAO,CACL,kBACA,WACA,iBACA,eACA,QAGF0E,WAAY,CACVG,QAAO,IACPmF,QAAO,IACPlB,QAAOA,EAAAA,GAGT7I,MAAO,CACLC,OAAQ,CACNC,KAAMC,OACNC,QAAS,OAIbG,IAAAA,GACE,MAAO,CACLqJ,KAAM,GACNpJ,SAAS,EACTiI,eAAgB,KAEpB,EAEAhG,QAAS,CACP,cAAMuH,GACJ7E,KAAK3E,SAAU,EACf,IACE2E,KAAKyE,YAAczE,KAAKG,QAAQ,qBAAqBkE,KAAI5D,IAAG,IACvDA,EACH1F,KAAM,aAEV,CAAE,QACAiF,KAAK3E,SAAU,CACjB,CACF,GAGF0G,OAAAA,GACE/B,KAAK6E,UACP,G,UCnEF,MAAMvJ,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASkC,GAAQ,CAAC,YAAY,qBAEzF,O,2FCROjC,MAAM,8B,GAEPC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,QAAM,EACfC,EAAAA,EAAAA,GAAwB,KAArBD,MAAM,iBAAY,G,GAEvBC,EAAAA,EAAAA,GAA4B,OAAvBD,MAAM,QAAO,QAAI,G,GAHtBM,EAGAJ,G,GAIAD,EAAAA,EAAAA,GAEM,OAFDD,MAAM,QAAM,EACfC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,kBAAa,G,GAExBC,EAAAA,EAAAA,GAAiC,OAA5BD,MAAM,QAAO,aAAS,G,GAH3Ba,EAGAgG,G,GAIA5G,EAAAA,EAAAA,GAEM,OAFDD,MAAM,QAAM,EACfC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,kBAAa,G,GAExBC,EAAAA,EAAAA,GAAqC,OAAhCD,MAAM,QAAO,iBAAa,G,GAH/B2B,EAGAxB,G,0CAnBJC,EAAAA,EAAAA,IAqBM,MArBNC,EAqBM,EApBJJ,EAAAA,EAAAA,GAKM,OALDD,MAAM,OAAQQ,QAAKC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,SAAU,U,IAO1CX,EAAAA,EAAAA,GAKM,OALDD,MAAM,OAAQQ,QAAKC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,SAAU,e,IAO1CX,EAAAA,EAAAA,GAKM,OALDD,MAAM,OAAQQ,QAAKC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,SAAU,mB,KAU9C,OACEvB,MAAO,CAAC,W,UCtBV,MAAMU,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASkC,KAEpE,O,2FCNOjC,MAAM,Y,29BACTM,G,kCADFF,EAAAA,EAAAA,IAuBM,MAvBNC,EAuBMqG,E,eCvBR,MAAM6C,EAAS,CAAC,EAKVxJ,GAA2B,OAAgBwJ,EAAQ,CAAC,CAAC,SAAStH,GAAQ,CAAC,YAAY,qBAEzF,O,qGCPOjC,MAAM,+B,SACJA,MAAM,uB,SAMJA,MAAM,a,iBAKFA,MAAM,S,mBAGNA,MAAM,S,SAKZA,MAAM,qB,kHApBbI,EAAAA,EAAAA,IA8BM,MA9BNC,EA8BM,CA7BoCW,EAAApB,iBAAiBsG,K,WAmBzD9F,EAAAA,EAAAA,IASM,MATNuB,EASM,EARJS,EAAAA,EAAAA,IAOEoH,EAAA,CANCtD,GAAIlF,EAAApB,gBAAgBsG,GACpB3G,OAAQyB,EAAAzB,OACRqD,gBAAenC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,kBAAmBF,IAC1CmC,WAAQpC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,WAAYF,IAC5BoC,gBAAcrC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,iBAAkBF,IACxCuC,OAAIxC,EAAA,KAAAA,EAAA,GAAAC,GAAEC,EAAAC,MAAM,OAAQF,K,6BA1BkC,WAA3DN,EAAAA,EAAAA,IAiBM,MAjBNE,EAiBM,CAhBWmC,EAAA3C,UAAO,WAAtBoC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAf,IAAA,KACgBqB,EAAAgH,UAAU/H,S,WAIpDtB,EAAAA,EAAAA,IAUM,MAVNF,EAUM,gBATJE,EAAAA,EAAAA,IAQMU,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAPuBM,EAAAqI,cAAY,CAA5B9D,EAASM,M,WADtB9F,EAAAA,EAAAA,IAQM,OARDJ,MAAM,eAELoB,IAAK8E,EACL1F,QAAKE,GAAEC,EAAAC,MAAM,SAAUgF,I,EAC3B3F,EAAAA,EAAAA,GAEM,MAFNY,EAEM,EADJZ,EAAAA,EAAAA,GAAgD,OAA1C2G,IAAKhB,EAAQkB,MAAQ6C,IAAK/D,EAAQN,M,aAE1CrF,EAAAA,EAAAA,GAA2C,MAA3CuB,GAA2CC,EAAAA,EAAAA,IAArBmE,EAAQN,MAAI,Y,WAZoB,WAA1DpD,EAAAA,EAAAA,IAEUkH,EAAA,C,MAFA,eAAa,G,mBAAqC,IAE5D,UAF4D,2B,wDAoClE,GACEjK,OAAQ,CAACC,EAAAA,GACTC,MAAO,CACL,kBACA,WACA,iBACA,OACA,UAGF0E,WAAY,CACV6F,QAAO,aACP1F,QAAO,IACPmF,QAAOA,EAAAA,GAGT/J,MAAO,CACLM,gBAAiB,CACfJ,KAAMqK,OACNnK,QAAS,MAGXH,OAAQ,CACNC,KAAMC,OACNC,QAAS,OAIbG,IAAAA,GACE,MAAO,CACL4J,SAAU,GACV3J,SAAS,EAEb,EAEA0E,SAAU,CACRkF,YAAAA,GACE,OAAOjF,KAAKgF,SACTlK,QAAOqG,IAAYnB,KAAKlF,QAAUqG,EAAQN,KAAKwE,cAAcC,SAAStF,KAAKlF,OAAOuK,iBAClFvB,QAAO,CAACC,EAAK5C,KACZ4C,EAAI5C,EAAQM,IAAMN,EACX4C,IACN,CAAC,EACR,GAGFzG,QAAS,CACP,uBAAMiI,GACJvF,KAAK3E,SAAU,EACf,IACE2E,KAAKgF,eAAkBhF,KAAKG,QAAQ,4BACtC,CAAE,QACAH,KAAK3E,SAAU,CACjB,CACF,EAEA+F,QAAAA,GACE,MAAMC,EAAOrB,KAAKsB,aACdD,EAAKF,SACPnB,KAAK7D,MAAM,SAAU,CAACsF,GAAIJ,EAAKF,SAEnC,GAGF,aAAMY,SACE/B,KAAKuF,oBACXvF,KAAKoB,UACP,G,UCpGF,MAAM9F,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASkC,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/panels/Media/Providers/Mixin.vue","webpack://platypush/./src/components/panels/Media/Providers/Mixin.vue?f2ea","webpack://platypush/./src/components/panels/Media/Providers/Nav.vue","webpack://platypush/./src/components/panels/Media/Providers/Nav.vue?d1ce","webpack://platypush/./src/components/panels/Media/Providers/YouTube.vue","webpack://platypush/./src/components/panels/Media/Providers/YouTube.vue?9856","webpack://platypush/./src/components/panels/Media/Providers/YouTube/Channel.vue","webpack://platypush/./src/components/panels/Media/Providers/YouTube/Channel.vue?e8bb","webpack://platypush/./src/components/panels/Media/Providers/YouTube/Feed.vue","webpack://platypush/./src/components/panels/Media/Providers/YouTube/Feed.vue?abe5","webpack://platypush/./src/components/panels/Media/Providers/YouTube/Index.vue","webpack://platypush/./src/components/panels/Media/Providers/YouTube/Index.vue?bde9","webpack://platypush/./src/components/panels/Media/Providers/YouTube/NoToken.vue","webpack://platypush/./src/components/panels/Media/Providers/YouTube/NoToken.vue?8e99","webpack://platypush/./src/components/panels/Media/Providers/YouTube/Subscriptions.vue","webpack://platypush/./src/components/panels/Media/Providers/YouTube/Subscriptions.vue?c1d5"],"sourcesContent":["\n","import script from \"./Mixin.vue?vue&type=script&lang=js\"\nexport * from \"./Mixin.vue?vue&type=script&lang=js\"\n\nconst __exports__ = script;\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Nav.vue?vue&type=template&id=66204518&scoped=true\"\nimport script from \"./Nav.vue?vue&type=script&lang=js\"\nexport * from \"./Nav.vue?vue&type=script&lang=js\"\n\nimport \"./Nav.vue?vue&type=style&index=0&id=66204518&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-66204518\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./YouTube.vue?vue&type=template&id=1b7de001&scoped=true\"\nimport script from \"./YouTube.vue?vue&type=script&lang=js\"\nexport * from \"./YouTube.vue?vue&type=script&lang=js\"\n\nimport \"./YouTube.vue?vue&type=style&index=0&id=1b7de001&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-1b7de001\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Channel.vue?vue&type=template&id=62215952&scoped=true\"\nimport script from \"./Channel.vue?vue&type=script&lang=js\"\nexport * from \"./Channel.vue?vue&type=script&lang=js\"\n\nimport \"./Channel.vue?vue&type=style&index=0&id=62215952&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-62215952\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Feed.vue?vue&type=template&id=0131d440&scoped=true\"\nimport script from \"./Feed.vue?vue&type=script&lang=js\"\nexport * from \"./Feed.vue?vue&type=script&lang=js\"\n\nimport \"./Feed.vue?vue&type=style&index=0&id=0131d440&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-0131d440\"]])\n\nexport default __exports__","\n\n\n","import { render } from \"./Index.vue?vue&type=template&id=c531e118\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n\n\n","import { render } from \"./NoToken.vue?vue&type=template&id=42457341&scoped=true\"\nconst script = {}\n\nimport \"./NoToken.vue?vue&type=style&index=0&id=42457341&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-42457341\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Subscriptions.vue?vue&type=template&id=16e4f293&scoped=true\"\nimport script from \"./Subscriptions.vue?vue&type=script&lang=js\"\nexport * from \"./Subscriptions.vue?vue&type=script&lang=js\"\n\nimport \"./Subscriptions.vue?vue&type=style&index=0&id=16e4f293&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-16e4f293\"]])\n\nexport default __exports__"],"names":["mixins","Utils","emits","props","filter","type","String","default","selectedPlaylist","selectedChannel","data","loading","__exports__","class","_createElementVNode","_hoisted_3","_hoisted_9","_createElementBlock","_hoisted_1","_hoisted_2","title","onClick","_cache","$event","_ctx","$emit","_hoisted_5","_Fragment","_renderList","$props","path","token","index","key","$options","icon","_normalizeClass","_hoisted_7","_toDisplayString","length","_hoisted_8","_hoisted_10","emit","Array","methods","click","render","_createBlock","_component_Loading","_createVNode","_component_MediaNav","computedPath","onBack","authToken","$data","selectedView","_component_Feed","onAddToPlaylist","onDownload","onDownloadAudio","onOpenChannel","selectChannelFromItem","onPlay","_component_Playlists","selectedPlaylist_","onRemoveFromPlaylist","removeFromPlaylist","onSelect","onPlaylistSelected","_component_Subscriptions","selectedChannel_","onChannelSelected","_component_Index","selectView","_component_NoToken","MediaProvider","components","Feed","Index","Loading","MediaNav","NoToken","Playlists","Subscriptions","youtubeConfig","computed","this","auth_token","loadYoutubeConfig","request","youtube","event","playlistId","playlist_id","videoId","item","url","video_id","createPlaylist","name","view","slice","toUpperCase","playlist","push","channel","initView","args","getUrlArgs","section","channel_url","id","split","pop","watch","value","setUrlArgs","mounted","unmounted","_hoisted_4","banner","src","_hoisted_6","image","href","target","rel","_hoisted_11","_hoisted_13","_hoisted_14","subscribed","toggleSubscription","_hoisted_15","subscribers","_hoisted_16","description","_hoisted_17","_component_Results","results","items","selectedResult","ref","onScrollEnd","loadNextPage","Results","required","loadingNextPage","itemsByUrl","reduce","acc","loadChannel","updateChannel","channel_id","init","next_page_token","map","concat","timeout","action","feed","sources","_component_NoItems","NoItems","loadFeed","script","_component_Channel","channels","channelsById","alt","Channel","Object","toLowerCase","includes","loadSubscriptions"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1512.b686fb87.js b/platypush/backend/http/webapp/dist/static/js/1512.455ca36e.js similarity index 90% rename from platypush/backend/http/webapp/dist/static/js/1512.b686fb87.js rename to platypush/backend/http/webapp/dist/static/js/1512.455ca36e.js index 2283067a44..22a8152916 100644 --- a/platypush/backend/http/webapp/dist/static/js/1512.b686fb87.js +++ b/platypush/backend/http/webapp/dist/static/js/1512.455ca36e.js @@ -1,2 +1,2 @@ "use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1512],{1512:function(a,e,n){n.r(e),n.d(e,{default:function(){return l}});var r=n(6252);function u(a,e,n,u,t,c){const p=(0,r.up)("Camera");return(0,r.wg)(),(0,r.j4)(p,{"camera-plugin":"pi.legacy"})}var t=n(7528),c={name:"CameraPiLegacy",components:{Camera:t["default"]}},p=n(3744);const s=(0,p.Z)(c,[["render",u]]);var l=s}}]); -//# sourceMappingURL=1512.b686fb87.js.map \ No newline at end of file +//# sourceMappingURL=1512.455ca36e.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1512.b686fb87.js.map b/platypush/backend/http/webapp/dist/static/js/1512.455ca36e.js.map similarity index 94% rename from platypush/backend/http/webapp/dist/static/js/1512.b686fb87.js.map rename to platypush/backend/http/webapp/dist/static/js/1512.455ca36e.js.map index 56a3323b9f..fe08ce7ade 100644 --- a/platypush/backend/http/webapp/dist/static/js/1512.b686fb87.js.map +++ b/platypush/backend/http/webapp/dist/static/js/1512.455ca36e.js.map @@ -1 +1 @@ -{"version":3,"file":"static/js/1512.b686fb87.js","mappings":"kPACEA,EAAAA,EAAAA,IAAoCC,EAAA,CAA5B,gBAAc,a,eAMxB,GACEC,KAAM,iBACNC,WAAY,CAACC,OAAMA,EAAAA,a,UCJrB,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://platypush/./src/components/panels/CameraPiLegacy/Index.vue","webpack://platypush/./src/components/panels/CameraPiLegacy/Index.vue?4f74"],"sourcesContent":["\n\n\n","import { render } from \"./Index.vue?vue&type=template&id=4b6b0f2d\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["_createBlock","_component_Camera","name","components","Camera","__exports__","render"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"static/js/1512.455ca36e.js","mappings":"kPACEA,EAAAA,EAAAA,IAAoCC,EAAA,CAA5B,gBAAc,a,eAMxB,GACEC,KAAM,iBACNC,WAAY,CAACC,OAAMA,EAAAA,a,UCJrB,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://platypush/./src/components/panels/CameraPiLegacy/Index.vue","webpack://platypush/./src/components/panels/CameraPiLegacy/Index.vue?4f74"],"sourcesContent":["\n\n\n","import { render } from \"./Index.vue?vue&type=template&id=4b6b0f2d\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["_createBlock","_component_Camera","name","components","Camera","__exports__","render"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/169.92c1a438.js b/platypush/backend/http/webapp/dist/static/js/169.f32b50c1.js similarity index 96% rename from platypush/backend/http/webapp/dist/static/js/169.92c1a438.js rename to platypush/backend/http/webapp/dist/static/js/169.f32b50c1.js index e8bca16c79..51a29bde65 100644 --- a/platypush/backend/http/webapp/dist/static/js/169.92c1a438.js +++ b/platypush/backend/http/webapp/dist/static/js/169.f32b50c1.js @@ -1,2 +1,2 @@ "use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[169],{169:function(t,e,n){n.r(e),n.d(e,{default:function(){return x}});var l=n(6252),a=n(3577);const i={class:"entity sensor-container"},s={class:"head"},u={class:"icon"},o={class:"label"},r=["textContent"],c=["textContent"];function d(t,e,n,d,v,p){const f=(0,l.up)("EntityIcon");return(0,l.wg)(),(0,l.iD)("div",i,[(0,l._)("div",s,[(0,l._)("div",u,[(0,l.Wm)(f,{entity:t.value,loading:t.loading,error:t.error},null,8,["entity","loading","error"])]),(0,l._)("div",o,[(0,l._)("div",{class:"name",textContent:(0,a.zw)(t.value.name)},null,8,r)]),(0,l._)("div",{class:"value-container",textContent:(0,a.zw)(p.displayValue)},null,8,c)])])}var v=n(847),p=n(4967),f={name:"PercentSensor",components:{EntityIcon:p["default"]},mixins:[v["default"]],computed:{displayValue(){if(null==this.value.value)return null;let t=100*this.value.value;return(t.toString()==t.toFixed(0)?t.toFixed(0):t.toFixed(1))+"%"}}},y=n(3744);const h=(0,y.Z)(f,[["render",d],["__scopeId","data-v-1b6c81c2"]]);var x=h}}]); -//# sourceMappingURL=169.92c1a438.js.map \ No newline at end of file +//# sourceMappingURL=169.f32b50c1.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/169.92c1a438.js.map b/platypush/backend/http/webapp/dist/static/js/169.f32b50c1.js.map similarity index 97% rename from platypush/backend/http/webapp/dist/static/js/169.92c1a438.js.map rename to platypush/backend/http/webapp/dist/static/js/169.f32b50c1.js.map index 71ae1263f0..f60dbe4c85 100644 --- a/platypush/backend/http/webapp/dist/static/js/169.92c1a438.js.map +++ b/platypush/backend/http/webapp/dist/static/js/169.f32b50c1.js.map @@ -1 +1 @@ -{"version":3,"file":"static/js/169.92c1a438.js","mappings":"8LACOA,MAAM,2B,GACJA,MAAM,Q,GACJA,MAAM,Q,GAINA,MAAM,S,6GANfC,EAAAA,EAAAA,IAYM,MAZNC,EAYM,EAXJC,EAAAA,EAAAA,GAUM,MAVNC,EAUM,EATJD,EAAAA,EAAAA,GAEM,MAFNE,EAEM,EADJC,EAAAA,EAAAA,IAAgEC,EAAA,CAAnDC,OAAQC,EAAAC,MAAQC,QAASF,EAAAE,QAAUC,MAAOH,EAAAG,O,wCAGzDT,EAAAA,EAAAA,GAEM,MAFNU,EAEM,EADJV,EAAAA,EAAAA,GAAwC,OAAnCH,MAAM,O,aAAOc,EAAAA,EAAAA,IAAQL,EAAWC,MAALK,O,aAGlCZ,EAAAA,EAAAA,GAAqD,OAAhDH,MAAM,kB,aAAkBc,EAAAA,EAAAA,IAAQE,EAAaC,e,qCASxD,GACEF,KAAM,gBACNG,WAAY,CAACC,WAAUA,EAAAA,YACvBC,OAAQ,CAACC,EAAAA,YACTC,SAAU,CACRL,YAAAA,GACE,GAAwB,MAApBM,KAAKb,MAAMA,MACb,OAAO,KAGT,IAAIc,EAAY,IAAMD,KAAKb,MAAMA,MACjC,OACEc,EAAUC,YAAcD,EAAUE,QAAQ,GACxCF,EAAUE,QAAQ,GAAKF,EAAUE,QAAQ,IACzC,GACN,I,UC5BJ,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/panels/Entities/PercentSensor.vue","webpack://platypush/./src/components/panels/Entities/PercentSensor.vue?1f84"],"sourcesContent":["\n\n\n\n\n","import { render } from \"./PercentSensor.vue?vue&type=template&id=1b6c81c2&scoped=true\"\nimport script from \"./PercentSensor.vue?vue&type=script&lang=js\"\nexport * from \"./PercentSensor.vue?vue&type=script&lang=js\"\n\nimport \"./PercentSensor.vue?vue&type=style&index=0&id=1b6c81c2&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-1b6c81c2\"]])\n\nexport default __exports__"],"names":["class","_createElementBlock","_hoisted_1","_createElementVNode","_hoisted_2","_hoisted_3","_createVNode","_component_EntityIcon","entity","_ctx","value","loading","error","_hoisted_4","_toDisplayString","name","$options","displayValue","components","EntityIcon","mixins","EntityMixin","computed","this","normValue","toString","toFixed","__exports__","render"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"static/js/169.f32b50c1.js","mappings":"8LACOA,MAAM,2B,GACJA,MAAM,Q,GACJA,MAAM,Q,GAINA,MAAM,S,6GANfC,EAAAA,EAAAA,IAYM,MAZNC,EAYM,EAXJC,EAAAA,EAAAA,GAUM,MAVNC,EAUM,EATJD,EAAAA,EAAAA,GAEM,MAFNE,EAEM,EADJC,EAAAA,EAAAA,IAAgEC,EAAA,CAAnDC,OAAQC,EAAAC,MAAQC,QAASF,EAAAE,QAAUC,MAAOH,EAAAG,O,wCAGzDT,EAAAA,EAAAA,GAEM,MAFNU,EAEM,EADJV,EAAAA,EAAAA,GAAwC,OAAnCH,MAAM,O,aAAOc,EAAAA,EAAAA,IAAQL,EAAWC,MAALK,O,aAGlCZ,EAAAA,EAAAA,GAAqD,OAAhDH,MAAM,kB,aAAkBc,EAAAA,EAAAA,IAAQE,EAAaC,e,qCASxD,GACEF,KAAM,gBACNG,WAAY,CAACC,WAAUA,EAAAA,YACvBC,OAAQ,CAACC,EAAAA,YACTC,SAAU,CACRL,YAAAA,GACE,GAAwB,MAApBM,KAAKb,MAAMA,MACb,OAAO,KAGT,IAAIc,EAAY,IAAMD,KAAKb,MAAMA,MACjC,OACEc,EAAUC,YAAcD,EAAUE,QAAQ,GACxCF,EAAUE,QAAQ,GAAKF,EAAUE,QAAQ,IACzC,GACN,I,UC5BJ,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/panels/Entities/PercentSensor.vue","webpack://platypush/./src/components/panels/Entities/PercentSensor.vue?1f84"],"sourcesContent":["\n\n\n\n\n","import { render } from \"./PercentSensor.vue?vue&type=template&id=1b6c81c2&scoped=true\"\nimport script from \"./PercentSensor.vue?vue&type=script&lang=js\"\nexport * from \"./PercentSensor.vue?vue&type=script&lang=js\"\n\nimport \"./PercentSensor.vue?vue&type=style&index=0&id=1b6c81c2&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-1b6c81c2\"]])\n\nexport default __exports__"],"names":["class","_createElementBlock","_hoisted_1","_createElementVNode","_hoisted_2","_hoisted_3","_createVNode","_component_EntityIcon","entity","_ctx","value","loading","error","_hoisted_4","_toDisplayString","name","$options","displayValue","components","EntityIcon","mixins","EntityMixin","computed","this","normValue","toString","toFixed","__exports__","render"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1706.1a5248ba.js b/platypush/backend/http/webapp/dist/static/js/1706.1994f98e.js similarity index 97% rename from platypush/backend/http/webapp/dist/static/js/1706.1a5248ba.js rename to platypush/backend/http/webapp/dist/static/js/1706.1994f98e.js index a81c13533a..236ab2dc6d 100644 --- a/platypush/backend/http/webapp/dist/static/js/1706.1a5248ba.js +++ b/platypush/backend/http/webapp/dist/static/js/1706.1994f98e.js @@ -1,2 +1,2 @@ "use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1706],{1706:function(l,a,s){s.r(a),s.d(a,{default:function(){return D}});var e=s(6252),n=s(3577),t=s(9963);const c=l=>((0,e.dD)("data-v-75353a60"),l=l(),(0,e.Cn)(),l),i={class:"entity ping-host-container"},o={class:"head"},d={class:"col-1 icon-container"},u=["textContent"],v={key:0,class:"body children attributes fade-in"},r={class:"child"},p=c((()=>(0,e._)("div",{class:"col-s-12 col-m-6 label"},[(0,e._)("div",{class:"name"},"Host")],-1))),C={class:"value"},_=["textContent"],h={key:0,class:"child"},m=c((()=>(0,e._)("div",{class:"col-s-12 col-m-6 label"},[(0,e._)("div",{class:"name"},"Ping")],-1))),f={class:"value"},k=["textContent"];function b(l,a,s,c,b,w){return(0,e.wg)(),(0,e.iD)("div",i,[(0,e._)("div",o,[(0,e._)("div",d,[(0,e._)("span",{class:(0,n.C_)(["icon",w.iconClass])},null,2)]),(0,e._)("div",{class:"col-10 name",onClick:a[0]||(a[0]=(0,t.iM)((l=>b.isCollapsed=!b.isCollapsed),["stop"]))},[(0,e._)("div",{class:"name",textContent:(0,n.zw)(l.value.name)},null,8,u)]),(0,e._)("div",{class:"col-1 collapse-toggler",onClick:a[1]||(a[1]=(0,t.iM)((l=>b.isCollapsed=!b.isCollapsed),["stop"]))},[(0,e._)("i",{class:(0,n.C_)(["fas",{"fa-chevron-down":b.isCollapsed,"fa-chevron-up":!b.isCollapsed}])},null,2)])]),b.isCollapsed?(0,e.kq)("",!0):((0,e.wg)(),(0,e.iD)("div",v,[(0,e._)("div",r,[p,(0,e._)("div",C,[(0,e._)("div",{class:"name",textContent:(0,n.zw)(l.value.name)},null,8,_)])]),l.value.reachable?((0,e.wg)(),(0,e.iD)("div",h,[m,(0,e._)("div",f,[(0,e._)("span",{textContent:(0,n.zw)(l.value.avg)},null,8,k),(0,e.Uk)(" ms ")])])):(0,e.kq)("",!0)]))])}var w=s(847),g={mixins:[w["default"]],data(){return{isCollapsed:!0}},computed:{iconClass(){return this.value.reachable?"reachable":"unreachable"}}},x=s(3744);const y=(0,x.Z)(g,[["render",b],["__scopeId","data-v-75353a60"]]);var D=y}}]); -//# sourceMappingURL=1706.1a5248ba.js.map \ No newline at end of file +//# sourceMappingURL=1706.1994f98e.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1706.1a5248ba.js.map b/platypush/backend/http/webapp/dist/static/js/1706.1994f98e.js.map similarity index 98% rename from platypush/backend/http/webapp/dist/static/js/1706.1a5248ba.js.map rename to platypush/backend/http/webapp/dist/static/js/1706.1994f98e.js.map index 5fd8a14046..4313a95bff 100644 --- a/platypush/backend/http/webapp/dist/static/js/1706.1a5248ba.js.map +++ b/platypush/backend/http/webapp/dist/static/js/1706.1994f98e.js.map @@ -1 +1 @@ -{"version":3,"file":"static/js/1706.1a5248ba.js","mappings":"gQACOA,MAAM,8B,GACJA,MAAM,Q,GACJA,MAAM,wB,2BAaRA,MAAM,oC,GACJA,MAAM,S,UACTC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,0BAAwB,EACjCC,EAAAA,EAAAA,GAA4B,OAAvBD,MAAM,QAAO,UAAI,K,GAEnBA,MAAM,S,2BAKRA,MAAM,S,UACTC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,0BAAwB,EACjCC,EAAAA,EAAAA,GAA4B,OAAvBD,MAAM,QAAO,UAAI,K,GAEnBA,MAAM,S,4DA7BjBE,EAAAA,EAAAA,IAkCM,MAlCNC,EAkCM,EAjCJF,EAAAA,EAAAA,GAYM,MAZNG,EAYM,EAXJH,EAAAA,EAAAA,GAEM,MAFNI,EAEM,EADJJ,EAAAA,EAAAA,GAAwC,QAAlCD,OAAKM,EAAAA,EAAAA,IAAA,CAAC,OAAeC,EAAAC,a,WAG7BP,EAAAA,EAAAA,GAEM,OAFDD,MAAM,cAAeS,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOC,EAAAC,aAAeD,EAAAC,aAAW,Y,EAC9Db,EAAAA,EAAAA,GAAwC,OAAnCD,MAAM,O,aAAOe,EAAAA,EAAAA,IAAQC,EAAWC,MAALC,O,aAGlCjB,EAAAA,EAAAA,GAEM,OAFDD,MAAM,yBAA0BS,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOC,EAAAC,aAAeD,EAAAC,aAAW,Y,EACzEb,EAAAA,EAAAA,GAA0F,KAAvFD,OAAKM,EAAAA,EAAAA,IAAA,CAAC,MAAK,mBAA6BO,EAAAC,YAAW,iBAAoBD,EAAAC,gB,YAIzBD,EAAAC,aAgBjD,iBAhB4D,WAAhEZ,EAAAA,EAAAA,IAkBM,MAlBNiB,EAkBM,EAjBJlB,EAAAA,EAAAA,GAOM,MAPNmB,EAOM,CANJC,GAGApB,EAAAA,EAAAA,GAEM,MAFNqB,EAEM,EADJrB,EAAAA,EAAAA,GAAwC,OAAnCD,MAAM,O,aAAOe,EAAAA,EAAAA,IAAQC,EAAWC,MAALC,O,cAIXF,EAAAC,MAAMM,YAAS,WAAxCrB,EAAAA,EAAAA,IAOM,MAPNsB,EAOM,CANJC,GAGAxB,EAAAA,EAAAA,GAEM,MAFNyB,EAEM,EADJzB,EAAAA,EAAAA,GAA2B,Q,aAArBc,EAAAA,EAAAA,IAAQC,EAAUC,MAAJU,M,mBAAO,cAC7B,mB,cASR,GACEC,OAAQ,CAACC,EAAAA,YAETC,IAAAA,GACE,MAAO,CACLhB,aAAa,EAEjB,EAEAiB,SAAU,CACRvB,SAAAA,GACE,OAAOwB,KAAKf,MAAMM,UAAY,YAAc,aAC9C,I,UC9CJ,MAAMU,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/panels/Entities/PingHost.vue","webpack://platypush/./src/components/panels/Entities/PingHost.vue?cc57"],"sourcesContent":["\n\n\n\n\n","import { render } from \"./PingHost.vue?vue&type=template&id=75353a60&scoped=true\"\nimport script from \"./PingHost.vue?vue&type=script&lang=js\"\nexport * from \"./PingHost.vue?vue&type=script&lang=js\"\n\nimport \"./PingHost.vue?vue&type=style&index=0&id=75353a60&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-75353a60\"]])\n\nexport default __exports__"],"names":["class","_createElementVNode","_createElementBlock","_hoisted_1","_hoisted_2","_hoisted_3","_normalizeClass","$options","iconClass","onClick","_cache","_withModifiers","$event","$data","isCollapsed","_toDisplayString","_ctx","value","name","_hoisted_5","_hoisted_6","_hoisted_7","_hoisted_8","reachable","_hoisted_10","_hoisted_11","_hoisted_12","avg","mixins","EntityMixin","data","computed","this","__exports__","render"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"static/js/1706.1994f98e.js","mappings":"gQACOA,MAAM,8B,GACJA,MAAM,Q,GACJA,MAAM,wB,2BAaRA,MAAM,oC,GACJA,MAAM,S,UACTC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,0BAAwB,EACjCC,EAAAA,EAAAA,GAA4B,OAAvBD,MAAM,QAAO,UAAI,K,GAEnBA,MAAM,S,2BAKRA,MAAM,S,UACTC,EAAAA,EAAAA,GAEM,OAFDD,MAAM,0BAAwB,EACjCC,EAAAA,EAAAA,GAA4B,OAAvBD,MAAM,QAAO,UAAI,K,GAEnBA,MAAM,S,4DA7BjBE,EAAAA,EAAAA,IAkCM,MAlCNC,EAkCM,EAjCJF,EAAAA,EAAAA,GAYM,MAZNG,EAYM,EAXJH,EAAAA,EAAAA,GAEM,MAFNI,EAEM,EADJJ,EAAAA,EAAAA,GAAwC,QAAlCD,OAAKM,EAAAA,EAAAA,IAAA,CAAC,OAAeC,EAAAC,a,WAG7BP,EAAAA,EAAAA,GAEM,OAFDD,MAAM,cAAeS,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOC,EAAAC,aAAeD,EAAAC,aAAW,Y,EAC9Db,EAAAA,EAAAA,GAAwC,OAAnCD,MAAM,O,aAAOe,EAAAA,EAAAA,IAAQC,EAAWC,MAALC,O,aAGlCjB,EAAAA,EAAAA,GAEM,OAFDD,MAAM,yBAA0BS,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOC,EAAAC,aAAeD,EAAAC,aAAW,Y,EACzEb,EAAAA,EAAAA,GAA0F,KAAvFD,OAAKM,EAAAA,EAAAA,IAAA,CAAC,MAAK,mBAA6BO,EAAAC,YAAW,iBAAoBD,EAAAC,gB,YAIzBD,EAAAC,aAgBjD,iBAhB4D,WAAhEZ,EAAAA,EAAAA,IAkBM,MAlBNiB,EAkBM,EAjBJlB,EAAAA,EAAAA,GAOM,MAPNmB,EAOM,CANJC,GAGApB,EAAAA,EAAAA,GAEM,MAFNqB,EAEM,EADJrB,EAAAA,EAAAA,GAAwC,OAAnCD,MAAM,O,aAAOe,EAAAA,EAAAA,IAAQC,EAAWC,MAALC,O,cAIXF,EAAAC,MAAMM,YAAS,WAAxCrB,EAAAA,EAAAA,IAOM,MAPNsB,EAOM,CANJC,GAGAxB,EAAAA,EAAAA,GAEM,MAFNyB,EAEM,EADJzB,EAAAA,EAAAA,GAA2B,Q,aAArBc,EAAAA,EAAAA,IAAQC,EAAUC,MAAJU,M,mBAAO,cAC7B,mB,cASR,GACEC,OAAQ,CAACC,EAAAA,YAETC,IAAAA,GACE,MAAO,CACLhB,aAAa,EAEjB,EAEAiB,SAAU,CACRvB,SAAAA,GACE,OAAOwB,KAAKf,MAAMM,UAAY,YAAc,aAC9C,I,UC9CJ,MAAMU,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/panels/Entities/PingHost.vue","webpack://platypush/./src/components/panels/Entities/PingHost.vue?cc57"],"sourcesContent":["\n\n\n\n\n","import { render } from \"./PingHost.vue?vue&type=template&id=75353a60&scoped=true\"\nimport script from \"./PingHost.vue?vue&type=script&lang=js\"\nexport * from \"./PingHost.vue?vue&type=script&lang=js\"\n\nimport \"./PingHost.vue?vue&type=style&index=0&id=75353a60&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-75353a60\"]])\n\nexport default __exports__"],"names":["class","_createElementVNode","_createElementBlock","_hoisted_1","_hoisted_2","_hoisted_3","_normalizeClass","$options","iconClass","onClick","_cache","_withModifiers","$event","$data","isCollapsed","_toDisplayString","_ctx","value","name","_hoisted_5","_hoisted_6","_hoisted_7","_hoisted_8","reachable","_hoisted_10","_hoisted_11","_hoisted_12","avg","mixins","EntityMixin","data","computed","this","__exports__","render"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1807.564d1fef.js b/platypush/backend/http/webapp/dist/static/js/1807.564d1fef.js deleted file mode 100644 index dc2554cf22..0000000000 --- a/platypush/backend/http/webapp/dist/static/js/1807.564d1fef.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1807],{1807:function(e,t,n){n.d(t,{Z:function(){return We}});var s=n(6252),i=n(3577),a=n(9963);const o=e=>((0,s.dD)("data-v-48afe350"),e=e(),(0,s.Cn)(),e),r={class:"action-editor"},l={class:"curl-modal-container"},c=["innerHTML"],u={class:"header-container"},d={class:"tabs-container"},h={key:0,class:"buttons"},p=["disabled"],g=o((()=>(0,s._)("i",{class:"fas fa-save"},null,-1))),m=[g],v={key:0,class:"request structured"},b={class:"autocomplete-container"},y=["type","disabled"],k=o((()=>(0,s._)("i",{class:"fas fa-play"},null,-1))),f=[k],w={key:0,class:"args"},A=o((()=>(0,s._)("h2",null,[(0,s._)("i",{class:"fas fa-code"}),(0,s.Uk)("   Arguments ")],-1))),x={key:1,class:"request raw-request"},I={class:"first-row"},_=["placeholder"],D=["type","disabled"],q=o((()=>(0,s._)("i",{class:"fas fa-play"},null,-1))),C=[q];function S(e,t,n,o,g,k){const q=(0,s.up)("Loading"),S=(0,s.up)("Modal"),E=(0,s.up)("Tab"),R=(0,s.up)("Tabs"),O=(0,s.up)("Autocomplete"),$=(0,s.up)("ActionDoc"),j=(0,s.up)("ActionArgs"),T=(0,s.up)("Response");return(0,s.wg)(),(0,s.iD)("div",{class:(0,i.C_)(["action-editor-container",{"with-save":n.withSave}]),onClick:t[12]||(t[12]=(...e)=>k.onClick&&k.onClick(...e))},[g.loading?((0,s.wg)(),(0,s.j4)(q,{key:0})):(0,s.kq)("",!0),(0,s._)("div",r,[(0,s._)("div",l,[k.curlSnippet?.length?((0,s.wg)(),(0,s.j4)(S,{key:0,ref:"curlModal",title:"curl request"},{default:(0,s.w5)((()=>[(0,s._)("div",{class:"output curl-snippet",onClick:t[0]||(t[0]=t=>e.copyToClipboard(k.curlSnippet))},[(0,s._)("pre",null,[(0,s._)("code",{innerHTML:k.highlightedCurlSnippet},null,8,c)])])])),_:1},512)):(0,s.kq)("",!0)]),(0,s._)("div",u,[(0,s._)("div",d,[(0,s.Wm)(R,null,{default:(0,s.w5)((()=>[(0,s.Wm)(E,{selected:g.structuredInput,"icon-class":"fas fa-list",onInput:t[1]||(t[1]=e=>k.onInputTypeChange(!0))},{default:(0,s.w5)((()=>[(0,s.Uk)(" Structured ")])),_:1},8,["selected"]),(0,s.Wm)(E,{selected:!g.structuredInput,"icon-class":"fas fa-code",onInput:t[2]||(t[2]=e=>k.onInputTypeChange(!1))},{default:(0,s.w5)((()=>[(0,s.Uk)(" Raw ")])),_:1},8,["selected"])])),_:1})]),n.withSave?((0,s.wg)(),(0,s.iD)("div",h,[(0,s._)("button",{type:"submit",class:"save-btn btn-primary",disabled:g.running||!k.isValidAction,title:"Save",onClick:t[3]||(t[3]=(0,a.iM)(((...e)=>k.onSubmit&&k.onSubmit(...e)),["stop"]))},m,8,p)])):(0,s.kq)("",!0)]),(0,s._)("form",{ref:"actionForm",autocomplete:"off",onSubmit:t[11]||(t[11]=(0,a.iM)(((...e)=>k.onSubmit&&k.onSubmit(...e)),["prevent"]))},[g.structuredInput?((0,s.wg)(),(0,s.iD)("div",v,[(0,s._)("header",null,[(0,s._)("div",b,[(0,s.Wm)(O,{ref:"autocomplete",items:k.autocompleteItems,onInput:k.updateAction,placeholder:"Action","show-results-when-blank":"",autofocus:"",disabled:g.running,value:g.action.name},null,8,["items","onInput","disabled","value"]),(0,s._)("button",{type:n.withSave?"button":"submit",class:"run-btn btn-primary",disabled:g.running||!k.isValidAction,title:"Run",onClick:t[4]||(t[4]=(0,a.iM)(((...e)=>k.executeAction&&k.executeAction(...e)),["stop"]))},f,8,y)])]),(0,s.Wm)($,{action:g.action,"curl-snippet":k.curlSnippet,loading:g.docLoading,doc:g.selectedDoc,onCurlModal:t[5]||(t[5]=t=>e.$refs.curlModal.show())},null,8,["action","curl-snippet","loading","doc"]),g.action.name in g.actions&&(Object.keys(g.action.args).length||g.action.supportsExtraArgs)?((0,s.wg)(),(0,s.iD)("section",w,[A,(0,s.Wm)(j,{action:g.action,loading:g.loading,running:g.running,"selected-arg":g.selectedArg,"selected-argdoc":g.selectedArgdoc,onAdd:k.addArg,onSelect:k.selectArgdoc,onRemove:k.removeArg,onArgEdit:t[6]||(t[6]=e=>g.action.args[e.name].value=e.value),onExtraArgNameEdit:t[7]||(t[7]=e=>g.action.extraArgs[e.index].name=e.value),onExtraArgValueEdit:t[8]||(t[8]=e=>g.action.extraArgs[e.index].value=e.value)},null,8,["action","loading","running","selected-arg","selected-argdoc","onAdd","onSelect","onRemove"])])):(0,s.kq)("",!0),(0,s.Wm)(T,{response:g.response,error:g.error},null,8,["response","error"])])):(0,s.kq)("",!0),g.structuredInput?(0,s.kq)("",!0):((0,s.wg)(),(0,s.iD)("div",x,[(0,s._)("div",I,[(0,s._)("label",null,[(0,s.wy)((0,s._)("textarea",{"onUpdate:modelValue":t[9]||(t[9]=e=>g.rawRequest=e),ref:"rawAction",placeholder:g.rawRequestPlaceholder},null,8,_),[[a.nr,g.rawRequest]])]),(0,s._)("button",{type:n.withSave?"button":"submit",disabled:g.running,class:"raw-run-btn btn-primary",title:"Run",onClick:t[10]||(t[10]=(0,a.iM)(((...e)=>k.executeAction&&k.executeAction(...e)),["stop"]))},C,8,D)]),(0,s.Wm)(T,{response:g.response,error:g.error},null,8,["response","error"])]))],544)])],2)}n(560),n(8783),n(3465);var E=n(637);const R=e=>((0,s.dD)("data-v-1edf7bde"),e=e(),(0,s.Cn)(),e),O={class:"args-body"},$={key:0,class:"args-list"},j=["disabled","placeholder","value","onInput","onFocus"],T={key:0,class:"required-flag"},N={key:0,class:"extra-args"},L={class:"col-5"},M=["disabled","value","onInput"],U={class:"col-6"},Z=["disabled","value","onInput"],B={class:"col-1 buttons"},K=["onClick"],J=R((()=>(0,s._)("i",{class:"fas fa-trash"},null,-1))),V=[J],H={key:1,class:"add-arg"},z=R((()=>(0,s._)("i",{class:"fas fa-plus"},null,-1))),W=[z];function P(e,t,n,a,o,r){const l=(0,s.up)("Argdoc");return(0,s.wg)(),(0,s.iD)("div",O,[Object.keys(n.action.args).length||n.action.supportsExtraArgs?((0,s.wg)(),(0,s.iD)("div",$,[((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(Object.keys(n.action.args),(e=>((0,s.wg)(),(0,s.iD)("div",{class:"arg",key:e},[(0,s._)("label",null,[(0,s._)("input",{type:"text",class:(0,i.C_)(["action-arg-value",{required:n.action.args[e].required}]),disabled:n.running,placeholder:e,value:n.action.args[e].value,onInput:t=>r.onArgEdit(e,t),onFocus:t=>r.onSelect(e)},null,42,j),n.action.args[e].required?((0,s.wg)(),(0,s.iD)("span",T,"*")):(0,s.kq)("",!0)]),n.selectedArgdoc&&n.selectedArg&&e===n.selectedArg?((0,s.wg)(),(0,s.j4)(l,{key:0,name:n.selectedArg,args:n.action.args[n.selectedArg],doc:n.selectedArgdoc,loading:n.loading,"is-mobile":""},null,8,["name","args","doc","loading"])):(0,s.kq)("",!0)])))),128)),Object.keys(n.action.extraArgs).length?((0,s.wg)(),(0,s.iD)("div",N,[((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(n.action.extraArgs,((t,i)=>((0,s.wg)(),(0,s.iD)("div",{class:"arg extra-arg",key:i},[(0,s._)("label",L,[(0,s._)("input",{type:"text",class:"action-extra-arg-name",placeholder:"Name",disabled:n.running,value:t.name,onInput:e=>r.onExtraArgNameEdit(i,e.target.value)},null,40,M)]),(0,s._)("label",U,[(0,s._)("input",{type:"text",class:"action-extra-arg-value",placeholder:"Value",disabled:n.running,value:t.value,onInput:e=>r.onExtraArgValueEdit(i,e.target.value)},null,40,Z)]),(0,s._)("label",B,[(0,s._)("button",{type:"button",class:"action-extra-arg-del",title:"Remove argument",onClick:t=>e.$emit("remove",i)},V,8,K)])])))),128))])):(0,s.kq)("",!0),n.action.supportsExtraArgs?((0,s.wg)(),(0,s.iD)("div",H,[(0,s._)("button",{type:"button",title:"Add an argument",onClick:t[0]||(t[0]=(...e)=>r.onArgAdd&&r.onArgAdd(...e))},W)])):(0,s.kq)("",!0)])):(0,s.kq)("",!0),n.selectedArgdoc&&n.selectedArg?((0,s.wg)(),(0,s.j4)(l,{key:1,name:n.selectedArg,args:n.action.args[n.selectedArg],doc:n.selectedArgdoc,loading:n.loading},null,8,["name","args","doc","loading"])):(0,s.kq)("",!0)])}const F=e=>((0,s.dD)("data-v-2df98b7b"),e=e(),(0,s.Cn)(),e),Y=["textContent"],G={key:0,class:"flag required"},X={key:1,class:"flag optional"},Q={class:"doc html"},ee={key:1},te=["innerHTML"],ne={key:1,class:"type"},se=F((()=>(0,s._)("b",null,"Type:",-1)));function ie(e,t,n,a,o,r){const l=(0,s.up)("Loading");return(0,s.wg)(),(0,s.iD)("article",{class:(0,i.C_)(["argdoc-container",{mobile:n.isMobile,widescreen:!n.isMobile}])},[(0,s._)("h2",null,[(0,s.Uk)(" Argument: "),(0,s._)("div",{class:"argname",textContent:(0,i.zw)(n.name)},null,8,Y),n.args.required?((0,s.wg)(),(0,s.iD)("span",G,"[Required]")):((0,s.wg)(),(0,s.iD)("span",X,"[Optional]"))]),(0,s._)("div",Q,[n.loading?((0,s.wg)(),(0,s.j4)(l,{key:0})):((0,s.wg)(),(0,s.iD)("span",ee,[n.doc?.length?((0,s.wg)(),(0,s.iD)("span",{key:0,innerHTML:n.doc},null,8,te)):(0,s.kq)("",!0),n.args.type?((0,s.wg)(),(0,s.iD)("div",ne,[se,(0,s.Uk)("   "+(0,i.zw)(n.args.type),1)])):(0,s.kq)("",!0)]))])],2)}var ae=n(6791),oe={name:"Argdoc",components:{Loading:ae.Z},props:{args:{type:Object,default:()=>({})},name:{type:String,required:!0},doc:String,loading:Boolean,isMobile:Boolean}},re=n(3744);const le=(0,re.Z)(oe,[["render",ie],["__scopeId","data-v-2df98b7b"]]);var ce=le,ue={name:"ActionArgs",components:{Argdoc:ce},emits:["add","arg-edit","extra-arg-name-edit","extra-arg-value-edit","remove","select"],props:{action:Object,loading:Boolean,running:Boolean,selectedArg:String,selectedArgdoc:String},methods:{onArgAdd(){this.$emit("add"),this.$nextTick((()=>{const e=this.$el.querySelectorAll(".action-extra-arg-name");e.length&&e[e.length-1].focus()}))},onArgEdit(e,t){this.$emit("arg-edit",{name:e,value:t.target.value})},onExtraArgNameEdit(e,t){this.$emit("extra-arg-name-edit",{index:e,value:t})},onExtraArgValueEdit(e,t){this.$emit("extra-arg-value-edit",{index:e,value:t})},onSelect(e){this.$emit("select",e)}}};const de=(0,re.Z)(ue,[["render",P],["__scopeId","data-v-1edf7bde"]]);var he=de;const pe=e=>((0,s.dD)("data-v-105c186a"),e=e(),(0,s.Cn)(),e),ge={key:0,class:"doc-container"},me={class:"title"},ve=pe((()=>(0,s._)("i",{class:"fas fa-book"},null,-1))),be=["href"],ye={key:0,class:"buttons"},ke=pe((()=>(0,s._)("i",{class:"fas fa-puzzle-piece"},null,-1))),fe=[ke],we=pe((()=>(0,s._)("i",{class:"fas fa-terminal"},null,-1))),Ae=[we],xe={class:"doc html"},Ie=["innerHTML"];function _e(e,t,n,i,a,o){const r=(0,s.up)("Loading");return n.doc?.length?((0,s.wg)(),(0,s.iD)("section",ge,[(0,s._)("h2",null,[(0,s._)("div",me,[ve,(0,s.Uk)("   "),(0,s._)("a",{href:n.action?.doc_url},"Action documentation",8,be)]),n.action?.name?((0,s.wg)(),(0,s.iD)("div",ye,[o.pluginName?.length?((0,s.wg)(),(0,s.iD)("button",{key:0,type:"button",title:"Go to extension",onClick:t[0]||(t[0]=(...e)=>o.onExtClick&&o.onExtClick(...e))},fe)):(0,s.kq)("",!0),n.curlSnippet?.length?((0,s.wg)(),(0,s.iD)("button",{key:1,type:"button",title:"cURL command",onClick:t[1]||(t[1]=t=>e.$emit("curl-modal"))},Ae)):(0,s.kq)("",!0)])):(0,s.kq)("",!0)]),(0,s._)("div",xe,[n.loading?((0,s.wg)(),(0,s.j4)(r,{key:0})):((0,s.wg)(),(0,s.iD)("span",{key:1,innerHTML:n.doc},null,8,Ie))])])):(0,s.kq)("",!0)}var De={name:"ActionDoc",components:{Loading:ae.Z},emits:["curl-modal"],props:{action:Object,doc:String,curlSnippet:String,loading:Boolean},computed:{pluginName(){const e=(this.action?.name||"").split(".");return e.length>1?e.slice(0,-1).join("."):null}},methods:{onExtClick(){window.location.href=`/#extensions?extension=${this.pluginName}`}}};const qe=(0,re.Z)(De,[["render",_e],["__scopeId","data-v-105c186a"]]);var Ce=qe;const Se={class:"autocomplete"},Ee=["text"],Re=["placeholder","disabled","value"],Oe={key:0,class:"items"},$e=["data-item","onClick"],je={key:0,class:"matching"},Te={class:"normal"};function Ne(e,t,n,a,o,r){return(0,s.wg)(),(0,s.iD)("div",Se,[(0,s._)("label",{text:n.label},[(0,s._)("input",{type:"text",class:"input",ref:"input",placeholder:n.placeholder,disabled:n.disabled,value:n.value,onFocus:t[0]||(t[0]=(...e)=>r.onFocus&&r.onFocus(...e)),onInput:t[1]||(t[1]=(...e)=>r.onInput&&r.onInput(...e)),onBlur:t[2]||(t[2]=(...e)=>r.onBlur&&r.onBlur(...e)),onKeydown:t[3]||(t[3]=(...e)=>r.onInputKeyDown&&r.onInputKeyDown(...e)),onKeyup:t[4]||(t[4]=(...e)=>r.onInputKeyUp&&r.onInputKeyUp(...e))},null,40,Re)],8,Ee),r.showItems?((0,s.wg)(),(0,s.iD)("div",Oe,[((0,s.wg)(!0),(0,s.iD)(s.HY,null,(0,s.Ko)(r.visibleItems,((e,t)=>((0,s.wg)(),(0,s.iD)("div",{class:(0,i.C_)(["item",{active:t===o.curIndex}]),key:e,"data-item":e,onClick:t=>r.onItemSelect(e)},[n.value?.length?((0,s.wg)(),(0,s.iD)("span",je,(0,i.zw)(e.substr(0,n.value.length)),1)):(0,s.kq)("",!0),(0,s._)("span",Te,(0,i.zw)(e.substr(n.value?.length||0)),1)],10,$e)))),128))])):(0,s.kq)("",!0)])}var Le={name:"Autocomplete",emits:["input"],props:{items:{type:Array,required:!0},value:{type:String,default:""},disabled:{type:Boolean,default:!1},autofocus:{type:Boolean,default:!1},label:{type:String},placeholder:{type:String},showResultsWhenBlank:{type:Boolean,default:!1}},data(){return{visible:!1,curIndex:-1}},computed:{visibleItems(){if(!this.value?.length)return this.items;const e=this.value.toUpperCase();return e?.length?this.items.filter((t=>t.substr(0,e.length).toUpperCase()===e)):this.showResultsWhenBlank?this.items:[]},showItems(){return this.visible&&this.items?.length}},methods:{selectNextItem(){this.curIndex++,this.normalizeIndex()},selectPrevItem(){this.curIndex--,this.normalizeIndex()},normalizeIndex(){this.curIndex>=this.visibleItems.length&&(this.curIndex=0),this.curIndex<0&&(this.curIndex=this.visibleItems.length-1);const e=this.$el.querySelector("[data-item='"+this.visibleItems[this.curIndex]+"']");e&&e.scrollIntoView({block:"start",inline:"nearest",behavior:"smooth"})},valueIsInItems(){return!!this.value&&this.items.indexOf(this.value)>=0},onFocus(){(this.showResultsWhenBlank||this.value?.length)&&(this.visible=!0)},onInput(e){let t=e.target.value;this.valueIsInItems()&&(this.visible=!1),e.stopPropagation(),this.$emit("input",t),this.curIndex=-1,this.visible=!0},onBlur(e){this.onInput(e),this.$nextTick((()=>{this.valueIsInItems()&&(this.visible=!1)}))},onItemSelect(e){this.$emit("input",e),this.$nextTick((()=>{this.valueIsInItems()&&(this.visible=!1)}))},onInputKeyUp(e){["ArrowUp","ArrowDown","Tab","Enter","Escape"].indexOf(e.key)>=0&&e.stopPropagation(),"Enter"===e.key&&this.valueIsInItems()&&(this.$refs.input.blur(),this.visible=!1)},onInputKeyDown(e){"ArrowDown"===e.key||"Tab"===e.key&&!e.shiftKey||"j"===e.key&&e.ctrlKey?(this.selectNextItem(),e.preventDefault()):"ArrowUp"===e.key||"Tab"===e.key&&e.shiftKey||"k"===e.key&&e.ctrlKey?(this.selectPrevItem(),e.preventDefault()):"Enter"===e.key?this.curIndex>-1&&this.visible&&(e.preventDefault(),this.onItemSelect(this.visibleItems[this.curIndex]),this.$refs.input.focus()):"Escape"===e.key&&(this.visible=!1)},onDocumentClick(e){this.$el.contains(e.target)||e.target.classList.contains("item")||(this.visible=!1)}},mounted(){document.addEventListener("click",this.onDocumentClick),this.autofocus&&this.$refs.input.focus()}};const Me=(0,re.Z)(Le,[["render",Ne],["__scopeId","data-v-1f70dd66"]]);var Ue=Me,Ze=n(3493),Be=n(803),Ke=n(8735),Je=n(3176),Ve=n(8637),He={mixins:[Ve.Z],emits:["input"],components:{ActionArgs:he,ActionDoc:Ce,Autocomplete:Ue,Loading:ae.Z,Modal:Ze.Z,Response:Be.Z,Tab:Ke.Z,Tabs:Je.Z},props:{value:{type:Object},withSave:{type:Boolean,default:!1}},data(){return{loading:!1,running:!1,docLoading:!1,structuredInput:!0,selectedDoc:void 0,selectedArg:void 0,selectedArgdoc:void 0,response:void 0,error:void 0,rawRequest:void 0,rawRequestPlaceholder:'Raw JSON request. Example:\n\n{"type": "request", "action": "file.list", "args": {"path": "/"}}',actions:{},plugins:{},procedures:{},actionDocsCache:{},action:{name:void 0,args:{},extraArgs:[],supportsExtraArgs:!1}}},computed:{currentActionDocURL(){return this.action?.doc_url},isValidAction(){return this.action?.name?.length&&this.action.name in this.actions&&Object.values(this.action.args).every((e=>!e.required||e.value?.length))},autocompleteItems(){return this.getPluginName(this.action.name)in this.plugins?Object.keys(this.actions).sort():Object.keys(this.plugins).sort().map((e=>`${e}.`))},actionInput(){return this.$refs.autocomplete.$el.parentElement.querySelector("input[type=text]")},requestArgs(){return this.action.name?{...Object.entries(this.action.args).reduce(((e,t)=>{if(null!=t[1].value){let s=t[1].value;try{s=JSON.parse(s)}catch(n){console.debug("Not a valid JSON value"),console.debug(s)}e[t[0]]=s}return e}),{}),...(this.action.extraArgs||[]).reduce(((e,t)=>{let n=t.value;try{n=JSON.parse(n)}catch(s){console.debug("Not a valid JSON value"),console.debug(n)}return e[t.name]=n,e}),{})}:{}},curlURL(){return`${window.location.protocol}//${window.location.host}/execute`},curlSnippet(){if(!this.action.name)return"";const e={type:"request",action:this.action.name,args:this.requestArgs},t=JSON.stringify(e,null,2);return`curl -XPOST -H "Content-Type: application/json" \\\n -H "Cookie: session_token=${this.getCookies()["session_token"]}" \\\n -d '\n {\n `+this.indent(t.split("\n").slice(1,t.length-2).join("\n"),2).trim()+"' \\\n "+`'${this.curlURL}'`},highlightedCurlSnippet(){return E.Z.highlight("# Note: Replace the cookie with a JWT token for production cases\n"+this.curlSnippet,{language:"bash"}).value}},methods:{async refresh(){this.loading=!0;try{[this.procedures,this.plugins]=await Promise.all([this.request("inspect.get_procedures"),this.request("inspect.get_all_plugins")])}finally{this.loading=!1}this.plugins.procedure={name:"procedure",actions:Object.entries(this.procedures||{}).reduce(((e,[t,n])=>(e[t]={name:t,args:(n.args||[]).reduce(((e,t)=>(e[t]={name:t,required:!1},e)),{}),supportsExtraArgs:!0},e)),{})};for(const n of Object.values(this.plugins))for(const e of Object.values(n.actions))e.name=n.name+"."+e.name,e.supportsExtraArgs=!!e.has_kwargs,delete e.has_kwargs,this.actions[e.name]=e;const e=this.getUrlArgs(),t=e?.action;t?.length&&t in this.actions&&t!==this.action.name&&this.updateAction(t)},async updateAction(e,t){let{force:n,args:s,extraArgs:i}=t||{};if(s||(s={}),i||(i=[]),e===this.action.name&&!n)return;if(this.action.name=e,!(this.action.name in this.actions))return this.selectedDoc=void 0,void this.resetArgdoc();this.resetArgdoc(),this.docLoading=!0;try{this.action={...this.actions[this.action.name],args:Object.entries(this.actions[this.action.name].args).reduce(((e,t)=>(e[t[0]]={...t[1],value:s?.[t[0]]??t[1].default},e)),{}),extraArgs:i||[]}}finally{this.docLoading=!1}this.selectedDoc=this.actionDocsCache[this.action.name]?.html||await this.parseDoc(this.action.doc),this.actionDocsCache[this.action.name]||(this.actionDocsCache[this.action.name]={}),this.actionDocsCache[this.action.name].html=this.selectedDoc,this.setUrlArgs({action:this.action.name});const a=this.$el.querySelector(".action-arg-value");a?a.focus():this.$nextTick((()=>{this.actionInput.focus()})),this.response=void 0,this.error=void 0},async parseDoc(e){return e?.length?await this.request("utils.rst_to_html",{text:e}):e},addArg(){this.action.extraArgs.push({name:void 0,value:void 0})},removeArg(e){this.action.extraArgs.pop(e)},async selectArgdoc(e){this.selectedArg=e,this.selectedArgdoc=this.actionDocsCache[this.action.name]?.[e]?.html||await this.parseDoc(this.action.args[e].doc),this.actionDocsCache[this.action.name]||(this.actionDocsCache[this.action.name]={}),this.actionDocsCache[this.action.name][e]={html:this.selectedArgdoc}},resetArgdoc(){this.selectedArg=void 0,this.selectedArgdoc=void 0},onInputTypeChange(e){this.structuredInput=e,this.response=void 0,this.error=void 0,this.$nextTick((()=>{e?this.actionInput.focus():(this.$refs.rawAction.focus(),this.isValidAction&&(this.rawRequest=JSON.stringify(this.toRequest(this.action),null,2)))}))},onResponse(e){this.response=("string"===typeof e?e:JSON.stringify(e,null,2)).trim(),this.error=void 0},onError(e){this.response=void 0,this.error=e},onDone(){this.running=!1},getPluginName(e){return e?.length?e.split(".").slice(0,-1).join("."):""},executeAction(){if((this.action.name||this.rawRequest)&&!this.running)if(this.running=!0,this.structuredInput)this.request(this.action.name,this.requestArgs).then(this.onResponse).catch(this.onError).finally(this.onDone);else try{const e=JSON.parse(this.rawRequest);this.execute(e).then(this.onResponse).catch(this.onError).finally(this.onDone)}catch(e){this.notify({error:!0,title:"Invalid JSON request",text:e.toString()})}},toRequest(e){return{type:"request",action:e.name,args:this.requestArgs}},emitInput(e){e=e||this.value,e&&this.$emit("input",this.toRequest(e))},onClick(e){"a"===e.target.tagName.toLowerCase()&&(e.stopPropagation(),e.preventDefault(),window.open(e.target.getAttribute("href","_blank")))},onValueChanged(e){if(e=e||this.value,!e)return;const t=e.name||e.action;this.$nextTick((()=>{this.updateAction(t,{force:!0,args:e.args||{},extraArgs:e.extraArgs||[]})}))},onSubmit(){this.isValidAction&&(this.withSave?this.emitInput(this.action):this.executeAction())}},watch:{value:{immediate:!0,handler(e){this.onValueChanged(e)}}},async mounted(){await this.refresh(),await this.onValueChanged()}};const ze=(0,re.Z)(He,[["render",S],["__scopeId","data-v-48afe350"]]);var We=ze},803:function(e,t,n){n.d(t,{Z:function(){return x}});var s=n(6252),i=n(3577);const a=e=>((0,s.dD)("data-v-801045b2"),e=e(),(0,s.Cn)(),e),o={class:"response"},r={key:0},l={class:"title"},c={class:"buttons"},u=a((()=>(0,s._)("i",{class:"fas fa-clipboard"},null,-1))),d=[u],h={key:1,class:"output response"},p=["innerHTML"],g=["textContent"],m={key:2,class:"output error"},v=["textContent"];function b(e,t,n,a,u,b){return(0,s.wg)(),(0,s.iD)("section",o,[null!=n.error||null!=n.response?((0,s.wg)(),(0,s.iD)("h2",r,[(0,s._)("span",l,(0,i.zw)(null!=n.error?"Error":"Output"),1),(0,s._)("span",c,[(0,s._)("button",{type:"button",title:"Copy to clipboard",onClick:t[0]||(t[0]=t=>e.copyToClipboard(n.response))},d)])])):(0,s.kq)("",!0),null!=n.response?((0,s.wg)(),(0,s.iD)("div",h,[(0,s._)("pre",null,[null!=b.jsonResponse?((0,s.wg)(),(0,s.iD)("code",{key:0,innerHTML:b.jsonResponse},null,8,p)):((0,s.wg)(),(0,s.iD)("code",{key:1,textContent:(0,i.zw)(n.response)},null,8,g))])])):null!=n.error?((0,s.wg)(),(0,s.iD)("div",m,[(0,s._)("pre",{textContent:(0,i.zw)(n.error)},null,8,v)])):(0,s.kq)("",!0)])}n(8783),n(3465);var y=n(637),k=n(8637),f={name:"Response",mixins:[k.Z],props:{response:String,error:String},computed:{isJSON(){try{return null!=JSON.parse(this.response)}catch(e){return!1}},jsonResponse(){return this.isJSON?y.Z.highlight(this.response,{language:"json"}).value:null}}},w=n(3744);const A=(0,w.Z)(f,[["render",b],["__scopeId","data-v-801045b2"]]);var x=A}}]); -//# sourceMappingURL=1807.564d1fef.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1807.564d1fef.js.map b/platypush/backend/http/webapp/dist/static/js/1807.564d1fef.js.map deleted file mode 100644 index b89e17e8c0..0000000000 --- a/platypush/backend/http/webapp/dist/static/js/1807.564d1fef.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"static/js/1807.564d1fef.js","mappings":"oPAKSA,MAAM,iB,GAEJA,MAAM,wB,mBASNA,MAAM,oB,GACJA,MAAM,kB,SAYNA,MAAM,W,yBAIPC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,eAAa,W,GAAtBE,G,SAOCF,MAAM,sB,GAIFA,MAAM,0B,gCAaPC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,eAAa,W,GAAtBG,G,SAcGH,MAAM,Q,UAEbC,EAAAA,EAAAA,GAGK,YAFHA,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,iBAAa,QAAG,mBAE3B,K,SAoBCA,MAAM,uB,GACJA,MAAM,a,kDAMPC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,eAAa,W,GAAtBI,G,kOAtGZC,EAAAA,EAAAA,IA+GM,OA/GDL,OAAKM,EAAAA,EAAAA,IAAA,CAAC,0BAAyB,aAAuBC,EAAAC,YAAYC,QAAKC,EAAA,MAAAA,EAAA,QAAAC,IAAEC,EAAAH,SAAAG,EAAAH,WAAAE,K,CAC7DE,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAG1BhB,EAAAA,EAAAA,GA0GM,MA1GNiB,EA0GM,EAxGJjB,EAAAA,EAAAA,GAMM,MANNkB,EAMM,CAL8CP,EAAAQ,aAAaC,SAAM,WAArEN,EAAAA,EAAAA,IAIQO,EAAA,C,MAJDC,IAAI,YAAYC,MAAM,gB,mBAC3B,IAEM,EAFNvB,EAAAA,EAAAA,GAEM,OAFDD,MAAM,sBAAuBS,QAAKC,EAAA,KAAAA,EAAA,GAAAe,GAAEC,EAAAC,gBAAgBf,EAAAQ,e,EACvDnB,EAAAA,EAAAA,GAAmD,aAA9CA,EAAAA,EAAAA,GAAwC,QAAlC2B,UAAQhB,EAAAiB,wBAAsB,OAAAC,U,8BAM/C7B,EAAAA,EAAAA,GAoBM,MApBN8B,EAoBM,EAnBJ9B,EAAAA,EAAAA,GAUM,MAVN+B,EAUM,EATJC,EAAAA,EAAAA,IAQOC,EAAA,M,kBAPL,IAEM,EAFND,EAAAA,EAAAA,IAEME,EAAA,CAFAC,SAAUvB,EAAAwB,gBAAiB,aAAW,cAAeC,QAAK5B,EAAA,KAAAA,EAAA,GAAAe,GAAEb,EAAA2B,mBAAkB,K,mBAAO,IAE3F,UAF2F,mB,sBAI3FN,EAAAA,EAAAA,IAEME,EAAA,CAFAC,UAAWvB,EAAAwB,gBAAiB,aAAW,cAAeC,QAAK5B,EAAA,KAAAA,EAAA,GAAAe,GAAEb,EAAA2B,mBAAkB,K,mBAAQ,IAE7F,UAF6F,Y,gCAMtEhC,EAAAC,WAAQ,WAAnCH,EAAAA,EAAAA,IAMM,MANNmC,EAMM,EALJvC,EAAAA,EAAAA,GAIS,UAJDwC,KAAK,SAASzC,MAAM,uBACzB0C,SAAU7B,EAAA8B,UAAY/B,EAAAgC,cAAepB,MAAM,OAC3Cf,QAAKC,EAAA,KAAAA,EAAA,IAAAmC,EAAAA,EAAAA,KAAA,IAAAlC,IAAOC,EAAAkC,UAAAlC,EAAAkC,YAAAnC,IAAQ,Y,6BAM3BV,EAAAA,EAAAA,GAwEO,QAxEDsB,IAAI,aAAawB,aAAa,MAAOD,SAAMpC,EAAA,MAAAA,EAAA,KAAAmC,EAAAA,EAAAA,KAAA,IAAAlC,IAAUC,EAAAkC,UAAAlC,EAAAkC,YAAAnC,IAAQ,e,CAE3BE,EAAAwB,kBAAe,WAArDhC,EAAAA,EAAAA,IAqDM,MArDN2C,EAqDM,EAnDJ/C,EAAAA,EAAAA,GAkBS,gBAhBPA,EAAAA,EAAAA,GAeM,MAfNgD,EAeM,EAdJhB,EAAAA,EAAAA,IAQyBiB,EAAA,CAPvB3B,IAAI,eACH4B,MAAOvC,EAAAwC,kBACPd,QAAO1B,EAAAyC,aACRC,YAAY,SACZ,6BACAC,UAAA,GACCb,SAAU7B,EAAA8B,QACVa,MAAO3C,EAAA4C,OAAOC,M,gDAEjBzD,EAAAA,EAAAA,GAGS,UAHAwC,KAAMlC,EAAAC,SAAW,SAAW,SAAUR,MAAM,sBAClD0C,SAAU7B,EAAA8B,UAAY/B,EAAAgC,cAAepB,MAAM,MAAOf,QAAKC,EAAA,KAAAA,EAAA,IAAAmC,EAAAA,EAAAA,KAAA,IAAAlC,IAAOC,EAAA+C,eAAA/C,EAAA+C,iBAAAhD,IAAa,Y,YAOlFsB,EAAAA,EAAAA,IAKyC2B,EAAA,CAJtCH,OAAQ5C,EAAA4C,OACR,eAAc7C,EAAAQ,YACdN,QAASD,EAAAgD,WACTC,IAAKjD,EAAAkD,YACLC,YAAUtD,EAAA,KAAAA,EAAA,GAAAe,GAAEC,EAAAuC,MAAMC,UAAUC,S,kDAIrBtD,EAAA4C,OAAOC,QAAQ7C,EAAAuD,UAAYC,OAAOC,KAAKzD,EAAA4C,OAAO9C,MAAMU,QAAUR,EAAA4C,OAAOc,qBAAiB,WADhGlE,EAAAA,EAAAA,IAkBU,UAlBVmE,EAkBU,CAhBRC,GAKAxC,EAAAA,EAAAA,IAU0FyC,EAAA,CAV7EjB,OAAQ5C,EAAA4C,OACR3C,QAASD,EAAAC,QACT6B,QAAS9B,EAAA8B,QACT,eAAc9B,EAAA8D,YACd,kBAAiB9D,EAAA+D,eACjBC,MAAKjE,EAAAkE,OACLC,SAAQnE,EAAAoE,aACRC,SAAQrE,EAAAsE,UACRC,UAAQzE,EAAA,KAAAA,EAAA,GAAAe,GAAEZ,EAAA4C,OAAO9C,KAAKc,EAAOiC,MAAMF,MAAQ/B,EAAO+B,OAClD4B,mBAAmB1E,EAAA,KAAAA,EAAA,GAAAe,GAAEZ,EAAA4C,OAAO4B,UAAU5D,EAAO6D,OAAO5B,KAAOjC,EAAO+B,OAClE+B,oBAAoB7E,EAAA,KAAAA,EAAA,GAAAe,GAAEZ,EAAA4C,OAAO4B,UAAU5D,EAAO6D,OAAO9B,MAAQ/B,EAAO+B,Q,0HAInFvB,EAAAA,EAAAA,IAAgDuD,EAAA,CAArCC,SAAU5E,EAAA4E,SAAWC,MAAO7E,EAAA6E,O,gDAID7E,EAAAwB,iB,iBAAe,WAAvDhC,EAAAA,EAAAA,IAaM,MAbNsF,EAaM,EAZJ1F,EAAAA,EAAAA,GAQM,MARN2F,EAQM,EAPJ3F,EAAAA,EAAAA,GAEQ,wBADNA,EAAAA,EAAAA,GAAsF,Y,qCAAnEY,EAAAgF,WAAUpE,GAAEF,IAAI,YAAa+B,YAAazC,EAAAiF,uB,iBAA1CjF,EAAAgF,iBAErB5F,EAAAA,EAAAA,GAGS,UAHAwC,KAAMlC,EAAAC,SAAW,SAAW,SAAWkC,SAAU7B,EAAA8B,QAClD3C,MAAM,0BAA0BwB,MAAM,MAAOf,QAAKC,EAAA,MAAAA,EAAA,KAAAmC,EAAAA,EAAAA,KAAA,IAAAlC,IAAOC,EAAA+C,eAAA/C,EAAA+C,iBAAAhD,IAAa,Y,UAMhFsB,EAAAA,EAAAA,IAAgDuD,EAAA,CAArCC,SAAU5E,EAAA4E,SAAWC,MAAO7E,EAAA6E,O,+IC3G1C1F,MAAM,a,SACJA,MAAM,a,kEAaCA,MAAM,iB,SAYXA,MAAM,c,GAEAA,MAAM,S,oCAQNA,MAAM,S,oCAQNA,MAAM,iB,wBAETC,EAAAA,EAAAA,GAA0B,KAAvBD,MAAM,gBAAc,W,GAAvB+F,G,SAMH/F,MAAM,W,UAEPC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,eAAa,W,GAAtBwE,G,qEAtDRnE,EAAAA,EAAAA,IAgEM,MAhENa,EAgEM,CA9DOmD,OAAOC,KAAK/D,EAAAkD,OAAO9C,MAAMU,QAAUd,EAAAkD,OAAOc,oBAAiB,WADtElE,EAAAA,EAAAA,IAwDM,MAxDNc,EAwDM,gBArDJd,EAAAA,EAAAA,IAmBM2F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAnBsC5B,OAAOC,KAAK/D,EAAAkD,OAAO9C,OAA3B+C,K,WAApCrD,EAAAA,EAAAA,IAmBM,OAnBDL,MAAM,MAAOiB,IAAKyC,G,EACrBzD,EAAAA,EAAAA,GAUQ,eATNA,EAAAA,EAAAA,GAO+B,SAPxBwC,KAAK,OACLzC,OAAKM,EAAAA,EAAAA,IAAA,CAAC,mBAAkB,CAAA4F,SACL3F,EAAAkD,OAAO9C,KAAK+C,GAAMwC,YACpCxD,SAAUnC,EAAAoC,QACVW,YAAaI,EACbF,MAAOjD,EAAAkD,OAAO9C,KAAK+C,GAAMF,MACzBlB,QAAKb,GAAEb,EAAAuE,UAAUzB,EAAMjC,GACvB0E,QAAK1E,GAAEb,EAAAmE,SAASrB,I,WACUnD,EAAAkD,OAAO9C,KAAK+C,GAAMwC,WAAQ,WAA5D7F,EAAAA,EAAAA,IAAsE,OAAtE0B,EAA8D,OAAC,iBAQnDxB,EAAAqE,gBAAkBrE,EAAAoE,aAAejB,IAASnD,EAAAoE,cAAW,WALnE5D,EAAAA,EAAAA,IAKuEqF,EAAA,C,MAL9D1C,KAAMnD,EAAAoE,YACNhE,KAAMJ,EAAAkD,OAAO9C,KAAKJ,EAAAoE,aAClBb,IAAKvD,EAAAqE,eACL9D,QAASP,EAAAO,QACV,gB,oEAKoBuD,OAAOC,KAAK/D,EAAAkD,OAAO4B,WAAWhE,SAAM,WAAlEhB,EAAAA,EAAAA,IAwBM,MAxBN2B,EAwBM,gBAvBJ3B,EAAAA,EAAAA,IAsBM2F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAtBiD1F,EAAAkD,OAAO4B,WAAS,CAA3BgB,EAAKC,M,WAAjDjG,EAAAA,EAAAA,IAsBM,OAtBDL,MAAM,gBAAiBiB,IAAKqF,G,EAC/BrG,EAAAA,EAAAA,GAOQ,QAPRuC,EAOQ,EANNvC,EAAAA,EAAAA,GAK2D,SALpDwC,KAAK,OACLzC,MAAM,wBACNsD,YAAY,OACXZ,SAAUnC,EAAAoC,QACVa,MAAO6C,EAAI3C,KACXpB,QAAKb,GAAEb,EAAAwE,mBAAmBkB,EAAG7E,EAAO8E,OAAO/C,Q,cAErDvD,EAAAA,EAAAA,GAOQ,QAPRC,EAOQ,EANND,EAAAA,EAAAA,GAK4D,SALrDwC,KAAK,OACLzC,MAAM,yBACNsD,YAAY,QACXZ,SAAUnC,EAAAoC,QACVa,MAAO6C,EAAI7C,MACXlB,QAAKb,GAAEb,EAAA2E,oBAAoBe,EAAG7E,EAAO8E,OAAO/C,Q,cAEtDvD,EAAAA,EAAAA,GAIQ,QAJR+C,EAIQ,EAHN/C,EAAAA,EAAAA,GAES,UAFDwC,KAAK,SAASzC,MAAM,uBAAuBwB,MAAM,kBAAmBf,QAAKgB,GAAEC,EAAA8E,MAAM,SAAUF,I,uCAO9E/F,EAAAkD,OAAOc,oBAAiB,WAAnDlE,EAAAA,EAAAA,IAIM,MAJNoG,EAIM,EAHJxG,EAAAA,EAAAA,GAES,UAFDwC,KAAK,SAASjB,MAAM,kBAAmBf,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAEC,EAAA8F,UAAA9F,EAAA8F,YAAA/F,K,yCAU5CJ,EAAAqE,gBAAkBrE,EAAAoE,cAAW,WAJ3C5D,EAAAA,EAAAA,IAI+CqF,EAAA,C,MAJtC1C,KAAMnD,EAAAoE,YACNhE,KAAMJ,EAAAkD,OAAO9C,KAAKJ,EAAAoE,aAClBb,IAAKvD,EAAAqE,eACL9D,QAASP,EAAAO,S,kJC3DVd,MAAM,iB,SACNA,MAAM,iB,GAGTA,MAAM,Y,sCAIFA,MAAM,Q,WACTC,EAAAA,EAAAA,GAAY,SAAT,SAAK,K,uEAZhBI,EAAAA,EAAAA,IAgBU,WAhBDL,OAAKM,EAAAA,EAAAA,IAAA,CAAC,mBAAkB,CAAAqG,OAAkBpG,EAAAqG,SAAQC,YAAetG,EAAAqG,a,EACxE3G,EAAAA,EAAAA,GAIK,oBAJD,gBACQA,EAAAA,EAAAA,GAAqC,OAAhCD,MAAM,U,aAAU8G,EAAAA,EAAAA,IAAQvG,EAAKmD,O,UACVnD,EAAAI,KAAKuF,WAAQ,WAA/C7F,EAAAA,EAAAA,IAAkE,OAAlEc,EAAiD,iBAAU,WAC3Dd,EAAAA,EAAAA,IAAoD,OAApDyB,EAAmC,kBAGrC7B,EAAAA,EAAAA,GAQM,MARN8B,EAQM,CAPWxB,EAAAO,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,kBAC1BZ,EAAAA,EAAAA,IAKO,OAAA2B,GAAA,CAJoBzB,EAAAuD,KAAKzC,SAAM,WAApChB,EAAAA,EAAAA,IAAwC,Q,MAAlCuB,UAAQrB,EAAAuD,K,4BACUvD,EAAAI,KAAK8B,OAAI,WAAjCpC,EAAAA,EAAAA,IAEM,MAFN0G,GAEM,CADJ7G,IAAY,eAAQ4G,EAAAA,EAAAA,IAAGvG,EAAAI,KAAK8B,MAAI,8B,gBAU1C,IACEiB,KAAM,SACNsD,WAAY,CAAEC,QAAOA,GAAAA,GACrBC,MAAO,CACLvG,KAAM,CACJ8B,KAAM4B,OACN8C,QAASA,KAAA,CAAS,IAEpBzD,KAAM,CACJjB,KAAM2E,OACNlB,UAAU,GAEZpC,IAAKsD,OACLtG,QAASuG,QACTT,SAAUS,U,WC9Bd,MAAMC,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UF8DA,IACE5D,KAAM,aACNsD,WAAY,CAAEO,OAAMA,IACpBC,MAAO,CACL,MACA,WACA,sBACA,uBACA,SACA,UAEFN,MAAO,CACLzD,OAAQY,OACRvD,QAASuG,QACT1E,QAAS0E,QACT1C,YAAayC,OACbxC,eAAgBwC,QAGlBK,QAAS,CACPf,QAAAA,GACEgB,KAAKlB,MAAM,OACXkB,KAAKC,WAAU,KACb,MAAMhH,EAAO+G,KAAKE,IAAIC,iBAAiB,0BAClClH,EAAKU,QAGVV,EAAKA,EAAKU,OAAS,GAAGyG,OAAO,GAEjC,EAEA3C,SAAAA,CAAUzB,EAAMqE,GACdL,KAAKlB,MAAM,WAAY,CACrB9C,KAAMA,EACNF,MAAOuE,EAAMxB,OAAO/C,OAExB,EAEA4B,kBAAAA,CAAmBkB,EAAG9C,GACpBkE,KAAKlB,MAAM,sBAAuB,CAChClB,MAAOgB,EACP9C,MAAOA,GAEX,EAEA+B,mBAAAA,CAAoBe,EAAG9C,GACrBkE,KAAKlB,MAAM,uBAAwB,CACjClB,MAAOgB,EACP9C,MAAOA,GAEX,EAEAuB,QAAAA,CAASsB,GACPqB,KAAKlB,MAAM,SAAUH,EACvB,IGtHJ,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,U,uECRWrG,MAAM,iB,IAENA,MAAM,S,YACTC,EAAAA,EAAAA,GAAyB,KAAtBD,MAAM,eAAa,W,sBAInBA,MAAM,W,YAEPC,EAAAA,EAAAA,GAAiC,KAA9BD,MAAM,uBAAqB,W,IAA9BwC,I,YAIAvC,EAAAA,EAAAA,GAA6B,KAA1BD,MAAM,mBAAiB,W,IAA1BE,I,IAKDF,MAAM,Y,6EAlBwBO,EAAAuD,KAAKzC,SAAM,WAAhDhB,EAAAA,EAAAA,IAsBU,UAtBVa,GAsBU,EArBRjB,EAAAA,EAAAA,GAeK,YAdHA,EAAAA,EAAAA,GAGM,MAHNkB,GAGM,CAFJW,IAAyB,gBACzB7B,EAAAA,EAAAA,GAAmD,KAA/C+H,KAAMzH,EAAAkD,QAAQwE,SAAS,uBAAoB,EAAAlG,MAGtBxB,EAAAkD,QAAQC,OAAI,WAAvCrD,EAAAA,EAAAA,IAQM,MARN2B,GAQM,CAPgDpB,EAAAsH,YAAY7G,SAAM,WAAtEhB,EAAAA,EAAAA,IAES,U,MAFDoC,KAAK,SAASjB,MAAM,kBAA6Cf,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAEC,EAAAuH,YAAAvH,EAAAuH,cAAAxH,K,qBAI/BJ,EAAAa,aAAaC,SAAM,WAApEhB,EAAAA,EAAAA,IAES,U,MAFDoC,KAAK,SAASjB,MAAM,eAA2Cf,QAAKC,EAAA,KAAAA,EAAA,GAAAe,GAAEC,EAAA8E,MAAM,gB,2CAMxFvG,EAAAA,EAAAA,GAGM,MAHN+C,GAGM,CAFWzC,EAAAO,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,kBAC1BZ,EAAAA,EAAAA,IAA4B,Q,MAAtBuB,UAAQrB,EAAAuD,K,iCAQpB,QACEJ,KAAM,YACNsD,WAAY,CAAEC,QAAOA,GAAAA,GACrBO,MAAO,CAAC,cACRN,MAAO,CACLzD,OAAQY,OACRP,IAAKsD,OACLhG,YAAagG,OACbtG,QAASuG,SAGXe,SAAU,CACRF,UAAAA,GACE,MAAMG,GAAUX,KAAKjE,QAAQC,MAAQ,IAAI4E,MAAM,KAC/C,OAAOD,EAAOhH,OAAS,EAAIgH,EAAOE,MAAM,GAAI,GAAGC,KAAK,KAAO,IAC7D,GAGFf,QAAS,CACPU,UAAAA,GACEM,OAAOC,SAASV,KAAQ,0BAAyBN,KAAKQ,YACxD,IC3CJ,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,UCROlI,MAAM,gB,4DAiBJA,MAAM,S,qCAQDA,MAAM,Y,IACNA,MAAM,U,2CA1BlBK,EAAAA,EAAAA,IA6BM,MA7BNa,GA6BM,EA5BJjB,EAAAA,EAAAA,GAcQ,SAdA0I,KAAMpI,EAAAqI,OAAK,EACjB3I,EAAAA,EAAAA,GAYE,SAXAwC,KAAK,OACLzC,MAAM,QACNuB,IAAI,QACH+B,YAAa/C,EAAA+C,YACbZ,SAAUnC,EAAAmC,SACVc,MAAOjD,EAAAiD,MACP2C,QAAKzF,EAAA,KAAAA,EAAA,OAAAC,IAAEC,EAAAuF,SAAAvF,EAAAuF,WAAAxF,IACP2B,QAAK5B,EAAA,KAAAA,EAAA,OAAAC,IAAEC,EAAA0B,SAAA1B,EAAA0B,WAAA3B,IACPkI,OAAInI,EAAA,KAAAA,EAAA,OAAAC,IAAEC,EAAAiI,QAAAjI,EAAAiI,UAAAlI,IACNmI,UAAOpI,EAAA,KAAAA,EAAA,OAAAC,IAAEC,EAAAmI,gBAAAnI,EAAAmI,kBAAApI,IACTqI,QAAKtI,EAAA,KAAAA,EAAA,OAAAC,IAAEC,EAAAqI,cAAArI,EAAAqI,gBAAAtI,K,mBAIaC,EAAAsI,YAAS,WAAlC7I,EAAAA,EAAAA,IAWM,MAXN0B,GAWM,gBAVJ1B,EAAAA,EAAAA,IASM2F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAJgBrF,EAAAuI,cAAY,CAAxBC,EAAM9C,M,WALhBjG,EAAAA,EAAAA,IASM,OARJL,OAAKM,EAAAA,EAAAA,IAAA,CAAC,OAAM,CAAA+I,OACM/C,IAAMzF,EAAAyI,YACvBrI,IAAKmI,EACL,YAAWA,EAEX3I,QAAKgB,GAAEb,EAAA2I,aAAaH,I,CACQ7I,EAAAiD,OAAOnC,SAAM,WAA1ChB,EAAAA,EAAAA,IAAqF,OAArFmC,IAAqFsE,EAAAA,EAAAA,IAAtCsC,EAAKI,OAAO,EAAGjJ,EAAAiD,MAAMnC,SAAM,qBAC1EpB,EAAAA,EAAAA,GAAiE,OAAjE8G,IAAiED,EAAAA,EAAAA,IAAzCsC,EAAKI,OAAOjJ,EAAAiD,OAAOnC,QAAU,IAAJ,c,2BAOzD,QACEqC,KAAM,eACN8D,MAAO,CAAC,SACRN,MAAO,CACL/D,MAAO,CACLV,KAAMgH,MACNvD,UAAU,GAGZ1C,MAAO,CACLf,KAAM2E,OACND,QAAS,IAGXzE,SAAU,CACRD,KAAM4E,QACNF,SAAS,GAGX5D,UAAW,CACTd,KAAM4E,QACNF,SAAS,GAGXyB,MAAO,CACLnG,KAAM2E,QAGR9D,YAAa,CACXb,KAAM2E,QAGRsC,qBAAsB,CACpBjH,KAAM4E,QACNF,SAAS,IAIbwC,IAAAA,GACE,MAAO,CACLC,SAAS,EACTN,UAAW,EAEf,EAEAlB,SAAU,CACRe,YAAAA,GACE,IAAKzB,KAAKlE,OAAOnC,OACf,OAAOqG,KAAKvE,MAEd,MAAM0G,EAAMnC,KAAKlE,MAAMsG,cACvB,OAAKD,GAAKxI,OAGHqG,KAAKvE,MAAM4G,QACfX,GAASA,EAAKI,OAAO,EAAGK,EAAIxI,QAAQyI,gBAAkBD,IAHhDnC,KAAKgC,qBAAuBhC,KAAKvE,MAAQ,EAKpD,EAEA+F,SAAAA,GACE,OAAOxB,KAAKkC,SAAWlC,KAAKvE,OAAO9B,MACrC,GAGFoG,QAAS,CACPuC,cAAAA,GACEtC,KAAK4B,WACL5B,KAAKuC,gBACP,EAEAC,cAAAA,GACExC,KAAK4B,WACL5B,KAAKuC,gBACP,EAEAA,cAAAA,GAEMvC,KAAK4B,UAAY5B,KAAKyB,aAAa9H,SACrCqG,KAAK4B,SAAW,GAGd5B,KAAK4B,SAAW,IAClB5B,KAAK4B,SAAW5B,KAAKyB,aAAa9H,OAAS,GAG7C,MAAM8I,EAAKzC,KAAKE,IAAIwC,cAAc,eAAiB1C,KAAKyB,aAAazB,KAAK4B,UAAY,MAClFa,GACFA,EAAGE,eAAe,CAChBC,MAAO,QACPC,OAAQ,UACRC,SAAU,UAEhB,EAEAC,cAAAA,GACE,QAAK/C,KAAKlE,OAGHkE,KAAKvE,MAAMuH,QAAQhD,KAAKlE,QAAU,CAC3C,EAEA2C,OAAAA,IACMuB,KAAKgC,sBAAwBhC,KAAKlE,OAAOnC,UAC3CqG,KAAKkC,SAAU,EACnB,EAEAtH,OAAAA,CAAQqI,GACN,IAAId,EAAMc,EAAEpE,OAAO/C,MACfkE,KAAK+C,mBACP/C,KAAKkC,SAAU,GAEjBe,EAAEC,kBACFlD,KAAKlB,MAAM,QAASqD,GACpBnC,KAAK4B,UAAY,EACjB5B,KAAKkC,SAAU,CACjB,EAEAf,MAAAA,CAAO8B,GACLjD,KAAKpF,QAAQqI,GACbjD,KAAKC,WAAU,KACTD,KAAK+C,mBACP/C,KAAKkC,SAAU,EAAI,GAEzB,EAEAL,YAAAA,CAAaH,GACX1B,KAAKlB,MAAM,QAAS4C,GACpB1B,KAAKC,WAAU,KACTD,KAAK+C,mBACP/C,KAAKkC,SAAU,EACjB,GAEJ,EAEAX,YAAAA,CAAa0B,GACP,CAAC,UAAW,YAAa,MAAO,QAAS,UAAUD,QAAQC,EAAE1J,MAAQ,GACvE0J,EAAEC,kBAEU,UAAVD,EAAE1J,KAAmByG,KAAK+C,mBAC5B/C,KAAKzD,MAAM4G,MAAMC,OACjBpD,KAAKkC,SAAU,EAEnB,EAEAb,cAAAA,CAAe4B,GAED,cAAVA,EAAE1J,KACS,QAAV0J,EAAE1J,MAAkB0J,EAAEI,UACZ,MAAVJ,EAAE1J,KAAe0J,EAAEK,SAEpBtD,KAAKsC,iBACLW,EAAEM,kBAEQ,YAAVN,EAAE1J,KACS,QAAV0J,EAAE1J,KAAiB0J,EAAEI,UACX,MAAVJ,EAAE1J,KAAe0J,EAAEK,SAEpBtD,KAAKwC,iBACLS,EAAEM,kBACiB,UAAVN,EAAE1J,IACPyG,KAAK4B,UAAY,GAAK5B,KAAKkC,UAC7Be,EAAEM,iBACFvD,KAAK6B,aAAa7B,KAAKyB,aAAazB,KAAK4B,WACzC5B,KAAKzD,MAAM4G,MAAM/C,SAEA,WAAV6C,EAAE1J,MACXyG,KAAKkC,SAAU,EAEnB,EAEAsB,eAAAA,CAAgBP,GACVjD,KAAKE,IAAIuD,SAASR,EAAEpE,SAAWoE,EAAEpE,OAAO6E,UAAUD,SAAS,UAG/DzD,KAAKkC,SAAU,EACjB,GAGFyB,OAAAA,GACEC,SAASC,iBAAiB,QAAS7D,KAAKwD,iBACpCxD,KAAKnE,WACPmE,KAAKzD,MAAM4G,MAAM/C,OACrB,GCjNF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,sDRwHA,IACE0D,OAAQ,CAACC,GAAAA,GACTjE,MAAO,CAAC,SACRR,WAAY,CACV0E,WAAU,GACVC,UAAS,GACTC,aAAY,GACZ3E,QAAO,KACP4E,MAAK,KACLC,SAAQ,KACRC,IAAG,KACHC,KAAIA,GAAAA,GAGN9E,MAAO,CACL1D,MAAO,CACLf,KAAM4B,QAGR7D,SAAU,CACRiC,KAAM4E,QACNF,SAAS,IAIbwC,IAAAA,GACE,MAAO,CACL7I,SAAS,EACT6B,SAAS,EACTkB,YAAY,EACZxB,iBAAiB,EACjB0B,iBAAakI,EACbtH,iBAAasH,EACbrH,oBAAgBqH,EAChBxG,cAAUwG,EACVvG,WAAOuG,EACPpG,gBAAYoG,EACZnG,sBAAuB,kGAEvB1B,QAAS,CAAC,EACV8H,QAAS,CAAC,EACVC,WAAY,CAAC,EACbC,gBAAiB,CAAC,EAClB3I,OAAQ,CACNC,UAAMuI,EACNtL,KAAM,CAAC,EACP0E,UAAW,GACXd,mBAAmB,GAGzB,EAEA6D,SAAU,CACRiE,mBAAAA,GACE,OAAO3E,KAAKjE,QAAQwE,OACtB,EAEArF,aAAAA,GACE,OACE8E,KAAKjE,QAAQC,MAAMrC,QACnBqG,KAAKjE,OAAOC,QAAQgE,KAAKtD,SACzBC,OAAOiI,OAAO5E,KAAKjE,OAAO9C,MAAM4L,OAAOlG,IAASA,EAAIH,UAAYG,EAAI7C,OAAOnC,QAE/E,EAEA+B,iBAAAA,GACE,OAAIsE,KAAK8E,cAAc9E,KAAKjE,OAAOC,QAASgE,KAAKwE,QACxC7H,OAAOC,KAAKoD,KAAKtD,SAASqI,OAG5BpI,OAAOC,KAAKoD,KAAKwE,SAASO,OAAOC,KAAKxE,GAAgB,GAAEA,MACjE,EAEAyE,WAAAA,GACE,OAAOjF,KAAKzD,MAAMlB,aAAa6E,IAAIgF,cAAcxC,cAAc,mBACjE,EAEAyC,WAAAA,GACE,OAAKnF,KAAKjE,OAAOC,KAGV,IACFW,OAAOyI,QAAQpF,KAAKjE,OAAO9C,MAAMoM,QAAO,CAACpM,EAAM0F,KAChD,GAAoB,MAAhBA,EAAI,GAAG7C,MAAe,CACxB,IAAIA,EAAQ6C,EAAI,GAAG7C,MACnB,IACEA,EAAQwJ,KAAKC,MAAMzJ,EACrB,CAAE,MAAOmH,GACPuC,QAAQC,MAAM,0BACdD,QAAQC,MAAM3J,EAChB,CAEA7C,EAAK0F,EAAI,IAAM7C,CACjB,CACA,OAAO7C,CAAG,GACT,CAAC,OAEA+G,KAAKjE,OAAO4B,WAAa,IAAI0H,QAAO,CAACpM,EAAM0F,KAC7C,IAAI7C,EAAQ6C,EAAI7C,MAChB,IACEA,EAAQwJ,KAAKC,MAAMzJ,EACrB,CAAE,MAAOmH,GACPuC,QAAQC,MAAM,0BACdD,QAAQC,MAAM3J,EAChB,CAGA,OADA7C,EAAK0F,EAAI3C,MAAQF,EACV7C,CAAG,GACT,CAAC,IA7BG,CAAC,CA+BZ,EAEAyM,OAAAA,GACE,MAAQ,GAAE3E,OAAOC,SAAS2E,aAAa5E,OAAOC,SAAS4E,cACzD,EAEAlM,WAAAA,GACE,IAAKsG,KAAKjE,OAAOC,KACf,MAAO,GAET,MAAM6J,EAAU,CACd9K,KAAM,UACNgB,OAAQiE,KAAKjE,OAAOC,KACpB/C,KAAM+G,KAAKmF,aAGPW,EAASR,KAAKS,UAAUF,EAAS,KAAM,GAE7C,MAEG,mFAA4B7F,KAAKgG,aAAa,0CAE/ChG,KAAKiG,OACHH,EAAOlF,MAAM,MAAMC,MAAM,EAAGiF,EAAOnM,OAAS,GAAGmH,KAAK,MAAO,GAC3DoF,OACF,WACC,IAAGlG,KAAK0F,UAEb,EAEAvL,sBAAAA,GACE,OAAOgM,EAAAA,EAAKC,UACV,qEACApG,KAAKtG,YACL,CAAC2M,SAAU,SACXvK,KACJ,GAGFiE,QAAS,CACP,aAAMuG,GACJtG,KAAK5G,SAAU,EAEf,KACG4G,KAAKyE,WAAYzE,KAAKwE,eAAiB+B,QAAQC,IAAI,CAClDxG,KAAK6F,QAAQ,0BACb7F,KAAK6F,QAAQ,4BAEjB,CAAE,QACA7F,KAAK5G,SAAU,CACjB,CAGA4G,KAAKwE,QAAQiC,UAAY,CACvBzK,KAAM,YACNU,QAASC,OAAOyI,QAAQpF,KAAKyE,YAAc,CAAC,GAAGY,QAAO,CAAC3I,GAAUV,EAAMyK,MACrE/J,EAAQV,GAAQ,CACdA,KAAMA,EACN/C,MAAOwN,EAAUxN,MAAQ,IAAIoM,QAAO,CAACpM,EAAM0F,KACzC1F,EAAK0F,GAAO,CACV3C,KAAM2C,EACNH,UAAU,GAGLvF,IACN,CAAC,GACJ4D,mBAAmB,GAGdH,IACN,CAAC,IAIN,IAAK,MAAMgK,KAAU/J,OAAOiI,OAAO5E,KAAKwE,SACtC,IAAK,MAAMzI,KAAUY,OAAOiI,OAAO8B,EAAOhK,SACxCX,EAAOC,KAAO0K,EAAO1K,KAAO,IAAMD,EAAOC,KACzCD,EAAOc,oBAAsBd,EAAO4K,kBAC7B5K,EAAO4K,WACd3G,KAAKtD,QAAQX,EAAOC,MAAQD,EAKhC,MAAM9C,EAAO+G,KAAK4G,aACZC,EAAa5N,GAAM8C,OACrB8K,GAAYlN,QAAUkN,KAAc7G,KAAKtD,SAAWmK,IAAe7G,KAAKjE,OAAOC,MACjFgE,KAAKrE,aAAakL,EAEtB,EAEA,kBAAMlL,CAAakL,EAAYC,GAC7B,IAAI,MAACC,EAAK,KAAE9N,EAAI,UAAE0E,GAAamJ,GAAU,CAAC,EAM1C,GALK7N,IACHA,EAAO,CAAC,GACL0E,IACHA,EAAY,IAEVkJ,IAAe7G,KAAKjE,OAAOC,OAAS+K,EACtC,OAGF,GADA/G,KAAKjE,OAAOC,KAAO6K,IACb7G,KAAKjE,OAAOC,QAAQgE,KAAKtD,SAG7B,OAFAsD,KAAK3D,iBAAckI,OACnBvE,KAAKgH,cAIPhH,KAAKgH,cACLhH,KAAK7D,YAAa,EAElB,IACE6D,KAAKjE,OAAS,IACTiE,KAAKtD,QAAQsD,KAAKjE,OAAOC,MAC5B/C,KAAM0D,OAAOyI,QAAQpF,KAAKtD,QAAQsD,KAAKjE,OAAOC,MAAM/C,MAAMoM,QAAO,CAAC4B,EAAGC,KACnED,EAAEC,EAAM,IAAM,IACTA,EAAM,GACTpL,MAAO7C,IAAOiO,EAAM,KAAOA,EAAM,GAAGzH,SAG/BwH,IACN,CAAC,GACJtJ,UAAWA,GAAa,GAE5B,CAAE,QACAqC,KAAK7D,YAAa,CACpB,CAEA6D,KAAK3D,YACH2D,KAAK0E,gBAAgB1E,KAAKjE,OAAOC,OAAOmL,YAClCnH,KAAKoH,SAASpH,KAAKjE,OAAOK,KAE7B4D,KAAK0E,gBAAgB1E,KAAKjE,OAAOC,QACpCgE,KAAK0E,gBAAgB1E,KAAKjE,OAAOC,MAAQ,CAAC,GAE5CgE,KAAK0E,gBAAgB1E,KAAKjE,OAAOC,MAAMmL,KAAOnH,KAAK3D,YACnD2D,KAAKqH,WAAW,CAACtL,OAAQiE,KAAKjE,OAAOC,OAErC,MAAMsL,EAAWtH,KAAKE,IAAIwC,cAAc,qBACpC4E,EACFA,EAASlH,QAETJ,KAAKC,WAAU,KACbD,KAAKiF,YAAY7E,OAAO,IAI5BJ,KAAKjC,cAAWwG,EAChBvE,KAAKhC,WAAQuG,CACf,EAEA,cAAM6C,CAASG,GACb,OAAKA,GAAW5N,aAGHqG,KAAK6F,QAAQ,oBAAqB,CAAC5E,KAAMsG,IAF7CA,CAGX,EAEAnK,MAAAA,GACE4C,KAAKjE,OAAO4B,UAAU6J,KAAK,CACzBxL,UAAMuI,EACNzI,WAAOyI,GAEX,EAEA/G,SAAAA,CAAUoB,GACRoB,KAAKjE,OAAO4B,UAAU8J,IAAI7I,EAC5B,EAEA,kBAAMtB,CAAatB,GACjBgE,KAAK/C,YAAcjB,EACnBgE,KAAK9C,eACH8C,KAAK0E,gBAAgB1E,KAAKjE,OAAOC,QAAQA,IAAOmL,YAC1CnH,KAAKoH,SAASpH,KAAKjE,OAAO9C,KAAK+C,GAAMI,KAExC4D,KAAK0E,gBAAgB1E,KAAKjE,OAAOC,QACpCgE,KAAK0E,gBAAgB1E,KAAKjE,OAAOC,MAAQ,CAAC,GAE5CgE,KAAK0E,gBAAgB1E,KAAKjE,OAAOC,MAAMA,GAAQ,CAACmL,KAAMnH,KAAK9C,eAC7D,EAEA8J,WAAAA,GACEhH,KAAK/C,iBAAcsH,EACnBvE,KAAK9C,oBAAiBqH,CACxB,EAEA1J,iBAAAA,CAAkBF,GAChBqF,KAAKrF,gBAAkBA,EACvBqF,KAAKjC,cAAWwG,EAChBvE,KAAKhC,WAAQuG,EACbvE,KAAKC,WAAU,KACTtF,EACFqF,KAAKiF,YAAY7E,SAEjBJ,KAAKzD,MAAMmL,UAAUtH,QACjBJ,KAAK9E,gBACP8E,KAAK7B,WAAamH,KAAKS,UAAU/F,KAAK2H,UAAU3H,KAAKjE,QAAS,KAAM,IAExE,GAEJ,EAEA6L,UAAAA,CAAW7J,GACTiC,KAAKjC,UACiB,kBAAbA,EAAwBA,EAAWuH,KAAKS,UAAUhI,EAAU,KAAM,IACzEmI,OAEFlG,KAAKhC,WAAQuG,CACf,EAEAsD,OAAAA,CAAQ7J,GACNgC,KAAKjC,cAAWwG,EAChBvE,KAAKhC,MAAQA,CACf,EAEA8J,MAAAA,GACE9H,KAAK/E,SAAU,CACjB,EAEA6J,aAAAA,CAAc+B,GACZ,OAAKA,GAAYlN,OAGVkN,EAAWjG,MAAM,KAAKC,MAAM,GAAI,GAAGC,KAAK,KAFtC,EAGX,EAEA7E,aAAAA,GACE,IAAK+D,KAAKjE,OAAOC,MAASgE,KAAK7B,cAAc6B,KAAK/E,QAIlD,GADA+E,KAAK/E,SAAU,EACX+E,KAAKrF,gBACPqF,KAAK6F,QAAQ7F,KAAKjE,OAAOC,KAAMgE,KAAKmF,aAAa4C,KAAK/H,KAAK4H,YAAYI,MAAMhI,KAAK6H,SAASI,QAAQjI,KAAK8H,aAExG,IACE,MAAMjC,EAAUP,KAAKC,MAAMvF,KAAK7B,YAChC6B,KAAKkI,QAAQrC,GAASkC,KAAK/H,KAAK4H,YAAYI,MAAMhI,KAAK6H,SAASI,QAAQjI,KAAK8H,OAC/E,CAAE,MAAO7E,GACPjD,KAAKmI,OAAO,CACVnK,OAAO,EACPlE,MAAO,uBACPmH,KAAMgC,EAAEmF,YAEZ,CAEJ,EAEAT,SAAAA,CAAU5L,GACR,MAAO,CACLhB,KAAM,UACNgB,OAAQA,EAAOC,KACf/C,KAAM+G,KAAKmF,YAEf,EAEAkD,SAAAA,CAAUvM,GACRA,EAAQA,GAASkE,KAAKlE,MACjBA,GAGLkE,KAAKlB,MAAM,QAASkB,KAAK2H,UAAU7L,GACrC,EAEA/C,OAAAA,CAAQsH,GAEqC,MAAvCA,EAAMxB,OAAOyJ,QAAQC,gBACvBlI,EAAM6C,kBACN7C,EAAMkD,iBACNxC,OAAOyH,KAAKnI,EAAMxB,OAAO4J,aAAa,OAAQ,WAElD,EAEAC,cAAAA,CAAe5M,GAEb,GADAA,EAAQA,GAASkE,KAAKlE,OACjBA,EACH,OAEF,MAAMC,EAASD,EAAME,MAAQF,EAAMC,OACnCiE,KAAKC,WAAU,KACbD,KAAKrE,aAAaI,EAAQ,CACxBgL,OAAO,EACP9N,KAAM6C,EAAM7C,MAAQ,CAAC,EACrB0E,UAAW7B,EAAM6B,WAAa,IAC9B,GAEN,EAEAvC,QAAAA,GACO4E,KAAK9E,gBAGN8E,KAAKlH,SACPkH,KAAKqI,UAAUrI,KAAKjE,QAEpBiE,KAAK/D,gBAET,GAGF0M,MAAO,CACL7M,MAAO,CACL8M,WAAW,EACXC,OAAAA,CAAQ/M,GACNkE,KAAK0I,eAAe5M,EACtB,IAIJ,aAAM6H,SACE3D,KAAKsG,gBACLtG,KAAK0I,gBACb,GS/hBF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAASI,GAAQ,CAAC,YAAY,qBAEzF,S,6ICRWxQ,MAAM,Y,aAELA,MAAM,S,GAGNA,MAAM,W,UAERC,EAAAA,EAAAA,GAA8B,KAA3BD,MAAM,oBAAkB,W,GAA3BgC,G,SAKDhC,MAAM,mB,2CAINA,MAAM,gB,4DAhBbK,EAAAA,EAAAA,IAmBU,UAnBVa,EAmBU,CAlBW,MAATX,EAAAmF,OAA6B,MAAZnF,EAAAkF,WAAQ,WAAnCpF,EAAAA,EAAAA,IASK,KAAAc,EAAA,EARHlB,EAAAA,EAAAA,GAEO,OAFP6B,GAEOgF,EAAAA,EAAAA,IADO,MAATvG,EAAAmF,MAAgB,QAAU,UAArB,IAEVzF,EAAAA,EAAAA,GAIO,OAJP8B,EAIO,EAHL9B,EAAAA,EAAAA,GAES,UAFDwC,KAAK,SAASjB,MAAM,oBAAqBf,QAAKC,EAAA,KAAAA,EAAA,GAAAe,GAAEC,EAAAC,gBAAgBpB,EAAAkF,Y,wBAM7B,MAAZlF,EAAAkF,WAAQ,WAA3CpF,EAAAA,EAAAA,IAEM,MAFN0G,EAEM,EADJ9G,EAAAA,EAAAA,GAAsG,YAA/C,MAAhBW,EAAA6P,eAAY,WAA9CpQ,EAAAA,EAAAA,IAA0D,Q,MAApDuB,UAAQhB,EAAA6P,c,wBAA4CpQ,EAAAA,EAAAA,IAAiC,Q,mBAA3ByG,EAAAA,EAAAA,IAAQvG,EAASkF,W,gBAG1C,MAATlF,EAAAmF,QAAK,WAA1CrF,EAAAA,EAAAA,IAEM,MAFN2C,EAEM,EADJ/C,EAAAA,EAAAA,GAAsB,O,aAAjB6G,EAAAA,EAAAA,IAAQvG,EAAMmF,Q,sEAWzB,GACEhC,KAAM,WACN8H,OAAQ,CAACC,EAAAA,GACTvE,MAAO,CACLzB,SAAU2B,OACV1B,MAAO0B,QAGTgB,SAAU,CACRsI,MAAAA,GACE,IACE,OAAoC,MAA7B1D,KAAKC,MAAMvF,KAAKjC,SACzB,CAAE,MAAOkF,GACP,OAAO,CACT,CACF,EAEA8F,YAAAA,GACE,OAAI/I,KAAKgJ,OACA7C,EAAAA,EAAKC,UAAUpG,KAAKjC,SAAU,CAACsI,SAAU,SAASvK,MAGpD,IACT,I,UC7CJ,MAAM8D,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASkJ,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/Action/ActionEditor.vue","webpack://platypush/./src/components/Action/ActionArgs.vue","webpack://platypush/./src/components/Action/Argdoc.vue","webpack://platypush/./src/components/Action/Argdoc.vue?4aa9","webpack://platypush/./src/components/Action/ActionArgs.vue?edb8","webpack://platypush/./src/components/Action/ActionDoc.vue","webpack://platypush/./src/components/Action/ActionDoc.vue?d15e","webpack://platypush/./src/components/elements/Autocomplete.vue","webpack://platypush/./src/components/elements/Autocomplete.vue?5778","webpack://platypush/./src/components/Action/ActionEditor.vue?362f","webpack://platypush/./src/components/Action/Response.vue","webpack://platypush/./src/components/Action/Response.vue?7e38"],"sourcesContent":["